/**
 * Custom web fonts
 */
@font-face {
  font-family: SVARotis;
  src: url("main/resources/assets/fonts/SVARotis-Webfont/svarot_r/svarot_r.eot");
  src: url("main/resources/assets/fonts/SVARotis-Webfont/svarot_r/svarot_r.eot?#iefix") format("eot"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_r/svarot_r.woff") format("woff"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_r/svarot_r.ttf") format("truetype"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_r/svarot_r.svg}") format("svg"); }

@font-face {
  font-family: SVARotisItalic;
  src: url("main/resources/assets/fonts/SVARotis-Webfont/svarot_i/svarot_i.eot");
  src: url("main/resources/assets/fonts/SVARotis-Webfont/svarot_i/svarot_i.eot?#iefix") format("eot"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_i/svarot_i.woff") format("woff"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_i/svarot_i.ttf") format("truetype"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_i/svarot_i.svg}") format("svg"); }

@font-face {
  font-family: SVARotisBold;
  src: url("main/resources/assets/fonts/SVARotis-Webfont/svarot_b/svarot_b.eot");
  src: url("main/resources/assets/fonts/SVARotis-Webfont/svarot_b/svarot_b.eot?#iefix") format("eot"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_b/svarot_b.woff") format("woff"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_b/svarot_b.ttf") format("truetype"), url("main/resources/assets/fonts/SVARotis-Webfont/svarot_b/svarot_b.svg}") format("svg"); }

@font-face {
  font-family: Akkurat;
  src: url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Regular/AkkuratPro-Regular.eot");
  src: url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Regular/AkkuratPro-Regular.eot?#iefix") format("eot"), url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Regular/AkkuratPro-Regular.woff") format("woff"), url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Regular/AkkuratPro-Regular.ttf") format("truetype"), url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Regular/AkkuratPro-Regular.svg}") format("svg"); }

@font-face {
  font-family: AkkuratBold;
  src: url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Bold/AkkuratPro-Bold.eot");
  src: url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Bold/AkkuratPro-Bold.eot?#iefix") format("eot"), url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Bold/AkkuratPro-Bold.woff") format("woff"), url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Bold/AkkuratPro-Bold.ttf") format("truetype"), url("main/resources/assets/fonts/AkkuratPro-Webfonts/AkkuratPro-Bold/AkkuratPro-Bold.svg}") format("svg"); }

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

@charset "UTF-8";
/**
 * Layout
 */
/**
 * Font sizes
 */
/**
 * Line heights
 */
/**
 * Breakpoints
 */
/**
 * Breakpoint Variables for Foundation Grid
 */
/** Font-Weights */
/**
 * Icon sizes
 */
/**
 * Icon color
 */
/**
 * Custom colors
 */
/**
 * Color variations
 */
/**
 * Transition and Easings and Timings
 * documented here: @TODO insert link
 */
/**
 * Z-Indexes
 */
:root {
  --scrollbar-wd: 17px; }

html {
  -ms-overflow-style: -ms-autohiding-scrollbar; }

@keyframes rotating {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(-360deg); } }

/**
 * Helper functions
 */
.addtl-table-infos {
  background: none;
  border: none;
  -webkit-appearance: none;
          appearance: none;
  float: right; }
  .addtl-table-infos:hover {
    cursor: pointer; }

/**
 * Hide visually
 *
 * See http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 * for discussion of different solutions
 */
/**
 *
 */
/**
 *
 */
/**
 * Contain floats with clearfix
 *
 * http://nicolasgallagher.com/micro-clearfix-hack/
 */
/**
 * Lists with layout purpose
 */
/**
 * Replace text
 */
/**
 * Better font rendering (on OS X)
 * http://maximilianhoffmann.com/posts/better-font-rendering-on-osx
 *
 * Usage:
 *
 * .xy--dark-on-light {
 * 	@include fontSmoothing;
 * }
 * .xy--light-on-dark {
 * 	@include fontSmoothingReset;
 * }
 */
/**
 *
 */
/**
 * Placeholder in input fields
 */
/**
 * Generate linear interpolated size values through multiple break points
 * https://www.smashingmagazine.com/2017/05/fluid-responsive-typography-css-poly-fluid-sizing/
 *
 * @param $property - A string CSS property name
 * @param $map - A SASS map of viewport unit and size value pairs
 * @requires function linearInterpolation
 * @example
 *   @include polyFluidSizing('font-size', (small: 22px, medium: 24px, large: 34px));
 * @author Jake Wilson <jake.e.wilson@gmail.com>
 */
/**
 * Calculate the definition of a line between two points
 *
 * @param $map - A SASS map of viewport widths and size value pairs
 * @returns A linear equation as a calc() function
 * @example
 *   font-size: linearInterpolation((tiny: 18px, medium: 26px));
 * @author Jake Wilson <jake.e.wilson@gmail.com>
 */
/**
 * Get Value For Breakpoint or next smalles which is in target map available
 *
 * @param $targetMap - A Sass Map which is the target
 * @param $breakpoint - The whanted breakpoint
 * @returns A value in rem
 * @author Marcel Bührig <marcel.buehrig@zeix.com>
 */
/**
 * Generate CSS by giving a list or string and a value
 *
 * @param $listOrString - Either a list or a astring
 * @param $value - String, can be whatever value you like
 */
/**
 * Gets the according values from the sizeCurves and maps it to the wanted attributes
 *
 * @param $attributes - A list or a string of attributes (if string, there is only one)
 * @param $curve - The key value of the curve, e.g. regular
 * @param $map- The Map with all the wanted size curves inside - default: $sizeCurves
 */
/**
 * Grid offset for content elements
 */
/**
 * Grid bleeding for content elements
 */
/**
 * Resets the button no styling
 */
/**
 * SVG Icons
 */
/**
 * Transition Creator Mixin, default is set to create the default hover transition
 *
 */
/**
 * A Special Mixin to disable hover effects on mobile
 */
/**
 * Inspired from https://github.com/guardian/sass-mq.git
 */
/**
 * // To enable support for browsers that do not support @media queries,
 * (IE <= 8, Firefox <= 3, Opera <= 9) set $mqResponsive to false
 * Create a separate stylesheet served exclusively to these browsers,
 * meaning @media queries will be rasterized, relying on the cascade itself
 */
/**
 * Name your breakpoints in a way that creates a ubiquitous language
 * across team members. It will improve communication between
 * stakeholders, designers, developers, and testers.
 */
/**
 * Define the breakpoint from the $mqBreakpoints list that should
 * be used as the target width when outputting a static stylesheet
 * (i.e. when $mqResponsive is set to 'false').
 */
/**
 * If you want to display the currently active breakpoint in the top
 * right corner of your site during development, add the breakpoints
 * to this list, ordered by width, e.g. (mobile, tablet, desktop).
 */
/**
 * Media Query mixin
 * Usage:
 * .element {
 *     @include mq($from: mobile) {
 *         color: red;
 *     }
 *     @include mq($to: tablet) {
 *         color: blue;
 *     }
 *     @include mq(mobile, tablet) {
 *         color: green;
 *     }
 *     @include mq($from: tablet, $and: '(orientation: landscape)') {
 *         color: teal;
 *     }
 *     @include mq(950px) {
 *         color: hotpink;
 *     }
 * }
 */
/**
 * Add a breakpoint
 * Usage: $mqBreakpoints: mqAddBreakpoint(tvscreen, 1920px);
 */
/**
 * Create JSON string of map of breakpoints
 */
/**
 * Create JSON string of single breakpoint
 */
/**
 * Gradients
 */
.gradient__grey {
  background: linear-gradient(to top, #fdfdfd, #eff1f2); }

.gradient__blue {
  background: linear-gradient(to top, #005b8d, #0e7cbf); }

.gradient__yellow {
  background: linear-gradient(to top, #8b7002, #927707, #a98c13); }

.gradient__pink {
  background: linear-gradient(to top, #841335, #99294b, #b6375d); }

.gradient__green {
  background: linear-gradient(to top, #798e30, #4d6225); }

.gradient__purple {
  background: linear-gradient(to top, #583a5c, #6c4d71, #7c5b81); }

.gradient__orange {
  background: linear-gradient(to top, #c46b2c, #a95d26); }

.icon {
  width: 1.33333rem;
  height: 1.33333rem; }

#jump {
  position: absolute;
  left: -1000px;
  top: -1000px;
  z-index: 1000; }
  #jump li a:focus,
  #jump li a:active {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    line-height: 2;
    display: block;
    min-width: 300px;
    font-size: 2rem;
    z-index: 10000;
    background-color: #000000;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center; }
  #jump:focus {
    z-index: 2;
    outline: none; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/**
 * Foundation for Sites
 * Version 6.7.5
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.grid-container, .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto; }
  @media print, screen and (min-width: 19.875em) {
    .grid-container, .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      padding-right: 0.5rem;
      padding-left: 0.5rem; } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-container, .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      padding-right: 0.75rem;
      padding-left: 0.75rem; } }
  @media print, screen and (min-width: 71.75em) {
    .grid-container, .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      padding-right: 0.75rem;
      padding-left: 0.75rem; } }
  @media screen and (min-width: 104.8125em) {
    .grid-container, .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      padding-right: 0.875rem;
      padding-left: 0.875rem; } }
  .grid-container.fluid, .fluid.lyt-wrapper, .fluid.mdl-footer__container-top, .fluid.mdl-footer__container-bottom, .fluid.mdl-header__meta-container, .fluid.mdl-header__navigation-container, .fluid.mdl-tabnav__scrollarea, .fluid.mdl-tabnav__anchor-list, .fluid.mdl-breadcrumb__wrapper, .fluid.mdl-flyout {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    @media print, screen and (min-width: 19.875em) {
      .grid-container.fluid, .fluid.lyt-wrapper, .fluid.mdl-footer__container-top, .fluid.mdl-footer__container-bottom, .fluid.mdl-header__meta-container, .fluid.mdl-header__navigation-container, .fluid.mdl-tabnav__scrollarea, .fluid.mdl-tabnav__anchor-list, .fluid.mdl-breadcrumb__wrapper, .fluid.mdl-flyout {
        padding-right: 0.5rem;
        padding-left: 0.5rem; } }
    @media print, screen and (min-width: 47.6875em) {
      .grid-container.fluid, .fluid.lyt-wrapper, .fluid.mdl-footer__container-top, .fluid.mdl-footer__container-bottom, .fluid.mdl-header__meta-container, .fluid.mdl-header__navigation-container, .fluid.mdl-tabnav__scrollarea, .fluid.mdl-tabnav__anchor-list, .fluid.mdl-breadcrumb__wrapper, .fluid.mdl-flyout {
        padding-right: 0.75rem;
        padding-left: 0.75rem; } }
    @media print, screen and (min-width: 71.75em) {
      .grid-container.fluid, .fluid.lyt-wrapper, .fluid.mdl-footer__container-top, .fluid.mdl-footer__container-bottom, .fluid.mdl-header__meta-container, .fluid.mdl-header__navigation-container, .fluid.mdl-tabnav__scrollarea, .fluid.mdl-tabnav__anchor-list, .fluid.mdl-breadcrumb__wrapper, .fluid.mdl-flyout {
        padding-right: 0.75rem;
        padding-left: 0.75rem; } }
    @media screen and (min-width: 104.8125em) {
      .grid-container.fluid, .fluid.lyt-wrapper, .fluid.mdl-footer__container-top, .fluid.mdl-footer__container-bottom, .fluid.mdl-header__meta-container, .fluid.mdl-header__navigation-container, .fluid.mdl-tabnav__scrollarea, .fluid.mdl-tabnav__anchor-list, .fluid.mdl-breadcrumb__wrapper, .fluid.mdl-flyout {
        padding-right: 0.875rem;
        padding-left: 0.875rem; } }
  .grid-container.full, .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }

.grid-x {
  display: flex;
  flex-flow: row wrap; }

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%; }
  .cell.auto {
    flex: 1 1 0; }
  .cell.shrink {
    flex: 0 0 auto; }

.grid-x > .auto {
  width: auto; }

.grid-x > .shrink {
  width: auto; }

.grid-x > .tiny-shrink, .grid-x > .tiny-full, .grid-x > .tiny-1, .grid-x > .tiny-2, .grid-x > .tiny-3, .grid-x > .tiny-4, .grid-x > .tiny-5, .grid-x > .tiny-6, .grid-x > .tiny-7, .grid-x > .tiny-8, .grid-x > .tiny-9, .grid-x > .tiny-10, .grid-x > .tiny-11, .grid-x > .tiny-12 {
  flex-basis: auto; }

@media print, screen and (min-width: 19.875em) {
  .grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
    flex-basis: auto; } }

@media print, screen and (min-width: 47.6875em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto; } }

@media print, screen and (min-width: 71.75em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto; } }

@media screen and (min-width: 104.8125em) {
  .grid-x > .xlarge-shrink, .grid-x > .xlarge-full, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
    flex-basis: auto; } }

.grid-x > .tiny-1, .grid-x > .tiny-2, .grid-x > .tiny-3, .grid-x > .tiny-4, .grid-x > .tiny-5, .grid-x > .tiny-6, .grid-x > .tiny-7, .grid-x > .tiny-8, .grid-x > .tiny-9, .grid-x > .tiny-10, .grid-x > .tiny-11, .grid-x > .tiny-12 {
  flex: 0 0 auto; }

.grid-x > .tiny-1 {
  width: 8.33333%; }

.grid-x > .tiny-2 {
  width: 16.66667%; }

.grid-x > .tiny-3 {
  width: 25%; }

.grid-x > .tiny-4 {
  width: 33.33333%; }

.grid-x > .tiny-5 {
  width: 41.66667%; }

.grid-x > .tiny-6 {
  width: 50%; }

.grid-x > .tiny-7 {
  width: 58.33333%; }

.grid-x > .tiny-8 {
  width: 66.66667%; }

.grid-x > .tiny-9 {
  width: 75%; }

.grid-x > .tiny-10 {
  width: 83.33333%; }

.grid-x > .tiny-11 {
  width: 91.66667%; }

.grid-x > .tiny-12 {
  width: 100%; }

@media print, screen and (min-width: 19.875em) {
  .grid-x > .small-auto {
    flex: 1 1 0;
    width: auto; }
  .grid-x > .small-shrink, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
    flex: 0 0 auto; }
  .grid-x > .small-shrink {
    width: auto; }
  .grid-x > .small-1 {
    width: 8.33333%; }
  .grid-x > .small-2 {
    width: 16.66667%; }
  .grid-x > .small-3 {
    width: 25%; }
  .grid-x > .small-4 {
    width: 33.33333%; }
  .grid-x > .small-5 {
    width: 41.66667%; }
  .grid-x > .small-6 {
    width: 50%; }
  .grid-x > .small-7 {
    width: 58.33333%; }
  .grid-x > .small-8 {
    width: 66.66667%; }
  .grid-x > .small-9 {
    width: 75%; }
  .grid-x > .small-10 {
    width: 83.33333%; }
  .grid-x > .small-11 {
    width: 91.66667%; }
  .grid-x > .small-12 {
    width: 100%; } }

@media print, screen and (min-width: 47.6875em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto; }
  .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex: 0 0 auto; }
  .grid-x > .medium-shrink {
    width: auto; }
  .grid-x > .medium-1 {
    width: 8.33333%; }
  .grid-x > .medium-2 {
    width: 16.66667%; }
  .grid-x > .medium-3 {
    width: 25%; }
  .grid-x > .medium-4 {
    width: 33.33333%; }
  .grid-x > .medium-5 {
    width: 41.66667%; }
  .grid-x > .medium-6 {
    width: 50%; }
  .grid-x > .medium-7 {
    width: 58.33333%; }
  .grid-x > .medium-8 {
    width: 66.66667%; }
  .grid-x > .medium-9 {
    width: 75%; }
  .grid-x > .medium-10 {
    width: 83.33333%; }
  .grid-x > .medium-11 {
    width: 91.66667%; }
  .grid-x > .medium-12 {
    width: 100%; } }

@media print, screen and (min-width: 71.75em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto; }
  .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex: 0 0 auto; }
  .grid-x > .large-shrink {
    width: auto; }
  .grid-x > .large-1 {
    width: 8.33333%; }
  .grid-x > .large-2 {
    width: 16.66667%; }
  .grid-x > .large-3 {
    width: 25%; }
  .grid-x > .large-4 {
    width: 33.33333%; }
  .grid-x > .large-5 {
    width: 41.66667%; }
  .grid-x > .large-6 {
    width: 50%; }
  .grid-x > .large-7 {
    width: 58.33333%; }
  .grid-x > .large-8 {
    width: 66.66667%; }
  .grid-x > .large-9 {
    width: 75%; }
  .grid-x > .large-10 {
    width: 83.33333%; }
  .grid-x > .large-11 {
    width: 91.66667%; }
  .grid-x > .large-12 {
    width: 100%; } }

@media screen and (min-width: 104.8125em) {
  .grid-x > .xlarge-auto {
    flex: 1 1 0;
    width: auto; }
  .grid-x > .xlarge-shrink, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
    flex: 0 0 auto; }
  .grid-x > .xlarge-shrink {
    width: auto; }
  .grid-x > .xlarge-1 {
    width: 8.33333%; }
  .grid-x > .xlarge-2 {
    width: 16.66667%; }
  .grid-x > .xlarge-3 {
    width: 25%; }
  .grid-x > .xlarge-4 {
    width: 33.33333%; }
  .grid-x > .xlarge-5 {
    width: 41.66667%; }
  .grid-x > .xlarge-6 {
    width: 50%; }
  .grid-x > .xlarge-7 {
    width: 58.33333%; }
  .grid-x > .xlarge-8 {
    width: 66.66667%; }
  .grid-x > .xlarge-9 {
    width: 75%; }
  .grid-x > .xlarge-10 {
    width: 83.33333%; }
  .grid-x > .xlarge-11 {
    width: 91.66667%; }
  .grid-x > .xlarge-12 {
    width: 100%; } }

.grid-margin-x:not(.grid-x) > .cell {
  width: auto; }

.grid-margin-y:not(.grid-y) > .cell {
  height: auto; }

.grid-margin-x {
  margin-left: -0.25rem;
  margin-right: -0.25rem; }
  @media print, screen and (min-width: 19.875em) {
    .grid-margin-x {
      margin-left: -0.5rem;
      margin-right: -0.5rem; } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-margin-x {
      margin-left: -0.75rem;
      margin-right: -0.75rem; } }
  @media print, screen and (min-width: 71.75em) {
    .grid-margin-x {
      margin-left: -0.75rem;
      margin-right: -0.75rem; } }
  @media screen and (min-width: 104.8125em) {
    .grid-margin-x {
      margin-left: -0.875rem;
      margin-right: -0.875rem; } }
  .grid-margin-x > .cell {
    width: calc(100% - 0.5rem);
    margin-left: 0.25rem;
    margin-right: 0.25rem; }
  @media print, screen and (min-width: 19.875em) {
    .grid-margin-x > .cell {
      width: calc(100% - 1rem);
      margin-left: 0.5rem;
      margin-right: 0.5rem; } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-margin-x > .cell {
      width: calc(100% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem; } }
  @media print, screen and (min-width: 71.75em) {
    .grid-margin-x > .cell {
      width: calc(100% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem; } }
  @media screen and (min-width: 104.8125em) {
    .grid-margin-x > .cell {
      width: calc(100% - 1.75rem);
      margin-left: 0.875rem;
      margin-right: 0.875rem; } }
  .grid-margin-x > .auto {
    width: auto; }
  .grid-margin-x > .shrink {
    width: auto; }
  .grid-margin-x > .tiny-1 {
    width: calc(8.33333% - 0.5rem); }
  .grid-margin-x > .tiny-2 {
    width: calc(16.66667% - 0.5rem); }
  .grid-margin-x > .tiny-3 {
    width: calc(25% - 0.5rem); }
  .grid-margin-x > .tiny-4 {
    width: calc(33.33333% - 0.5rem); }
  .grid-margin-x > .tiny-5 {
    width: calc(41.66667% - 0.5rem); }
  .grid-margin-x > .tiny-6 {
    width: calc(50% - 0.5rem); }
  .grid-margin-x > .tiny-7 {
    width: calc(58.33333% - 0.5rem); }
  .grid-margin-x > .tiny-8 {
    width: calc(66.66667% - 0.5rem); }
  .grid-margin-x > .tiny-9 {
    width: calc(75% - 0.5rem); }
  .grid-margin-x > .tiny-10 {
    width: calc(83.33333% - 0.5rem); }
  .grid-margin-x > .tiny-11 {
    width: calc(91.66667% - 0.5rem); }
  .grid-margin-x > .tiny-12 {
    width: calc(100% - 0.5rem); }
  @media print, screen and (min-width: 19.875em) {
    .grid-margin-x > .auto {
      width: auto; }
    .grid-margin-x > .shrink {
      width: auto; }
    .grid-margin-x > .tiny-1 {
      width: calc(8.33333% - 1rem); }
    .grid-margin-x > .tiny-2 {
      width: calc(16.66667% - 1rem); }
    .grid-margin-x > .tiny-3 {
      width: calc(25% - 1rem); }
    .grid-margin-x > .tiny-4 {
      width: calc(33.33333% - 1rem); }
    .grid-margin-x > .tiny-5 {
      width: calc(41.66667% - 1rem); }
    .grid-margin-x > .tiny-6 {
      width: calc(50% - 1rem); }
    .grid-margin-x > .tiny-7 {
      width: calc(58.33333% - 1rem); }
    .grid-margin-x > .tiny-8 {
      width: calc(66.66667% - 1rem); }
    .grid-margin-x > .tiny-9 {
      width: calc(75% - 1rem); }
    .grid-margin-x > .tiny-10 {
      width: calc(83.33333% - 1rem); }
    .grid-margin-x > .tiny-11 {
      width: calc(91.66667% - 1rem); }
    .grid-margin-x > .tiny-12 {
      width: calc(100% - 1rem); }
    .grid-margin-x > .small-auto {
      width: auto; }
    .grid-margin-x > .small-shrink {
      width: auto; }
    .grid-margin-x > .small-1 {
      width: calc(8.33333% - 1rem); }
    .grid-margin-x > .small-2 {
      width: calc(16.66667% - 1rem); }
    .grid-margin-x > .small-3 {
      width: calc(25% - 1rem); }
    .grid-margin-x > .small-4 {
      width: calc(33.33333% - 1rem); }
    .grid-margin-x > .small-5 {
      width: calc(41.66667% - 1rem); }
    .grid-margin-x > .small-6 {
      width: calc(50% - 1rem); }
    .grid-margin-x > .small-7 {
      width: calc(58.33333% - 1rem); }
    .grid-margin-x > .small-8 {
      width: calc(66.66667% - 1rem); }
    .grid-margin-x > .small-9 {
      width: calc(75% - 1rem); }
    .grid-margin-x > .small-10 {
      width: calc(83.33333% - 1rem); }
    .grid-margin-x > .small-11 {
      width: calc(91.66667% - 1rem); }
    .grid-margin-x > .small-12 {
      width: calc(100% - 1rem); } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-margin-x > .auto {
      width: auto; }
    .grid-margin-x > .shrink {
      width: auto; }
    .grid-margin-x > .tiny-1 {
      width: calc(8.33333% - 1.5rem); }
    .grid-margin-x > .tiny-2 {
      width: calc(16.66667% - 1.5rem); }
    .grid-margin-x > .tiny-3 {
      width: calc(25% - 1.5rem); }
    .grid-margin-x > .tiny-4 {
      width: calc(33.33333% - 1.5rem); }
    .grid-margin-x > .tiny-5 {
      width: calc(41.66667% - 1.5rem); }
    .grid-margin-x > .tiny-6 {
      width: calc(50% - 1.5rem); }
    .grid-margin-x > .tiny-7 {
      width: calc(58.33333% - 1.5rem); }
    .grid-margin-x > .tiny-8 {
      width: calc(66.66667% - 1.5rem); }
    .grid-margin-x > .tiny-9 {
      width: calc(75% - 1.5rem); }
    .grid-margin-x > .tiny-10 {
      width: calc(83.33333% - 1.5rem); }
    .grid-margin-x > .tiny-11 {
      width: calc(91.66667% - 1.5rem); }
    .grid-margin-x > .tiny-12 {
      width: calc(100% - 1.5rem); }
    .grid-margin-x > .small-auto {
      width: auto; }
    .grid-margin-x > .small-shrink {
      width: auto; }
    .grid-margin-x > .small-1 {
      width: calc(8.33333% - 1.5rem); }
    .grid-margin-x > .small-2 {
      width: calc(16.66667% - 1.5rem); }
    .grid-margin-x > .small-3 {
      width: calc(25% - 1.5rem); }
    .grid-margin-x > .small-4 {
      width: calc(33.33333% - 1.5rem); }
    .grid-margin-x > .small-5 {
      width: calc(41.66667% - 1.5rem); }
    .grid-margin-x > .small-6 {
      width: calc(50% - 1.5rem); }
    .grid-margin-x > .small-7 {
      width: calc(58.33333% - 1.5rem); }
    .grid-margin-x > .small-8 {
      width: calc(66.66667% - 1.5rem); }
    .grid-margin-x > .small-9 {
      width: calc(75% - 1.5rem); }
    .grid-margin-x > .small-10 {
      width: calc(83.33333% - 1.5rem); }
    .grid-margin-x > .small-11 {
      width: calc(91.66667% - 1.5rem); }
    .grid-margin-x > .small-12 {
      width: calc(100% - 1.5rem); }
    .grid-margin-x > .medium-auto {
      width: auto; }
    .grid-margin-x > .medium-shrink {
      width: auto; }
    .grid-margin-x > .medium-1 {
      width: calc(8.33333% - 1.5rem); }
    .grid-margin-x > .medium-2 {
      width: calc(16.66667% - 1.5rem); }
    .grid-margin-x > .medium-3 {
      width: calc(25% - 1.5rem); }
    .grid-margin-x > .medium-4 {
      width: calc(33.33333% - 1.5rem); }
    .grid-margin-x > .medium-5 {
      width: calc(41.66667% - 1.5rem); }
    .grid-margin-x > .medium-6 {
      width: calc(50% - 1.5rem); }
    .grid-margin-x > .medium-7 {
      width: calc(58.33333% - 1.5rem); }
    .grid-margin-x > .medium-8 {
      width: calc(66.66667% - 1.5rem); }
    .grid-margin-x > .medium-9 {
      width: calc(75% - 1.5rem); }
    .grid-margin-x > .medium-10 {
      width: calc(83.33333% - 1.5rem); }
    .grid-margin-x > .medium-11 {
      width: calc(91.66667% - 1.5rem); }
    .grid-margin-x > .medium-12 {
      width: calc(100% - 1.5rem); } }
  @media print, screen and (min-width: 71.75em) {
    .grid-margin-x > .auto {
      width: auto; }
    .grid-margin-x > .shrink {
      width: auto; }
    .grid-margin-x > .tiny-1 {
      width: calc(8.33333% - 1.5rem); }
    .grid-margin-x > .tiny-2 {
      width: calc(16.66667% - 1.5rem); }
    .grid-margin-x > .tiny-3 {
      width: calc(25% - 1.5rem); }
    .grid-margin-x > .tiny-4 {
      width: calc(33.33333% - 1.5rem); }
    .grid-margin-x > .tiny-5 {
      width: calc(41.66667% - 1.5rem); }
    .grid-margin-x > .tiny-6 {
      width: calc(50% - 1.5rem); }
    .grid-margin-x > .tiny-7 {
      width: calc(58.33333% - 1.5rem); }
    .grid-margin-x > .tiny-8 {
      width: calc(66.66667% - 1.5rem); }
    .grid-margin-x > .tiny-9 {
      width: calc(75% - 1.5rem); }
    .grid-margin-x > .tiny-10 {
      width: calc(83.33333% - 1.5rem); }
    .grid-margin-x > .tiny-11 {
      width: calc(91.66667% - 1.5rem); }
    .grid-margin-x > .tiny-12 {
      width: calc(100% - 1.5rem); }
    .grid-margin-x > .small-auto {
      width: auto; }
    .grid-margin-x > .small-shrink {
      width: auto; }
    .grid-margin-x > .small-1 {
      width: calc(8.33333% - 1.5rem); }
    .grid-margin-x > .small-2 {
      width: calc(16.66667% - 1.5rem); }
    .grid-margin-x > .small-3 {
      width: calc(25% - 1.5rem); }
    .grid-margin-x > .small-4 {
      width: calc(33.33333% - 1.5rem); }
    .grid-margin-x > .small-5 {
      width: calc(41.66667% - 1.5rem); }
    .grid-margin-x > .small-6 {
      width: calc(50% - 1.5rem); }
    .grid-margin-x > .small-7 {
      width: calc(58.33333% - 1.5rem); }
    .grid-margin-x > .small-8 {
      width: calc(66.66667% - 1.5rem); }
    .grid-margin-x > .small-9 {
      width: calc(75% - 1.5rem); }
    .grid-margin-x > .small-10 {
      width: calc(83.33333% - 1.5rem); }
    .grid-margin-x > .small-11 {
      width: calc(91.66667% - 1.5rem); }
    .grid-margin-x > .small-12 {
      width: calc(100% - 1.5rem); }
    .grid-margin-x > .medium-auto {
      width: auto; }
    .grid-margin-x > .medium-shrink {
      width: auto; }
    .grid-margin-x > .medium-1 {
      width: calc(8.33333% - 1.5rem); }
    .grid-margin-x > .medium-2 {
      width: calc(16.66667% - 1.5rem); }
    .grid-margin-x > .medium-3 {
      width: calc(25% - 1.5rem); }
    .grid-margin-x > .medium-4 {
      width: calc(33.33333% - 1.5rem); }
    .grid-margin-x > .medium-5 {
      width: calc(41.66667% - 1.5rem); }
    .grid-margin-x > .medium-6 {
      width: calc(50% - 1.5rem); }
    .grid-margin-x > .medium-7 {
      width: calc(58.33333% - 1.5rem); }
    .grid-margin-x > .medium-8 {
      width: calc(66.66667% - 1.5rem); }
    .grid-margin-x > .medium-9 {
      width: calc(75% - 1.5rem); }
    .grid-margin-x > .medium-10 {
      width: calc(83.33333% - 1.5rem); }
    .grid-margin-x > .medium-11 {
      width: calc(91.66667% - 1.5rem); }
    .grid-margin-x > .medium-12 {
      width: calc(100% - 1.5rem); }
    .grid-margin-x > .large-auto {
      width: auto; }
    .grid-margin-x > .large-shrink {
      width: auto; }
    .grid-margin-x > .large-1 {
      width: calc(8.33333% - 1.5rem); }
    .grid-margin-x > .large-2 {
      width: calc(16.66667% - 1.5rem); }
    .grid-margin-x > .large-3 {
      width: calc(25% - 1.5rem); }
    .grid-margin-x > .large-4 {
      width: calc(33.33333% - 1.5rem); }
    .grid-margin-x > .large-5 {
      width: calc(41.66667% - 1.5rem); }
    .grid-margin-x > .large-6 {
      width: calc(50% - 1.5rem); }
    .grid-margin-x > .large-7 {
      width: calc(58.33333% - 1.5rem); }
    .grid-margin-x > .large-8 {
      width: calc(66.66667% - 1.5rem); }
    .grid-margin-x > .large-9 {
      width: calc(75% - 1.5rem); }
    .grid-margin-x > .large-10 {
      width: calc(83.33333% - 1.5rem); }
    .grid-margin-x > .large-11 {
      width: calc(91.66667% - 1.5rem); }
    .grid-margin-x > .large-12 {
      width: calc(100% - 1.5rem); } }
  @media screen and (min-width: 104.8125em) {
    .grid-margin-x > .auto {
      width: auto; }
    .grid-margin-x > .shrink {
      width: auto; }
    .grid-margin-x > .tiny-1 {
      width: calc(8.33333% - 1.75rem); }
    .grid-margin-x > .tiny-2 {
      width: calc(16.66667% - 1.75rem); }
    .grid-margin-x > .tiny-3 {
      width: calc(25% - 1.75rem); }
    .grid-margin-x > .tiny-4 {
      width: calc(33.33333% - 1.75rem); }
    .grid-margin-x > .tiny-5 {
      width: calc(41.66667% - 1.75rem); }
    .grid-margin-x > .tiny-6 {
      width: calc(50% - 1.75rem); }
    .grid-margin-x > .tiny-7 {
      width: calc(58.33333% - 1.75rem); }
    .grid-margin-x > .tiny-8 {
      width: calc(66.66667% - 1.75rem); }
    .grid-margin-x > .tiny-9 {
      width: calc(75% - 1.75rem); }
    .grid-margin-x > .tiny-10 {
      width: calc(83.33333% - 1.75rem); }
    .grid-margin-x > .tiny-11 {
      width: calc(91.66667% - 1.75rem); }
    .grid-margin-x > .tiny-12 {
      width: calc(100% - 1.75rem); }
    .grid-margin-x > .small-auto {
      width: auto; }
    .grid-margin-x > .small-shrink {
      width: auto; }
    .grid-margin-x > .small-1 {
      width: calc(8.33333% - 1.75rem); }
    .grid-margin-x > .small-2 {
      width: calc(16.66667% - 1.75rem); }
    .grid-margin-x > .small-3 {
      width: calc(25% - 1.75rem); }
    .grid-margin-x > .small-4 {
      width: calc(33.33333% - 1.75rem); }
    .grid-margin-x > .small-5 {
      width: calc(41.66667% - 1.75rem); }
    .grid-margin-x > .small-6 {
      width: calc(50% - 1.75rem); }
    .grid-margin-x > .small-7 {
      width: calc(58.33333% - 1.75rem); }
    .grid-margin-x > .small-8 {
      width: calc(66.66667% - 1.75rem); }
    .grid-margin-x > .small-9 {
      width: calc(75% - 1.75rem); }
    .grid-margin-x > .small-10 {
      width: calc(83.33333% - 1.75rem); }
    .grid-margin-x > .small-11 {
      width: calc(91.66667% - 1.75rem); }
    .grid-margin-x > .small-12 {
      width: calc(100% - 1.75rem); }
    .grid-margin-x > .medium-auto {
      width: auto; }
    .grid-margin-x > .medium-shrink {
      width: auto; }
    .grid-margin-x > .medium-1 {
      width: calc(8.33333% - 1.75rem); }
    .grid-margin-x > .medium-2 {
      width: calc(16.66667% - 1.75rem); }
    .grid-margin-x > .medium-3 {
      width: calc(25% - 1.75rem); }
    .grid-margin-x > .medium-4 {
      width: calc(33.33333% - 1.75rem); }
    .grid-margin-x > .medium-5 {
      width: calc(41.66667% - 1.75rem); }
    .grid-margin-x > .medium-6 {
      width: calc(50% - 1.75rem); }
    .grid-margin-x > .medium-7 {
      width: calc(58.33333% - 1.75rem); }
    .grid-margin-x > .medium-8 {
      width: calc(66.66667% - 1.75rem); }
    .grid-margin-x > .medium-9 {
      width: calc(75% - 1.75rem); }
    .grid-margin-x > .medium-10 {
      width: calc(83.33333% - 1.75rem); }
    .grid-margin-x > .medium-11 {
      width: calc(91.66667% - 1.75rem); }
    .grid-margin-x > .medium-12 {
      width: calc(100% - 1.75rem); }
    .grid-margin-x > .large-auto {
      width: auto; }
    .grid-margin-x > .large-shrink {
      width: auto; }
    .grid-margin-x > .large-1 {
      width: calc(8.33333% - 1.75rem); }
    .grid-margin-x > .large-2 {
      width: calc(16.66667% - 1.75rem); }
    .grid-margin-x > .large-3 {
      width: calc(25% - 1.75rem); }
    .grid-margin-x > .large-4 {
      width: calc(33.33333% - 1.75rem); }
    .grid-margin-x > .large-5 {
      width: calc(41.66667% - 1.75rem); }
    .grid-margin-x > .large-6 {
      width: calc(50% - 1.75rem); }
    .grid-margin-x > .large-7 {
      width: calc(58.33333% - 1.75rem); }
    .grid-margin-x > .large-8 {
      width: calc(66.66667% - 1.75rem); }
    .grid-margin-x > .large-9 {
      width: calc(75% - 1.75rem); }
    .grid-margin-x > .large-10 {
      width: calc(83.33333% - 1.75rem); }
    .grid-margin-x > .large-11 {
      width: calc(91.66667% - 1.75rem); }
    .grid-margin-x > .large-12 {
      width: calc(100% - 1.75rem); }
    .grid-margin-x > .xlarge-auto {
      width: auto; }
    .grid-margin-x > .xlarge-shrink {
      width: auto; }
    .grid-margin-x > .xlarge-1 {
      width: calc(8.33333% - 1.75rem); }
    .grid-margin-x > .xlarge-2 {
      width: calc(16.66667% - 1.75rem); }
    .grid-margin-x > .xlarge-3 {
      width: calc(25% - 1.75rem); }
    .grid-margin-x > .xlarge-4 {
      width: calc(33.33333% - 1.75rem); }
    .grid-margin-x > .xlarge-5 {
      width: calc(41.66667% - 1.75rem); }
    .grid-margin-x > .xlarge-6 {
      width: calc(50% - 1.75rem); }
    .grid-margin-x > .xlarge-7 {
      width: calc(58.33333% - 1.75rem); }
    .grid-margin-x > .xlarge-8 {
      width: calc(66.66667% - 1.75rem); }
    .grid-margin-x > .xlarge-9 {
      width: calc(75% - 1.75rem); }
    .grid-margin-x > .xlarge-10 {
      width: calc(83.33333% - 1.75rem); }
    .grid-margin-x > .xlarge-11 {
      width: calc(91.66667% - 1.75rem); }
    .grid-margin-x > .xlarge-12 {
      width: calc(100% - 1.75rem); } }

.tiny-offset-0 {
  margin-left: 0%; }

.grid-margin-x > .tiny-offset-0 {
  margin-left: calc(0% + 0.5rem / 2); }

.tiny-offset-1 {
  margin-left: 8.33333%; }

.grid-margin-x > .tiny-offset-1 {
  margin-left: calc(8.33333% + 0.5rem / 2); }

.tiny-offset-2 {
  margin-left: 16.66667%; }

.grid-margin-x > .tiny-offset-2 {
  margin-left: calc(16.66667% + 0.5rem / 2); }

.tiny-offset-3 {
  margin-left: 25%; }

.grid-margin-x > .tiny-offset-3 {
  margin-left: calc(25% + 0.5rem / 2); }

.tiny-offset-4 {
  margin-left: 33.33333%; }

.grid-margin-x > .tiny-offset-4 {
  margin-left: calc(33.33333% + 0.5rem / 2); }

.tiny-offset-5 {
  margin-left: 41.66667%; }

.grid-margin-x > .tiny-offset-5 {
  margin-left: calc(41.66667% + 0.5rem / 2); }

.tiny-offset-6 {
  margin-left: 50%; }

.grid-margin-x > .tiny-offset-6 {
  margin-left: calc(50% + 0.5rem / 2); }

.tiny-offset-7 {
  margin-left: 58.33333%; }

.grid-margin-x > .tiny-offset-7 {
  margin-left: calc(58.33333% + 0.5rem / 2); }

.tiny-offset-8 {
  margin-left: 66.66667%; }

.grid-margin-x > .tiny-offset-8 {
  margin-left: calc(66.66667% + 0.5rem / 2); }

.tiny-offset-9 {
  margin-left: 75%; }

.grid-margin-x > .tiny-offset-9 {
  margin-left: calc(75% + 0.5rem / 2); }

.tiny-offset-10 {
  margin-left: 83.33333%; }

.grid-margin-x > .tiny-offset-10 {
  margin-left: calc(83.33333% + 0.5rem / 2); }

.tiny-offset-11 {
  margin-left: 91.66667%; }

.grid-margin-x > .tiny-offset-11 {
  margin-left: calc(91.66667% + 0.5rem / 2); }

@media print, screen and (min-width: 19.875em) {
  .small-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .small-offset-0 {
    margin-left: calc(0% + 1rem / 2); }
  .small-offset-1 {
    margin-left: 8.33333%; }
  .grid-margin-x > .small-offset-1 {
    margin-left: calc(8.33333% + 1rem / 2); }
  .small-offset-2 {
    margin-left: 16.66667%; }
  .grid-margin-x > .small-offset-2 {
    margin-left: calc(16.66667% + 1rem / 2); }
  .small-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .small-offset-3 {
    margin-left: calc(25% + 1rem / 2); }
  .small-offset-4 {
    margin-left: 33.33333%; }
  .grid-margin-x > .small-offset-4 {
    margin-left: calc(33.33333% + 1rem / 2); }
  .small-offset-5 {
    margin-left: 41.66667%; }
  .grid-margin-x > .small-offset-5 {
    margin-left: calc(41.66667% + 1rem / 2); }
  .small-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .small-offset-6 {
    margin-left: calc(50% + 1rem / 2); }
  .small-offset-7 {
    margin-left: 58.33333%; }
  .grid-margin-x > .small-offset-7 {
    margin-left: calc(58.33333% + 1rem / 2); }
  .small-offset-8 {
    margin-left: 66.66667%; }
  .grid-margin-x > .small-offset-8 {
    margin-left: calc(66.66667% + 1rem / 2); }
  .small-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .small-offset-9 {
    margin-left: calc(75% + 1rem / 2); }
  .small-offset-10 {
    margin-left: 83.33333%; }
  .grid-margin-x > .small-offset-10 {
    margin-left: calc(83.33333% + 1rem / 2); }
  .small-offset-11 {
    margin-left: 91.66667%; }
  .grid-margin-x > .small-offset-11 {
    margin-left: calc(91.66667% + 1rem / 2); } }

@media print, screen and (min-width: 47.6875em) {
  .medium-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.5rem / 2); }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.33333% + 1.5rem / 2); }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.66667% + 1.5rem / 2); }
  .medium-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.5rem / 2); }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.33333% + 1.5rem / 2); }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.66667% + 1.5rem / 2); }
  .medium-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.5rem / 2); }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.33333% + 1.5rem / 2); }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.66667% + 1.5rem / 2); }
  .medium-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.5rem / 2); }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.33333% + 1.5rem / 2); }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.66667% + 1.5rem / 2); } }

@media print, screen and (min-width: 71.75em) {
  .large-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.5rem / 2); }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.33333% + 1.5rem / 2); }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.66667% + 1.5rem / 2); }
  .large-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.5rem / 2); }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.33333% + 1.5rem / 2); }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.66667% + 1.5rem / 2); }
  .large-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.5rem / 2); }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.33333% + 1.5rem / 2); }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.66667% + 1.5rem / 2); }
  .large-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.5rem / 2); }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.33333% + 1.5rem / 2); }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.66667% + 1.5rem / 2); } }

@media screen and (min-width: 104.8125em) {
  .xlarge-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 1.75rem / 2); }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.33333% + 1.75rem / 2); }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.66667% + 1.75rem / 2); }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 1.75rem / 2); }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.33333% + 1.75rem / 2); }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.66667% + 1.75rem / 2); }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 1.75rem / 2); }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.33333% + 1.75rem / 2); }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.66667% + 1.75rem / 2); }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 1.75rem / 2); }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.33333% + 1.75rem / 2); }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.66667% + 1.75rem / 2); } }

.grid-y {
  display: flex;
  flex-flow: column nowrap; }
  .grid-y > .cell {
    height: auto;
    max-height: none; }
  .grid-y > .auto {
    height: auto; }
  .grid-y > .shrink {
    height: auto; }
  .grid-y > .tiny-shrink, .grid-y > .tiny-full, .grid-y > .tiny-1, .grid-y > .tiny-2, .grid-y > .tiny-3, .grid-y > .tiny-4, .grid-y > .tiny-5, .grid-y > .tiny-6, .grid-y > .tiny-7, .grid-y > .tiny-8, .grid-y > .tiny-9, .grid-y > .tiny-10, .grid-y > .tiny-11, .grid-y > .tiny-12 {
    flex-basis: auto; }
  @media print, screen and (min-width: 19.875em) {
    .grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
      flex-basis: auto; } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
      flex-basis: auto; } }
  @media print, screen and (min-width: 71.75em) {
    .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
      flex-basis: auto; } }
  @media screen and (min-width: 104.8125em) {
    .grid-y > .xlarge-shrink, .grid-y > .xlarge-full, .grid-y > .xlarge-1, .grid-y > .xlarge-2, .grid-y > .xlarge-3, .grid-y > .xlarge-4, .grid-y > .xlarge-5, .grid-y > .xlarge-6, .grid-y > .xlarge-7, .grid-y > .xlarge-8, .grid-y > .xlarge-9, .grid-y > .xlarge-10, .grid-y > .xlarge-11, .grid-y > .xlarge-12 {
      flex-basis: auto; } }
  .grid-y > .tiny-1, .grid-y > .tiny-2, .grid-y > .tiny-3, .grid-y > .tiny-4, .grid-y > .tiny-5, .grid-y > .tiny-6, .grid-y > .tiny-7, .grid-y > .tiny-8, .grid-y > .tiny-9, .grid-y > .tiny-10, .grid-y > .tiny-11, .grid-y > .tiny-12 {
    flex: 0 0 auto; }
  .grid-y > .tiny-1 {
    height: 8.33333%; }
  .grid-y > .tiny-2 {
    height: 16.66667%; }
  .grid-y > .tiny-3 {
    height: 25%; }
  .grid-y > .tiny-4 {
    height: 33.33333%; }
  .grid-y > .tiny-5 {
    height: 41.66667%; }
  .grid-y > .tiny-6 {
    height: 50%; }
  .grid-y > .tiny-7 {
    height: 58.33333%; }
  .grid-y > .tiny-8 {
    height: 66.66667%; }
  .grid-y > .tiny-9 {
    height: 75%; }
  .grid-y > .tiny-10 {
    height: 83.33333%; }
  .grid-y > .tiny-11 {
    height: 91.66667%; }
  .grid-y > .tiny-12 {
    height: 100%; }
  @media print, screen and (min-width: 19.875em) {
    .grid-y > .small-auto {
      flex: 1 1 0;
      height: auto; }
    .grid-y > .small-shrink, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
      flex: 0 0 auto; }
    .grid-y > .small-shrink {
      height: auto; }
    .grid-y > .small-1 {
      height: 8.33333%; }
    .grid-y > .small-2 {
      height: 16.66667%; }
    .grid-y > .small-3 {
      height: 25%; }
    .grid-y > .small-4 {
      height: 33.33333%; }
    .grid-y > .small-5 {
      height: 41.66667%; }
    .grid-y > .small-6 {
      height: 50%; }
    .grid-y > .small-7 {
      height: 58.33333%; }
    .grid-y > .small-8 {
      height: 66.66667%; }
    .grid-y > .small-9 {
      height: 75%; }
    .grid-y > .small-10 {
      height: 83.33333%; }
    .grid-y > .small-11 {
      height: 91.66667%; }
    .grid-y > .small-12 {
      height: 100%; } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-y > .medium-auto {
      flex: 1 1 0;
      height: auto; }
    .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
      flex: 0 0 auto; }
    .grid-y > .medium-shrink {
      height: auto; }
    .grid-y > .medium-1 {
      height: 8.33333%; }
    .grid-y > .medium-2 {
      height: 16.66667%; }
    .grid-y > .medium-3 {
      height: 25%; }
    .grid-y > .medium-4 {
      height: 33.33333%; }
    .grid-y > .medium-5 {
      height: 41.66667%; }
    .grid-y > .medium-6 {
      height: 50%; }
    .grid-y > .medium-7 {
      height: 58.33333%; }
    .grid-y > .medium-8 {
      height: 66.66667%; }
    .grid-y > .medium-9 {
      height: 75%; }
    .grid-y > .medium-10 {
      height: 83.33333%; }
    .grid-y > .medium-11 {
      height: 91.66667%; }
    .grid-y > .medium-12 {
      height: 100%; } }
  @media print, screen and (min-width: 71.75em) {
    .grid-y > .large-auto {
      flex: 1 1 0;
      height: auto; }
    .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
      flex: 0 0 auto; }
    .grid-y > .large-shrink {
      height: auto; }
    .grid-y > .large-1 {
      height: 8.33333%; }
    .grid-y > .large-2 {
      height: 16.66667%; }
    .grid-y > .large-3 {
      height: 25%; }
    .grid-y > .large-4 {
      height: 33.33333%; }
    .grid-y > .large-5 {
      height: 41.66667%; }
    .grid-y > .large-6 {
      height: 50%; }
    .grid-y > .large-7 {
      height: 58.33333%; }
    .grid-y > .large-8 {
      height: 66.66667%; }
    .grid-y > .large-9 {
      height: 75%; }
    .grid-y > .large-10 {
      height: 83.33333%; }
    .grid-y > .large-11 {
      height: 91.66667%; }
    .grid-y > .large-12 {
      height: 100%; } }
  @media screen and (min-width: 104.8125em) {
    .grid-y > .xlarge-auto {
      flex: 1 1 0;
      height: auto; }
    .grid-y > .xlarge-shrink, .grid-y > .xlarge-1, .grid-y > .xlarge-2, .grid-y > .xlarge-3, .grid-y > .xlarge-4, .grid-y > .xlarge-5, .grid-y > .xlarge-6, .grid-y > .xlarge-7, .grid-y > .xlarge-8, .grid-y > .xlarge-9, .grid-y > .xlarge-10, .grid-y > .xlarge-11, .grid-y > .xlarge-12 {
      flex: 0 0 auto; }
    .grid-y > .xlarge-shrink {
      height: auto; }
    .grid-y > .xlarge-1 {
      height: 8.33333%; }
    .grid-y > .xlarge-2 {
      height: 16.66667%; }
    .grid-y > .xlarge-3 {
      height: 25%; }
    .grid-y > .xlarge-4 {
      height: 33.33333%; }
    .grid-y > .xlarge-5 {
      height: 41.66667%; }
    .grid-y > .xlarge-6 {
      height: 50%; }
    .grid-y > .xlarge-7 {
      height: 58.33333%; }
    .grid-y > .xlarge-8 {
      height: 66.66667%; }
    .grid-y > .xlarge-9 {
      height: 75%; }
    .grid-y > .xlarge-10 {
      height: 83.33333%; }
    .grid-y > .xlarge-11 {
      height: 91.66667%; }
    .grid-y > .xlarge-12 {
      height: 100%; } }

.grid-margin-y {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem; }
  @media print, screen and (min-width: 19.875em) {
    .grid-margin-y {
      margin-top: -0.5rem;
      margin-bottom: -0.5rem; } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-margin-y {
      margin-top: -0.75rem;
      margin-bottom: -0.75rem; } }
  @media print, screen and (min-width: 71.75em) {
    .grid-margin-y {
      margin-top: -0.75rem;
      margin-bottom: -0.75rem; } }
  @media screen and (min-width: 104.8125em) {
    .grid-margin-y {
      margin-top: -0.875rem;
      margin-bottom: -0.875rem; } }
  .grid-margin-y > .cell {
    height: calc(100% - 0.5rem);
    margin-top: 0.25rem;
    margin-bottom: 0.25rem; }
  @media print, screen and (min-width: 19.875em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1rem);
      margin-top: 0.5rem;
      margin-bottom: 0.5rem; } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1.5rem);
      margin-top: 0.75rem;
      margin-bottom: 0.75rem; } }
  @media print, screen and (min-width: 71.75em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1.5rem);
      margin-top: 0.75rem;
      margin-bottom: 0.75rem; } }
  @media screen and (min-width: 104.8125em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1.75rem);
      margin-top: 0.875rem;
      margin-bottom: 0.875rem; } }
  .grid-margin-y > .auto {
    height: auto; }
  .grid-margin-y > .shrink {
    height: auto; }
  .grid-margin-y > .tiny-1 {
    height: calc(8.33333% - 0.5rem); }
  .grid-margin-y > .tiny-2 {
    height: calc(16.66667% - 0.5rem); }
  .grid-margin-y > .tiny-3 {
    height: calc(25% - 0.5rem); }
  .grid-margin-y > .tiny-4 {
    height: calc(33.33333% - 0.5rem); }
  .grid-margin-y > .tiny-5 {
    height: calc(41.66667% - 0.5rem); }
  .grid-margin-y > .tiny-6 {
    height: calc(50% - 0.5rem); }
  .grid-margin-y > .tiny-7 {
    height: calc(58.33333% - 0.5rem); }
  .grid-margin-y > .tiny-8 {
    height: calc(66.66667% - 0.5rem); }
  .grid-margin-y > .tiny-9 {
    height: calc(75% - 0.5rem); }
  .grid-margin-y > .tiny-10 {
    height: calc(83.33333% - 0.5rem); }
  .grid-margin-y > .tiny-11 {
    height: calc(91.66667% - 0.5rem); }
  .grid-margin-y > .tiny-12 {
    height: calc(100% - 0.5rem); }
  @media print, screen and (min-width: 19.875em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .tiny-1 {
      height: calc(8.33333% - 1rem); }
    .grid-margin-y > .tiny-2 {
      height: calc(16.66667% - 1rem); }
    .grid-margin-y > .tiny-3 {
      height: calc(25% - 1rem); }
    .grid-margin-y > .tiny-4 {
      height: calc(33.33333% - 1rem); }
    .grid-margin-y > .tiny-5 {
      height: calc(41.66667% - 1rem); }
    .grid-margin-y > .tiny-6 {
      height: calc(50% - 1rem); }
    .grid-margin-y > .tiny-7 {
      height: calc(58.33333% - 1rem); }
    .grid-margin-y > .tiny-8 {
      height: calc(66.66667% - 1rem); }
    .grid-margin-y > .tiny-9 {
      height: calc(75% - 1rem); }
    .grid-margin-y > .tiny-10 {
      height: calc(83.33333% - 1rem); }
    .grid-margin-y > .tiny-11 {
      height: calc(91.66667% - 1rem); }
    .grid-margin-y > .tiny-12 {
      height: calc(100% - 1rem); }
    .grid-margin-y > .small-auto {
      height: auto; }
    .grid-margin-y > .small-shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.33333% - 1rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.66667% - 1rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.33333% - 1rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.66667% - 1rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.33333% - 1rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.66667% - 1rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.33333% - 1rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.66667% - 1rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1rem); } }
  @media print, screen and (min-width: 47.6875em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .tiny-1 {
      height: calc(8.33333% - 1.5rem); }
    .grid-margin-y > .tiny-2 {
      height: calc(16.66667% - 1.5rem); }
    .grid-margin-y > .tiny-3 {
      height: calc(25% - 1.5rem); }
    .grid-margin-y > .tiny-4 {
      height: calc(33.33333% - 1.5rem); }
    .grid-margin-y > .tiny-5 {
      height: calc(41.66667% - 1.5rem); }
    .grid-margin-y > .tiny-6 {
      height: calc(50% - 1.5rem); }
    .grid-margin-y > .tiny-7 {
      height: calc(58.33333% - 1.5rem); }
    .grid-margin-y > .tiny-8 {
      height: calc(66.66667% - 1.5rem); }
    .grid-margin-y > .tiny-9 {
      height: calc(75% - 1.5rem); }
    .grid-margin-y > .tiny-10 {
      height: calc(83.33333% - 1.5rem); }
    .grid-margin-y > .tiny-11 {
      height: calc(91.66667% - 1.5rem); }
    .grid-margin-y > .tiny-12 {
      height: calc(100% - 1.5rem); }
    .grid-margin-y > .small-auto {
      height: auto; }
    .grid-margin-y > .small-shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.33333% - 1.5rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.66667% - 1.5rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1.5rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.33333% - 1.5rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.66667% - 1.5rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1.5rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.33333% - 1.5rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.66667% - 1.5rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1.5rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.33333% - 1.5rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.66667% - 1.5rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1.5rem); }
    .grid-margin-y > .medium-auto {
      height: auto; }
    .grid-margin-y > .medium-shrink {
      height: auto; }
    .grid-margin-y > .medium-1 {
      height: calc(8.33333% - 1.5rem); }
    .grid-margin-y > .medium-2 {
      height: calc(16.66667% - 1.5rem); }
    .grid-margin-y > .medium-3 {
      height: calc(25% - 1.5rem); }
    .grid-margin-y > .medium-4 {
      height: calc(33.33333% - 1.5rem); }
    .grid-margin-y > .medium-5 {
      height: calc(41.66667% - 1.5rem); }
    .grid-margin-y > .medium-6 {
      height: calc(50% - 1.5rem); }
    .grid-margin-y > .medium-7 {
      height: calc(58.33333% - 1.5rem); }
    .grid-margin-y > .medium-8 {
      height: calc(66.66667% - 1.5rem); }
    .grid-margin-y > .medium-9 {
      height: calc(75% - 1.5rem); }
    .grid-margin-y > .medium-10 {
      height: calc(83.33333% - 1.5rem); }
    .grid-margin-y > .medium-11 {
      height: calc(91.66667% - 1.5rem); }
    .grid-margin-y > .medium-12 {
      height: calc(100% - 1.5rem); } }
  @media print, screen and (min-width: 71.75em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .tiny-1 {
      height: calc(8.33333% - 1.5rem); }
    .grid-margin-y > .tiny-2 {
      height: calc(16.66667% - 1.5rem); }
    .grid-margin-y > .tiny-3 {
      height: calc(25% - 1.5rem); }
    .grid-margin-y > .tiny-4 {
      height: calc(33.33333% - 1.5rem); }
    .grid-margin-y > .tiny-5 {
      height: calc(41.66667% - 1.5rem); }
    .grid-margin-y > .tiny-6 {
      height: calc(50% - 1.5rem); }
    .grid-margin-y > .tiny-7 {
      height: calc(58.33333% - 1.5rem); }
    .grid-margin-y > .tiny-8 {
      height: calc(66.66667% - 1.5rem); }
    .grid-margin-y > .tiny-9 {
      height: calc(75% - 1.5rem); }
    .grid-margin-y > .tiny-10 {
      height: calc(83.33333% - 1.5rem); }
    .grid-margin-y > .tiny-11 {
      height: calc(91.66667% - 1.5rem); }
    .grid-margin-y > .tiny-12 {
      height: calc(100% - 1.5rem); }
    .grid-margin-y > .small-auto {
      height: auto; }
    .grid-margin-y > .small-shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.33333% - 1.5rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.66667% - 1.5rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1.5rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.33333% - 1.5rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.66667% - 1.5rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1.5rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.33333% - 1.5rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.66667% - 1.5rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1.5rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.33333% - 1.5rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.66667% - 1.5rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1.5rem); }
    .grid-margin-y > .medium-auto {
      height: auto; }
    .grid-margin-y > .medium-shrink {
      height: auto; }
    .grid-margin-y > .medium-1 {
      height: calc(8.33333% - 1.5rem); }
    .grid-margin-y > .medium-2 {
      height: calc(16.66667% - 1.5rem); }
    .grid-margin-y > .medium-3 {
      height: calc(25% - 1.5rem); }
    .grid-margin-y > .medium-4 {
      height: calc(33.33333% - 1.5rem); }
    .grid-margin-y > .medium-5 {
      height: calc(41.66667% - 1.5rem); }
    .grid-margin-y > .medium-6 {
      height: calc(50% - 1.5rem); }
    .grid-margin-y > .medium-7 {
      height: calc(58.33333% - 1.5rem); }
    .grid-margin-y > .medium-8 {
      height: calc(66.66667% - 1.5rem); }
    .grid-margin-y > .medium-9 {
      height: calc(75% - 1.5rem); }
    .grid-margin-y > .medium-10 {
      height: calc(83.33333% - 1.5rem); }
    .grid-margin-y > .medium-11 {
      height: calc(91.66667% - 1.5rem); }
    .grid-margin-y > .medium-12 {
      height: calc(100% - 1.5rem); }
    .grid-margin-y > .large-auto {
      height: auto; }
    .grid-margin-y > .large-shrink {
      height: auto; }
    .grid-margin-y > .large-1 {
      height: calc(8.33333% - 1.5rem); }
    .grid-margin-y > .large-2 {
      height: calc(16.66667% - 1.5rem); }
    .grid-margin-y > .large-3 {
      height: calc(25% - 1.5rem); }
    .grid-margin-y > .large-4 {
      height: calc(33.33333% - 1.5rem); }
    .grid-margin-y > .large-5 {
      height: calc(41.66667% - 1.5rem); }
    .grid-margin-y > .large-6 {
      height: calc(50% - 1.5rem); }
    .grid-margin-y > .large-7 {
      height: calc(58.33333% - 1.5rem); }
    .grid-margin-y > .large-8 {
      height: calc(66.66667% - 1.5rem); }
    .grid-margin-y > .large-9 {
      height: calc(75% - 1.5rem); }
    .grid-margin-y > .large-10 {
      height: calc(83.33333% - 1.5rem); }
    .grid-margin-y > .large-11 {
      height: calc(91.66667% - 1.5rem); }
    .grid-margin-y > .large-12 {
      height: calc(100% - 1.5rem); } }
  @media screen and (min-width: 104.8125em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .tiny-1 {
      height: calc(8.33333% - 1.75rem); }
    .grid-margin-y > .tiny-2 {
      height: calc(16.66667% - 1.75rem); }
    .grid-margin-y > .tiny-3 {
      height: calc(25% - 1.75rem); }
    .grid-margin-y > .tiny-4 {
      height: calc(33.33333% - 1.75rem); }
    .grid-margin-y > .tiny-5 {
      height: calc(41.66667% - 1.75rem); }
    .grid-margin-y > .tiny-6 {
      height: calc(50% - 1.75rem); }
    .grid-margin-y > .tiny-7 {
      height: calc(58.33333% - 1.75rem); }
    .grid-margin-y > .tiny-8 {
      height: calc(66.66667% - 1.75rem); }
    .grid-margin-y > .tiny-9 {
      height: calc(75% - 1.75rem); }
    .grid-margin-y > .tiny-10 {
      height: calc(83.33333% - 1.75rem); }
    .grid-margin-y > .tiny-11 {
      height: calc(91.66667% - 1.75rem); }
    .grid-margin-y > .tiny-12 {
      height: calc(100% - 1.75rem); }
    .grid-margin-y > .small-auto {
      height: auto; }
    .grid-margin-y > .small-shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.33333% - 1.75rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.66667% - 1.75rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1.75rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.33333% - 1.75rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.66667% - 1.75rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1.75rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.33333% - 1.75rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.66667% - 1.75rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1.75rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.33333% - 1.75rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.66667% - 1.75rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1.75rem); }
    .grid-margin-y > .medium-auto {
      height: auto; }
    .grid-margin-y > .medium-shrink {
      height: auto; }
    .grid-margin-y > .medium-1 {
      height: calc(8.33333% - 1.75rem); }
    .grid-margin-y > .medium-2 {
      height: calc(16.66667% - 1.75rem); }
    .grid-margin-y > .medium-3 {
      height: calc(25% - 1.75rem); }
    .grid-margin-y > .medium-4 {
      height: calc(33.33333% - 1.75rem); }
    .grid-margin-y > .medium-5 {
      height: calc(41.66667% - 1.75rem); }
    .grid-margin-y > .medium-6 {
      height: calc(50% - 1.75rem); }
    .grid-margin-y > .medium-7 {
      height: calc(58.33333% - 1.75rem); }
    .grid-margin-y > .medium-8 {
      height: calc(66.66667% - 1.75rem); }
    .grid-margin-y > .medium-9 {
      height: calc(75% - 1.75rem); }
    .grid-margin-y > .medium-10 {
      height: calc(83.33333% - 1.75rem); }
    .grid-margin-y > .medium-11 {
      height: calc(91.66667% - 1.75rem); }
    .grid-margin-y > .medium-12 {
      height: calc(100% - 1.75rem); }
    .grid-margin-y > .large-auto {
      height: auto; }
    .grid-margin-y > .large-shrink {
      height: auto; }
    .grid-margin-y > .large-1 {
      height: calc(8.33333% - 1.75rem); }
    .grid-margin-y > .large-2 {
      height: calc(16.66667% - 1.75rem); }
    .grid-margin-y > .large-3 {
      height: calc(25% - 1.75rem); }
    .grid-margin-y > .large-4 {
      height: calc(33.33333% - 1.75rem); }
    .grid-margin-y > .large-5 {
      height: calc(41.66667% - 1.75rem); }
    .grid-margin-y > .large-6 {
      height: calc(50% - 1.75rem); }
    .grid-margin-y > .large-7 {
      height: calc(58.33333% - 1.75rem); }
    .grid-margin-y > .large-8 {
      height: calc(66.66667% - 1.75rem); }
    .grid-margin-y > .large-9 {
      height: calc(75% - 1.75rem); }
    .grid-margin-y > .large-10 {
      height: calc(83.33333% - 1.75rem); }
    .grid-margin-y > .large-11 {
      height: calc(91.66667% - 1.75rem); }
    .grid-margin-y > .large-12 {
      height: calc(100% - 1.75rem); }
    .grid-margin-y > .xlarge-auto {
      height: auto; }
    .grid-margin-y > .xlarge-shrink {
      height: auto; }
    .grid-margin-y > .xlarge-1 {
      height: calc(8.33333% - 1.75rem); }
    .grid-margin-y > .xlarge-2 {
      height: calc(16.66667% - 1.75rem); }
    .grid-margin-y > .xlarge-3 {
      height: calc(25% - 1.75rem); }
    .grid-margin-y > .xlarge-4 {
      height: calc(33.33333% - 1.75rem); }
    .grid-margin-y > .xlarge-5 {
      height: calc(41.66667% - 1.75rem); }
    .grid-margin-y > .xlarge-6 {
      height: calc(50% - 1.75rem); }
    .grid-margin-y > .xlarge-7 {
      height: calc(58.33333% - 1.75rem); }
    .grid-margin-y > .xlarge-8 {
      height: calc(66.66667% - 1.75rem); }
    .grid-margin-y > .xlarge-9 {
      height: calc(75% - 1.75rem); }
    .grid-margin-y > .xlarge-10 {
      height: calc(83.33333% - 1.75rem); }
    .grid-margin-y > .xlarge-11 {
      height: calc(91.66667% - 1.75rem); }
    .grid-margin-y > .xlarge-12 {
      height: calc(100% - 1.75rem); } }

.fe-content-wrapper {
  padding: 0 0.75rem; }
  @media print, screen and (max-width: 47.68625em) {
    .fe-content-wrapper {
      padding: 0 0.35rem;
      margin-bottom: 32px; } }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .fe-content-wrapper {
      padding: 0 0.45rem;
      margin-bottom: 56px; } }
  @media print, screen and (min-width: 71.75em) and (max-width: 104.81125em) {
    .fe-content-wrapper {
      padding: 0 0.45rem;
      margin-bottom: 56px; } }
  @media screen and (min-width: 104.8125em) {
    .fe-content-wrapper {
      padding: 0 0.85rem;
      margin-bottom: 56px; } }

/**
 * Sync breakpoints with JavaScript
 *
 * font-family property of title element contains the current breakpoint
 * font-family property of head element contains all breakpoints
 */
@media all {
  title {
    font-family: '{"name":"tiny","value":"0px"}'; } }

@media all {
  title {
    font-family: '{"name":"tiny","value":"0"}'; } }

@media all and (min-width: 19.875em) {
  title {
    font-family: '{"name":"small","value":"318px"}'; } }

@media all and (min-width: 47.6875em) {
  title {
    font-family: '{"name":"medium","value":"763px"}'; } }

@media all and (min-width: 71.75em) {
  title {
    font-family: '{"name":"large","value":"1148px"}'; } }

@media all and (min-width: 104.8125em) {
  title {
    font-family: '{"name":"xlarge","value":"1677px"}'; } }

head {
  font-family: '{"tiny":"0","small":"318px","medium":"763px","large":"1148px","xlarge":"1677px"}';
  display: none; }

#flying-focus {
  position: absolute;
  margin: 0;
  background: transparent;
  transition-property: left, top, width, height;
  transition-timing-function: cubic-bezier(0, 1, 0, 1);
  visibility: hidden;
  pointer-events: none; }
  #flying-focus.flying-focus--visible {
    visibility: visible;
    z-index: 9999; }
    #flying-focus.flying-focus--visible:after {
      position: absolute;
      top: -1px;
      right: -1px;
      bottom: -1px;
      left: -1px;
      border: 2px solid #CAA518;
      border-radius: 3px;
      content: '';
      box-sizing: border-box;
      display: block; }

.flying-focus__a11y {
  z-index: 10000; }
  .flying-focus__a11y:after {
    border: 2px solid #FFFFFF !important; }

:focus {
  outline: none; }

.flying-focus__target {
  outline: none !important;
  /* Doesn't work in Firefox :( */ }

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus__target::-moz-focus-inner {
  border: 0 !important; }

/**
 * Generic classes
 */
.visuallyhidden, .mdl-file_upload__input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  width: 1px; }

.clearfix::before, .clearfix::after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1; }

.clearfix::after {
  clear: both; }

.nobr {
  white-space: nowrap; }

.edge2edge {
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%; }

.noflow {
  overflow: hidden; }

.hidden {
  display: none; }

body.home {
  background-image: linear-gradient(-151deg, #f9f9f9 0%, #eee 100%);
  background-size: 100vw 1020px;
  background-repeat: no-repeat; }
  body.home .mdl-header,
  body.home .mdl-header__navigation-container {
    background-color: transparent; }

body.topics,
body.newsarchive {
  background-image: linear-gradient(to bottom, #fdfdfd 0%, #eff1f2 100%);
  background-size: 100vw 460px;
  background-repeat: no-repeat; }
  body.topics .mdl-header,
  body.topics .mdl-header__navigation-container,
  body.topics .mdl-tabnav__tabs,
  body.newsarchive .mdl-header,
  body.newsarchive .mdl-header__navigation-container,
  body.newsarchive .mdl-tabnav__tabs {
    background-color: transparent; }
  body.topics .mdl-tabnav--fixed .mdl-tabnav__tabs,
  body.newsarchive .mdl-tabnav--fixed .mdl-tabnav__tabs {
    background-color: #F0F1F1; }

body.newsarchive .mdl-tabnav__fixer {
  box-shadow: none; }

body.newsarchive .mdl-tabnav {
  margin-bottom: 0; }

body.home .atm-logo,
body.topics .atm-logo {
  background-color: transparent; }

@media print, screen and (max-width: 47.68625em) {
  body.mobile-menu-open {
    max-height: 100vh;
    overflow: hidden; } }

.bg-white {
  background-image: none;
  background-color: #FFFFFF;
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  overflow-y: hidden; }

.strong {
  font-weight: 700; }

.no_sticky_side_menu .mdl-sticky_side_menu,
.no_sticky_side_menu .mdl-sticky_side_menu--mobile {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */ }

.no_process_steps .mdl-form_process__wrapper,
.no_process_steps .mdl-form_process__step {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */ }

p {
  margin: 0; }

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

ol {
  padding-left: 1em;
  /* stylelint-disable-line */
  margin-block-start: 0; }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  width: 100%; }

legend {
  margin-top: 1em;
  margin-bottom: 1em; }

/* stylelint-disable-next-line */
input[type=date]::-webkit-inner-spin-button {
  position: absolute;
  right: calc(100% - 25px);
  opacity: 0;
  cursor: pointer;
  /* stylelint-disable-next-line */
  -webkit-appearance: none; }

input[type='date']::-webkit-calendar-picker-indicator {
  display: none; }

.mdl-input_field__icon {
  /* stylelint-disable declaration-no-important */
  pointer-events: auto !important;
  cursor: pointer; }

iframe {
  border: none; }

* {
  box-sizing: border-box; }

html {
  background: #FFFFFF;
  color: #000000;
  font-family: SVARotis, Helvetica, sans-serif;
  font-size: 112.5%;
  line-height: 1.411;
  scroll-behavior: smooth; }

html,
body {
  overflow-x: hidden; }
  html.locked,
  body.locked {
    overflow: hidden; }

nav ul,
nav ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
  margin: 0 auto;
  width: 71.11111em;
  max-width: 100%;
  position: relative; }
  @media all {
    .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      max-width: calc(100% - 0.88889rem); } }
  @media all and (min-width: 19.875em) {
    .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      max-width: calc(100% - 1.77778rem); } }
  @media all and (min-width: 47.6875em) {
    .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      max-width: calc(100% - 2.44444rem); } }
  @media all and (min-width: 71.75em) {
    .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      max-width: calc(100% - 3.33333rem); } }
  @media all and (min-width: 104.8125em) {
    .lyt-wrapper, .mdl-footer__container-top, .mdl-footer__container-bottom, .mdl-header__meta-container, .mdl-header__navigation-container, .mdl-tabnav__scrollarea, .mdl-tabnav__anchor-list, .mdl-breadcrumb__wrapper, .mdl-flyout {
      max-width: calc(100% - 0rem); } }

.cv-black * ::selection {
  background: #7F7D7A;
  color: #FFFFFF; }

.cv-yellow * ::selection {
  background: #CAA518;
  color: #FFFFFF; }

.cv-pink * ::selection {
  background: #99294B;
  color: #FFFFFF; }

.cv-green * ::selection {
  background: #798E30;
  color: #FFFFFF; }

.cv-purple * ::selection {
  background: #6C4D71;
  color: #FFFFFF; }

.cv-orange * ::selection {
  background: #C46B2C;
  color: #FFFFFF; }

.lsg-placeholder {
  background-color: #333;
  padding: 1em;
  text-align: center;
  margin-bottom: 56px; }
  .lsg-placeholder h2 {
    color: #FFFFFF;
    text-align: center;
    font-family: AkkuratBold;
    font-size: 3rem;
    font-weight: 400; }
  .lsg-placeholder p,
  .lsg-placeholder a,
  .lsg-placeholder a:hover,
  .lsg-placeholder a:active {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1em; }

.upper-gradient {
  background: linear-gradient(to bottom, #fdfdfd, #eff1f2);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%; }
  .upper-gradient .atm-logo,
  .upper-gradient .mdl-tabnav__tabs {
    background: transparent; }

.atm-icon {
  fill: #000000;
  display: inline-block;
  width: 1em;
  height: 1em; }

.atm-paragraph, .mdl-text p, .mdl-quicklink-topic__inner p {
  font-family: SVARotis, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.21px;
  color: #000000;
  font-weight: 400;
  padding-bottom: 18px; }
  .atm-paragraph--grey {
    color: #7F7D7A; }
  .atm-paragraph b, .mdl-text p b, .mdl-quicklink-topic__inner p b {
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-weight: 400; }
  .atm-paragraph--category {
    font-size: 14px;
    line-height: 16px; }
  .atm-paragraph--meta, .mdl-text--meta p {
    font-size: 16px;
    line-height: 24px; }

.atm-heading, .mdl-text h1,
.mdl-text h2,
.mdl-text h3,
.mdl-text h4 {
  font-weight: 400;
  color: #000000;
  position: relative; }
  .atm-heading--calculator {
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 18px; }

h1,
.atm-heading--level1 {
  font-family: AkkuratBold, Helvetica, sans-serif;
  font-size: 48px;
  line-height: 1.1429;
  letter-spacing: -0.4px;
  margin-bottom: 24px; }
  h1 .atm-heading__underline,
  .atm-heading--level1 .atm-heading__underline {
    border-bottom-width: 7px;
    border-color: #000000;
    border-bottom-style: solid;
    padding-bottom: 7px; }
  @media print, screen and (max-width: 47.68625em) {
    h1,
    .atm-heading--level1 {
      font-size: 32px;
      line-height: 1.25; }
      h1 .atm-heading__underline,
      .atm-heading--level1 .atm-heading__underline {
        border-bottom-width: 6px;
        padding-bottom: 5px; } }

h2,
.atm-heading--level2,
.mdl-text h2,
.mdl-searchresults__h2,
.mdl-ipv_calculator__infoblock-title {
  font-family: AkkuratBold, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.1429;
  letter-spacing: -0.28px;
  margin-bottom: 24px;
  font-weight: initial; }
  h2 .atm-heading__underline,
  .atm-heading--level2 .atm-heading__underline,
  .mdl-text h2 .atm-heading__underline,
  .mdl-searchresults__h2 .atm-heading__underline,
  .mdl-ipv_calculator__infoblock-title .atm-heading__underline {
    border-bottom-width: 6px;
    border-color: #000000;
    border-bottom-style: solid;
    padding-bottom: 6px; }
  @media print, screen and (max-width: 47.68625em) {
    h2,
    .atm-heading--level2,
    .mdl-text h2,
    .mdl-searchresults__h2,
    .mdl-ipv_calculator__infoblock-title {
      font-size: 24px;
      line-height: 1.25; }
      h2 .atm-heading__underline,
      .atm-heading--level2 .atm-heading__underline,
      .mdl-text h2 .atm-heading__underline,
      .mdl-searchresults__h2 .atm-heading__underline,
      .mdl-ipv_calculator__infoblock-title .atm-heading__underline {
        padding-bottom: 5px;
        border-bottom-width: 5px; } }

h3,
.atm-heading--level3,
.mdl-text h3 {
  font-family: SVARotis, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.1429;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
  margin-top: 8px; }
  @media print, screen and (max-width: 47.68625em) {
    h3,
    .atm-heading--level3,
    .mdl-text h3 {
      font-size: 20px;
      line-height: 1.4; } }
  h3 .atm-heading__underline,
  .atm-heading--level3 .atm-heading__underline,
  .mdl-text h3 .atm-heading__underline {
    padding-bottom: 4px;
    border-bottom-width: 4px;
    border-color: #000000;
    border-bottom-style: solid; }
  h3.atm-heading--regular,
  .atm-heading--level3.atm-heading--regular,
  .mdl-text h3.atm-heading--regular {
    font-family: SVARotis, Helvetica, sans-serif;
    margin-bottom: 64px; }
  h3.atm-heading--bold,
  .atm-heading--level3.atm-heading--bold,
  .mdl-text h3.atm-heading--bold {
    font-family: SVARotisBold, Helvetica, sans-serif;
    margin-bottom: 64px; }

h4,
.atm-heading--level4 {
  font-family: SVARotisBold, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.2px;
  margin-bottom: 16px; }
  @media print, screen and (max-width: 47.68625em) {
    h4,
    .atm-heading--level4 {
      font-size: 20px;
      line-height: 1.4; } }

.atm-heading--centered {
  font-family: SVARotis, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 24px;
  padding-bottom: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center; }
  .atm-heading--centered:before, .atm-heading--centered:after {
    content: '';
    border-top: 1px solid #d9dcdc;
    margin: 0 20px 0 0;
    flex: 1 0 20px; }
  .atm-heading--centered:after {
    margin: 0 0 0 20px;
    background: transparent;
    position: relative;
    height: 1px; }

.cv-black .atm-heading--underline .atm-heading__underline {
  border-color: #7F7D7A; }

.cv-black.mdl-distributortile .atm-heading--underline .atm-heading__underline {
  border-color: #7F7D7A; }

.cv-black.mdl-focusteaser .atm-heading--underline .atm-heading__underline {
  border-color: #7F7D7A; }

.cv-black.mdl-distributorindex .atm-heading--underline .atm-heading__underline {
  border-color: #7F7D7A; }

.cv-black.mdl-focusteaser .mdl-focusteaser__focus {
  background-color: #7F7D7A; }

.cv-yellow .atm-heading--underline .atm-heading__underline {
  border-color: #CAA518; }

.cv-yellow.mdl-distributortile .atm-heading--underline .atm-heading__underline {
  border-color: #CAA518; }

.cv-yellow.mdl-focusteaser .atm-heading--underline .atm-heading__underline {
  border-color: #CAA518; }

.cv-yellow.mdl-distributorindex .atm-heading--underline .atm-heading__underline {
  border-color: #CAA518; }

.cv-yellow.mdl-focusteaser .mdl-focusteaser__focus {
  background-color: #CAA518; }

.cv-pink .atm-heading--underline .atm-heading__underline {
  border-color: #99294B; }

.cv-pink.mdl-distributortile .atm-heading--underline .atm-heading__underline {
  border-color: #99294B; }

.cv-pink.mdl-focusteaser .atm-heading--underline .atm-heading__underline {
  border-color: #99294B; }

.cv-pink.mdl-distributorindex .atm-heading--underline .atm-heading__underline {
  border-color: #99294B; }

.cv-pink.mdl-focusteaser .mdl-focusteaser__focus {
  background-color: #99294B; }

.cv-green .atm-heading--underline .atm-heading__underline {
  border-color: #798E30; }

.cv-green.mdl-distributortile .atm-heading--underline .atm-heading__underline {
  border-color: #798E30; }

.cv-green.mdl-focusteaser .atm-heading--underline .atm-heading__underline {
  border-color: #798E30; }

.cv-green.mdl-distributorindex .atm-heading--underline .atm-heading__underline {
  border-color: #798E30; }

.cv-green.mdl-focusteaser .mdl-focusteaser__focus {
  background-color: #798E30; }

.cv-purple .atm-heading--underline .atm-heading__underline {
  border-color: #6C4D71; }

.cv-purple.mdl-distributortile .atm-heading--underline .atm-heading__underline {
  border-color: #6C4D71; }

.cv-purple.mdl-focusteaser .atm-heading--underline .atm-heading__underline {
  border-color: #6C4D71; }

.cv-purple.mdl-distributorindex .atm-heading--underline .atm-heading__underline {
  border-color: #6C4D71; }

.cv-purple.mdl-focusteaser .mdl-focusteaser__focus {
  background-color: #6C4D71; }

.cv-orange .atm-heading--underline .atm-heading__underline {
  border-color: #C46B2C; }

.cv-orange.mdl-distributortile .atm-heading--underline .atm-heading__underline {
  border-color: #C46B2C; }

.cv-orange.mdl-focusteaser .atm-heading--underline .atm-heading__underline {
  border-color: #C46B2C; }

.cv-orange.mdl-distributorindex .atm-heading--underline .atm-heading__underline {
  border-color: #C46B2C; }

.cv-orange.mdl-focusteaser .mdl-focusteaser__focus {
  background-color: #C46B2C; }

.atm-bulletlist, .mdl-text ul {
  list-style-type: none;
  padding-left: 0; }
  .atm-bulletlist:first-child > :first-of-type:nth-last-of-type(1), .mdl-text ul:first-child > :first-of-type:nth-last-of-type(1) {
    width: 100%; }
  .atm-bulletlist__item, .mdl-text ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 1.6em;
    color: #000000; }
    @media print, screen and (max-width: 47.68625em) {
      .atm-bulletlist__item, .mdl-text ul li {
        width: 100%; } }
    .atm-bulletlist__item:before, .mdl-text ul li:before {
      content: '■';
      position: absolute;
      left: 0;
      top: 0.4em;
      display: inline-block;
      font-size: 0.6em;
      color: #BDC0C3; }

.atm-numberlist, .mdl-text ol {
  list-style-type: none;
  counter-reset: item;
  padding-left: 0; }
  .atm-numberlist:first-child > :first-of-type:nth-last-of-type(1), .mdl-text ol:first-child > :first-of-type:nth-last-of-type(1) {
    width: 100%; }
  .atm-numberlist__item, .mdl-text ol li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 12px;
    color: #000000; }
    @media print, screen and (max-width: 47.68625em) {
      .atm-numberlist__item, .mdl-text ol li {
        width: 100%; } }
    .atm-numberlist__item:before, .mdl-text ol li:before {
      position: absolute;
      left: 0;
      content: counter(item) ". ";
      counter-increment: item;
      width: 1.6em;
      display: inline-block; }

.atm-highlight, .mdl-text em {
  background-color: #f7ebcc;
  background-blend-mode: darken;
  padding: 4px; }

.atm-textlink, .mdl-text a, .mdl-table th a,
.mdl-table td a {
  color: #0069A3;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 0;
  margin-bottom: 0;
  text-indent: 0; }
  .atm-textlink:hover, .mdl-text a:hover, .mdl-table th a:hover,
  .mdl-table td a:hover {
    color: #0069A3;
    text-decoration: none;
    border-bottom: 3px solid #0069A3;
    padding-bottom: 0;
    margin-bottom: -3px !important; }
  .atm-textlink .atm-icon, .mdl-text a .atm-icon, .mdl-table th a .atm-icon, .mdl-table td a .atm-icon {
    fill: #0069A3;
    width: 0.7em;
    height: 0.7em;
    vertical-align: middle;
    margin-top: -5px; }

.atm-logo {
  display: inline-block;
  background-color: transparent; }
  .atm-logo .atm-icon {
    width: 100px;
    height: 17px; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .atm-logo .atm-icon {
        width: 143px;
        height: 24px; } }
    @media print, screen and (min-width: 71.75em) {
      .atm-logo .atm-icon {
        width: 184px;
        height: 31px; } }
  @media screen and (-ms-high-contrast: active) {
    .atm-logo {
      -ms-high-contrast-adjust: none;
      background-color: #000000;
      color: #FFFFFF;
      padding: 10px; }
      .atm-logo .atm-icon {
        fill: #FFFFFF; } }
  @media screen and (-ms-high-contrast: black-on-white) {
    .atm-logo {
      -ms-high-contrast-adjust: none;
      background-color: #FFFFFF;
      color: #000000;
      padding: 10px; }
      .atm-logo .atm-icon {
        fill: #000000; } }

.atm-newsmeta {
  display: inline-block;
  color: #7F7D7A;
  text-decoration: none;
  margin-top: 0;
  margin-block-start: 0;
  margin-bottom: 24px;
  font-size: 14px;
  font-family: AkkuratBold, Helvetica, sans-serif;
  letter-spacing: 0.5px; }

.mdl-intro {
  padding-bottom: 32px;
  margin-bottom: 32px; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-intro {
      padding-bottom: 40px;
      margin-bottom: 40px; } }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .mdl-intro {
      padding-bottom: 64px;
      margin-bottom: 64px;
      flex: 0 0 auto;
      width: calc(83.33333% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(8.33333% + 1.5rem / 2);
      margin-left: calc(8.3333% + 4px); } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-intro {
      flex: 0 0 auto;
      width: calc(66.66667% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(16.66667% + 1.5rem / 2);
      margin-left: calc(16.6667% + 4px); } }
  .mdl-intro-formular {
    flex: 0 0 auto;
    width: calc(100% - 0.5rem);
    margin-left: 0.25rem;
    margin-right: 0.25rem; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-intro-formular .atm-heading, .mdl-intro-formular .mdl-text h1, .mdl-text .mdl-intro-formular h1,
      .mdl-intro-formular .mdl-text h2, .mdl-text .mdl-intro-formular h2,
      .mdl-intro-formular .mdl-text h3, .mdl-text .mdl-intro-formular h3,
      .mdl-intro-formular .mdl-text h4, .mdl-text .mdl-intro-formular h4 {
        font-size: 32px; } }
    .mdl-intro-formular p {
      font-size: 18px;
      letter-spacing: -0.21px;
      line-height: 28px; }
  .mdl-intro h1,
  .mdl-intro .atm-heading,
  .mdl-intro .mdl-text h1,
  .mdl-text .mdl-intro h1,
  .mdl-intro .mdl-text h2,
  .mdl-text .mdl-intro h2,
  .mdl-intro .mdl-text h3,
  .mdl-text .mdl-intro h3,
  .mdl-intro .mdl-text h4,
  .mdl-text .mdl-intro h4 {
    font-size: 42px;
    line-height: 48px;
    letter-spacing: -0.4px;
    margin-bottom: 40px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-intro h1 .atm-heading__underline,
      .mdl-intro .atm-heading .atm-heading__underline,
      .mdl-intro .mdl-text h1 .atm-heading__underline,
      .mdl-text .mdl-intro h1 .atm-heading__underline,
      .mdl-intro .mdl-text h2 .atm-heading__underline,
      .mdl-text .mdl-intro h2 .atm-heading__underline,
      .mdl-intro .mdl-text h3 .atm-heading__underline,
      .mdl-text .mdl-intro h3 .atm-heading__underline,
      .mdl-intro .mdl-text h4 .atm-heading__underline,
      .mdl-text .mdl-intro h4 .atm-heading__underline {
        padding-bottom: 8px;
        border-bottom-width: 5px; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-intro h1 .atm-heading__underline,
      .mdl-intro .atm-heading .atm-heading__underline,
      .mdl-intro .mdl-text h1 .atm-heading__underline,
      .mdl-text .mdl-intro h1 .atm-heading__underline,
      .mdl-intro .mdl-text h2 .atm-heading__underline,
      .mdl-text .mdl-intro h2 .atm-heading__underline,
      .mdl-intro .mdl-text h3 .atm-heading__underline,
      .mdl-text .mdl-intro h3 .atm-heading__underline,
      .mdl-intro .mdl-text h4 .atm-heading__underline,
      .mdl-text .mdl-intro h4 .atm-heading__underline {
        border-bottom-width: 6px; } }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-intro h1,
      .mdl-intro .atm-heading,
      .mdl-intro .mdl-text h1,
      .mdl-text .mdl-intro h1,
      .mdl-intro .mdl-text h2,
      .mdl-text .mdl-intro h2,
      .mdl-intro .mdl-text h3,
      .mdl-text .mdl-intro h3,
      .mdl-intro .mdl-text h4,
      .mdl-text .mdl-intro h4 {
        padding-bottom: 6px; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-intro h1,
      .mdl-intro .atm-heading,
      .mdl-intro .mdl-text h1,
      .mdl-text .mdl-intro h1,
      .mdl-intro .mdl-text h2,
      .mdl-text .mdl-intro h2,
      .mdl-intro .mdl-text h3,
      .mdl-text .mdl-intro h3,
      .mdl-intro .mdl-text h4,
      .mdl-text .mdl-intro h4 {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.3px; } }
  .mdl-intro p,
  .mdl-intro .atm-paragraph,
  .mdl-intro .mdl-text p,
  .mdl-text .mdl-intro p,
  .mdl-intro .mdl-quicklink-topic__inner p,
  .mdl-quicklink-topic__inner .mdl-intro p {
    font-size: 22px;
    line-height: 1.3636;
    letter-spacing: -0.2px;
    margin: 0 16px 0 0;
    padding-bottom: 0; }
  .mdl-intro .mdl-text {
    margin-bottom: 0; }
  .mdl-intro--news-detail {
    margin-bottom: 0;
    padding-bottom: 24px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-intro--news-detail {
        padding-bottom: 24px; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-intro--news-detail {
        padding-bottom: 24px; } }
  @media print, screen and (max-width: 71.74875em) {
    .mdl-intro--review {
      margin-bottom: 0; } }

.atm-heading__underline {
  padding-bottom: 6px;
  border-bottom-width: 6px;
  border-color: #000000;
  border-bottom-style: solid; }
  @media print, screen and (max-width: 47.68625em) {
    .atm-heading__underline {
      border-bottom-width: 5px; } }

.mdl-quote {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 1.33333rem; }
  @media all and (min-width: 19.875em) {
    .mdl-quote {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-quote {
      margin-bottom: 3.11111rem; } }
  .mdl-quote__block {
    padding: 40px 40px 54px 64px;
    margin: 0; }
    @media print, screen and (min-width: 71.75em) {
      .mdl-quote__block {
        flex: 0 0 auto;
        width: calc(75% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-quote__block {
        flex: 0 0 auto;
        width: calc(91.66667% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-quote__block {
        flex: 0 0 auto;
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 24px 32px 40px; } }
  .mdl-quote .mdl-quote__text--underline {
    display: inline;
    border-bottom-width: 6px;
    border-bottom-style: solid;
    padding-bottom: 7px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-quote .mdl-quote__text--underline {
        border-bottom-width: 5px; } }
    .mdl-quote .mdl-quote__text--underline:after {
      content: '»';
      position: relative; }
  .mdl-quote p {
    font-family: AkkuratBold, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: -0.34px;
    line-height: 42px;
    margin: 0;
    position: relative;
    color: #7F7D7A; }
    .mdl-quote p::selection,
    .mdl-quote p .mdl-quote__text--underline::selection {
      background-color: #7F7D7A; }
    .mdl-quote p .atm-heading__underline {
      border-color: #7F7D7A; }
    .mdl-quote p:before {
      content: '«';
      position: absolute;
      left: -24px; }
    @media print, screen and (min-width: 19.875em) and (max-width: 47.68625em) {
      .mdl-quote p {
        font-size: 30px;
        letter-spacing: -0.28px;
        line-height: 1.2; } }
  .mdl-quote--inverted p {
    color: #FFFFFF !important; }
  .mdl-quote--inverted .atm-heading__underline {
    border-color: #FFFFFF !important; }
  .mdl-quote--inverted--black {
    background-color: #000000; }
  .mdl-quote--inverted--blue,
  .mdl-quote--inverted--blue .mdl-quote--inverted {
    background-color: #005C8F; }
  .mdl-quote--inverted--yellow,
  .mdl-quote--inverted--yellow .mdl-quote--inverted {
    background-color: #927707; }
  .mdl-quote--inverted--orange,
  .mdl-quote--inverted--orange .mdl-quote--inverted {
    background-color: #a95d26; }
  .mdl-quote--inverted--purple,
  .mdl-quote--inverted--purple .mdl-quote--inverted {
    background-color: #6c4d71; }
  .mdl-quote--inverted--green,
  .mdl-quote--inverted--green .mdl-quote--inverted {
    background-color: #4d6225; }
  .mdl-quote--inverted--pink,
  .mdl-quote--inverted--pink .mdl-quote--inverted {
    background-color: #99294b; }
  .mdl-quote--black p {
    color: #7F7D7A; }
    .mdl-quote--black p::selection,
    .mdl-quote--black p .mdl-quote__text--underline::selection {
      background-color: #7F7D7A; }
    .mdl-quote--black p .atm-heading__underline {
      border-color: #7F7D7A; }
  .mdl-quote--blue p {
    color: #0069A3; }
    .mdl-quote--blue p::selection,
    .mdl-quote--blue p .mdl-quote__text--underline::selection {
      background-color: #0069A3; }
    .mdl-quote--blue p .atm-heading__underline {
      border-color: #0069A3; }
  .mdl-quote--yellow p {
    color: #CAA518; }
    .mdl-quote--yellow p::selection,
    .mdl-quote--yellow p .mdl-quote__text--underline::selection {
      background-color: #CAA518; }
    .mdl-quote--yellow p .atm-heading__underline {
      border-color: #CAA518; }
  .mdl-quote--pink p {
    color: #99294B; }
    .mdl-quote--pink p::selection,
    .mdl-quote--pink p .mdl-quote__text--underline::selection {
      background-color: #99294B; }
    .mdl-quote--pink p .atm-heading__underline {
      border-color: #99294B; }
  .mdl-quote--green p {
    color: #798E30; }
    .mdl-quote--green p::selection,
    .mdl-quote--green p .mdl-quote__text--underline::selection {
      background-color: #798E30; }
    .mdl-quote--green p .atm-heading__underline {
      border-color: #798E30; }
  .mdl-quote--purple p {
    color: #6C4D71; }
    .mdl-quote--purple p::selection,
    .mdl-quote--purple p .mdl-quote__text--underline::selection {
      background-color: #6C4D71; }
    .mdl-quote--purple p .atm-heading__underline {
      border-color: #6C4D71; }
  .mdl-quote--orange p {
    color: #C46B2C; }
    .mdl-quote--orange p::selection,
    .mdl-quote--orange p .mdl-quote__text--underline::selection {
      background-color: #C46B2C; }
    .mdl-quote--orange p .atm-heading__underline {
      border-color: #C46B2C; }

.cv-black .atm-heading__underline {
  border-color: #7F7D7A; }

.cv-black .p .atm-heading__underline {
  border-color: #7F7D7A; }

.cv-black.mdl-quote--inverted .mdl-quote__block {
  background-color: #7F7D7A; }

.cv-yellow .atm-heading__underline {
  border-color: #CAA518; }

.cv-yellow .p .atm-heading__underline {
  border-color: #CAA518; }

.cv-yellow.mdl-quote--inverted .mdl-quote__block {
  background-color: #CAA518; }

.cv-pink .atm-heading__underline {
  border-color: #99294B; }

.cv-pink .p .atm-heading__underline {
  border-color: #99294B; }

.cv-pink.mdl-quote--inverted .mdl-quote__block {
  background-color: #99294B; }

.cv-green .atm-heading__underline {
  border-color: #798E30; }

.cv-green .p .atm-heading__underline {
  border-color: #798E30; }

.cv-green.mdl-quote--inverted .mdl-quote__block {
  background-color: #798E30; }

.cv-purple .atm-heading__underline {
  border-color: #6C4D71; }

.cv-purple .p .atm-heading__underline {
  border-color: #6C4D71; }

.cv-purple.mdl-quote--inverted .mdl-quote__block {
  background-color: #6C4D71; }

.cv-orange .atm-heading__underline {
  border-color: #C46B2C; }

.cv-orange .p .atm-heading__underline {
  border-color: #C46B2C; }

.cv-orange.mdl-quote--inverted .mdl-quote__block {
  background-color: #C46B2C; }

.mdl-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-bottom: 56px; }
  .mdl-video--square {
    padding-bottom: 100%; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-video {
      margin-bottom: 32px; } }
  .mdl-video__preview {
    display: flex;
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden; }
    .mdl-video__preview .mdl-image__image {
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
    .mdl-video__preview > button {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateY(-50%) translateX(-50%);
      background: transparent;
      border: none;
      cursor: pointer;
      width: 112px;
      height: 112px; }
      .mdl-video__preview > button .mdl-video__play-large,
      .mdl-video__preview > button .mdl-video__play-small {
        width: 100%;
        height: 100%; }
        .mdl-video__preview > button .mdl-video__play-large use,
        .mdl-video__preview > button .mdl-video__play-small use {
          fill: #FFFFFF; }
      .mdl-video__preview > button .mdl-video__play-large {
        display: block; }
      .mdl-video__preview > button .mdl-video__play-small {
        display: none; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-video__preview > button {
          width: 80px;
          height: 80px; }
          .mdl-video__preview > button .mdl-video__play-large {
            display: none; }
          .mdl-video__preview > button .mdl-video__play-small {
            display: block; } }
  .mdl-video iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.mdl-contactteaser {
  margin-bottom: 8px;
  width: 100%;
  display: flex;
  margin-bottom: 1.33333rem;
  padding: 40px 30px;
  border: 1px solid #000000; }
  @media all and (min-width: 19.875em) {
    .mdl-contactteaser {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-contactteaser {
      margin-bottom: 3.11111rem; } }
  .mdl-contactteaser .atm-heading, .mdl-contactteaser .mdl-text h1, .mdl-text .mdl-contactteaser h1,
  .mdl-contactteaser .mdl-text h2, .mdl-text .mdl-contactteaser h2,
  .mdl-contactteaser .mdl-text h3, .mdl-text .mdl-contactteaser h3,
  .mdl-contactteaser .mdl-text h4, .mdl-text .mdl-contactteaser h4 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.28px;
    margin-bottom: 8px;
    padding-bottom: 0; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-contactteaser .atm-heading, .mdl-contactteaser .mdl-text h1, .mdl-text .mdl-contactteaser h1,
      .mdl-contactteaser .mdl-text h2, .mdl-text .mdl-contactteaser h2,
      .mdl-contactteaser .mdl-text h3, .mdl-text .mdl-contactteaser h3,
      .mdl-contactteaser .mdl-text h4, .mdl-text .mdl-contactteaser h4 {
        margin-top: 18px;
        font-size: 24px;
        letter-spacing: -0.26px;
        line-height: 30px; } }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-contactteaser {
      display: block;
      padding: 24px 16px; } }
  .mdl-contactteaser .mdl-text {
    margin-top: 0;
    margin-bottom: 32px;
    display: block; }
    .mdl-contactteaser .mdl-text p {
      padding-bottom: 0; }
  @media print, screen and (min-width: 71.75em) {
    .mdl-contactteaser__image {
      flex: 0 0 auto;
      width: calc(16.66667% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(8.33333% + 1.5rem / 2);
      padding-left: 24px; } }
  .mdl-contactteaser img {
    width: 110px;
    height: 110px;
    border-radius: 50%; }
    @media print, screen and (min-width: 71.75em) {
      .mdl-contactteaser img {
        display: block;
        margin-right: 70px;
        margin-bottom: 2rem; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-contactteaser img {
        width: 60px;
        height: 60px; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-contactteaser img {
        margin-right: 40px;
        width: 80px;
        height: 80px; } }
    @media screen and (min-width: 104.8125em) {
      .mdl-contactteaser img {
        width: 120px;
        height: 120px; } }
  .mdl-contactteaser__linkwrapper {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-left: 0;
    padding-inline-start: 0; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-contactteaser__linkwrapper {
        flex-direction: column; } }
    .mdl-contactteaser__linkwrapper li {
      margin-right: 2em; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-contactteaser__linkwrapper li {
          margin-right: 0;
          margin-bottom: 16px;
          line-height: 28px; } }
      @media print, screen and (max-width: 71.74875em) {
        .mdl-contactteaser__linkwrapper li {
          margin-right: 0; } }
      .mdl-contactteaser__linkwrapper li:last-child {
        margin-right: 0;
        margin-bottom: 0; }
  .mdl-contactteaser__link, .mdl-contactteaser__link:hover, .mdl-contactteaser__phone, .mdl-contactteaser__phone:hover {
    text-decoration: none;
    color: #0069A3;
    font-family: SVARotisBold, Helvetica, sans-serif;
    line-height: 28px;
    letter-spacing: -0.2px;
    padding-bottom: 2px; }
  .mdl-contactteaser__link:hover, .mdl-contactteaser__phone:hover {
    border-bottom: 2px solid;
    padding-bottom: 0; }
  .mdl-contactteaser__link-icon, .mdl-contactteaser__link-icon:hover {
    border: none;
    text-decoration: none; }
  .mdl-contactteaser .atm-icon {
    width: 1.5em;
    position: relative;
    top: 3px;
    fill: #0069A3;
    margin-right: 24px;
    flex-shrink: 0; }
  .mdl-contactteaser--small {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important; }
    .mdl-contactteaser--small .atm-heading, .mdl-contactteaser--small .mdl-text h1, .mdl-text .mdl-contactteaser--small h1,
    .mdl-contactteaser--small .mdl-text h2, .mdl-text .mdl-contactteaser--small h2,
    .mdl-contactteaser--small .mdl-text h3, .mdl-text .mdl-contactteaser--small h3,
    .mdl-contactteaser--small .mdl-text h4, .mdl-text .mdl-contactteaser--small h4 {
      padding-bottom: 0; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-contactteaser--small {
        flex: 0 0 auto;
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-bottom: 24px;
        padding: 24px 16px; }
        .mdl-contactteaser--small .atm-heading, .mdl-contactteaser--small .mdl-text h1, .mdl-text .mdl-contactteaser--small h1,
        .mdl-contactteaser--small .mdl-text h2, .mdl-text .mdl-contactteaser--small h2,
        .mdl-contactteaser--small .mdl-text h3, .mdl-text .mdl-contactteaser--small h3,
        .mdl-contactteaser--small .mdl-text h4, .mdl-text .mdl-contactteaser--small h4 {
          font-size: 25px;
          letter-spacing: -0.27px;
          margin-top: 0; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-contactteaser--small {
        flex: 0 0 auto;
        width: calc(75% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-contactteaser--small {
        flex: 0 0 auto;
        width: calc(50% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem; } }
  .mdl-contactteaser--author img {
    margin-bottom: 0; }
  .mdl-contactteaser--author .atm-heading, .mdl-contactteaser--author .mdl-text h1, .mdl-text .mdl-contactteaser--author h1,
  .mdl-contactteaser--author .mdl-text h2, .mdl-text .mdl-contactteaser--author h2,
  .mdl-contactteaser--author .mdl-text h3, .mdl-text .mdl-contactteaser--author h3,
  .mdl-contactteaser--author .mdl-text h4, .mdl-text .mdl-contactteaser--author h4 {
    padding-top: 0rem; }
    @media all and (min-width: 19.875em) {
      .mdl-contactteaser--author .atm-heading, .mdl-contactteaser--author .mdl-text h1, .mdl-text .mdl-contactteaser--author h1,
      .mdl-contactteaser--author .mdl-text h2, .mdl-text .mdl-contactteaser--author h2,
      .mdl-contactteaser--author .mdl-text h3, .mdl-text .mdl-contactteaser--author h3,
      .mdl-contactteaser--author .mdl-text h4, .mdl-text .mdl-contactteaser--author h4 {
        padding-top: 0.27778rem; } }
    @media all and (min-width: 71.75em) {
      .mdl-contactteaser--author .atm-heading, .mdl-contactteaser--author .mdl-text h1, .mdl-text .mdl-contactteaser--author h1,
      .mdl-contactteaser--author .mdl-text h2, .mdl-text .mdl-contactteaser--author h2,
      .mdl-contactteaser--author .mdl-text h3, .mdl-text .mdl-contactteaser--author h3,
      .mdl-contactteaser--author .mdl-text h4, .mdl-text .mdl-contactteaser--author h4 {
        padding-top: 1.11111rem; } }
    @media all and (min-width: 104.8125em) {
      .mdl-contactteaser--author .atm-heading, .mdl-contactteaser--author .mdl-text h1, .mdl-text .mdl-contactteaser--author h1,
      .mdl-contactteaser--author .mdl-text h2, .mdl-text .mdl-contactteaser--author h2,
      .mdl-contactteaser--author .mdl-text h3, .mdl-text .mdl-contactteaser--author h3,
      .mdl-contactteaser--author .mdl-text h4, .mdl-text .mdl-contactteaser--author h4 {
        padding-top: 1.38889rem; } }
  .mdl-contactteaser--author .mdl-text {
    margin-bottom: 0rem; }
    @media all and (min-width: 19.875em) {
      .mdl-contactteaser--author .mdl-text {
        margin-bottom: 0.27778rem; } }
    @media all and (min-width: 71.75em) {
      .mdl-contactteaser--author .mdl-text {
        margin-bottom: 1.11111rem; } }
    @media all and (min-width: 104.8125em) {
      .mdl-contactteaser--author .mdl-text {
        margin-bottom: 1.38889rem; } }

.mdl-contactteaser--inverted {
  border: none !important; }
  .mdl-contactteaser--inverted .atm-heading, .mdl-contactteaser--inverted .mdl-text h1, .mdl-text .mdl-contactteaser--inverted h1,
  .mdl-contactteaser--inverted .mdl-text h2, .mdl-text .mdl-contactteaser--inverted h2,
  .mdl-contactteaser--inverted .mdl-text h3, .mdl-text .mdl-contactteaser--inverted h3,
  .mdl-contactteaser--inverted .mdl-text h4, .mdl-text .mdl-contactteaser--inverted h4,
  .mdl-contactteaser--inverted .mdl-text p,
  .mdl-contactteaser--inverted .mdl-contactteaser__link,
  .mdl-contactteaser--inverted .mdl-contactteaser__link:hover,
  .mdl-contactteaser--inverted .mdl-contactteaser__phone,
  .mdl-contactteaser--inverted .mdl-contactteaser__phone:hover {
    color: #FFFFFF !important; }
  .mdl-contactteaser--inverted .mdl-contactteaser__link:hover {
    border-bottom: 2px solid #FFFFFF; }
  .mdl-contactteaser--inverted .atm-icon {
    fill: #FFFFFF !important; }

.cv-black .mdl-contactteaser {
  border: 1px solid #7F7D7A; }

.cv-yellow .mdl-contactteaser {
  border: 1px solid #CAA518; }

.cv-pink .mdl-contactteaser {
  border: 1px solid #99294B; }

.cv-green .mdl-contactteaser {
  border: 1px solid #798E30; }

.cv-purple .mdl-contactteaser {
  border: 1px solid #6C4D71; }

.cv-orange .mdl-contactteaser {
  border: 1px solid #C46B2C; }

.mdl-footer {
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%; }
  .mdl-footer p,
  .mdl-footer span,
  .mdl-footer h3,
  .mdl-footer time {
    color: #FFFFFF; }
  .mdl-footer a,
  .mdl-footer a:hover {
    text-decoration: none;
    color: #FFFFFF; }
  .mdl-footer address {
    font-style: normal;
    font-size: 16px; }
  .mdl-footer p,
  .mdl-footer ul,
  .mdl-footer .atm-paragraph,
  .mdl-footer .mdl-text p,
  .mdl-text .mdl-footer p,
  .mdl-footer .mdl-quicklink-topic__inner p,
  .mdl-quicklink-topic__inner .mdl-footer p {
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer p,
      .mdl-footer ul,
      .mdl-footer .atm-paragraph,
      .mdl-footer .mdl-text p,
      .mdl-text .mdl-footer p,
      .mdl-footer .mdl-quicklink-topic__inner p,
      .mdl-quicklink-topic__inner .mdl-footer p {
        padding-bottom: 0; } }
  .mdl-footer__wrapper-top, .mdl-footer__wrapper-bottom {
    padding: 0 0.61111rem; }
  .mdl-footer__wrapper-top {
    background: linear-gradient(-46deg, #086091 0%, #1d8ed2 52%, #0986d1 100%); }
  .mdl-footer__wrapper-bottom {
    background-image: linear-gradient(to left, #000000 21%, #18181a 56%, #333337 100%); }
  .mdl-footer__container-top, .mdl-footer__container-bottom {
    padding: 24px 0; }
  .mdl-footer__upper {
    display: flex;
    margin: -0.75rem; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer__upper {
        flex-direction: column; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-footer__upper {
        flex: wrap; } }
  .mdl-footer .atm-heading, .mdl-footer .mdl-text h1, .mdl-text .mdl-footer h1,
  .mdl-footer .mdl-text h2, .mdl-text .mdl-footer h2,
  .mdl-footer .mdl-text h3, .mdl-text .mdl-footer h3,
  .mdl-footer .mdl-text h4, .mdl-text .mdl-footer h4 {
    font-family: AkkuratBold, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.6px;
    margin: 0; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer .atm-heading, .mdl-footer .mdl-text h1, .mdl-text .mdl-footer h1,
      .mdl-footer .mdl-text h2, .mdl-text .mdl-footer h2,
      .mdl-footer .mdl-text h3, .mdl-text .mdl-footer h3,
      .mdl-footer .mdl-text h4, .mdl-text .mdl-footer h4 {
        font-size: 14px; } }
  .mdl-footer [itemprop] {
    white-space: nowrap; }
  .mdl-footer__block {
    margin: 0.75rem; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-footer__block {
        flex: 1 1 50%; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-footer__block {
        padding: 0 0.75rem;
        margin: 0.75rem 0; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__block--postal {
        flex: 1 1 16.66%; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer__block--phone {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #66a3c5; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__block--phone {
        flex: 1 1 16.66%; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer__block--hours {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #66a3c5; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__block--hours {
        flex: 1 1 33.33%; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__block--hours {
        border-left: 1px solid #66a3c5; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__block--subscribe {
        flex: 1 1 33.33%; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__block--subscribe {
        border-left: 1px solid #66a3c5; } }
    .mdl-footer__block--subscribe ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      color: #FFFFFF; }
  .mdl-footer__opening-hours span {
    display: block; }
  .mdl-footer__lower {
    display: flex;
    flex-flow: row wrap;
    display: flex;
    flex: 0 0 auto;
    width: calc(100% - 0.5rem);
    margin-left: 0.25rem;
    margin-right: 0.25rem; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer__lower {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
        margin: 0; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-footer__lower {
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        width: 100%; } }
  .mdl-footer__logo {
    display: inline-flex; }
    .mdl-footer__logo .atm-logo {
      display: inline-flex; }
    .mdl-footer__logo .atm-icon {
      fill: #FFFFFF;
      height: 1rem;
      width: 5.94444rem; }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__logo {
        flex: 0 0 auto;
        width: calc(16.66667% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer__logo {
        flex: 0 0 auto;
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-bottom: 24px;
        margin-left: 0;
        margin-right: 0; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-footer__logo {
        margin-left: 0; } }
  .mdl-footer__legal {
    display: flex;
    flex-flow: row-reverse; }
    @media print, screen and (min-width: 71.75em) {
      .mdl-footer__legal {
        flex: 0 0 auto;
        width: calc(83.33333% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-footer__legal {
        flex: 0 0 auto;
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        flex-flow: column;
        margin-left: 0;
        margin-right: 0; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-footer__legal {
        width: 83.3333%;
        margin-right: 0; } }
    .mdl-footer__legal ul {
      list-style-type: none; }
      .mdl-footer__legal ul li {
        display: inline-block;
        margin-right: 42px;
        line-height: 24px;
        font-size: 16px; }
        @media print, screen and (max-width: 47.68625em) {
          .mdl-footer__legal ul li {
            display: block;
            margin-right: 0;
            margin-bottom: 8px; } }
        .mdl-footer__legal ul li:last-child {
          margin-right: 0;
          margin-bottom: 0; }
        .mdl-footer__legal ul li a,
        .mdl-footer__legal ul li a:hover {
          color: #FFFFFF;
          text-decoration: none; }

.mdl-focusteaser {
  display: flex;
  flex-direction: column;
  border: 1px solid #ece9e5;
  background-color: #FFFFFF;
  text-decoration: none;
  height: 100%;
  transition: all 0.5s; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-focusteaser {
      padding: 0 16px 16px;
      height: auto; } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-focusteaser {
      padding: 0 32px 32px; } }
  @media (hover: hover) {
    .mdl-focusteaser:hover {
      transform: translateY(-8px);
      cursor: pointer;
      box-shadow: 6px 6px 32px 0 rgba(217, 220, 220, 0.8);
      text-decoration: none; } }
  .mdl-focusteaser--big {
    height: auto; }
  .mdl-focusteaser--ishidden {
    display: none; }
  .mdl-focusteaser--isvisible {
    transform: scale(0);
    display: flex; }
  .mdl-focusteaser--fadeIn {
    transform: scale(1); }
  .mdl-focusteaser__focus {
    text-transform: uppercase;
    color: #FFFFFF;
    background: #000000;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 8px;
    margin: 0;
    display: inline-block;
    order: 1;
    padding-top: 6px; }
  .mdl-focusteaser__focus-wrapper {
    font-size: 12px;
    font-family: AkkuratBold, Helvetica, sans-serif;
    letter-spacing: 0.2px;
    line-height: 16px; }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .mdl-focusteaser--big .mdl-focusteaser__focus-wrapper {
      flex: 0 0 auto;
      width: calc(58.33333% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(8.33333% + 1.5rem / 2); } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-focusteaser--big .mdl-focusteaser__focus-wrapper {
      flex: 0 0 auto;
      width: calc(41.66667% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(16.66667% + 1.5rem / 2); } }
  .mdl-focusteaser .atm-heading, .mdl-focusteaser .mdl-text h1, .mdl-text .mdl-focusteaser h1,
  .mdl-focusteaser .mdl-text h2, .mdl-text .mdl-focusteaser h2,
  .mdl-focusteaser .mdl-text h3, .mdl-text .mdl-focusteaser h3,
  .mdl-focusteaser .mdl-text h4, .mdl-text .mdl-focusteaser h4 {
    margin: 16px 0 24px;
    order: 2;
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.2px; }
  .mdl-focusteaser__date {
    margin-bottom: 24px;
    margin-top: 8px;
    font-family: Akkurat, Helvetica, sans-serif;
    color: #7F7D7A;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.6px; }
  .mdl-focusteaser--smalldate .mdl-focusteaser__date {
    order: 2; }
  .mdl-focusteaser--smalldate .atm-heading, .mdl-focusteaser--smalldate .mdl-text h1, .mdl-text .mdl-focusteaser--smalldate h1,
  .mdl-focusteaser--smalldate .mdl-text h2, .mdl-text .mdl-focusteaser--smalldate h2,
  .mdl-focusteaser--smalldate .mdl-text h3, .mdl-text .mdl-focusteaser--smalldate h3,
  .mdl-focusteaser--smalldate .mdl-text h4, .mdl-text .mdl-focusteaser--smalldate h4 {
    margin-bottom: 8px; }
  .mdl-focusteaser--big .atm-heading, .mdl-focusteaser--big .mdl-text h1, .mdl-text .mdl-focusteaser--big h1,
  .mdl-focusteaser--big .mdl-text h2, .mdl-text .mdl-focusteaser--big h2,
  .mdl-focusteaser--big .mdl-text h3, .mdl-text .mdl-focusteaser--big h3,
  .mdl-focusteaser--big .mdl-text h4, .mdl-text .mdl-focusteaser--big h4 {
    margin-top: 40px;
    font-family: AkkuratBold, Helvetica, sans-serif;
    font-size: 24px;
    letter-spacing: -0.26px;
    line-height: 30px; }
    .mdl-focusteaser--big .atm-heading .atm-heading__underline, .mdl-focusteaser--big .mdl-text h1 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h1 .atm-heading__underline, .mdl-focusteaser--big .mdl-text h2 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h2 .atm-heading__underline, .mdl-focusteaser--big .mdl-text h3 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h3 .atm-heading__underline, .mdl-focusteaser--big .mdl-text h4 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h4 .atm-heading__underline {
      border-bottom-width: 6px; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-focusteaser--big .atm-heading .atm-heading__underline, .mdl-focusteaser--big .mdl-text h1 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h1 .atm-heading__underline, .mdl-focusteaser--big .mdl-text h2 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h2 .atm-heading__underline, .mdl-focusteaser--big .mdl-text h3 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h3 .atm-heading__underline, .mdl-focusteaser--big .mdl-text h4 .atm-heading__underline, .mdl-text .mdl-focusteaser--big h4 .atm-heading__underline {
          border-bottom-width: 5px; } }
    @media print, screen and (min-width: 19.875em) {
      .mdl-focusteaser--big .atm-heading, .mdl-focusteaser--big .mdl-text h1, .mdl-text .mdl-focusteaser--big h1,
      .mdl-focusteaser--big .mdl-text h2, .mdl-text .mdl-focusteaser--big h2,
      .mdl-focusteaser--big .mdl-text h3, .mdl-text .mdl-focusteaser--big h3,
      .mdl-focusteaser--big .mdl-text h4, .mdl-text .mdl-focusteaser--big h4 {
        margin-top: 24px;
        font-size: 28px;
        letter-spacing: -0.28px;
        line-height: 32px; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-focusteaser--big .atm-heading, .mdl-focusteaser--big .mdl-text h1, .mdl-text .mdl-focusteaser--big h1,
      .mdl-focusteaser--big .mdl-text h2, .mdl-text .mdl-focusteaser--big h2,
      .mdl-focusteaser--big .mdl-text h3, .mdl-text .mdl-focusteaser--big h3,
      .mdl-focusteaser--big .mdl-text h4, .mdl-text .mdl-focusteaser--big h4 {
        flex: 0 0 auto;
        width: calc(58.33333% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        margin-left: calc(8.33333% + 1.5rem / 2); } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-focusteaser--big .atm-heading, .mdl-focusteaser--big .mdl-text h1, .mdl-text .mdl-focusteaser--big h1,
      .mdl-focusteaser--big .mdl-text h2, .mdl-text .mdl-focusteaser--big h2,
      .mdl-focusteaser--big .mdl-text h3, .mdl-text .mdl-focusteaser--big h3,
      .mdl-focusteaser--big .mdl-text h4, .mdl-text .mdl-focusteaser--big h4 {
        flex: 0 0 auto;
        width: calc(41.66667% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        margin-left: calc(16.66667% + 1.5rem / 2); } }
  .mdl-focusteaser .mdl-text {
    margin-top: 0;
    order: 3;
    margin-bottom: 0; }
    .mdl-focusteaser .mdl-text p {
      font-size: 16px;
      letter-spacing: 0;
      line-height: 24px;
      margin-bottom: 0;
      padding-bottom: 0; }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .mdl-focusteaser--big .mdl-text {
      flex: 0 0 auto;
      width: calc(66.66667% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(25% + 1.5rem / 2); } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-focusteaser--big .mdl-text {
      flex: 0 0 auto;
      width: calc(50% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(33.33333% + 1.5rem / 2);
      left: -0.75rem;
      position: relative; } }

.cv-black .mdl-focusteaser__focus {
  background-color: #7F7D7A; }

.cv-yellow .mdl-focusteaser__focus {
  background-color: #CAA518; }

.cv-pink .mdl-focusteaser__focus {
  background-color: #99294B; }

.cv-green .mdl-focusteaser__focus {
  background-color: #798E30; }

.cv-purple .mdl-focusteaser__focus {
  background-color: #6C4D71; }

.cv-orange .mdl-focusteaser__focus {
  background-color: #C46B2C; }

.mdl-textlinkicon {
  margin-left: calc(16.6667% - 1rem);
  color: #FFFFFF;
  text-decoration: none;
  list-style-type: none;
  margin-bottom: 56px;
  margin-block-start: 0;
  padding-inline-start: 0;
  padding: 12px 0; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-textlinkicon {
      margin-left: 0; } }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .mdl-textlinkicon {
      flex: 0 0 auto;
      width: calc(83.33333% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(8.33333% + 1.5rem / 2);
      margin-left: calc(8.3333% - 1rem); } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-textlinkicon {
      flex: 0 0 auto;
      width: calc(66.66667% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      margin-left: calc(16.66667% + 1.5rem / 2);
      margin-left: calc(16.6667% - 1rem) !important;
      /* stylelint-disable-line declaration-no-important */ } }
  .mdl-textlinkicon--download {
    width: 28px;
    position: relative;
    height: 25px;
    top: 0; }
  .mdl-textlinkicon--external {
    width: 20px;
    height: 25px;
    margin-left: 3px;
    top: 3px;
    position: relative; }
  .mdl-textlinkicon--internal {
    width: 30px;
    height: 25px;
    position: relative;
    top: 3px; }
  .mdl-textlinkicon__iconwrapper {
    width: 50px;
    display: inline-block;
    align-self: flex-start; }
  .mdl-textlinkicon .atm-icon {
    fill: #FFFFFF;
    margin-right: 1em; }
    .mdl-textlinkicon .atm-icon--download {
      vertical-align: middle;
      width: 1.3em;
      height: 1.3em;
      margin-top: -11px; }
    .mdl-textlinkicon .atm-icon--external {
      vertical-align: text-top;
      width: 1.1em;
      height: 1.1em; }
    .mdl-textlinkicon .atm-icon--internal {
      vertical-align: middle;
      margin-top: -3px;
      width: 1.4em;
      height: 1.4em; }
  .mdl-textlinkicon__item {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 12px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-textlinkicon__item {
        padding-left: 0;
        padding-right: 0; } }
    .mdl-textlinkicon__item:last-child {
      margin-bottom: 0; }
    .mdl-textlinkicon__item:hover {
      cursor: pointer;
      background-color: #a891a6; }
  .mdl-textlinkicon__anchor {
    position: relative;
    width: 100%;
    padding: 7px 0;
    text-decoration: none;
    color: #FFFFFF;
    vertical-align: middle;
    display: flex;
    align-items: center; }
  .mdl-textlinkicon__meta {
    white-space: nowrap; }
  .mdl-textlinkicon__linkStr {
    max-width: calc(100% - 50px); }

.mdl-textlinkicon-wrapper {
  background: #6C4D71; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-textlinkicon-wrapper {
      width: 100vw;
      transform: translateX(-50%);
      margin-left: 50%;
      padding: 0 1rem; } }

.mdl-text {
  margin-bottom: 56px; }
  .mdl-text h3:first-child {
    margin-top: 0; }
  .mdl-text p:last-child {
    padding-bottom: 0; }
  .mdl-text ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 18px; }
    .mdl-text ul:last-child {
      padding-bottom: 0; }
  .mdl-text ul li:last-child {
    margin-bottom: 0; }
  .mdl-text ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 18px; }
  .mdl-text ol li:last-child {
    margin-bottom: 0; }
  .mdl-text em {
    font-style: normal; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-text--form {
      margin-right: -0.25rem;
      margin-left: -0.25rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 19.875em) {
    .mdl-text--form {
      margin-right: -0.5rem;
      margin-left: -0.5rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 47.6875em) {
    .mdl-text--form {
      margin-right: -0.75rem;
      margin-left: -0.75rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 71.75em) {
    .mdl-text--form {
      margin-right: -0.75rem;
      margin-left: -0.75rem; } }
  @media screen and (min-width: 47.6875em) and (min-width: 104.8125em) {
    .mdl-text--form {
      margin-right: -0.875rem;
      margin-left: -0.875rem; } }

.mdl-quicklinkstargetgroup {
  margin-top: 50px; }
  .mdl-quicklinkstargetgroup__list {
    display: flex;
    list-style-type: none;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
    margin: 0 auto 32px; }
    .mdl-quicklinkstargetgroup__list--calculator {
      margin-bottom: 0; }
  .mdl-quicklinkstargetgroup__item {
    display: inline-flex;
    align-self: center;
    margin: 0 16px 24px 0; }
    @media print, screen and (min-width: 19.875em) and (max-width: 47.68625em) {
      .mdl-quicklinkstargetgroup__item {
        width: 100%;
        margin: 0 0 16px 0; } }
    .mdl-quicklinkstargetgroup__item:last-child {
      margin-right: 0; }
    .mdl-quicklinkstargetgroup__item--calculator {
      min-width: 288px;
      margin-right: 32px; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-quicklinkstargetgroup__item--calculator {
          min-width: 0;
          width: 100%;
          margin-right: 0; } }
  .mdl-quicklinkstargetgroup__link {
    display: block;
    font-family: SVARotisBold, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: -0.2px;
    border: 1px solid #0069A3;
    color: #0069A3;
    width: 100%;
    height: 58px;
    padding: 16px 24px;
    text-align: center; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-quicklinkstargetgroup__link {
        height: auto; } }
    .mdl-quicklinkstargetgroup__link:hover {
      border: 3px solid #0069A3;
      padding: 14px 22px; }

.mdl-image {
  margin: 0;
  width: 100%; }
  @media all and (min-width: 19.875em) {
    .mdl-image--content-image {
      margin-bottom: 1.33333rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-image--content-image {
      margin-bottom: 2.22222rem; } }
  @media print, screen and (min-width: 19.875em) and (max-width: 47.68625em) {
    .mdl-image--content-image:not(.mdl-image--insert) {
      width: calc(100% + 32px);
      margin-left: -16px; } }
  @media print, screen and (min-width: 19.875em) and (max-width: 47.68625em) {
    .mdl-image--content-image:not(.mdl-image--insert) .mdl-image__caption {
      margin-left: 16px;
      margin-right: 16px; } }
  .mdl-image--no-spacing {
    margin-bottom: 0; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-image--insert {
      flex: 0 0 auto;
      width: 91.66667%;
      margin-left: 0;
      margin-right: 0; } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-image--insert {
      flex: 0 0 auto;
      width: 83.33333%;
      margin-left: 0;
      margin-right: 0; } }
  .mdl-image--lightbox-open .mdl-image__lightbox {
    display: block; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-image--caption-left .mdl-image__caption {
      margin-left: 0%; } }
  .mdl-image__trigger {
    width: 100%;
    cursor: pointer;
    border: 0;
    background: none;
    padding: 0; }
  .mdl-image__image {
    width: 100%;
    vertical-align: middle; }
  .mdl-image__caption {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5; }
    @media print, screen and (min-width: 71.75em) {
      .mdl-image__caption {
        margin-left: 16.66667%; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-image__caption {
        margin-left: 8.33333%; } }
  .mdl-image__lightbox {
    z-index: 1000;
    padding: 2.66667rem 12px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-image__lightbox {
        padding: 56px 24px; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-image__lightbox {
        padding: 5.55556rem 80px; } }
    .mdl-image__lightbox-document {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      width: 100%; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-image__lightbox--portrait {
        padding: 24px 2.66667rem; }
        .mdl-image__lightbox--portrait .mdl-image__lightbox-close {
          right: 0.66667rem; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-image__lightbox--portrait {
        padding: 40px 80px; }
        .mdl-image__lightbox--portrait .mdl-image__lightbox-close {
          right: 1.55556rem; } }
    .mdl-image__lightbox[aria-hidden='true'] {
      display: none; }
    .mdl-image__lightbox[aria-hidden='false'] {
      display: flex; }
  .mdl-image__close-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 1px; }
  .mdl-image__lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-image__lightbox-close {
        top: 16px;
        right: 24px; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-image__lightbox-close {
        top: 2.11111rem;
        right: 1.55556rem; } }
  .mdl-image__close-icon {
    fill: #FFFFFF;
    width: 24px;
    height: 24px; }
  .mdl-image__lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto; }

.lightbox-open {
  overflow-y: hidden; }

.mdl-quicklink-topic {
  background-color: transparent;
  display: flex;
  margin-bottom: 24px; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-quicklink-topic {
      flex: 0 0 auto;
      width: calc(100% - 1rem);
      margin-left: 0.5rem;
      margin-right: 0.5rem; } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-quicklink-topic {
      flex: 0 0 auto;
      width: calc(50% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem; } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-quicklink-topic {
      flex: 0 0 auto;
      width: calc(33.33333% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem; } }
  .mdl-quicklink-topic a {
    text-decoration: none;
    margin-bottom: 0;
    display: inline-flex;
    width: 100%;
    color: #0069A3;
    background-color: #FFFFFF;
    transition: all 0.5s; }
    .mdl-quicklink-topic a:hover {
      transform: translateY(-8px);
      cursor: pointer;
      box-shadow: 6px 6px 32px 0 rgba(217, 220, 220, 0.8);
      margin-bottom: 0; }
  .mdl-quicklink-topic__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    padding: 24px 18px;
    justify-content: space-between;
    overflow: hidden;
    height: 100%; }
    .mdl-quicklink-topic__inner p {
      margin-top: 0; }
  .mdl-quicklink-topic__heading {
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-size: 18px;
    color: #000000;
    letter-spacing: -0.2px;
    line-height: 28px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400; }
  .mdl-quicklink-topic__linkwrapper {
    margin-top: auto;
    width: auto;
    align-self: self-start;
    color: #0069A3;
    text-decoration: none;
    border: none;
    font-size: 16px; }
    .mdl-quicklink-topic__linkwrapper:hover {
      text-decoration: none;
      color: #0069A3; }
    .mdl-quicklink-topic__linkwrapper:after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      display: table; }
    .mdl-quicklink-topic__linkwrapper svg {
      fill: #0069A3;
      width: 0.7em;
      height: 0.7em;
      vertical-align: middle;
      margin-top: -5px; }
  .mdl-quicklink-topic__inner:after, .mdl-quicklink-topic__linkwrapper:after {
    pointer-events: none; }

.mdl-quicklink-topic__wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 12px;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }

.mdl-distributortile {
  text-decoration: none;
  width: 100%;
  color: #0069A3;
  transition: all 0.25s;
  background-color: #FFFFFF;
  display: flex;
  height: 100%; }
  .mdl-distributortile--no-stretch {
    height: auto; }
  .mdl-distributortile--image {
    min-height: 100%; }
    .mdl-distributortile--image .mdl-distributortile__inner {
      padding: 0; }
  .mdl-distributortile:not(.mdl-distributortile--image):not(.mdl-distributortile--stage):hover {
    transform: translateY(-8px);
    cursor: pointer;
    box-shadow: 0.33333rem 0.33333rem 32px 0 rgba(217, 220, 220, 0.8); }
    .mdl-distributortile:not(.mdl-distributortile--image):not(.mdl-distributortile--stage):hover .mdl-distributortile__linkwrapper {
      display: table; }
  .mdl-distributortile--stage {
    height: auto;
    position: relative;
    align-self: flex-end;
    cursor: pointer;
    box-shadow: 0.55556rem 0.55556rem 1.66667rem 0 rgba(0, 0, 0, 0.1); }
    .mdl-distributortile--stage:hover {
      transform: translateY(-0.44444rem);
      box-shadow: 0.55556rem 0.55556rem 1.66667rem 0 rgba(0, 0, 0, 0.2); }
      .mdl-distributortile--stage:hover .mdl-distributortile__linkwrapper {
        transform: translateX(0.44444rem); }
    .mdl-distributortile--stage .mdl-distributortile__linkwrapper {
      transition: transform 0.5s;
      margin-top: 0; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-distributortile--stage .mdl-distributortile__inner {
        display: flex;
        flex-flow: row wrap;
        order: 0; }
      .mdl-distributortile--stage .atm-heading, .mdl-distributortile--stage .mdl-text h1, .mdl-text .mdl-distributortile--stage h1,
      .mdl-distributortile--stage .mdl-text h2, .mdl-text .mdl-distributortile--stage h2,
      .mdl-distributortile--stage .mdl-text h3, .mdl-text .mdl-distributortile--stage h3,
      .mdl-distributortile--stage .mdl-text h4, .mdl-text .mdl-distributortile--stage h4 {
        order: 1;
        width: 100%; }
      .mdl-distributortile--stage .mdl-distributortile__linkwrapper {
        order: 2;
        margin-top: 0; }
      .mdl-distributortile--stage .mdl-text {
        order: 3;
        width: calc(100% - 2.66667rem); } }
  .mdl-distributortile__inner {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    padding: 24px;
    justify-content: space-between;
    overflow: hidden; }
    .mdl-distributortile__inner h3 {
      font-family: SVARotisBold, Helvetica, sans-serif;
      font-size: 22px;
      line-height: 30px;
      margin-top: 0; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-distributortile__inner h3 {
          font-size: 20px; } }
  .mdl-distributortile__teaser {
    margin-top: 16px; }
  .mdl-distributortile__linkwrapper {
    margin-top: auto;
    width: auto;
    align-self: self-start;
    color: #0069A3;
    text-decoration: none;
    border: none; }
    .mdl-distributortile__linkwrapper:hover {
      text-decoration: none;
      color: #0069A3; }
    .mdl-distributortile__linkwrapper:after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      display: table; }
    .mdl-distributortile__linkwrapper .atm-icon {
      fill: #0069A3;
      width: 1.5rem;
      height: 1.5rem;
      vertical-align: middle;
      margin-top: -0.27778rem; }
  .mdl-distributortile__image {
    width: 100%;
    height: auto; }
  @media all and (min-width: 47.6875em) {
    .mdl-distributortile .mdl-image {
      position: absolute;
      overflow: hidden; } }
  .mdl-distributortile .mdl-image__image {
    position: relative; }
  .mdl-distributortile .mdl-text {
    margin-bottom: 0; }

.mdl-header {
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: background-color 0.2s;
  background-color: #FFFFFF;
  position: relative;
  z-index: 100; }
  @media print, screen and (min-width: 19.875em) and (max-width: 47.68625em) {
    .mdl-header--mobile-open {
      background-color: #F0F1F1; } }
  .mdl-header__meta {
    display: flex;
    flex-flow: row wrap;
    flex-flow: row-reverse;
    min-height: 32px; }
    @media print, screen and (min-width: 19.875em) and (max-width: 47.68625em) {
      .mdl-header__meta-wrapper {
        display: none; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-header__meta-wrapper {
        background: linear-gradient(to right, #0e7cbf, #005b8d); } }
  .mdl-header__navigation {
    display: flex;
    flex-flow: row wrap; }
    @media print, screen and (min-width: 19.875em) {
      .mdl-header__navigation-container {
        padding: 8px 0; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-header__navigation-container {
        padding: 16px 0 1.05556rem; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-header__navigation-container {
        padding: 1.83333rem 0 24px; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-header__navigation-container--mobile-nav-open {
        background-color: #F0F1F1; } }
    .mdl-header__navigation-container--mobile-nav-open .mdl-header__mobile-navigation {
      overflow-y: auto;
      min-height: calc(100vh - 2.44444rem); }
  .mdl-header__flyout-container {
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    background: #FFFFFF;
    position: absolute; }
  .mdl-header__logo {
    flex: 1;
    width: 100%;
    align-self: center;
    margin-left: 0; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-header__logo {
        flex: 0 0 auto;
        width: calc(25% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        align-self: flex-start;
        margin-left: 0; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-header__logo {
        max-width: 7.94444rem;
        margin-right: 12px; } }
  .mdl-header__desktop-nav {
    display: flex;
    justify-content: flex-start;
    flex: 2; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-header__desktop-nav {
        display: none; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-header__desktop-nav {
        min-height: 24px; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-header__desktop-nav {
        min-height: 1.66667rem; } }
  .mdl-header__desktop-search {
    flex: 2;
    max-width: 16.11111rem;
    align-self: flex-end;
    justify-content: flex-end; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-header__desktop-search {
        max-width: 170px;
        top: 16px;
        position: absolute;
        right: 0; } }
    @media print, screen and (min-width: 19.875em) and (max-width: 47.68625em) {
      .mdl-header__desktop-search {
        display: none; } }
  .mdl-header__mobile-trigger {
    flex: 0 0 auto;
    width: calc(50% - 0.5rem);
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    cursor: pointer;
    margin-right: 0;
    justify-content: flex-end;
    display: flex;
    min-height: 1.55556rem;
    align-self: center; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-header__mobile-trigger {
        display: none; } }
  .mdl-header__menu-button {
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0; }
    .mdl-header__menu-button .mdl-header__icon--open {
      display: inline-block; }
    .mdl-header__menu-button .mdl-header__menu-icon--close {
      display: none; }
    .mdl-header__menu-button--open .mdl-header__menu-icon--open {
      display: none; }
    .mdl-header__menu-button--open .mdl-header__menu-icon--close {
      display: inline-block; }
  .mdl-header__menu-text {
    line-height: 1.555;
    margin-right: 12px; }
  .mdl-header__mobile-navigation {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, min-height 0.5s;
    background-color: #FFFFFF; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-header__mobile-navigation {
        display: block; } }
  .mdl-header__mobile-footer {
    min-height: 15.77778rem;
    background-color: #0069A3; }

.mdl-distributortiles {
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  margin-bottom: 1.33333rem;
  padding: 32px 0;
  background: #F0F1F1; }
  @media all and (min-width: 19.875em) {
    .mdl-distributortiles {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-distributortiles {
      margin-bottom: 3.11111rem; } }
  .mdl-distributortiles__tiles {
    display: flex;
    margin-bottom: -0.77778rem; }
  .mdl-distributortiles .grid-container, .mdl-distributortiles .lyt-wrapper, .mdl-distributortiles .mdl-footer__container-top, .mdl-distributortiles .mdl-footer__container-bottom, .mdl-distributortiles .mdl-header__meta-container, .mdl-distributortiles .mdl-header__navigation-container, .mdl-distributortiles .mdl-tabnav__scrollarea, .mdl-distributortiles .mdl-tabnav__anchor-list, .mdl-distributortiles .mdl-breadcrumb__wrapper, .mdl-distributortiles .mdl-flyout {
    padding: 0; }

.mdl-stage {
  padding-bottom: 1.33333rem;
  display: flex;
  flex-wrap: wrap;
  position: relative; }
  @media all and (min-width: 19.875em) {
    .mdl-stage {
      padding-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-stage {
      padding-bottom: 3.11111rem; } }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-stage {
      width: calc(100% + 32px);
      margin-left: -16px; } }
  .mdl-stage__image {
    width: 100%;
    padding-top: 44%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-stage__image {
        padding-top: 63%; } }
  .mdl-stage__tile {
    position: relative;
    display: flex;
    max-width: 40rem; }
    .mdl-stage__tile .atm-heading--underline {
      margin-bottom: 38px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-stage__tile .atm-heading__underline {
        border-bottom-width: 4px; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-stage__tile {
        flex: 0 0 auto;
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 0 16px;
        margin-top: -4.33333rem; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-stage__tile {
        flex: 0 0 auto;
        width: calc(83.33333% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        margin-left: calc(8.33333% + 1.5rem / 2);
        margin-top: -5.55556rem; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-stage__tile {
        flex: 0 0 auto;
        width: calc(66.66667% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        margin-left: calc(8.33333% + 1.5rem / 2);
        margin-top: -7.77778rem; } }
  .mdl-stage .mdl-distributortile__linkwrapper {
    margin-top: 0; }
  .mdl-stage .mdl-text p {
    font-family: SVARotisBold, Helvetica, sans-serif; }

.mdl-carousel {
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  margin-bottom: 1.33333rem;
  background-color: #F0F1F1; }
  @media all and (min-width: 19.875em) {
    .mdl-carousel {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-carousel {
      margin-bottom: 3.11111rem; } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-carousel--single .mdl-carousel__content {
      margin-bottom: 3.33333rem; } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-carousel--single .mdl-carousel__slide--portrait-desktop .mdl-carousel__content {
      margin-bottom: 5.88889rem; } }
  .mdl-carousel__slides {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: hidden; }
  .mdl-carousel__slide {
    padding: 56px 0;
    margin-left: 0;
    transition: margin-left 0.5s;
    min-width: 100%; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-carousel__slide {
        padding: 32px 0; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-carousel__slide--portrait-desktop {
        padding: 32px 0; }
        .mdl-carousel__slide--portrait-desktop .mdl-carousel__content {
          margin-bottom: 56px; }
        .mdl-carousel__slide--portrait-desktop .mdl-carousel__image-wrapper {
          margin-left: calc(24px * -2);
          width: 33.33333%;
          padding: 0;
          margin-bottom: 0; } }
  .mdl-carousel__grid-container {
    height: 100%; }
  .mdl-carousel__content-container {
    height: 100%;
    display: flex;
    flex-wrap: nowrap; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-carousel__content-container {
        flex-wrap: wrap; } }
  .mdl-carousel__text {
    background: #FFFFFF;
    padding: 24px; }
    .mdl-carousel__text .mdl-text {
      margin-bottom: 0.66667rem; }
      @media all and (min-width: 47.6875em) {
        .mdl-carousel__text .mdl-text {
          margin-bottom: 1.33333rem; } }
      .mdl-carousel__text .mdl-text:last-child {
        margin-bottom: 0; }
      .mdl-carousel__text .mdl-text p {
        padding-bottom: 0; }
  .mdl-carousel__textlink {
    text-decoration: none; }
    .mdl-carousel__textlink:hover {
      border-bottom: none;
      text-decoration: none; }
  .mdl-carousel__textlink-wrapper:hover {
    cursor: pointer; }
    .mdl-carousel__textlink-wrapper:hover .mdl-carousel__textlink-icon {
      margin-left: 12px;
      transition: 0.3s all ease-in; }
  .mdl-carousel .mdl-carousel__textlink-icon {
    transition: 0.3s all ease-out; }
  .mdl-carousel__icon-textlink {
    fill: #0069A3;
    width: 0.8em;
    height: 0.8em;
    margin-left: 8px;
    top: 2px;
    position: relative; }
    .mdl-carousel__icon-textlink:hover {
      margin-left: 12px; }
  .mdl-carousel__alert {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 1px; }
  .mdl-carousel__content {
    flex: 0 0 auto;
    width: calc(41.66667% - 0.5rem);
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    align-self: flex-end;
    z-index: 1; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-carousel__content {
        flex: 0 0 auto;
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        order: 2; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-carousel__content {
        margin-top: 56px;
        align-self: flex-start; } }

@media print, screen and (min-width: 47.6875em) and (min-width: 19.875em) {
  .mdl-carousel__content {
    padding-right: 0.625rem;
    padding-left: 0.625rem; } }

@media print, screen and (min-width: 47.6875em) and (min-width: 47.6875em) {
  .mdl-carousel__content {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }
  .mdl-carousel__image {
    width: 100%;
    height: auto; }
    .mdl-carousel__image-wrapper {
      width: 66.66667%;
      margin-left: -8.33333%;
      align-self: center;
      margin-bottom: 24px; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-carousel__image-wrapper {
          flex: 0 0 auto;
          width: calc(100% - 1rem);
          margin-left: 0.5rem;
          margin-right: 0.5rem;
          order: 1;
          margin-bottom: 16px; } }
      @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
        .mdl-carousel__image-wrapper {
          align-self: flex-start; } }

@media print, screen and (min-width: 47.6875em) and (min-width: 19.875em) {
  .mdl-carousel__image-wrapper {
    padding-right: 0.625rem;
    padding-left: 0.625rem; } }

@media print, screen and (min-width: 47.6875em) and (min-width: 47.6875em) {
  .mdl-carousel__image-wrapper {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }
  .mdl-carousel__navigation {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    margin-right: 20%;
    align-items: center; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-carousel__navigation {
        margin-top: 16px;
        margin-right: 0;
        justify-content: flex-end; } }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-carousel__navigation {
        margin-left: 12.5%;
        margin-right: 0;
        justify-content: flex-start; } }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-carousel__navigation--desktop {
        display: none; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-carousel__navigation--mobile {
        display: none; } }
  .mdl-carousel__index-wrapper {
    margin-right: 24px; }
  .mdl-carousel__button {
    padding: 0.5rem;
    cursor: pointer;
    height: 2rem;
    width: 2rem;
    border: 0;
    background-color: #0069A3;
    display: inline-block;
    align-items: center;
    justify-content: center; }
  .mdl-carousel__icon {
    fill: #FFFFFF;
    width: 1rem;
    height: 1rem; }
  .lightbox-open .mdl-carousel {
    transform: none;
    width: 0;
    overflow: hidden; }

.mdl-tabnav {
  margin-bottom: 1.33333rem;
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  width: 100vw;
  margin-top: -32px; }
  @media all and (min-width: 19.875em) {
    .mdl-tabnav {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-tabnav {
      margin-bottom: 3.11111rem; } }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-tabnav {
      margin-top: -40px; } }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .mdl-tabnav {
      margin-top: -64px; } }
  .mdl-tabnav--fixed {
    transform: none; }
    .mdl-tabnav--fixed .mdl-tabnav__fixer {
      position: fixed;
      top: 0;
      left: 0;
      right: 0; }
  .mdl-tabnav__fixer {
    z-index: 100;
    box-shadow: 0 0.27778rem 0.55556rem 0 rgba(217, 220, 220, 0.5); }
  .mdl-tabnav__tabs {
    background-color: #F0F1F1;
    min-height: 64px;
    width: 100%;
    z-index: 1; }
    .mdl-tabnav__tabs:empty {
      min-height: 0; }
  .mdl-tabnav__scroller {
    cursor: pointer;
    position: absolute;
    top: 12px;
    display: none;
    align-items: center;
    height: 2.33333rem;
    width: auto;
    z-index: 1;
    padding: 0 12px;
    background: #F0F1F1;
    border: 0; }
    .mdl-tabnav__scroller:focus {
      outline: none; }
    .mdl-tabnav__scroller:after {
      content: '';
      position: absolute;
      top: 0;
      height: 100%;
      width: 56px;
      opacity: 0.5; }
    .mdl-tabnav__scroller--active {
      display: flex; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-tabnav__scroller--active {
          display: none; } }
    .mdl-tabnav__scroller--left {
      left: 0;
      border-right: 0.05556rem solid #000000; }
      .mdl-tabnav__scroller--left:after {
        right: -0.05556rem;
        transform: translateX(100%);
        background: linear-gradient(90deg, #F0F1F1 0%, rgba(250, 250, 250, 0) 87%); }
    .mdl-tabnav__scroller--right {
      right: 0;
      border-left: 0.05556rem solid #000000; }
      .mdl-tabnav__scroller--right:after {
        left: -0.05556rem;
        transform: translateX(-100%);
        background: linear-gradient(90deg, rgba(250, 250, 250, 0) 0%, #F0F1F1 87%); }
    .mdl-tabnav__scroller .atm-icon {
      width: 16px;
      height: 16px; }
  .mdl-tabnav__scrollarea {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* hide scrollbar in IE */
    scrollbar-width: none;
    /* hide scrollbar in FF */
    /* Hide scrollbar for Chrome, Safari and Opera */ }
    .mdl-tabnav__scrollarea::-webkit-scrollbar {
      display: none; }
    .mdl-tabnav__scrollarea--active .mdl-tabnav__tab-list {
      justify-content: flex-start; }
    .mdl-tabnav__scrollarea--active .mdl-tabnav__anchor-list {
      justify-content: flex-start; }
  .mdl-tabnav__tab-list {
    min-width: 100%;
    display: flex;
    height: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 12px 0; }
    .mdl-tabnav__tab-list-item {
      margin: 0 3px;
      color: #000000; }
      .mdl-tabnav__tab-list-item--active {
        color: #0069A3;
        border: 1px solid #0069A3; }
    .mdl-tabnav__tab-list-link {
      font-family: Akkurat, Helvetica, sans-serif;
      display: inline-block;
      color: inherit;
      padding: 12px;
      transition: color 0.5s;
      text-decoration: none;
      font-size: 14px;
      line-height: 1.1429;
      white-space: nowrap; }
      .mdl-tabnav__tab-list-link:hover {
        color: #0069A3; }
  .mdl-tabnav__anchors {
    position: relative;
    background-color: #FFFFFF;
    min-height: 56px;
    z-index: 1; }
    .mdl-tabnav__anchors-indicator {
      width: 0;
      transition: width 0.3s;
      position: absolute;
      bottom: 0;
      height: 0.16667rem;
      background-color: #0069A3; }
  .mdl-tabnav__anchor-list {
    display: flex;
    height: 100%;
    min-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 1.11111rem 0; }
    .mdl-tabnav__anchor-list-item {
      margin: 0 12px;
      color: #000000;
      line-height: 1; }
    .mdl-tabnav__anchor-list-link {
      font-family: Akkurat, Helvetica, sans-serif;
      display: inline-block;
      color: inherit;
      transition: color 0.5s;
      text-decoration: none;
      font-size: 14px;
      line-height: 1.1429;
      white-space: nowrap; }
      .mdl-tabnav__anchor-list-link:hover {
        color: #0069A3; }

.mdl-accordion {
  margin-left: 0;
  margin-bottom: 56px; }
  @media print, screen and (max-width: 71.74875em) {
    .mdl-accordion {
      margin-bottom: 40px; } }
  .mdl-accordion__header {
    max-width: none;
    border-bottom: 1px solid #BDC0C3;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px; }
    .mdl-accordion__header .atm-heading, .mdl-accordion__header .mdl-text h1, .mdl-text .mdl-accordion__header h1,
    .mdl-accordion__header .mdl-text h2, .mdl-text .mdl-accordion__header h2,
    .mdl-accordion__header .mdl-text h3, .mdl-text .mdl-accordion__header h3,
    .mdl-accordion__header .mdl-text h4, .mdl-text .mdl-accordion__header h4 {
      font-family: SVARotis, Helvetica, sans-serif;
      font-size: 1.44444rem;
      width: calc(100% - 318px);
      color: #000000;
      letter-spacing: -0.01111rem;
      line-height: 1.25;
      margin-bottom: 0;
      padding-bottom: 0; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-accordion__header {
        display: block; }
        .mdl-accordion__header .atm-heading, .mdl-accordion__header .mdl-text h1, .mdl-text .mdl-accordion__header h1,
        .mdl-accordion__header .mdl-text h2, .mdl-text .mdl-accordion__header h2,
        .mdl-accordion__header .mdl-text h3, .mdl-text .mdl-accordion__header h3,
        .mdl-accordion__header .mdl-text h4, .mdl-text .mdl-accordion__header h4 {
          margin-bottom: 16px;
          width: 100%; } }
  .mdl-accordion__headerContainer {
    margin-left: calc(10% + 0.5rem / 2);
    display: flex;
    justify-content: space-between; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-accordion__headerContainer {
        display: block;
        margin-left: 0; } }
  .mdl-accordion__span {
    margin-right: 32px; }
  .mdl-accordion__icon__close .atm-icon {
    fill: #bdc0c3;
    width: 23px;
    height: 23px; }
  .mdl-accordion__icon__open .atm-icon {
    fill: #0069A3;
    width: 23px;
    height: 23px; }
  .mdl-accordion__actions {
    display: flex;
    align-items: center;
    padding-left: 24px; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-accordion__actions {
        padding-left: 0; } }
  .mdl-accordion__action {
    padding-right: 0;
    margin-left: 42px;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    width: auto; }
    .mdl-accordion__action:first-child {
      margin-left: 0;
      padding-left: 0; }
    .mdl-accordion__action .atm-icon {
      fill: #0069A3;
      margin-right: 8px;
      width: 23px;
      height: 23px; }
    .mdl-accordion__action span {
      color: #000000; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-accordion__action {
        margin-left: 0;
        padding-left: 0;
        margin-right: 1em; }
        .mdl-accordion__action .atm-icon {
          margin-left: 0;
          padding-left: 0; } }
    .mdl-accordion__action:hover {
      cursor: pointer; }
    .mdl-accordion__action:disabled {
      cursor: auto; }
      .mdl-accordion__action:disabled .atm-icon {
        fill: #bdc0c3; }
      .mdl-accordion__action:disabled span {
        color: #bdc0c3; }

.mdl-accordionitem {
  border-bottom: 0.05556rem solid #BDC0C3; }
  .mdl-accordionitem__headerContainer {
    margin-left: calc(10% + 0.5rem / 2);
    display: flex;
    text-align: left;
    line-height: 1.5;
    color: #000000; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-accordionitem__headerContainer {
        margin-left: calc(8.33333% + 1.5rem / 2); } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-accordionitem__headerContainer {
        margin-left: 50px; } }
  .mdl-accordionitem__iconContainer {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    width: auto;
    padding-top: 4px; }
  .mdl-accordionitem__action {
    padding: 0;
    display: flex;
    border: none;
    background: none;
    width: 100%; }
    .mdl-accordionitem__action:hover {
      cursor: pointer; }
  .mdl-accordionitem__header {
    margin-top: 16px;
    display: flex; }
    .mdl-accordionitem__header .atm-heading, .mdl-accordionitem__header .mdl-text h1, .mdl-text .mdl-accordionitem__header h1,
    .mdl-accordionitem__header .mdl-text h2, .mdl-text .mdl-accordionitem__header h2,
    .mdl-accordionitem__header .mdl-text h3, .mdl-text .mdl-accordionitem__header h3,
    .mdl-accordionitem__header .mdl-text h4, .mdl-text .mdl-accordionitem__header h4 {
      margin: 0;
      transition: margin-bottom 0.3s ease; }
    .mdl-accordionitem__header .atm-icon {
      margin: 0;
      fill: #0069A3;
      width: 23px;
      height: 23px; }
  .mdl-accordionitem--open .mdl-accordionitem__header .atm-heading, .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h1, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h1,
  .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h2, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h2,
  .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h3, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h3,
  .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h4, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h4 {
    margin-bottom: 8px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-accordionitem--open .mdl-accordionitem__header .atm-heading, .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h1, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h1,
      .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h2, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h2,
      .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h3, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h3,
      .mdl-accordionitem--open .mdl-accordionitem__header .mdl-text h4, .mdl-text .mdl-accordionitem--open .mdl-accordionitem__header h4 {
        margin-bottom: 24px; } }
  .mdl-accordionitem--open .mdl-accordionitem__icon--open {
    display: none; }
  .mdl-accordionitem--open .mdl-accordionitem__icon--close {
    display: inline-block; }
  .mdl-accordionitem--with-overflow .mdl-accordionitem__content {
    overflow: visible; }
  .mdl-accordionitem__content {
    margin-left: calc(10% + 0.5rem / 2);
    margin-bottom: 16px;
    overflow: hidden;
    transition-duration: 500ms; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-accordionitem__content {
        margin-left: calc(8.33333% + 1.5rem / 2); } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-accordionitem__content {
        margin-left: 0;
        max-width: 100%; } }
    .mdl-accordionitem__content .mdl-text p {
      margin-top: 0; }
    .mdl-accordionitem__content .text-video:last-child .mdl-image_text,
    .mdl-accordionitem__content .accordionimage:last-child .mdl-image,
    .mdl-accordionitem__content .accordiontext:last-child .mdl-text,
    .mdl-accordionitem__content .textimage:last-child .mdl-image_text {
      margin-bottom: 0; }
  .mdl-accordionitem__icon {
    justify-content: center; }
    .mdl-accordionitem__icon--open {
      display: inline-block; }
    .mdl-accordionitem__icon--close {
      display: none; }
  .mdl-accordionitem__title {
    width: 100%; }
    .mdl-accordionitem__title .atm-heading, .mdl-accordionitem__title .mdl-text h1, .mdl-text .mdl-accordionitem__title h1,
    .mdl-accordionitem__title .mdl-text h2, .mdl-text .mdl-accordionitem__title h2,
    .mdl-accordionitem__title .mdl-text h3, .mdl-text .mdl-accordionitem__title h3,
    .mdl-accordionitem__title .mdl-text h4, .mdl-text .mdl-accordionitem__title h4 {
      font-family: SVARotisBold, Helvetica, sans-serif;
      font-size: 22px;
      color: #000000;
      letter-spacing: -0.2px;
      line-height: 30px; }
  @media all and (min-width: 19.875em) {
    .mdl-accordionitem .mdl-text {
      margin-bottom: 1.33333rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-accordionitem .mdl-text {
      margin-bottom: 2.22222rem; } }

.mdl-sticky-element {
  margin-bottom: 0.88889rem;
  display: flex;
  justify-content: flex-end; }
  .mdl-sticky-element__actions {
    min-width: 7.77778rem;
    display: block;
    width: auto;
    bottom: 0;
    position: fixed;
    transform: translateY(calc(100% + 16px));
    transition: transform 0.3s; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-sticky-element__actions {
        width: 2rem;
        min-width: 0; } }
    .mdl-sticky-element__actions--visible {
      transform: translateY(-16px); }
    .mdl-sticky-element__actions--bottom {
      position: relative;
      transform: translateY(0); }
  .mdl-sticky-element__action {
    text-transform: uppercase;
    font-size: 12px;
    font-family: AkkuratBold, Helvetica, sans-serif;
    line-height: 1.3636;
    padding: 12px;
    color: #0069A3;
    display: flex;
    width: 100%;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    min-height: 2rem;
    background-color: #FFFFFF;
    align-items: center;
    border-bottom: 0.05556rem solid #D9DCDC;
    transition: background-color 0.5s, box-shadow 0.5s; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-sticky-element__action {
        border-radius: 50%;
        justify-content: center;
        height: 2rem;
        margin-bottom: 12px;
        padding: 0;
        box-shadow: 4px 4px 0.55556rem 0 rgba(0, 0, 0, 0.2); } }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-sticky-element__action:hover {
        background-color: #0069A3; }
        .mdl-sticky-element__action:hover .atm-icon {
          fill: #FFFFFF; } }
    @media print, screen and (min-width: 71.75em) {
      .mdl-sticky-element__action:hover {
        box-shadow: 4px 4px 0.55556rem 0 rgba(0, 0, 0, 0.2); } }
    .mdl-sticky-element__action:last-child {
      border-bottom: 0; }
      @media print, screen and (max-width: 71.74875em) {
        .mdl-sticky-element__action:last-child {
          margin-bottom: 0; } }
    .mdl-sticky-element__action-text {
      margin-left: 8px; }
      @media print, screen and (max-width: 71.74875em) {
        .mdl-sticky-element__action-text {
          border: 0;
          clip: rect(0 0 0 0);
          height: 1px;
          margin: -1px !important;
          overflow: hidden;
          padding: 0 !important;
          position: absolute;
          width: 1px; } }
    .mdl-sticky-element__action--contact .atm-icon {
      width: 1.11111rem;
      height: 1.11111rem; }
    @media print, screen and (min-width: 71.75em) {
      .mdl-sticky-element__action--top:hover .atm-icon {
        transform: translateY(-0.22222rem); } }
    .mdl-sticky-element__action--top .atm-icon {
      width: 16px;
      height: 16px; }
    .mdl-sticky-element__action .atm-icon {
      fill: #0069A3;
      transition: all 0.5s; }

.mdl-table {
  width: calc(100% + 64px);
  border-collapse: separate;
  border-spacing: 32px 0;
  table-layout: fixed;
  margin-left: -32px;
  transition: 0.1s all; }
  .mdl-table__heading-wrapper {
    display: flex;
    width: 100%;
    margin-bottom: 32px; }
    @media print {
      .mdl-table__heading-wrapper {
        display: block; } }
  .mdl-table__h {
    flex: 2; }
  .mdl-table__heading {
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.2px;
    line-height: 30px;
    display: flex;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-right: 1px solid #D9DCDC; }
    .mdl-table__heading:after {
      content: '';
      border-top: 1px solid #D9DCDC;
      margin: 14px 16px;
      flex: 1 0 20px;
      background: transparent;
      position: relative;
      height: 1px; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-table__heading:after {
          display: none; } }
    .mdl-table__heading:before {
      position: fixed;
      bottom: 2rem;
      display: block;
      color: #900;
      background: #FFFFFF; }
  .mdl-table__icons {
    display: flex; }
    @media print {
      .mdl-table__icons {
        display: none; } }
  .mdl-table__download, .mdl-table__print {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .mdl-table__download {
    border-right: 1px solid #D9DCDC; }
  .mdl-table__download-anchor {
    display: block;
    line-height: 1; }
    .mdl-table__download-anchor .atm-icon {
      width: 1.4em;
      height: 1.4em;
      fill: #0069A3; }
  .mdl-table th,
  .mdl-table td {
    vertical-align: top;
    padding: 16px 0;
    word-break: break-word;
    font-family: Akkurat, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: -0.35px;
    line-height: 20px;
    font-weight: 400;
    border-collapse: separate;
    text-align: left; }
    .mdl-table th.strong,
    .mdl-table td.strong {
      font-weight: 700; }
  .mdl-table th.mdl-table__print-title {
    font-family: AkkuratBold, Helvetica, sans-serif; }
  .mdl-table td,
  .mdl-table tbody th {
    border-bottom: 1px solid #BDC0C3; }
  .mdl-table thead tr:first-child th,
  .mdl-table tr:last-child td,
  .mdl-table tr:last-child th {
    border-bottom: 2px solid #000000; }
  .mdl-table td p,
  .mdl-table th p {
    margin-block-start: 0;
    margin-block-end: 0; }
  .mdl-table__opener, .mdl-table__closer {
    text-transform: uppercase;
    text-align: center;
    border: none;
    background-color: #FFFFFF;
    margin: 0 auto;
    width: 100%;
    font-family: AkkuratBold, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    z-index: 2; }
    .mdl-table__opener svg, .mdl-table__closer svg {
      display: block;
      fill: #0069A3;
      margin: 1em auto;
      width: 2em;
      height: 2em;
      position: relative;
      left: -12px;
      top: -20px;
      z-index: 99; }
    .mdl-table__opener:hover, .mdl-table__closer:hover {
      cursor: pointer;
      color: #005C8F; }
      .mdl-table__opener:hover svg, .mdl-table__closer:hover svg {
        fill: #005C8F; }
  .mdl-table__shadowline {
    width: 100%;
    opacity: 0.6;
    height: 20px;
    background-color: #FFFFFF;
    display: block;
    z-index: 1;
    box-shadow: 0 15px 20px 0 rgba(189, 192, 195, 0.5);
    position: relative;
    top: 56px;
    transition: all 0.1s; }
    .mdl-table__shadowline.closed {
      opacity: 0; }
  .mdl-table__iconcircle {
    background-color: #FFFFFF;
    width: 4em;
    height: 4em;
    display: block;
    border-radius: 2em;
    border: 2em solid #FFFFFF;
    margin: 1em auto;
    position: relative;
    z-index: 99;
    box-shadow: 0 15px 20px 0 rgba(189, 192, 195, 0.5); }
  .mdl-table__opener {
    display: block;
    opacity: 1;
    height: auto;
    transition: all 0.1s; }
    .mdl-table__opener.closed {
      opacity: 0;
      height: 0;
      width: 0; }
  .mdl-table__closer {
    display: block;
    opacity: 0;
    height: 0;
    width: 0;
    transition: all 0.1s; }
    .mdl-table__closer.closed {
      opacity: 1;
      height: auto;
      width: auto; }
  .mdl-table__wrapper {
    max-height: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.7s;
    will-change: transform;
    padding: 0; }
    .mdl-table__wrapper:focus {
      outline: none; }
    .mdl-table__wrapper.open {
      max-height: none;
      height: auto; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-table__wrapper {
        overflow-x: auto;
        width: 100%; }
        .mdl-table__wrapper table {
          width: 300vw; } }
    @media print {
      .mdl-table__wrapper table {
        width: 100%;
        max-width: 100%; } }
  .mdl-table__outer {
    margin: 64px 0 40px 0; }
    .mdl-table__outer .mdl-table__textmodulWrapper {
      padding-top: 32px; }
    .mdl-table__outer .mdl-text {
      margin-bottom: 0; }
    .mdl-table__outer p,
    .mdl-table__outer .mdl-text {
      font-family: Akkurat, Helvetica, sans-serif;
      font-size: 14px;
      letter-spacing: -0.35px;
      line-height: 20px;
      font-weight: 400; }
      @media print, screen and (min-width: 47.6875em) {
        .mdl-table__outer p p,
        .mdl-table__outer .mdl-text p {
          width: 40%; } }
  .mdl-table__total-str, .mdl-table__total-amount {
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: -0.2px;
    margin-right: 8px; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-table__total-str, .mdl-table__total-amount {
        font-size: 18px;
        line-height: 32px; } }
    @media print {
      .mdl-table__total-str, .mdl-table__total-amount {
        font-family: Akkurat, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 20px;
        margin-right: 0; } }
  .mdl-table__total-str--small {
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0; }
  .mdl-table__info-toggler.open {
    background-color: #F0F1F1; }
  .mdl-table__info-toggler.isActive th,
  .mdl-table__info-toggler.isActive td {
    border-bottom: none; }
  .mdl-table__info-toggler p {
    padding-right: 20px; }
  .mdl-table__info-toggler:hover {
    cursor: pointer; }
    .mdl-table__info-toggler:hover .atm-icon {
      stroke: #0069A3; }
  .mdl-table__iconwrapper {
    float: right;
    position: relative;
    right: 0;
    top: 0; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-table__iconwrapper {
        float: left;
        left: 0;
        display: inline-block;
        margin-right: 1em; } }
  .mdl-table__info-toggler-icon-down, .mdl-table__info-toggler-icon-up {
    opacity: 0;
    width: 0;
    height: 0;
    transition: all 0.3s; }
    .mdl-table__info-toggler-icon-down.open, .mdl-table__info-toggler-icon-up.open {
      fill: #0069A3;
      width: 1em;
      height: 1em;
      opacity: 1;
      transition: all 0.3s; }
  .mdl-table th.mdl-table__cell--no-border,
  .mdl-table td.mdl-table__cell--no-border {
    border-bottom: 0; }
  .mdl-table td.mdl-table__cell--ipv-left,
  .mdl-table th.mdl-table__cell--ipv-left {
    width: 76%;
    text-align: left; }
  .mdl-table td.mdl-table__cell--ipv-right,
  .mdl-table th.mdl-table__cell--ipv-right {
    width: 34%;
    text-align: right; }
  .mdl-table td.mdl-table__cell--number,
  .mdl-table th.mdl-table__cell--number {
    text-align: right; }

.mdl-table td.mdl-table__addtl-row-infos,
.mdl-table th.mdl-table__addtl-row-infos {
  background-color: #f7f7f7;
  line-height: 0;
  letter-spacing: -0.21px;
  border-bottom: none;
  opacity: 0;
  height: 0;
  padding: 0 20px;
  transition: 0.3s all; }
  .mdl-table td.mdl-table__addtl-row-infos.open,
  .mdl-table th.mdl-table__addtl-row-infos.open {
    padding: 16px 20px 16px 20px;
    height: auto;
    line-height: 28px;
    opacity: 1;
    border-bottom: 1px solid #D9DCDC;
    transition: 0.3s all; }

.text + .tabelle .mdl-table__outer {
  margin-top: 8px; }

.mdl-socialmediaicons {
  margin-bottom: 56px; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-socialmediaicons {
      margin-bottom: 40px; } }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .mdl-socialmediaicons {
      margin-bottom: 64px; } }
  .mdl-socialmediaicons a {
    line-height: 1;
    display: inline-block;
    margin-right: 1em; }

.mdl-breadcrumb {
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  margin-bottom: 1.33333rem; }
  @media all and (min-width: 19.875em) {
    .mdl-breadcrumb {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-breadcrumb {
      margin-bottom: 3.11111rem; } }
  .mdl-breadcrumb__wrapper {
    display: flex; }
  .mdl-breadcrumb__scrollarea {
    overflow: hidden; }
  .mdl-breadcrumb__scroller {
    background: none;
    display: none;
    border: 0;
    padding: 0;
    min-height: 0.77778rem;
    min-width: 0.77778rem;
    cursor: pointer; }
    .mdl-breadcrumb__scroller--left {
      margin-right: 16px; }
    .mdl-breadcrumb__scroller--right {
      margin-left: 16px; }
    .mdl-breadcrumb__scroller--active {
      display: flex; }
  .mdl-breadcrumb__breadcrumbs {
    transition: transform 0.2s;
    transform: translateX(0); }
  .mdl-breadcrumb__list {
    display: flex; }
  .mdl-breadcrumb__item {
    padding: 0 12px;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    font-size: 14px;
    line-height: 1; }
    .mdl-breadcrumb__item:after {
      content: '/';
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(50%, -50%);
      font-size: 14px;
      color: #7F7D7A;
      line-height: 1; }
    .mdl-breadcrumb__item:first-of-type {
      padding-left: 0; }
    .mdl-breadcrumb__item:last-of-type {
      padding-right: 0; }
      .mdl-breadcrumb__item:last-of-type:after {
        content: none; }
  .mdl-breadcrumb__link {
    text-decoration: none;
    color: #787673;
    font-size: 14px;
    line-height: 1.1429;
    white-space: nowrap;
    display: inline-block;
    vertical-align: text-bottom; }
    .mdl-breadcrumb__link--active {
      color: #000000;
      overflow: hidden;
      text-overflow: ellipsis; }
    .mdl-breadcrumb__link--ellipsis {
      max-width: 11.11111rem; }

.mdl-overlay {
  /* the bubble element, added inside the toggletip live region */ }
  .mdl-overlay__trigger {
    position: relative;
    display: inline-block; }
  .mdl-overlay__bubble {
    display: inline-block;
    position: absolute;
    left: calc(-336px / 2);
    top: 38px;
    width: 336px;
    padding: 0;
    background: #FFFFFF;
    color: #000000;
    box-shadow: 6px 6px 32px 0 rgba(217, 220, 220, 0.8);
    z-index: 200; }
    .mdl-overlay__bubble .mdl-text {
      margin-bottom: 0; }
    .mdl-overlay__bubble p:last-child {
      padding-bottom: 0; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-overlay__bubble {
        left: 0;
        width: 90vw; } }
  .mdl-overlay__bubble-inner {
    padding: 24px;
    display: block;
    max-height: 582px;
    overflow-y: auto; }
    .mdl-overlay__bubble-inner p {
      font-family: SVARotis, Helvetica, sans-serif;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: -0.21px;
      color: #000000;
      font-weight: 400;
      margin-top: 0; }
      .mdl-overlay__bubble-inner p b {
        font-family: SVARotisBold, Helvetica, sans-serif;
        font-weight: 400; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-overlay__bubble-inner {
        max-height: 60vh; } }
  .mdl-overlay__close-container {
    background: linear-gradient(to left, #841335, #99294b, #b6375d);
    color: #FFFFFF;
    text-align: right;
    width: 100%;
    display: inline-block;
    padding: 12px;
    font-size: 0.9rem; }
    .mdl-overlay__close-container:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-bottom: 18px solid #99294b;
      position: absolute;
      left: calc((336px / 2) - 12px);
      top: -18px;
      background-color: transparent; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-overlay__close-container:before {
          display: none; } }
    .mdl-overlay__close-container svg {
      width: 1.2em;
      height: 1.2em;
      vertical-align: top; }
  .mdl-overlay button {
    border: none;
    background: none;
    -webkit-appearance: none;
    display: inline-block;
    width: auto;
    padding: 0;
    margin: 0; }
    .mdl-overlay button:hover {
      cursor: pointer; }
    .mdl-overlay button.mdl-overlay__trigger-button {
      margin-right: 5px; }
  .mdl-overlay__trigger-button {
    color: #0069A3; }
    .mdl-overlay__trigger-button svg {
      fill: #0069A3;
      border: 1px solid #0069A3;
      vertical-align: top;
      padding: 2px; }
  .mdl-overlay__closer-button {
    color: #FFFFFF; }
    .mdl-overlay__closer-button svg {
      fill: #FFFFFF; }
  .mdl-overlay__status {
    position: relative; }

.is-hidden {
  display: none; }

.mdl-overlay__bubble-inner.mdl-text ul li {
  width: 100%;
  display: block;
  padding-right: 0; }

.mdl-distributorindex__wrapper {
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  padding: 32px 0 0;
  display: flex;
  background: #eff1f2; }
  .mdl-distributorindex__wrapper .cell {
    display: grid; }

.mdl-distributorindex__inner-wrapper {
  margin-bottom: 32px;
  background-color: transparent; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-distributorindex__inner-wrapper {
      margin-bottom: 0; } }

.mdl-distributorindex {
  padding: 25px 24px;
  height: 100%;
  transition: transform 0.5s;
  background: #FFFFFF; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-distributorindex {
      height: auto;
      margin-bottom: 36px; } }
  .mdl-distributorindex ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0; }
  .mdl-distributorindex li {
    margin-bottom: 16px; }
    .mdl-distributorindex li .atm-textlink, .mdl-distributorindex li .mdl-text a, .mdl-text .mdl-distributorindex li a, .mdl-distributorindex li .mdl-table th a, .mdl-table th .mdl-distributorindex li a,
    .mdl-distributorindex li .mdl-table td a, .mdl-table td .mdl-distributorindex li a {
      color: #0069A3;
      border-bottom: 0; }
      .mdl-distributorindex li .atm-textlink:hover, .mdl-distributorindex li .mdl-text a:hover, .mdl-text .mdl-distributorindex li a:hover, .mdl-distributorindex li .mdl-table th a:hover, .mdl-table th .mdl-distributorindex li a:hover,
      .mdl-distributorindex li .mdl-table td a:hover, .mdl-table td .mdl-distributorindex li a:hover {
        border-bottom: solid; }
    .mdl-distributorindex li:last-of-type {
      margin-bottom: 0; }
  .mdl-distributorindex__title-link {
    display: block;
    color: inherit;
    text-decoration: none; }
  .mdl-distributorindex .atm-heading, .mdl-distributorindex .mdl-text h1, .mdl-text .mdl-distributorindex h1,
  .mdl-distributorindex .mdl-text h2, .mdl-text .mdl-distributorindex h2,
  .mdl-distributorindex .mdl-text h3, .mdl-text .mdl-distributorindex h3,
  .mdl-distributorindex .mdl-text h4, .mdl-text .mdl-distributorindex h4 {
    margin-bottom: 31px;
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 1.1429;
    letter-spacing: -0.2px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-distributorindex .atm-heading, .mdl-distributorindex .mdl-text h1, .mdl-text .mdl-distributorindex h1,
      .mdl-distributorindex .mdl-text h2, .mdl-text .mdl-distributorindex h2,
      .mdl-distributorindex .mdl-text h3, .mdl-text .mdl-distributorindex h3,
      .mdl-distributorindex .mdl-text h4, .mdl-text .mdl-distributorindex h4 {
        font-size: 20px;
        line-height: 1.4; } }
    .mdl-distributorindex .atm-heading .atm-heading__underline, .mdl-distributorindex .mdl-text h1 .atm-heading__underline, .mdl-text .mdl-distributorindex h1 .atm-heading__underline, .mdl-distributorindex .mdl-text h2 .atm-heading__underline, .mdl-text .mdl-distributorindex h2 .atm-heading__underline, .mdl-distributorindex .mdl-text h3 .atm-heading__underline, .mdl-text .mdl-distributorindex h3 .atm-heading__underline, .mdl-distributorindex .mdl-text h4 .atm-heading__underline, .mdl-text .mdl-distributorindex h4 .atm-heading__underline {
      font-family: SVARotisBold, Helvetica, sans-serif;
      padding-bottom: 4px;
      border-bottom-width: 4px;
      border-bottom-style: solid;
      border-color: #000000; }

.mdl-main_navigation {
  width: 100%;
  margin-top: 0.16667rem; }
  .mdl-main_navigation__list {
    width: 100%;
    display: flex; }
  .mdl-main_navigation__item {
    margin: 0 16px; }
  .mdl-main_navigation__link {
    font-family: SVARotisBold, Helvetica, sans-serif;
    transition: border-bottom-color 0.5s, color 0.5s;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    font-size: 1.22222rem;
    line-height: 1.3636;
    padding-bottom: 0.16667rem;
    border-bottom: 0.16667rem solid transparent; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-main_navigation__link {
        font-size: 16px;
        line-height: 1.5; } }
    .mdl-main_navigation__link:hover {
      color: #0069A3;
      border-bottom-color: #0069A3; }
    .mdl-main_navigation__link--active {
      color: #0069A3;
      border-bottom-color: #0069A3; }

.mdl-flyout {
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  visibility: hidden;
  transition: max-height 0.5s, margin-bottom 0.5s, visibility 0s 0.5s; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-flyout {
      display: none; } }
  .mdl-flyout__menu {
    padding-bottom: 1.33333rem;
    padding-top: 32px;
    display: none; }
    @media all and (min-width: 19.875em) {
      .mdl-flyout__menu {
        padding-bottom: 1.77778rem; } }
    @media all and (min-width: 47.6875em) {
      .mdl-flyout__menu {
        padding-bottom: 3.11111rem; } }
    .mdl-flyout__menu--active {
      display: flex; }
  .mdl-flyout__close {
    opacity: 0;
    z-index: 10;
    cursor: pointer;
    width: 2.77778rem;
    height: 2.77778rem;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    border: 0;
    background-color: #FFFFFF;
    box-shadow: 0 0.55556rem 0.44444rem 0 rgba(131, 150, 160, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s; }
    .mdl-flyout__close .atm-icon {
      transition: transform 0.3s;
      transform: rotate(-45deg);
      fill: #0069A3;
      width: 1.16667rem;
      height: 1.16667rem; }
  .mdl-flyout--open {
    overflow: visible;
    visibility: visible; }
    .mdl-flyout--open .mdl-flyout__close {
      opacity: 1;
      transform: translate(-50%, 50%); }
      .mdl-flyout--open .mdl-flyout__close .atm-icon {
        transform: rotate(0); }
  .mdl-flyout--opening {
    margin-bottom: 1.33333rem;
    background-color: #FFFFFF;
    visibility: visible;
    transition: max-height 0.5s, margin-bottom 0.5s, visibility 0s 0s; }
    @media all and (min-width: 19.875em) {
      .mdl-flyout--opening {
        margin-bottom: 1.77778rem; } }
    @media all and (min-width: 47.6875em) {
      .mdl-flyout--opening {
        margin-bottom: 3.11111rem; } }

.mdl-flyout_section {
  padding: 0 16px;
  height: 100%;
  border-right: 0.05556rem solid #c3c0bd;
  background: #FFFFFF; }
  @media print, screen and (min-width: 71.75em) {
    .mdl-flyout_section {
      padding: 0 40px; } }
  .mdl-flyout_section--no-border {
    border: 0; }
  .mdl-flyout_section__list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 40px 0; }
  .mdl-flyout_section__item {
    margin-bottom: 16px;
    line-height: 1; }
  .mdl-flyout_section__link {
    font-family: Akkurat, Helvetica, sans-serif;
    color: #000000;
    font-size: 14px;
    line-height: 1.1429;
    text-decoration: none;
    border-bottom: 0.05556rem solid transparent;
    transition: color 0.5s, border-bottom-color 0.5s; }
    .mdl-flyout_section__link:hover,
    .mdl-flyout_section__link .mdl-flyout_section--active {
      color: #0069A3;
      border-bottom-color: #0069A3;
      border-width: 2px;
      padding-bottom: 3px; }

.atm-heading--flyout-section {
  font-size: 12px;
  font-family: AkkuratBold, Helvetica, sans-serif;
  line-height: 1.333;
  margin-bottom: 32px; }

.atm-heading--flyout-subsection {
  font-size: 14px;
  font-family: AkkuratBold, Helvetica, sans-serif;
  line-height: 1.1429;
  margin-bottom: 24px; }

.mdl-flyout_section {
  padding: 0 16px;
  height: 100%;
  border-right: 0.05556rem solid #c3c0bd;
  background: #FFFFFF; }
  @media print, screen and (min-width: 71.75em) {
    .mdl-flyout_section {
      padding: 0 40px; } }
  .mdl-flyout_section--no-border {
    border: 0; }
  .mdl-flyout_section__list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 40px 0; }
  .mdl-flyout_section__item {
    margin-bottom: 16px;
    line-height: 1; }
  .mdl-flyout_section__link {
    font-family: Akkurat, Helvetica, sans-serif;
    color: #000000;
    font-size: 14px;
    line-height: 1.1429;
    text-decoration: none;
    border-bottom: 0.05556rem solid transparent;
    transition: color 0.5s, border-bottom-color 0.5s; }
    .mdl-flyout_section__link:hover,
    .mdl-flyout_section__link .mdl-flyout_section--active {
      color: #0069A3;
      border-bottom-color: #0069A3;
      border-width: 2px;
      padding-bottom: 3px; }

.atm-heading--flyout-section {
  font-size: 12px;
  font-family: AkkuratBold, Helvetica, sans-serif;
  line-height: 1.333;
  margin-bottom: 32px; }

.atm-heading--flyout-subsection {
  font-size: 14px;
  font-family: AkkuratBold, Helvetica, sans-serif;
  line-height: 1.1429;
  margin-bottom: 24px; }

.mdl-main_navigation_mobile__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.3s; }
  .mdl-main_navigation_mobile__list--level1 {
    max-height: inherit; }
  .mdl-main_navigation_mobile__list--level3 {
    padding-left: 2.44444rem;
    line-height: 1.1429;
    letter-spacing: 0.03333rem;
    font-family: Akkurat, Helvetica, sans-serif;
    background: #FFFFFF; }
    .mdl-main_navigation_mobile__list--level3 .mdl-main_navigation_mobile__list-item {
      font-size: 14px;
      margin-top: 32px; }
      .mdl-main_navigation_mobile__list--level3 .mdl-main_navigation_mobile__list-item:first-of-type {
        margin-top: 16px; }
      .mdl-main_navigation_mobile__list--level3 .mdl-main_navigation_mobile__list-item:last-of-type {
        margin-bottom: 32px; }
  .mdl-main_navigation_mobile__list--content {
    background: #FFFFFF !important;
    padding-left: 12px;
    padding-right: 12px; }
    .mdl-main_navigation_mobile__list--content .mdl-intro {
      margin-top: 16px; }

.mdl-main_navigation_mobile__title {
  margin-bottom: 0;
  background-color: #FFFFFF;
  transition: background-color 0.5s;
  margin-top: 0; }
  .mdl-main_navigation_mobile__title--level2 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.4;
    font-family: SVARotisBold, Helvetica, sans-serif; }
  .mdl-main_navigation_mobile__title--level3 {
    text-transform: uppercase;
    font-family: AkkuratBold, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.01111rem; }
    .mdl-main_navigation_mobile__title--level3 .mdl-main_navigation_mobile__accordion-button {
      padding-left: 1.55556rem; }
  .mdl-main_navigation_mobile__title--level4 {
    font-family: AkkuratBold, Helvetica, sans-serif;
    line-height: 1.1429;
    letter-spacing: 0.03333rem;
    font-size: 14px;
    background: transparent; }

.mdl-main_navigation_mobile__link {
  color: #000000;
  text-decoration: none; }
  .mdl-main_navigation_mobile__link:hover {
    color: #000000; }

.mdl-main_navigation_mobile__accordion-button {
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 16px;
  background-color: transparent;
  border: 0;
  border-bottom: 0.05556rem solid #F0F1F1;
  display: flex;
  align-items: center;
  text-transform: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: none; }
  .mdl-main_navigation_mobile__accordion-button--open {
    transition: all 0.5s;
    background: #FFFFFF;
    color: #0069A3 !important; }
    .mdl-main_navigation_mobile__accordion-button--open .atm-icon {
      fill: #0069A3 !important;
      transform: rotate(-180deg); }
  .mdl-main_navigation_mobile__accordion-button .atm-icon {
    width: 1.11111rem;
    height: 0.66667rem;
    transition: transform 0.3s; }
  .mdl-main_navigation_mobile__accordion-button-text {
    margin-right: 24px;
    flex: 1; }
  .mdl-main_navigation_mobile__accordion-button > * {
    pointer-events: none; }

.mdl-main_navigation_mobile--accordions-open .mdl-main_navigation_mobile__title--level2 {
  background-color: #f7f7f7; }

.mdl-main_navigation_mobile__meta {
  background-color: #0069A3;
  list-style-type: none;
  border-bottom: 1px solid #FFFFFF; }
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__title,
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__list--level2,
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__list--level3 {
    background-color: #0069A3; }
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__title--level2 {
    color: #FFFFFF;
    background-color: #0069A3;
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0; }
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__accordion-button {
    color: #FFFFFF;
    border-bottom: none; }
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__link,
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__title--level4 {
    color: #FFFFFF; }
  .mdl-main_navigation_mobile__meta .mdl-main_navigation_mobile__accordion-icon {
    fill: #FFFFFF; }
  .mdl-main_navigation_mobile__meta__list {
    display: block;
    background-color: #0069A3; }
    .mdl-main_navigation_mobile__meta__list span {
      display: block;
      padding: 1em; }
    .mdl-main_navigation_mobile__meta__list .mdl-formcontact__targetgroup span {
      padding: 0; }
    .mdl-main_navigation_mobile__meta__list .mdl-intro {
      margin-top: 8px; }
      .mdl-main_navigation_mobile__meta__list .mdl-intro .atm-heading span, .mdl-main_navigation_mobile__meta__list .mdl-intro .mdl-text h1 span, .mdl-text .mdl-main_navigation_mobile__meta__list .mdl-intro h1 span, .mdl-main_navigation_mobile__meta__list .mdl-intro .mdl-text h2 span, .mdl-text .mdl-main_navigation_mobile__meta__list .mdl-intro h2 span, .mdl-main_navigation_mobile__meta__list .mdl-intro .mdl-text h3 span, .mdl-text .mdl-main_navigation_mobile__meta__list .mdl-intro h3 span, .mdl-main_navigation_mobile__meta__list .mdl-intro .mdl-text h4 span, .mdl-text .mdl-main_navigation_mobile__meta__list .mdl-intro h4 span {
        padding: 0;
        width: -moz-fit-content;
        width: fit-content; }

.mdl-focusteasers {
  margin-bottom: 1.33333rem;
  background: #FFFFFF; }
  @media all and (min-width: 19.875em) {
    .mdl-focusteasers {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-focusteasers {
      margin-bottom: 3.11111rem; } }
  .mdl-focusteasers__tiles {
    display: flex;
    margin-bottom: -0.77778rem; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-focusteasers .mdl-focusteaser {
      margin-bottom: 8px; } }

.mdl-imagecarpet {
  margin-bottom: 56px; }
  .mdl-imagecarpet .mdl-image {
    height: 100%; }
    .mdl-imagecarpet .mdl-image__trigger {
      height: 100%; }
    .mdl-imagecarpet .mdl-image__image {
      height: 100%; }

.mdl-calculatorteaser {
  background-image: linear-gradient(0deg, #841335 0%, #99294b 45%, #b6375d 100%);
  display: block;
  text-align: center;
  margin-bottom: 81px;
  padding: 0 16px; }
  .mdl-calculatorteaser__link {
    color: inherit;
    display: block;
    text-decoration: none; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-calculatorteaser {
      padding: 0 24px; } }
  .mdl-calculatorteaser__targetgroup {
    background-color: #FFFFFF;
    padding: 6px 8px 4px 8px;
    text-transform: uppercase;
    display: inline-block;
    height: 24px;
    font-family: AkkuratBold;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.2px;
    position: relative;
    text-align: center;
    top: -4px;
    margin-bottom: 22px; }
    .mdl-calculatorteaser__targetgroup span {
      position: relative;
      top: -2px;
      vertical-align: middle;
      line-height: 24px;
      display: inline-block; }
  .mdl-calculatorteaser__heading h2 {
    color: #FFFFFF;
    font-family: AkkuratBold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.32px;
    display: inline-block;
    border-bottom: 6px solid #FFFFFF;
    padding-bottom: 6px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-calculatorteaser__heading h2 {
        font-size: 26px;
        line-height: 36px;
        letter-spacing: -0.28px;
        border-bottom: 4px solid #FFFFFF; } }
  .mdl-calculatorteaser__lead {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.2px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 0; }
  .mdl-calculatorteaser__open {
    position: relative;
    top: 24px; }
  .mdl-calculatorteaser__anchor {
    display: inline-block;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 8px 0 rgba(131, 150, 160, 0.2); }
  .mdl-calculatorteaser .atm-icon {
    fill: #99294B;
    width: 28px;
    height: 28px;
    position: relative;
    top: 12px; }

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .mdl-calculatorteaser {
    background-color: #99294b; } }

.mdl-metanav {
  z-index: 999;
  line-height: 32px; }
  .mdl-metanav ul {
    padding-left: 0; }
    .mdl-metanav ul li {
      float: left;
      margin-right: 40px; }
      .mdl-metanav ul li.last-element-left {
        border-right: 1px solid #FFFFFF;
        padding-right: 40px;
        margin-right: 20px; }
      .mdl-metanav ul li:last-child {
        border-right: 1px solid #FFFFFF;
        padding-right: 26px;
        margin-right: 0; }
      .mdl-metanav ul li.first-element-right {
        margin-right: 20px;
        border-right: 1px solid #FFFFFF;
        padding-right: 26px; }
      .mdl-metanav ul li a,
      .mdl-metanav ul li a:hover,
      .mdl-metanav ul li a:visited,
      .mdl-metanav ul li a:active {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
        position: relative; }
      .mdl-metanav ul li svg {
        fill: #FFFFFF;
        vertical-align: text-top; }
      .mdl-metanav ul li .atm-icon {
        display: inline-block;
        vertical-align: text-top;
        transition: all 0.3s;
        transform: scaleY(0);
        opacity: 0;
        margin-left: 4px;
        width: 18px;
        height: 20px; }
        .mdl-metanav ul li .atm-icon--enabled {
          opacity: 1;
          transform: scaleY(1); }
          .mdl-metanav ul li .atm-icon--enabled svg {
            opacity: 1; }
        .mdl-metanav ul li .atm-icon svg {
          fill: #FFFFFF;
          vertical-align: text-top;
          transition: all 0.5s;
          height: 13px;
          width: 18px; }
  .mdl-metanav__flyout {
    right: -110vw;
    width: calc(66.667% - 0.5rem);
    background: #FFFFFF;
    z-index: 995;
    position: absolute;
    top: 32px;
    display: block;
    padding: 2em;
    box-shadow: -24px 28px 31px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 99vh;
    transition: all 0.3s;
    visibility: hidden; }
    .mdl-metanav__flyout--login {
      padding: 2em 3em; }
    .mdl-metanav__flyout--contact {
      padding: 2em 3em; }
    .mdl-metanav__flyout-sections {
      display: flex; }
    .mdl-metanav__flyout.open {
      right: 0;
      overflow: auto;
      max-height: none;
      overflow-x: hidden;
      visibility: visible; }
    .mdl-metanav__flyout__wrapper {
      width: 100%;
      position: relative;
      height: 18px; }
    .mdl-metanav__flyout__closeButton {
      border: none;
      background: none;
      color: #0069A3;
      padding: 0;
      right: 0%;
      position: absolute; }
      .mdl-metanav__flyout__closeButton svg {
        margin-left: 12px;
        width: 14px;
        height: 14px;
        fill: #0069A3; }
      .mdl-metanav__flyout__closeButton:hover {
        cursor: pointer;
        border-bottom: 3px solid #0069A3; }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-metanav__flyout {
        width: calc(84% - 0.5rem); } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-metanav__flyout {
        display: none; } }
  .mdl-metanav__backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 990;
    position: absolute;
    opacity: 0;
    top: -2000px;
    left: -2000px;
    width: 0;
    height: 0;
    overflow: hidden; }
    .mdl-metanav__backdrop.active {
      width: 200vw;
      height: 100%;
      top: 32px;
      left: -600px;
      opacity: 1; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-metanav__backdrop.active {
          display: none; } }

.mdl-newsarchive {
  margin-bottom: 28px; }
  .mdl-newsarchive__buttonwrapper {
    vertical-align: middle;
    text-align: center;
    margin: 1px;
    margin-top: 24px; }
  .mdl-newsarchive__button {
    padding: 16px 89px;
    background: none;
    border: 1px solid #0069A3;
    font-size: 18px;
    color: #0069A3;
    text-align: center; }
    .mdl-newsarchive__button:hover {
      cursor: pointer;
      border: 2px solid #0069A3;
      margin: -1px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-newsarchive__button {
        padding: 8px 42px; } }
    .mdl-newsarchive__button--disabled {
      display: none; }
    .mdl-newsarchive__button__contentwrapper {
      display: flex; }
      .mdl-newsarchive__button__contentwrapper:hover {
        text-decoration: none; }
      .mdl-newsarchive__button__contentwrapper .atm-icon {
        fill: #0069A3; }
      .mdl-newsarchive__button__contentwrapper span {
        margin-left: 8px; }
  .mdl-newsarchive .mdl-focusteasers {
    margin-top: 24px;
    margin-bottom: 0; }

.mdl-formcheckbox {
  display: flex;
  margin-bottom: 24px; }
  .mdl-formcheckbox:last-child {
    margin-bottom: 0; }
  .mdl-formcheckbox:hover {
    cursor: pointer; }
    .mdl-formcheckbox:hover .mdl-formcheckbox__label {
      color: #0069A3;
      cursor: pointer; }
    .mdl-formcheckbox:hover input {
      border-color: #0069A3; }
  .mdl-formcheckbox__label {
    margin-left: 6px;
    font-size: 18px; }
  .mdl-formcheckbox__entries--horizontal {
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
    .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox {
      width: 50%;
      display: inline-flex; }
      .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox:nth-of-type(odd) {
        padding-right: 12px; }
      .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox:nth-of-type(even) {
        padding-left: 12px; }
      .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox__label {
        display: inline-block; }
      .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox__input {
        display: inline-block; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox {
          width: 100%; }
          .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox:nth-of-type(odd) {
            padding: 0; }
          .mdl-formcheckbox__entries--horizontal .mdl-formcheckbox:nth-of-type(even) {
            padding: 0; } }
  .mdl-formcheckbox__wrapper {
    margin-bottom: 24px; }
  .mdl-formcheckbox__input {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    position: relative;
    -webkit-appearance: none;
            appearance: none;
    margin-right: 8px;
    border: 2px solid #7F7D7A;
    transition: border-color 0.3s; }
    .mdl-formcheckbox__input:hover {
      cursor: pointer; }
    .mdl-formcheckbox__input:disabled {
      border-color: #F0F1F1 !important;
      background: #F0F1F1 !important; }
    .mdl-formcheckbox__input:disabled + span:hover {
      cursor: default;
      color: #000000; }
    .mdl-formcheckbox__input:after {
      content: '';
      position: absolute;
      width: 12px;
      height: 4px;
      top: 6px;
      left: 3px;
      border-left: 2px solid #0069A3;
      border-bottom: 2px solid #0069A3;
      transform: rotate(-55deg) scale(0);
      transition: all  0.3s; }
    .mdl-formcheckbox__input:checked {
      border-color: #0069A3; }
      .mdl-formcheckbox__input:checked:after {
        transform: rotate(-55deg) scale(1); }

.mdl-formtooltip {
  display: block;
  vertical-align: middle; }
  .mdl-formtooltip__toggle {
    width: 30px;
    height: 30px;
    padding: 0;
    background: none;
    border: 2px solid #0069A3;
    padding-top: 4px; }
    .mdl-formtooltip__toggle:hover {
      cursor: pointer; }
    .mdl-formtooltip__toggle .atm-icon {
      fill: #0069A3; }
  .mdl-formtooltip__container {
    box-shadow: 10px 10px 32px 0 rgba(217, 220, 220, 0.8);
    display: none;
    margin-left: 15px;
    margin-top: -15px;
    z-index: 1000;
    transition: opacity 0.2s;
    padding: 0;
    opacity: 0;
    position: absolute;
    width: 90vw;
    max-width: 464px;
    min-width: 240px;
    background: #FFFFFF; }
    .mdl-formtooltip__container__closeButton {
      left: -24px;
      top: -24px;
      position: absolute;
      width: 48px;
      height: 48px;
      border: none;
      background: #0069A3; }
      .mdl-formtooltip__container__closeButton:hover {
        cursor: pointer; }
      .mdl-formtooltip__container__closeButton .atm-icon {
        width: 75%;
        height: 75%;
        fill: #FFFFFF; }
    .mdl-formtooltip__container .mdl-text {
      transition: all 1.3s;
      padding: 32px;
      margin-bottom: 0;
      overflow: hidden; }
      .mdl-formtooltip__container .mdl-text p {
        padding-bottom: 0; }

.mdl-formradiobutton {
  margin-bottom: 24px; }
  .mdl-formradiobutton:hover {
    color: #0069A3;
    cursor: pointer; }
    .mdl-formradiobutton:hover input:not(:checked) + label:before {
      border: 2px solid #0069A3; }
    .mdl-formradiobutton:hover label,
    .mdl-formradiobutton:hover span {
      color: #0069A3;
      cursor: pointer; }
  .mdl-formradiobutton:last-child {
    margin-bottom: 0; }
  .mdl-formradiobutton label span {
    margin-left: 14px;
    color: #000000;
    display: inline-block;
    vertical-align: middle; }
    .mdl-formradiobutton label span:hover {
      color: #0069A3;
      cursor: pointer; }
  .mdl-formradiobutton__wrapper {
    margin-bottom: 24px; }
  .mdl-formradiobutton__entries {
    position: relative; }
    .mdl-formradiobutton__entries--horizontal {
      display: flex;
      flex-wrap: wrap;
      width: 100%; }
      .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton {
        width: 50%;
        display: inline-flex; }
        .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:nth-of-type(odd) {
          padding-right: 12px; }
        .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:nth-of-type(even) {
          padding-left: 12px; }
        .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton__label {
          display: inline-block; }
        .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton__input {
          display: inline-block; }
        .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:last-child, .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:nth-last-child(2) {
          margin-bottom: 0; }
        @media print, screen and (max-width: 47.68625em) {
          .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton {
            width: 100%;
            margin-bottom: 24px; }
            .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:nth-of-type(odd) {
              padding: 0; }
            .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:nth-of-type(even) {
              padding: 0; }
            .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:last-child {
              margin-bottom: 0; }
            .mdl-formradiobutton__entries--horizontal .mdl-formradiobutton:nth-last-child(2) {
              margin-bottom: 24px; } }
    .mdl-formradiobutton__entries--legend {
      display: inline-flex; }
  .mdl-formradiobutton input:checked, .mdl-formradiobutton input:not(:checked) {
    opacity: 0;
    transform: scale(0);
    position: absolute; }
  .mdl-formradiobutton input:checked + label,
  .mdl-formradiobutton input:not(:checked) + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    display: inline-block; }
  .mdl-formradiobutton input:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid #0069A3;
    border-radius: 100%;
    background: #FFFFFF; }
  .mdl-formradiobutton input:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid #7F7D7A;
    border-radius: 100%;
    background: #FFFFFF; }
  .mdl-formradiobutton input:checked + label:after,
  .mdl-formradiobutton input:not(:checked) + label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #0069A3;
    position: absolute;
    top: 7px;
    left: 5px;
    border-radius: 100%;
    transition: all 0.2s ease; }
  .mdl-formradiobutton input:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0); }
  .mdl-formradiobutton input:checked + label:after {
    opacity: 1;
    transform: scale(1);
    color: #0069A3; }
  .mdl-formradiobutton input:checked + label span {
    color: #0069A3; }

.mdl-formmultifieldblock legend {
  font-size: 22px !important;
  margin-bottom: 16px; }

.mdl-formmultifieldblock .mdl-text {
  margin-bottom: 8px; }

.mdl-formmultifieldblock .mdl-formcheckbox__wrapper {
  margin-top: 24px; }
  .mdl-formmultifieldblock .mdl-formcheckbox__wrapper .mdl-formcheckbox__label :first-child {
    font-family: SVARotisBold, Helvetica, sans-serif; }

.mdl-formmultifieldblock__step {
  transition: all 0.5s;
  opacity: 0;
  position: relative;
  margin-top: 32px; }
  .mdl-formmultifieldblock__step .mdl-input_field {
    margin-left: 0 !important;
    margin-right: 0 !important; }
    .mdl-formmultifieldblock__step .mdl-input_field .mdl-input_row__input {
      margin-left: 0;
      margin-right: 0;
      width: 100%; }
  .mdl-formmultifieldblock__step:last-child .atm-formtemplate {
    border-bottom: none; }
  .mdl-formmultifieldblock__step .atm-formtemplate {
    border-bottom: 1px #D9DCDC solid; }
  .mdl-formmultifieldblock__step .mdl-formcheckbox__wrapper {
    margin-top: 0; }

.mdl-formmultifieldblock__step__heading {
  display: flex;
  width: 100%;
  position: relative; }
  .mdl-formmultifieldblock__step__heading legend {
    width: 100%;
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-size: 18px; }

.mdl-formmultifieldblock__deleteitembutton {
  background: none;
  border: none;
  display: contents; }
  .mdl-formmultifieldblock__deleteitembutton__text {
    white-space: nowrap;
    padding-right: 5px;
    line-height: normal; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-formmultifieldblock__deleteitembutton__text {
        overflow: hidden;
        white-space: normal; } }
  .mdl-formmultifieldblock__deleteitembutton:hover {
    cursor: pointer; }
  .mdl-formmultifieldblock__deleteitembutton__iconwrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F0F1F1;
    width: 24px;
    height: 24px; }
    .mdl-formmultifieldblock__deleteitembutton__iconwrapper .atm-icon {
      width: 15px;
      height: 15px;
      fill: #000000;
      transform: rotate(45deg); }

.mdl-formmultifieldblock__additembutton {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 24px; }
  .mdl-formmultifieldblock__additembutton__iconwrapper {
    display: inline-block;
    vertical-align: middle;
    background: #F0F1F1;
    width: 24px;
    height: 24px;
    margin-right: 14px; }
    .mdl-formmultifieldblock__additembutton__iconwrapper .atm-icon {
      width: 10px;
      height: 10px;
      fill: #0069A3; }
  .mdl-formmultifieldblock__additembutton span {
    font-size: 18px;
    font-family: SVARotisBold, Helvetica, sans-serif; }

.mdl-input_row {
  clear: both; }
  .mdl-input_row__wrapper {
    display: flex;
    width: 100%; }
  .mdl-input_row legend {
    margin-bottom: 16px; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row {
      display: flex;
      flex-flow: row wrap;
      margin-right: -0.25rem;
      margin-left: -0.25rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 19.875em) {
    .mdl-input_row {
      margin-right: -0.5rem;
      margin-left: -0.5rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 47.6875em) {
    .mdl-input_row {
      margin-right: -0.75rem;
      margin-left: -0.75rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 71.75em) {
    .mdl-input_row {
      margin-right: -0.75rem;
      margin-left: -0.75rem; } }
  @media screen and (min-width: 47.6875em) and (min-width: 104.8125em) {
    .mdl-input_row {
      margin-right: -0.875rem;
      margin-left: -0.875rem; } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row--halfWidth .mdl-input_row__input:nth-of-type(odd) {
      width: 50%;
      padding-right: calc(24px / 2); } }
  @media screen and (min-width: 104.8125em) {
    .mdl-input_row--halfWidth .mdl-input_row__input:nth-of-type(odd) {
      padding-right: calc(1.55556rem / 2); } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row--halfWidth .mdl-input_row__input:nth-of-type(even) {
      width: 50%;
      padding-left: calc(24px / 2); } }
  @media screen and (min-width: 104.8125em) {
    .mdl-input_row--halfWidth .mdl-input_row__input:nth-of-type(even) {
      padding-left: calc(1.55556rem / 2); } }
  @media print, screen and (max-width: 71.74875em) {
    .mdl-input_row--halfWidth .mdl-input_row__inputs--buttons {
      display: block; }
      .mdl-input_row--halfWidth .mdl-input_row__inputs--buttons .mdl-input_row__input {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0; } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row--oneThirdTwoThird .mdl-input_row__input:nth-of-type(1) {
      width: 33.33333%;
      padding-right: calc(24px / 2); } }
  @media screen and (min-width: 104.8125em) {
    .mdl-input_row--oneThirdTwoThird .mdl-input_row__input:nth-of-type(1) {
      padding-right: calc(1.55556rem / 2); } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row--oneThirdTwoThird .mdl-input_row__input:nth-of-type(2) {
      width: 66.66667%;
      padding-left: calc(24px / 2); } }
  @media screen and (min-width: 104.8125em) {
    .mdl-input_row--oneThirdTwoThird .mdl-input_row__input:nth-of-type(2) {
      padding-left: calc(1.55556rem / 2); } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row--twoThirdOneThird .mdl-input_row__input:nth-of-type(1) {
      width: 66.66667%;
      padding-right: calc(24px / 2); } }
  @media screen and (min-width: 104.8125em) {
    .mdl-input_row--twoThirdOneThird .mdl-input_row__input:nth-of-type(1) {
      padding-right: calc(1.55556rem / 2); } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row--twoThirdOneThird .mdl-input_row__input:nth-of-type(2) {
      width: 33.33333%;
      padding-left: calc(24px / 2); } }
  @media screen and (min-width: 104.8125em) {
    .mdl-input_row--twoThirdOneThird .mdl-input_row__input:nth-of-type(2) {
      padding-left: calc(1.55556rem / 2); } }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_row__inputs {
      flex: 0 0 auto;
      width: calc(85.71429% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem;
      display: flex;
      flex-flow: row wrap;
      margin-right: 0.25rem;
      margin-left: 0.25rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 19.875em) {
    .mdl-input_row__inputs {
      margin-right: 0.5rem;
      margin-left: 0.5rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 47.6875em) {
    .mdl-input_row__inputs {
      margin-right: 0.75rem;
      margin-left: 0.75rem; } }
  @media print, screen and (min-width: 47.6875em) and (min-width: 71.75em) {
    .mdl-input_row__inputs {
      margin-right: 0.75rem;
      margin-left: 0.75rem; } }
  @media screen and (min-width: 47.6875em) and (min-width: 104.8125em) {
    .mdl-input_row__inputs {
      margin-right: 0.875rem;
      margin-left: 0.875rem; } }
  @media print, screen and (min-width: 47.6875em) {
      .mdl-input_row__inputs--buttons {
        justify-content: space-between; }
        .mdl-input_row__inputs--buttons .mdl-input_row__input {
          display: flex;
          justify-content: flex-start; }
          .mdl-input_row__inputs--buttons .mdl-input_row__input:first-child {
            width: auto;
            margin: 0;
            padding: 0; }
          .mdl-input_row__inputs--buttons .mdl-input_row__input:last-child {
            max-width: calc(100% * (2 / 3));
            width: auto;
            margin: 0;
            padding: 0; } }
  .mdl-input_row__input {
    width: 100%; }
    .mdl-input_row__input legend {
      font-size: 18px; }
    .mdl-input_row__input--forward {
      display: flex;
      justify-content: flex-end; }
  .mdl-input_row__tooltip {
    align-items: flex-start; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-input_row__tooltip {
        flex: 0 0 auto;
        width: calc(14.28571% - 1.5rem);
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        margin-top: 1.22222rem;
        display: flex;
        margin-right: 0; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-input_row__tooltip {
        display: flex;
        justify-content: flex-end; } }
    .mdl-input_row__tooltip--no-margin {
      margin-top: 0; }
  .mdl-input_row--summary-checkbox {
    display: block; }

@media print, screen and (min-width: 47.6875em) {
  .atm-formtemplate {
    width: 100%; }
    .atm-formtemplate .mdl-input_row {
      margin-right: -0.25rem;
      margin-left: -0.25rem; } }
    @media print, screen and (min-width: 47.6875em) and (min-width: 19.875em) {
      .atm-formtemplate .mdl-input_row {
        margin-right: -0.5rem;
        margin-left: -0.5rem; } }
    @media print, screen and (min-width: 47.6875em) and (min-width: 47.6875em) {
      .atm-formtemplate .mdl-input_row {
        margin-right: -0.75rem;
        margin-left: -0.75rem; } }
    @media print, screen and (min-width: 47.6875em) and (min-width: 71.75em) {
      .atm-formtemplate .mdl-input_row {
        margin-right: -0.75rem;
        margin-left: -0.75rem; } }
    @media screen and (min-width: 47.6875em) and (min-width: 104.8125em) {
      .atm-formtemplate .mdl-input_row {
        margin-right: -0.875rem;
        margin-left: -0.875rem; } }

.mdl-input_field {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  padding-top: 24px;
  /* stylelint-disable property-no-vendor-prefix */ }
  .mdl-input_field--complete .mdl-input_field__input {
    color: #000000;
    border-color: #000000; }
  .mdl-input_field--complete .mdl-input_field__label {
    transform: translateY(0);
    font-size: 0.72222rem; }
  .mdl-input_field--error .mdl-input_field__input {
    color: #FF0000;
    border-color: #FF0000; }
  .mdl-input_field--error .mdl-input_field__label {
    color: #FF0000; }
  .mdl-input_field--with-icon .mdl-input_field__label {
    left: 32px; }
  .mdl-input_field--with-icon .mdl-input_field__input {
    padding-left: 32px; }
  .mdl-input_field--date .mdl-input_field__input {
    color: transparent; }
    .mdl-input_field--date .mdl-input_field__input:focus {
      color: #0069A3; }
  .mdl-input_field--date.mdl-input_field--complete .mdl-input_field__input {
    color: #000000; }
  .mdl-input_field--number .mdl-input_field__input {
    -webkit-appearance: textfield;
            appearance: textfield; }
    .mdl-input_field--number .mdl-input_field__input::-webkit-outer-spin-button, .mdl-input_field--number .mdl-input_field__input::-webkit-inner-spin-button {
      -webkit-appearance: none;
              appearance: none;
      margin: 0; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-input_field__wrapper {
      display: flex;
      flex-flow: row wrap;
      flex: 0 0 auto;
      width: calc(85.71429% - 1.5rem);
      margin-left: 0.75rem;
      margin-right: 0.75rem; } }
  .mdl-input_field__label {
    position: absolute;
    left: 0;
    top: 0.22222rem;
    z-index: 1;
    color: #787673;
    cursor: pointer;
    transform: translateY(1.33333rem);
    transition: all 0.3s;
    line-height: 1.556; }
  .mdl-input_field__input {
    position: relative;
    width: 100%;
    border: 0;
    padding: 0.22222rem 0.22222rem 0.22222rem 0;
    border-bottom: 0.05556rem solid #7F7D7A;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1.556;
    height: 2rem;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .mdl-input_field__input:focus {
      color: #0069A3;
      border-color: #0069A3; }
      .mdl-input_field__input:focus + .mdl-input_field__label {
        color: #0069A3;
        transform: translateY(0);
        font-size: 0.72222rem; }
    .mdl-input_field__input--textarea {
      overflow-y: hidden;
      transition: height 0.3s;
      resize: none; }
  .mdl-input_field__input::-webkit-date-and-time-value {
    text-align: left; }
  .mdl-input_field__icon {
    cursor: pointer;
    position: absolute;
    left: 0;
    height: 1.33333rem;
    width: 1.33333rem;
    top: 1.55556rem;
    z-index: 1;
    pointer-events: none; }
    .mdl-input_field__icon .atm-icon {
      width: 100%;
      height: 100%; }
  .mdl-input_field__help-text {
    position: relative;
    font-size: 0.72222rem;
    line-height: 1.84;
    color: #777572;
    display: block; }
  .mdl-input_field__error {
    font-size: 0.72222rem;
    line-height: 1.84;
    display: none;
    color: #FF0000; }
    .mdl-input_field__error--select-group {
      margin-top: 10px; }

.mdl-input_field--error .mdl-input_field__help-text {
  color: #FF0000; }

.mdl-input_field--error .atm-icon {
  fill: #FF0000; }

.mdl-select {
  width: 100%;
  margin-bottom: 24px; }
  .mdl-select label {
    font-family: SVARotis, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 24px;
    color: #7F7D7A; }
  .mdl-select select {
    border: none;
    border-bottom: 1px solid #7F7D7A;
    border-radius: 0;
    width: 100%;
    height: 33px;
    background-color: transparent;
    font-size: 18px;
    line-height: 28px;
    -webkit-appearance: none;
            appearance: none;
    cursor: pointer; }
    .mdl-select select option {
      color: #000000;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: -0.21px; }
  .mdl-select__wrapper {
    position: relative; }
  .mdl-select__icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; }
    .mdl-select__icon .atm-icon {
      fill: #7F7D7A; }
  .mdl-select--complete select {
    border-color: #000000; }
  .mdl-select--complete .mdl-select__icon .atm-icon {
    fill: #000000; }

.mdl-select.mdl-input_field--error select {
  border-bottom: 1px solid #FF0000; }

.mdl-formsteps {
  margin-bottom: 56px;
  /* --------------------- Reset fieldsets and legends ------------- */
  /* --------------------- End Reset fieldsets and legends ------------- */ }
  .mdl-formsteps__legend-outer {
    font-family: AkkuratBold, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 1.1429;
    letter-spacing: -0.28px;
    margin: 0 0 24px; }
    .mdl-formsteps__legend-outer--overview {
      padding-top: 0; }
  .mdl-formsteps .form-step {
    padding-left: 2px; }
  .mdl-formsteps #forwardstep > fieldset > legend {
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 1.1429;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
    margin-top: 0; }
  .mdl-formsteps fieldset {
    /* --------------------- Reset fieldsets and legends ------------- */
    border: 0;
    padding: 0.01em 0 0;
    margin: 0;
    min-width: 0;
    /* --------------------- End reset fieldsets and legends ------------- */ }
    .mdl-formsteps fieldset fieldset {
      margin-bottom: 32px; }
      .mdl-formsteps fieldset fieldset legend {
        font-family: SVARotisBold, Helvetica, sans-serif;
        font-size: 22px;
        line-height: 1.1429;
        letter-spacing: -0.2px;
        margin-bottom: 16px;
        margin-top: 0; }
      .mdl-formsteps fieldset fieldset fieldset {
        margin-bottom: 0; }
        .mdl-formsteps fieldset fieldset fieldset legend {
          font-family: SVARotisBold, Helvetica, sans-serif;
          font-size: 18px;
          line-height: 28px;
          letter-spacing: -0.2px;
          margin-bottom: 16px; }
  .mdl-formsteps__next-step, .mdl-formsteps__prev-step, .mdl-formsteps__save-draft-button {
    display: block;
    background: transparent;
    border: 1px solid #0069A3;
    color: #0069A3;
    margin-top: 56px;
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 28px;
    padding: 16px 80px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-formsteps__next-step, .mdl-formsteps__prev-step, .mdl-formsteps__save-draft-button {
        width: 100%; } }
    .mdl-formsteps__next-step:hover, .mdl-formsteps__prev-step:hover, .mdl-formsteps__save-draft-button:hover {
      border: 2px solid #005C8F;
      cursor: pointer; }
  .mdl-formsteps__next-step {
    border: none;
    background: #0069A3;
    color: #FFFFFF; }
    .mdl-formsteps__next-step .atm-icon {
      display: none;
      fill: #FFFFFF;
      animation: rotating 1s linear infinite;
      /* stylelint-disable-line */
      margin-left: 5px; }
    .mdl-formsteps__next-step:hover {
      border: none;
      cursor: pointer;
      background: #005C8F;
      box-shadow: 5px 5px 15px 0 rgba(102, 163, 197, 0.5); }
    .mdl-formsteps__next-step--no-shadow:hover {
      box-shadow: none; }
    .mdl-formsteps__next-step.loading {
      display: flex;
      align-items: center; }
      .mdl-formsteps__next-step.loading .atm-icon {
        display: inline-block; }
  .mdl-formsteps__prev-step, .mdl-formsteps__save-draft-button {
    margin-right: 16px; }
    .mdl-formsteps__prev-step:hover, .mdl-formsteps__save-draft-button:hover {
      line-height: 26px;
      padding: 16px 79px; }
    .mdl-formsteps__prev-step--solid-blue, .mdl-formsteps__save-draft-button--solid-blue {
      border: none;
      background: #0069A3;
      color: #FFFFFF; }
      .mdl-formsteps__prev-step--solid-blue:hover, .mdl-formsteps__save-draft-button--solid-blue:hover {
        background: #005C8F;
        border: 1px solid #005C8F;
        cursor: pointer; }
  .mdl-formsteps__save-draft-button .atm-icon {
    display: none;
    fill: #0069A3;
    animation: rotating 1s linear infinite;
    /* stylelint-disable-line */
    margin-left: 5px; }
  .mdl-formsteps__save-draft-button.loading {
    display: flex;
    align-items: center; }
    .mdl-formsteps__save-draft-button.loading .atm-icon {
      display: inline-block; }
  @media print, screen and (max-width: 71.74875em) {
    .mdl-formsteps__next-step {
      margin-top: 16px; } }
  .mdl-formsteps dl {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px; }
  .mdl-formsteps dt {
    float: left;
    color: #777572; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-formsteps dt {
        float: none; } }
  .mdl-formsteps dd {
    margin-inline-start: 0;
    margin-left: 0.25em;
    display: inline-block; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-formsteps dd {
        margin-left: 0; } }
  .mdl-formsteps #final-summary {
    display: none; }
    .mdl-formsteps #final-summary.with-errors {
      display: block;
      color: #FF0000; }
  .mdl-formsteps .stepwrapper {
    border: none;
    padding: 0;
    margin-bottom: 56px; }
    .mdl-formsteps .stepwrapper [data-form-error-summary='summary'],
    .mdl-formsteps .stepwrapper .formError {
      display: none;
      color: #FF0000; }
    .mdl-formsteps .stepwrapper [data-form-error-summary='summary'].with-errors {
      color: #FF0000;
      display: block; }
    .mdl-formsteps .stepwrapper [data-form-error-summary='summary'].no-errors {
      color: #000000;
      display: block; }
    .mdl-formsteps .stepwrapper [data-form-error-summary='summary'].active,
    .mdl-formsteps .stepwrapper .formError.active {
      display: block;
      margin-top: 0.5rem; }
    .mdl-formsteps .stepwrapper [data-button='submit'] {
      display: none; }
    .mdl-formsteps .stepwrapper [data-button='submit'].show {
      display: block;
      background-color: #798E30;
      color: #FFFFFF;
      font-size: 1.2rem;
      font-family: SVARotisBold, Helvetica, sans-serif;
      border: none;
      padding: 0.5em 3em;
      /* stylelint-disable-next-line */
      -webkit-appearance: none;
      border-radius: 6px; }
      .mdl-formsteps .stepwrapper [data-button='submit'].show:hover {
        cursor: pointer; }
    .mdl-formsteps .stepwrapper .mdl-input_field__error.active {
      display: block; }
    .mdl-formsteps .stepwrapper--review {
      margin-bottom: 0; }
  .mdl-formsteps__sidemenu-wrapper {
    margin-bottom: 56px;
    background-color: transparent;
    color: #0069A3;
    display: block;
    min-width: 242px; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-formsteps__sidemenu-wrapper {
        position: fixed; } }
    .mdl-formsteps__sidemenu-wrapper p,
    .mdl-formsteps__sidemenu-wrapper ul,
    .mdl-formsteps__sidemenu-wrapper li,
    .mdl-formsteps__sidemenu-wrapper a {
      color: #0069A3; }
    .mdl-formsteps__sidemenu-wrapper.hidden {
      display: none; }
    .mdl-formsteps__sidemenu-wrapper ul {
      list-style-type: none;
      padding-left: 0;
      margin-top: 1rem;
      padding-top: 0; }
      .mdl-formsteps__sidemenu-wrapper ul li {
        color: #0069A3;
        display: block;
        width: 100%;
        line-height: 2;
        padding: 10px 20px;
        border: 2px solid #0069A3;
        margin-bottom: 8px;
        font-family: SVARotisBold, Helvetica, sans-serif; }
        .mdl-formsteps__sidemenu-wrapper ul li:before {
          display: none; }
        .mdl-formsteps__sidemenu-wrapper ul li.active:after {
          content: '◀';
          display: inline-block;
          position: absolute;
          right: -40px; }
  .mdl-formsteps__edit-form-step {
    display: inline-block;
    border: none;
    background-color: transparent;
    font-family: AkkuratBold, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    padding: 0 0 2px;
    width: auto; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-formsteps__edit-form-step {
        padding: 1em 0; } }
    .mdl-formsteps__edit-form-step:hover {
      cursor: pointer;
      color: #0069A3;
      border-bottom: 2px solid #0069A3; }
      .mdl-formsteps__edit-form-step:hover .atm-icon {
        fill: #0069A3; }
    .mdl-formsteps__edit-form-step .atm-icon {
      width: 17px;
      height: 17px;
      margin-right: 9px;
      vertical-align: sub; }
  .mdl-formsteps__review-tooltip .atm-icon {
    fill: #0069A3;
    border: 2px solid #0069A3;
    width: 1.7rem;
    height: 1.7rem;
    padding: 3px; }
  .mdl-formsteps--with-nav .form-step {
    padding-top: 20px; }
  .mdl-formsteps--with-nav .mdl-formsteps__legend-outer {
    line-height: 0.95; }

@-moz-document url-prefix('') {
  .mdl-formsteps--with-nav .mdl-formsteps__legend-outer {
    padding-top: 3px; } }
  .mdl-formsteps--with-nav .mdl-formsteps__legend-outer + fieldset legend {
    margin-top: 7px; }

@-moz-document url-prefix('') {
  .mdl-formsteps--with-nav .mdl-formsteps__legend-outer + fieldset legend {
    margin-top: 5px; } }
  .mdl-formsteps .mdl-text {
    margin-bottom: 12px; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-formsteps .mdl-text {
        flex: 0 0 auto;
        width: 85.71429%;
        margin-left: 0;
        margin-right: 0; } }
  .mdl-formsteps legend {
    display: table;
    float: left;
    width: 100%; }
    .mdl-formsteps legend + * {
      clear: both; }
  .mdl-formsteps body:not(:-moz-handler-blocked) fieldset {
    display: table-cell; }
  .mdl-formsteps__forward-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: none;
    background-color: transparent;
    margin-top: 15px;
    color: #0069A3; }
    .mdl-formsteps__forward-button svg {
      margin-right: 5px;
      fill: #0069A3; }
    .mdl-formsteps__forward-button:hover {
      cursor: pointer; }
      .mdl-formsteps__forward-button:hover .mdl-formsteps__forward-button-text:after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #0069A3; }
    .mdl-formsteps__forward-button--with-shadow {
      padding: 18px;
      transition: background-color 0.5s, box-shadow 0.5s; }
      .mdl-formsteps__forward-button--with-shadow:hover {
        box-shadow: 4px 4px 0.55556rem 0 rgba(0, 0, 0, 0.2); }
        .mdl-formsteps__forward-button--with-shadow:hover .mdl-formsteps__forward-button-text:after {
          height: 0; }
  .mdl-formsteps__forward-button-text {
    position: relative; }
  .mdl-formsteps .frc-captcha .frc-banner a,
  .mdl-formsteps .frc-captcha .frc-banner b {
    transition: all 0.3s;
    color: #2979ff; }
  .mdl-formsteps .frc-captcha .frc-banner:hover a,
  .mdl-formsteps .frc-captcha .frc-banner:hover b {
    color: #212121; }

h2.mdl-formsteps__review-legend-heading {
  font-family: SVARotisBold, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.2px;
  margin-bottom: 0; }

.mdl-formsteps__review-content {
  margin-bottom: 32px; }
  .mdl-formsteps__review-content p {
    margin-bottom: 0;
    padding-bottom: 0; }

ul.summarylist {
  column-count: 1;
  padding-left: 0;
  margin-top: 0.5rem; }
  ul.summarylist li {
    width: auto;
    display: list-item;
    padding-right: 0; }
    ul.summarylist li:before {
      display: none; }
    ul.summarylist li a {
      color: #FF0000;
      line-height: 28px; }
      ul.summarylist li a:hover {
        border-color: #FF0000;
        color: #FF0000; }

@media print, screen and (min-width: 47.6875em) {
  .mdl-input_field__wrapper {
    margin-left: -0.65rem; } }

.hiddenstep {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: -200vh; }

.mdl-input_field__error.active {
  display: block; }

.hidden {
  display: none; }

.mdl-formdynamicfieldblock {
  transition: all 0.5s;
  opacity: 0; }

.mdl-form_process {
  display: flex; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-form_process {
      margin-bottom: 96px; } }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-form_process {
      flex-wrap: wrap; } }
  .mdl-form_process__progress {
    display: none;
    transition: all 0.3s;
    position: absolute;
    height: 0.27778rem;
    background-color: #e8c266;
    top: 1.55556rem;
    width: 0;
    transform: translateY(-50%);
    z-index: 1; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-form_process__progress {
        display: block; } }
    .mdl-form_process__progress--mobile {
      transform: translate(-50%, 0);
      left: 1.22222rem;
      display: none;
      width: 0.27778rem;
      height: 0; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-form_process__progress--mobile {
          display: block; } }
  .mdl-form_process__wrapper {
    position: relative;
    z-index: 11; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-form_process__wrapper {
        width: calc(100vw + 2px);
        width: 100vw;
        transform: translateX(-50%);
        margin-left: 50%; } }
    .mdl-form_process__wrapper:after {
      top: 0;
      left: 1.22222rem;
      height: 100%;
      width: 0.05556rem;
      content: '';
      position: absolute;
      background: #f7ebcc;
      z-index: 0; }
      @media print, screen and (min-width: 47.6875em) {
        .mdl-form_process__wrapper:after {
          width: 100%;
          height: 0.05556rem;
          top: 1.55556rem; } }
  .mdl-form_process__step {
    flex: 1;
    transition: box-shadow 0.5s;
    position: relative; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-form_process__step {
        width: 100%;
        display: flex;
        flex: none; } }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-form_process__step {
        cursor: pointer; }
        .mdl-form_process__step:hover .mdl-form_process__content {
          pointer-events: all;
          background: #FFFFFF;
          box-shadow: 0 0 1.66667rem 0 rgba(0, 0, 0, 0.2); }
        .mdl-form_process__step:hover .mdl-form_process__description {
          transform: scaleY(1);
          opacity: 1; } }
    .mdl-form_process__step--error .mdl-form_process__badge-error {
      display: inline-block; }
    .mdl-form_process__step--success .mdl-form_process__badge-success {
      display: inline-block; }
  .mdl-form_process__header {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-form_process__header {
        align-items: flex-start; } }
  .mdl-form_process__indicator {
    position: relative;
    z-index: 10;
    width: 3.11111rem;
    height: 3.11111rem;
    border-radius: 50%;
    background-color: #8D7411;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-form_process__indicator {
        height: 2.44444rem;
        width: 2.44444rem; } }
  .mdl-form_process__badge {
    position: absolute;
    width: 1.44444rem;
    height: 1.44444rem;
    left: 0;
    transform: translateX(-50%); }
    .mdl-form_process__badge-success, .mdl-form_process__badge-error {
      height: 100%;
      width: 100%;
      border-radius: 50%;
      padding: 0.22222rem;
      display: none; }
    .mdl-form_process__badge-success {
      background-color: #71AB00; }
    .mdl-form_process__badge-error {
      background-color: #FF0000; }
    .mdl-form_process__badge .atm-icon {
      width: 100%;
      height: 100%;
      fill: #FFFFFF;
      display: flex; }
  .mdl-form_process__number {
    font-family: SVARotisBold, Helvetica, sans-serif;
    color: #FFFFFF;
    font-size: 1.44444rem;
    line-height: 1.25; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-form_process__number {
        font-size: 1.22222rem; } }
  .mdl-form_process__content {
    pointer-events: none;
    width: 100%;
    transition: all 0.3s;
    background: transparent;
    z-index: 1;
    margin-top: -1.55556rem; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-form_process__content {
        display: flex;
        justify-content: center;
        position: absolute;
        flex-wrap: wrap;
        padding: 2.88889rem 1.11111rem 1.33333rem 1.11111rem; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-form_process__content {
        position: relative;
        margin-top: 0;
        padding: 0 1.11111rem 2rem; } }
  .mdl-form_process__title {
    width: 100%;
    max-width: none;
    pointer-events: all;
    display: block;
    color: #927707;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.3636;
    letter-spacing: 0.01111rem;
    font-family: AkkuratBold, Helvetica, sans-serif; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-form_process__title {
        text-align: center; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-form_process__title {
        margin-top: 0.83333rem; } }
  .mdl-form_process__description {
    pointer-events: none; }
    @media print, screen and (min-width: 47.6875em) {
      .mdl-form_process__description {
        opacity: 0;
        transition: all 0.3s;
        transform: scaleY(0);
        transform-origin: top; } }
    .mdl-form_process__description .mdl-text {
      margin-bottom: 0; }
      .mdl-form_process__description .mdl-text * {
        font-size: 16px;
        padding-bottom: 0; }

.mdl-formlogin {
  width: 100%;
  padding: 8px 0; }
  .mdl-formlogin fieldset {
    margin-bottom: 40px; }
    .mdl-formlogin fieldset .mdl-input_row__inputs {
      width: 100%; }
    .mdl-formlogin fieldset legend {
      font-family: SVARotisBold, Helvetica, sans-serif;
      font-size: 22px; }
    .mdl-formlogin fieldset .atm-textlink, .mdl-formlogin fieldset .mdl-text a, .mdl-text .mdl-formlogin fieldset a, .mdl-formlogin fieldset .mdl-table th a, .mdl-table th .mdl-formlogin fieldset a,
    .mdl-formlogin fieldset .mdl-table td a, .mdl-table td .mdl-formlogin fieldset a {
      margin-top: 24px;
      margin-bottom: 0; }
  .mdl-formlogin__loginbutton {
    max-width: 231px;
    height: 58px;
    width: 100%;
    border: none;
    background: #0069A3;
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: -0.2px;
    text-align: center;
    line-height: 26px;
    transition: all 0.5s; }
    .mdl-formlogin__loginbutton:hover {
      transform: translateY(-2px);
      cursor: pointer;
      background: #005C8F;
      box-shadow: 5px 5px 15px 0; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-formlogin__loginbutton {
        max-width: 100%; } }

.mdl-formcontact {
  width: calc(100vw + 2px);
  max-width: 1280px;
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  background-image: linear-gradient(0deg, #841335 0%, #99294b 45%, #b6375d 100%);
  display: block;
  text-align: center;
  margin-bottom: 56px;
  transform: none;
  margin-left: -2.21rem;
  margin-right: -2.21rem; }
  @media print, screen and (max-width: 104.81125em) {
    .mdl-formcontact {
      margin-left: -2.25rem;
      margin-right: -2.25rem; } }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-formcontact {
      margin-left: -12px; } }
  .mdl-formcontact__targetgroup {
    background-color: #FFFFFF;
    padding: 6px 8px 4px 8px;
    text-transform: uppercase;
    display: inline-block;
    height: 24px;
    font-family: AkkuratBold;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.2px;
    position: relative;
    text-align: center;
    top: -4px;
    margin-bottom: 22px; }
    .mdl-formcontact__targetgroup span {
      position: relative;
      top: 2px; }
  .mdl-formcontact__heading h2 {
    color: #FFFFFF;
    font-family: AkkuratBold;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.32px;
    display: inline-block;
    border-bottom: 6px solid #FFFFFF;
    padding-bottom: 6px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-formcontact__heading h2 {
        font-size: 26px;
        line-height: 36px;
        letter-spacing: -0.28px;
        border-bottom: 4px; } }
  .mdl-formcontact__lead {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.2px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 0; }
  .mdl-formcontact__open {
    position: relative;
    top: 24px; }
  .mdl-formcontact__anchor {
    display: inline-block;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 8px 0 rgba(131, 150, 160, 0.2); }
  .mdl-formcontact .atm-icon {
    fill: #99294B;
    width: 28px;
    height: 28px;
    position: relative;
    top: 12px; }

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .mdl-formcontact {
    background-color: #99294b; } }

.mdl-file_upload {
  margin-bottom: 24px; }
  .mdl-file_upload--success .mdl-file_upload__button {
    background-color: #FFFFFF;
    border-color: #798E30;
    padding-right: 2.66667rem; }
    .mdl-file_upload--success .mdl-file_upload__button:hover {
      background-color: #FFFFFF; }
  .mdl-file_upload--success .mdl-file_upload__label {
    color: #4D6225;
    font-family: SVARotis, Helvetica, sans-serif; }
  .mdl-file_upload--success .mdl-file_upload__icon--success {
    display: inline-block; }
  .mdl-file_upload--success .mdl-file_upload__icon--upload {
    display: none; }
  .mdl-file_upload--success .mdl-file_upload__meta {
    color: #4D6225; }
  .mdl-file_upload--success .mdl-file_upload__delete {
    display: flex; }
  .mdl-file_upload--success .mdl-file_upload__success {
    display: block; }
  .mdl-file_upload--error-type .mdl-file_upload__button {
    background-color: #FFFFFF;
    border-color: #FF0000;
    padding-right: 2.66667rem; }
    .mdl-file_upload--error-type .mdl-file_upload__button:hover {
      background-color: #FFFFFF; }
  .mdl-file_upload--error-type .mdl-file_upload__label {
    color: #FF0000;
    font-family: SVARotis, Helvetica, sans-serif; }
  .mdl-file_upload--error-type .mdl-file_upload__icon--error {
    display: inline-block; }
  .mdl-file_upload--error-type .mdl-file_upload__icon--upload {
    display: none; }
  .mdl-file_upload--error-type .mdl-file_upload__meta {
    color: #FF0000; }
  .mdl-file_upload--error-type .mdl-file_upload__delete {
    display: flex; }
  .mdl-file_upload--error-type .mdl-file_upload__error--type {
    display: block; }
  .mdl-file_upload--error .mdl-file_upload__button {
    background-color: #FFFFFF;
    border-color: #FF0000;
    padding-right: 2.66667rem; }
    .mdl-file_upload--error .mdl-file_upload__button:hover {
      background-color: #FFFFFF; }
  .mdl-file_upload--error .mdl-file_upload__label {
    color: #FF0000;
    font-family: SVARotis, Helvetica, sans-serif; }
  .mdl-file_upload--error .mdl-file_upload__icon--error {
    display: inline-block; }
  .mdl-file_upload--error .mdl-file_upload__icon--upload {
    display: none; }
  .mdl-file_upload--error .mdl-file_upload__meta {
    color: #FF0000; }
  .mdl-file_upload--error .mdl-file_upload__delete {
    display: flex; }
  .mdl-file_upload--error .mdl-file_upload__error--size {
    display: block; }
  .mdl-file_upload__button {
    cursor: pointer;
    transition: all 0.3s;
    border: 0.11111rem solid transparent;
    display: flex;
    background-color: #927707;
    padding: 1.11111rem;
    width: 100%;
    align-items: center; }
    .mdl-file_upload__button:hover {
      background-color: #CAA518; }
    .mdl-file_upload__button-wrapper {
      position: relative; }
  .mdl-file_upload__icon {
    flex-shrink: 0;
    fill: #FFFFFF;
    width: 1.66667rem;
    height: 1.66667rem; }
    .mdl-file_upload__icon--state {
      display: none;
      border-radius: 50%;
      padding: 0.22222rem; }
    .mdl-file_upload__icon--success {
      background-color: #798E30; }
    .mdl-file_upload__icon--error {
      background-color: #FF0000; }
  .mdl-file_upload__info {
    margin-left: 24px;
    text-align: left; }
  .mdl-file_upload__label {
    transition: all 0.3s;
    cursor: inherit;
    text-align: left;
    color: #FFFFFF;
    font-family: SVARotisBold, Helvetica, sans-serif;
    margin-right: 0.33333rem; }
  .mdl-file_upload__meta {
    display: inline-block;
    font-family: SVARotisBold, Helvetica, sans-serif; }
  .mdl-file_upload__delete {
    cursor: pointer;
    transition: all 0.3s;
    display: none;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.11111rem;
    width: 1.66667rem;
    height: 1.66667rem;
    padding: 0.33333rem; }
    .mdl-file_upload__delete:hover {
      background: #0069A3; }
      .mdl-file_upload__delete:hover .mdl-file_upload__delete-icon {
        transition: fill 0.3s;
        fill: #FFFFFF; }
    .mdl-file_upload__delete-icon {
      fill: #0069A3;
      width: 100%;
      height: 100%; }
  .mdl-file_upload__error {
    color: #FF0000;
    font-size: 0.72222rem;
    display: none; }
  .mdl-file_upload__success {
    font-size: 0.72222rem;
    color: #4D6225;
    display: none; }

.mdl-input_field--error .mdl-file_upload__button {
  background-color: #FFFFFF;
  border-color: #FF0000;
  padding-right: 2.66667rem; }
  .mdl-input_field--error .mdl-file_upload__button:hover {
    background-color: #FFFFFF; }

.mdl-input_field--error .mdl-file_upload__label {
  color: #FF0000;
  font-family: SVARotis, Helvetica, sans-serif; }

.mdl-input_field--error .mdl-file_upload__icon--error {
  display: inline-block;
  fill: #FFFFFF; }

.mdl-input_field--error .mdl-file_upload__icon--upload {
  display: none; }

.mdl-input_field--error .mdl-file_upload__meta {
  color: #FF0000; }

.mdl-sticky_side_menu {
  z-index: 10;
  width: 100%;
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: #FFFFFF; }
  .mdl-sticky_side_menu--fixed .mdl-sticky_side_menu__fixer {
    position: fixed;
    width: inherit;
    top: 0; }
  .mdl-sticky_side_menu__fixer {
    z-index: inherit;
    background-color: inherit;
    padding-top: 0.44444rem; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-sticky_side_menu--desktop .mdl-sticky_side_menu__step:not(.mdl-sticky_side_menu__step--active) {
      display: none; } }
  .mdl-sticky_side_menu--mobile {
    display: none; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-sticky_side_menu--mobile {
        display: flex; } }
    .mdl-sticky_side_menu--mobile .mdl-sticky_side_menu__step {
      display: none; }
      .mdl-sticky_side_menu--mobile .mdl-sticky_side_menu__step--active {
        display: flex; }
  .mdl-sticky_side_menu--mobile-buttom {
    display: none; }
  .mdl-sticky_side_menu__step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    padding: 12px 25px 12px 12px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.1429;
    margin-bottom: 0.44444rem;
    transition: all 0.3s; }
    .mdl-sticky_side_menu__step-text {
      line-height: 1.56;
      color: inherit; }
    .mdl-sticky_side_menu__step--active {
      border: 0.11111rem solid #0069A3;
      color: #0069A3;
      font-family: SVARotisBold, Helvetica, sans-serif; }
      .mdl-sticky_side_menu__step--active .mdl-sticky_side_menu__progress {
        display: block; }
    .mdl-sticky_side_menu__step--success {
      background-color: #0069A3;
      color: #FFFFFF;
      border: 0.11111rem solid #0069A3; }
      .mdl-sticky_side_menu__step--success .mdl-sticky_side_menu__icon--success {
        display: inline-block; }
    .mdl-sticky_side_menu__step--error .mdl-sticky_side_menu__icon--error {
      display: inline-block; }
    .mdl-sticky_side_menu__step:hover {
      cursor: pointer; }
  .mdl-sticky_side_menu__icons {
    width: 0.88889rem;
    height: 0.88889rem;
    /* ugly IE11 hack */
    position: absolute;
    right: 0.55556rem;
    top: 0.88889rem; }
  .mdl-sticky_side_menu__icon {
    display: none;
    width: 100%;
    height: 100%;
    position: relative; }
    .mdl-sticky_side_menu__icon--success {
      border: 0.11111rem solid #FFFFFF;
      border-radius: 50%; }
      .mdl-sticky_side_menu__icon--success .atm-icon {
        position: absolute;
        fill: #FFFFFF;
        width: 125%;
        height: 125%;
        bottom: 0.11111rem;
        left: 0.11111rem; }
    .mdl-sticky_side_menu__icon--error .atm-icon {
      fill: #EAB900;
      transform: scale(1.2); }
  .mdl-sticky_side_menu__progress {
    display: none;
    transition: width 0.3s;
    position: absolute;
    height: 0.27778rem;
    width: 0;
    background-color: #0069A3;
    left: 0;
    bottom: 0; }
  .mdl-sticky_side_menu__indicator {
    transition: top 0.3s;
    position: absolute;
    right: -0.72222rem;
    top: 1.61111rem;
    width: 0;
    height: 0;
    border: 0.5rem solid transparent;
    border-right: 0.5rem solid #0069A3;
    transform: translateY(-50%); }
    @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
      .mdl-sticky_side_menu__indicator {
        right: -0.72222rem; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-sticky_side_menu__indicator {
        display: none; } }

.mdl-flyoutlocation {
  width: 100%;
  margin-bottom: 24px; }
  .mdl-flyoutlocation__map {
    height: 18.5rem; }
  .mdl-flyoutlocation .atm-heading, .mdl-flyoutlocation .mdl-text h1, .mdl-text .mdl-flyoutlocation h1,
  .mdl-flyoutlocation .mdl-text h2, .mdl-text .mdl-flyoutlocation h2,
  .mdl-flyoutlocation .mdl-text h3, .mdl-text .mdl-flyoutlocation h3,
  .mdl-flyoutlocation .mdl-text h4, .mdl-text .mdl-flyoutlocation h4 {
    font-family: SVARotisBold, Helvetica, sans-serif;
    font-size: 22px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-flyoutlocation .atm-heading, .mdl-flyoutlocation .mdl-text h1, .mdl-text .mdl-flyoutlocation h1,
      .mdl-flyoutlocation .mdl-text h2, .mdl-text .mdl-flyoutlocation h2,
      .mdl-flyoutlocation .mdl-text h3, .mdl-text .mdl-flyoutlocation h3,
      .mdl-flyoutlocation .mdl-text h4, .mdl-text .mdl-flyoutlocation h4 {
        font-size: 1.44444rem; } }
  .mdl-flyoutlocation__container {
    display: flex;
    margin-bottom: 24px; }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-flyoutlocation__container {
        display: inline-block; } }
    .mdl-flyoutlocation__container__block {
      width: 33%; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-flyoutlocation__container__block {
          width: 100%;
          margin-bottom: 16px; } }

.mdl-calculator__infoblock {
  background-color: #f7f7f7;
  padding: 32px 16px;
  text-align: center;
  margin-bottom: 56px; }

.mdl-calculator__infoblock-lower {
  background-color: #f7f7f7;
  padding: 32px 16px;
  margin-bottom: 56px; }

.mdl-calculator__primary-linkbutton {
  display: inline-block;
  margin-top: 56px;
  background: #0069A3;
  border: none;
  color: #FFFFFF;
  font-family: SVARotisBold, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 28px;
  padding: 16px 80px;
  text-decoration: none; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-calculator__primary-linkbutton {
      padding: 16px 32px;
      width: 100%;
      text-align: center; } }
  .mdl-calculator__primary-linkbutton:hover {
    border: none;
    text-decoration: none;
    cursor: pointer;
    background: #005C8F;
    box-shadow: 5px 5px 15px 0 rgba(102, 163, 197, 0.5); }

.mdl-calculator__result {
  margin-bottom: 56px; }
  .mdl-calculator__result .mdl-table__total-amount {
    word-break: normal; }
  .mdl-calculator__result .mdl-table__outer {
    margin-bottom: 19px; }

.mdl-calculator__validation {
  margin-top: 40px;
  color: #FF0000; }

.mdl-calculator h2, .mdl-calculator__h2 {
  font-family: SVARotis, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
  font-weight: 400; }

.mdl-calculator__active {
  display: block; }

.mdl-text.mdl-calculator {
  margin-bottom: 32px; }

.mdl-searchresults form {
  margin-left: 24px;
  margin-bottom: 32px; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-searchresults form {
      margin-left: 0; } }

.mdl-searchresults__input-wrapper {
  width: 290px;
  display: flex;
  border-bottom: 1px solid #000000; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-searchresults__input-wrapper {
      width: 100%; } }
  @media print, screen and (min-width: 47.6875em) and (max-width: 71.74875em) {
    .mdl-searchresults__input-wrapper {
      width: auto; } }

.mdl-searchresults__submit {
  border: none;
  background: transparent; }
  .mdl-searchresults__submit .atm-icon {
    fill: #3C3B3F;
    width: 17px;
    height: 17px;
    top: 1px;
    position: relative; }

.mdl-searchresults__breadcrumbs {
  text-decoration: none;
  color: #0069A3;
  font-family: Akkurat, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: -0.35px;
  line-height: 20px;
  display: flex;
  flex-wrap: wrap; }

.mdl-searchresults__breadcrumb-seperator {
  margin: 0 10px; }

.mdl-searchresults__input {
  width: 100%;
  border: none;
  padding: 6px;
  font-family: SVARotis, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.21px;
  background-color: transparent; }
  .mdl-searchresults__input::placeholder {
    color: #000000;
    opacity: 1; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-searchresults__input {
      width: 100%; } }
  @media print, screen and (max-width: 71.74875em) {
    .mdl-searchresults__input {
      font-size: 16px; } }

.mdl-searchresults__results {
  padding-left: 0;
  margin-bottom: 30px; }

.mdl-searchresults__result {
  list-style-type: none; }

.mdl-searchresults__anchor {
  text-decoration: none;
  border-bottom: 1px solid #BDC0C3;
  color: #000000;
  display: block;
  padding: 10px 24px 16px; }
  .mdl-searchresults__anchor:hover {
    text-decoration: none;
    box-shadow: 0 0 20px 0 rgba(185, 180, 175, 0.5);
    border-bottom: none;
    border-top: 1px solid #FFFFFF;
    margin-top: -1px;
    padding-bottom: 17px; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-searchresults__anchor {
      padding: 10px 0 16px; } }

.mdl-searchresults__result-title {
  font-family: AkkuratBold, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: -0.35px;
  line-height: 20px;
  margin-bottom: 0;
  font-weight: 400; }

.mdl-searchresults__amount-text, .mdl-searchresults__result-excerpt {
  font-family: Akkurat, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: -0.35px;
  line-height: 20px;
  font-weight: 400; }

.mdl-searchresults .url {
  text-decoration: none;
  color: #0069A3;
  font-family: AkkuratBold, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: -0.35px;
  line-height: 20px;
  display: block; }

.mdl-searchresults__amount-text, .mdl-searchresults__h2 {
  margin-left: 24px;
  margin-bottom: 20px; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-searchresults__amount-text, .mdl-searchresults__h2 {
      margin-left: 0; } }

.mdl-searchresults__amount-text + .mdl-searchresults__h2 {
  margin-top: 0; }

.mdl-searchresults__h2 {
  margin-top: 64px; }

.mdl-searchresults__pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  /* stylelint-disable-line */
  -ms-flex-pack: space-evenly;
  /* stylelint-disable-line */ }
  @media print, screen and (max-width: 71.74875em) {
    .mdl-searchresults__pagination {
      justify-content: space-between; } }

.mdl-searchresults__pagination-list {
  text-align: center; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-searchresults__pagination-list {
      display: none; } }

.mdl-searchresults__pagination-listitem {
  list-style-type: none;
  display: inline-block;
  margin-right: 1.4em;
  font-family: AkkuratBold, Helvetica, sans-serif;
  font-size: 14px; }

.mdl-searchresults__pagination-listitem-anchor {
  text-decoration: none;
  color: #000000;
  padding: 0.5em 0.5em 6px; }
  .mdl-searchresults__pagination-listitem-anchor:hover {
    color: #005C8F;
    border-bottom: 2px solid #005C8F; }

.mdl-searchresults__pagination-listitem-current {
  padding: 0.5em 0.5em 3px 0.5em;
  /* stylelint-disable-line */
  color: #005C8F;
  border-bottom: 2px solid #005C8F; }

.mdl-searchresults__pagination-prev {
  fill: #000000; }
  .mdl-searchresults__pagination-prev a:hover .atm-icon {
    fill: #005C8F; }
  .mdl-searchresults__pagination-prev.inactive {
    fill: #7F7D7A; }

.mdl-searchresults__pagination-next a:hover .atm-icon {
  fill: #005C8F; }

.mdl-searchresults__pagination-next.inactive {
  fill: #7F7D7A; }

#search_form_mobile {
  margin: 1rem; }

.mdl-searchfilter {
  padding-left: 30px;
  margin-bottom: 80px; }
  @media print, screen and (max-width: 71.74875em) {
    .mdl-searchfilter {
      padding-left: 0; } }
  .mdl-searchfilter__filter-wrapper, .mdl-searchfilter__button-wrapper {
    margin-left: -30px;
    width: calc(100% + 30px); }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-searchfilter__filter-wrapper, .mdl-searchfilter__button-wrapper {
        width: 100%;
        margin-left: 0; } }
  .mdl-searchfilter__filter-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 56px; }
    @media print, screen and (max-width: 71.74875em) {
      .mdl-searchfilter__filter-wrapper {
        margin-left: 0; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-searchfilter__filter-wrapper {
        flex-direction: column; } }
    .mdl-searchfilter__filter-wrapper--inner {
      width: calc(100% / 3);
      padding: 0 30px; }
      @media print, screen and (max-width: 71.74875em) {
        .mdl-searchfilter__filter-wrapper--inner {
          width: 100%;
          margin-bottom: 32px;
          padding: 0; } }
    .mdl-searchfilter__filter-wrapper--product {
      border-right: 1px solid #D9DCDC;
      padding-left: 0; }
      @media print, screen and (max-width: 71.74875em) {
        .mdl-searchfilter__filter-wrapper--product {
          border-right: 0; } }
    .mdl-searchfilter__filter-wrapper--targetgroup {
      border-right: 1px solid #D9DCDC; }
      @media print, screen and (max-width: 71.74875em) {
        .mdl-searchfilter__filter-wrapper--targetgroup {
          border-right: 0; } }
    @media print, screen and (max-width: 47.68625em) {
      .mdl-searchfilter__filter-wrapper--documenttype {
        margin-bottom: 0; } }
    .mdl-searchfilter__filter-wrapper legend {
      font-family: SVARotisBold, Helvetica, sans-serif;
      font-size: 22px;
      margin-bottom: 24px; }
  .mdl-searchfilter button {
    display: block;
    margin: 0 auto; }
  .mdl-searchfilter .with-errors {
    color: #FF0000; }

.mdl-scheduler__radio-label-date {
  font-family: SVARotisBold, Helvetica, sans-serif; }

.mdl-scheduler .slots_wrapper {
  display: block; }
  .mdl-scheduler .slots_wrapper.hidden {
    display: none; }

.mdl-scheduler .mdl-formsteps__legend-outer {
  font-family: SVARotisBold, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.1429;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
  margin-top: 0; }

.mdl-scheduler .mdl-formsteps fieldset > #available_days {
  margin-bottom: 0; }

.mdl-scheduler .mdl-formsteps .mdl-input_row + .mdl-overlay .mdl-text {
  margin-top: 56px; }

.mdl-scheduler .mdl-formsteps .mdl-overlay .mdl-text {
  margin-bottom: 0; }

#personal_data {
  display: none; }
  #personal_data.open {
    display: block; }

.mdl-image_text {
  margin: 0; }
  @media all and (min-width: 19.875em) {
    .mdl-image_text {
      margin-bottom: 1.33333rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-image_text {
      margin-bottom: 2.22222rem; } }
  .mdl-image_text .mdl-text {
    margin-bottom: 0; }
  @media all and (min-width: 71.75em) {
    .mdl-image_text--image-right .mdl-image_text__image-wrapper {
      order: 2; } }
  .mdl-image_text--text-bottom .mdl-image_text__text {
    align-items: flex-end; }
    @media all and (min-width: 71.75em) {
      .mdl-image_text--text-bottom .mdl-image_text__text .mdl-text > *:last-child {
        padding-bottom: 0; } }
  .mdl-image_text .mdl-video {
    margin-bottom: 0;
    padding-top: 0; }
  .mdl-image_text__image {
    margin: 0;
    width: 100%; }
    @media all and (max-width: 71.74em) {
      .mdl-image_text__image-wrapper {
        margin-bottom: 8px; } }
  .mdl-image_text__text {
    display: flex; }

.mdl-ipv_calculator__result-table {
  margin-top: 32px; }
  .mdl-ipv_calculator__result-table:first-child {
    margin-top: 0; }

.mdl-ipv_calculator__information {
  margin-bottom: 16px; }

.mdl-ipv_calculator__result-container {
  margin-top: 32px; }

.mdl-ipv_calculator__introduction {
  margin-bottom: 8px; }

.mdl-ipv_calculator__infoblock {
  padding: 24px;
  background-color: #f7f7f7; }

.mdl-ipv_calculator__infoblock-title {
  margin-top: 0; }

.mdl-ipv_calculator__infoblock-left {
  min-width: 20%;
  width: 20%;
  min-height: 1px; }

.mdl-ipv_calculator__infoblock-right {
  margin-top: 24px; }

.mdl-ipv_calculator__infoblock-color {
  width: 100%; }
  .mdl-ipv_calculator__infoblock-color:before {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background-color: #FF0000;
    content: '';
    border-radius: 50%;
    overflow: hidden;
    /* stylelint-disable */
    -webkit-print-color-adjust: exact;
    /* stylelint-enable */ }
  .mdl-ipv_calculator__infoblock-color--success:before {
    background-color: #71AB00; }
  .mdl-ipv_calculator__infoblock-color--error:before {
    background-color: #FF0000; }
  .mdl-ipv_calculator__infoblock-color--attention:before {
    background-color: #EAB900; }

@media print, screen and (min-width: 47.6875em) {
  .mdl-ipv_calculator__result-container {
    margin-top: 56px; }
  .mdl-ipv_calculator__infoblock-container {
    display: flex;
    align-items: center; }
  .mdl-ipv_calculator__infoblock-left {
    width: 11%;
    min-width: 11%; }
  .mdl-ipv_calculator__infoblock {
    padding: 24px 0; }
  .mdl-ipv_calculator__infoblock-right {
    margin-top: 0;
    padding-left: 24px; } }

@media print, screen and (min-width: 71.75em) {
  .mdl-ipv_calculator__infoblock-left {
    width: 6%;
    min-width: 6%; } }

@media print {
  .mdl-ipv_calculator__result .mdl-table__outer {
    margin-top: 0; } }

.mdl-downloadtiles {
  width: calc(100vw + 2px);
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  margin-bottom: 1.33333rem;
  padding: 32px 0; }
  @media all and (min-width: 19.875em) {
    .mdl-downloadtiles {
      margin-bottom: 1.77778rem; } }
  @media all and (min-width: 47.6875em) {
    .mdl-downloadtiles {
      margin-bottom: 3.11111rem; } }
  .mdl-downloadtiles .grid-container, .mdl-downloadtiles .lyt-wrapper, .mdl-downloadtiles .mdl-footer__container-top, .mdl-downloadtiles .mdl-footer__container-bottom, .mdl-downloadtiles .mdl-header__meta-container, .mdl-downloadtiles .mdl-header__navigation-container, .mdl-downloadtiles .mdl-tabnav__scrollarea, .mdl-downloadtiles .mdl-tabnav__anchor-list, .mdl-downloadtiles .mdl-breadcrumb__wrapper, .mdl-downloadtiles .mdl-flyout {
    padding: 0; }
  .mdl-downloadtiles__items {
    display: flex; }
  .mdl-downloadtiles__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 300px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid #F0F1F1;
    background-color: #FFFFFF;
    padding: 24px; }
    .mdl-downloadtiles__item:hover {
      transform: translateY(-8px);
      box-shadow: 0.33333rem 0.33333rem 32px 0 rgba(217, 220, 220, 0.8); }
    .mdl-downloadtiles__item-image {
      width: 100%;
      min-height: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-grow: 1;
      margin-bottom: 24px; }
      .mdl-downloadtiles__item-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto; }
      .mdl-downloadtiles__item-image .atm-icon {
        width: 50px;
        height: 50px; }
    .mdl-downloadtiles__item-title {
      font-size: 18px;
      margin: 0;
      margin-bottom: 8px;
      text-align: left; }
    .mdl-downloadtiles__item-details {
      color: #0069A3;
      display: flex;
      align-items: center; }
      .mdl-downloadtiles__item-details .atm-icon {
        height: 12px;
        margin-left: 12px; }
        .mdl-downloadtiles__item-details .atm-icon use {
          fill: #0069A3; }
  @media print, screen and (min-width: 47.6875em) {
    .mdl-downloadtiles__item {
      height: 350px; } }
  @media print, screen and (min-width: 71.75em) {
    .mdl-downloadtiles__item {
      height: 450px; } }

.mdl-download-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  width: 100vw;
  height: 100vh;
  display: none;
  background: transparent;
  transition: background 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
  overflow-y: scroll; }
  .mdl-download-modal--centered {
    align-items: center;
    overflow-y: hidden; }
  .mdl-download-modal--enabled {
    display: flex;
    opacity: 0;
    transform: translateY(-1%); }
  .mdl-download-modal--show {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    opacity: 1; }
  .mdl-download-modal .grid-container, .mdl-download-modal .lyt-wrapper, .mdl-download-modal .mdl-footer__container-top, .mdl-download-modal .mdl-footer__container-bottom, .mdl-download-modal .mdl-header__meta-container, .mdl-download-modal .mdl-header__navigation-container, .mdl-download-modal .mdl-tabnav__scrollarea, .mdl-download-modal .mdl-tabnav__anchor-list, .mdl-download-modal .mdl-breadcrumb__wrapper, .mdl-download-modal .mdl-flyout {
    padding: 0; }
  .mdl-download-modal .lyt-wrapper, .mdl-download-modal .mdl-footer__container-top, .mdl-download-modal .mdl-footer__container-bottom, .mdl-download-modal .mdl-header__meta-container, .mdl-download-modal .mdl-header__navigation-container, .mdl-download-modal .mdl-tabnav__scrollarea, .mdl-download-modal .mdl-tabnav__anchor-list, .mdl-download-modal .mdl-breadcrumb__wrapper, .mdl-download-modal .mdl-flyout {
    background-color: #FFFFFF;
    box-shadow: 0.33333rem 0.33333rem 32px 0 rgba(0, 0, 0, 0.2); }
  .mdl-download-modal__pages {
    background-color: #FFFFFF;
    overflow: hidden;
    display: flex; }
    .mdl-download-modal__pages .mdl-download-modal__page {
      padding: 40px 0;
      flex-shrink: 0;
      width: 100%;
      display: flex;
      flex-direction: column; }
  .mdl-download-modal__next, .mdl-download-modal__prev, .mdl-download-modal__close {
    position: absolute;
    top: 50%;
    border: none;
    background: transparent;
    padding: 5px;
    cursor: pointer;
    z-index: 1; }
    .mdl-download-modal__next .atm-icon, .mdl-download-modal__prev .atm-icon, .mdl-download-modal__close .atm-icon {
      width: 16px;
      height: 16px; }
      .mdl-download-modal__next .atm-icon use, .mdl-download-modal__prev .atm-icon use, .mdl-download-modal__close .atm-icon use {
        fill: #0069A3; }
      @media all and (min-width: 47.6875em) {
        .mdl-download-modal__next .atm-icon, .mdl-download-modal__prev .atm-icon, .mdl-download-modal__close .atm-icon {
          width: 24px;
          height: 24px; } }
    .mdl-download-modal__next.hidden, .mdl-download-modal__prev.hidden, .mdl-download-modal__close.hidden {
      display: none; }
  .mdl-download-modal__next {
    right: 12px; }
    @media all and (min-width: 71.75em) {
      .mdl-download-modal__next {
        right: 40px; } }
  .mdl-download-modal__prev {
    left: 12px; }
    .mdl-download-modal__prev .atm-icon {
      transform: scaleX(-1); }
    @media all and (min-width: 71.75em) {
      .mdl-download-modal__prev {
        left: 40px; } }
  .mdl-download-modal__close {
    top: 12px;
    right: 12px; }
    @media all and (min-width: 71.75em) {
      .mdl-download-modal__close {
        top: 40px;
        right: 40px; } }
  .mdl-download-modal__image {
    display: flex;
    justify-content: center;
    align-items: center; }
    .mdl-download-modal__image img {
      max-width: 100%; }
    .mdl-download-modal__image .atm-icon {
      width: 50px;
      height: 50px; }
  .mdl-download-modal__icon {
    display: flex;
    align-items: center;
    height: 150px; }
  .mdl-download-modal__detail th,
  .mdl-download-modal__detail td {
    line-height: 2; }
  .mdl-download-modal__detail th {
    font-weight: inherit;
    color: #BDC0C3;
    text-align: left;
    padding-right: 32px; }
  @media print, screen and (max-width: 47.68625em) {
    .mdl-download-modal table,
    .mdl-download-modal tbody,
    .mdl-download-modal tr,
    .mdl-download-modal th,
    .mdl-download-modal td {
      display: block; }
    .mdl-download-modal th,
    .mdl-download-modal td {
      line-height: 1.7; }
    .mdl-download-modal td {
      overflow: hidden;
      text-overflow: ellipsis; }
    .mdl-download-modal th {
      margin-top: 15px; }
    .mdl-download-modal tr:first-child th {
      margin-top: 0; } }

.mdl-skiplinks__list {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.mdl-skiplinks__link {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  width: 1px; }
  .mdl-skiplinks__link:focus, .mdl-skiplinks__link:active {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }
  .mdl-skiplinks__link:focus {
    padding-top: 0.22222rem;
    padding-bottom: 0.22222rem;
    padding-left: 0.44444rem;
    padding-right: 0.44444rem;
    position: absolute;
    background: #FFFFFF;
    color: #000000;
    margin-left: -2px;
    margin-top: -2px;
    text-decoration: none;
    z-index: 2000; }
    @media all and (min-width: 104.8125em) {
      .mdl-skiplinks__link:focus {
        padding-top: 0.22222rem;
        padding-bottom: 0.22222rem; } }
    @media all and (min-width: 104.8125em) {
      .mdl-skiplinks__link:focus {
        padding-left: 0.66667rem;
        padding-right: 0.66667rem; } }

.ie_notification__wrapper {
  background-color: #f20000;
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 50%;
  position: relative;
  z-index: 100;
  display: none; }
  @media all and (-ms-high-contrast: none) {
    .ie_notification__wrapper {
      display: inline-block; } }

.ie_notification__content {
  text-align: center;
  margin: 15px 0; }

.mdl-autocomplete_input__result-list {
  list-style: none;
  padding: 0;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 100%;
  margin: -24px 0 0;
  z-index: 999; }
  .mdl-autocomplete_input__result-list--active {
    background-color: #005b8d;
    color: #FFFFFF; }
  .mdl-autocomplete_input__result-list-item {
    cursor: pointer;
    padding: 6px 10px; }
    .mdl-autocomplete_input__result-list-item:hover {
      background-color: #eff1f2; }

.mdl-autocomplete_input .mdl-input_row__input {
  position: relative; }

.mdl-formdynamicmultifieldblock__step {
  transition: opacity 0.5s;
  opacity: 0; }

.mdl-button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 5px;
  border: 2px solid #FFFFFF;
  font-family: AkkuratBold, Helvetica, sans-serif;
  font-size: 0.77778rem;
  font-weight: 400;
  line-height: 0.77778rem;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 150ms ease; }
  .mdl-button:hover {
    opacity: 0.75; }

.mdl-activity-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0s linear 0.2s;
  z-index: 9999; }
  .mdl-activity-indicator.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in-out, visibility 0s linear 0s; }
  .mdl-activity-indicator__content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999; }
    .mdl-activity-indicator__content-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: #FFFFFF;
      width: 630px;
      padding: 80px;
      margin: auto; }
      @media print, screen and (max-width: 47.68625em) {
        .mdl-activity-indicator__content-inner {
          width: 343px;
          padding-left: 40px;
          padding-right: 40px; } }
  .mdl-activity-indicator__title {
    font-family: Akkurat, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 120%;
    padding-bottom: 16px;
    margin: 0;
    text-align: center; }
  .mdl-activity-indicator__description {
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    text-align: center; }
  .mdl-activity-indicator__overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.4;
    background: #000000;
    z-index: 99; }
  .mdl-activity-indicator__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
    margin-bottom: 16px; }
    .mdl-activity-indicator__icon:before, .mdl-activity-indicator__icon:after {
      content: '';
      box-sizing: border-box;
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 5px solid #dbdbdb;
      animation: prixClipFix 2s linear infinite; }
    .mdl-activity-indicator__icon:after {
      transform: rotate3d(90, 90, 0, 180deg);
      border-color: #0069a3; }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes prixClipFix {
  from {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
            clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0); }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0); }
  75%,
  to {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%); } }

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

