@charset "UTF-8";
/**
 * Colors imported from ColorSchemer export
 */
/**
 * ALH Theme variables, colors
 */
/**
 * Colors imported from ColorSchemer export
 */
/**
 * Default variables
 */
/**
 * Theme colors
 */
/**
 * Custom colors
 */
/**
 * Helper functions
 */
/**
 * Replace String
 *
 * background-image: str-replace('url(...)', 'search str', 'replace str');
 */
/**
 * 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:
 *
 * .var_dark_on_light {
 * 	@include fontSmoothing;
 * }
 * .var_light_on_dark {
 * 	@include fontSmoothingReset;
 * }
 */
/**
 * Placeholder in input fields
 */
/**
 * box shadow
 */
/**
 * 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
 */
@font-face {
  font-family: "Icons";
  src: url("../fonts/icons/Icons.eot");
  src: url("../fonts/icons/Icons.eot?#iefix") format("eot"), url("../fonts/icons/Icons.woff") format("woff"), url("../fonts/icons/Icons.ttf") format("truetype"), url("../fonts/icons/Icons.svg#Icons") format("svg");
}

/**
 * Map containing all icons with their unicode character
 *
 * Can be accessed using map-get (see iconStyles mixin)
 */
/**
 * Mixins
 *
 * icon() renders an icon into the :before pseudo element
 *
 * iconStyles() renders the main styles
 * It is used by icon
 *
 * iconDefaultStyles() renders the basic styles
 * They are separated to allow for the use in a placeholder to reduce code duplication
 */
/**
 * Class for each icon
 * Placeholder for default styles to reduce code duplication
 *
 * Used in styleguide, e.g.
 */
.icon_alh-logo:before, .icon_arrowright:before, .icon_check:before, .icon_circle:before, .icon_cross:before, .icon_fullarrow:before, .icon_hallesche-logo:before, .icon_icon-arrow:before, .icon_icon-excel:before, .icon_icon-pdf:before, .icon_icon-sort-arrow:before, .icon_info:before, .icon_nav-background-desktop:before, .icon_nav-background-mobile:before, .icon_nav-background-tablet:before {
  display: inline-block;
  font-family: "Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
}

.icon_alh-logo:before {
  content: "";
}

.icon_arrowright:before {
  content: "";
}

.icon_check:before {
  content: "";
}

.icon_circle:before {
  content: "";
}

.icon_cross:before {
  content: "";
}

.icon_fullarrow:before {
  content: "";
}

.icon_hallesche-logo:before {
  content: "";
}

.icon_icon-arrow:before {
  content: "";
}

.icon_icon-excel:before {
  content: "";
}

.icon_icon-pdf:before {
  content: "";
}

.icon_icon-sort-arrow:before {
  content: "";
}

.icon_info:before {
  content: "";
}

.icon_nav-background-desktop:before {
  content: "";
}

.icon_nav-background-mobile:before {
  content: "";
}

.icon_nav-background-tablet:before {
  content: "";
}

/**
 * Map containing all icons with their dimensions and color variants
 *
 * Can be accessed using map-get (see iconDataurlStyles( mixin)
 */
/**
 * Mixins
 *
 * iconDataurl() renders an icon into the :before/:after pseudo element
 *
 * iconDataurlStyles() renders the main styles
 * It is used by iconDataurl()
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

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

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

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

/*! Lity - v2.2.2 - 2017-07-17
* http://sorgalla.com/lity/
* Copyright (c) 2015-2017 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close, .lity-close:hover, .lity-close:focus, .lity-close:active {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: -40px;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner, .lity-close:hover::-moz-focus-inner, .lity-close:focus::-moz-focus-inner, .lity-close:active::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}


.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

.lity {
  background-color: rgba(255, 255, 255, 0.8);
}

.lity.lity-iframe {
  opacity: 0;
}

.lity-wrap {
  padding: 0 15%;
}

.lity-container {
  width: 100%;
  max-width: calc(100vw - 100px);
}

.lity-content {
  box-shadow: 0 10px 30px 0 rgba(255, 255, 255, 0.19);
  background-color: #FFFFFF;
}

.lity-close, .lity-close:hover, .lity-close:focus, .lity-close:active {
  position: absolute;
  font-size: 0;
  text-shadow: none;
  width: 24px;
  height: 24px;
}

.lity-close:before, .lity-close:hover:before, .lity-close:focus:before, .lity-close:active:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2232%22 height%3D%2232%22%3E%3Cpath fill%3D%22%23666%22 fill-rule%3D%22evenodd%22 d%3D%22M26.331 4L15.912 14.496 5.5 4.162 4.006 5.67l10.413 10.334L4 26.5l1.506 1.493 10.418-10.496L26.505 28 28 26.494 17.417 15.99l10.42-10.495z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 2.28571em;
  width: 2.28571em;
  content: "";
  display: inline-block;
}

.no-svg .lity-close:before {
  background-image: url("../media/icons/cross--default.png");
}

.lity-close:before, .lity-close:hover:before, .lity-close:focus:before, .lity-close:active:before {
  width: 24px;
  height: 24px;
}

.lity-iframe-container iframe {
  background: #FFFFFF;
}

/**
 * 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 and (min-width: 35.5em) {
  title {
    font-family: '{"name":"small","value":"568px"}';
  }
}

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

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

head {
  font-family: '{"small":"568px","medium":"768px","large":"1400px"}';
  display: none;
}

@font-face {
  font-family: 'FiraSans-Regular';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fira-sans/400.woff2") format("woff2"), url("../fonts/fira-sans/400.woff") format("woff"), url("../fonts/fira-sans/400.ttf") format("truetype");
}

@font-face {
  font-family: 'FiraSans-Italic';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/fira-sans/400i.woff2") format("woff2"), url("../fonts/fira-sans/400i.woff") format("woff"), url("../fonts/fira-sans/400i.ttf") format("truetype");
}

@font-face {
  font-family: 'FiraSans-Medium';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/fira-sans/500.woff2") format("woff2"), url("../fonts/fira-sans/500.woff") format("woff"), url("../fonts/fira-sans/500.ttf") format("truetype");
}

@font-face {
  font-family: 'FiraSans-SemiBold';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/fira-sans/600.woff2") format("woff2"), url("../fonts/fira-sans/600.woff") format("woff"), url("../fonts/fira-sans/600.ttf") format("truetype");
}

@font-face {
  font-family: 'FiraSans-Bold';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fira-sans/700.woff2") format("woff2"), url("../fonts/fira-sans/700.woff") format("woff"), url("../fonts/fira-sans/700.ttf") format("truetype");
}

@font-face {
  font-family: 'FiraSans-Black';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/fira-sans/900.woff2") format("woff2"), url("../fonts/fira-sans/900.woff") format("woff"), url("../fonts/fira-sans/900.ttf") format("truetype");
}

@font-face {
  font-family: 'FiraSans-Ultra';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/fira-sans/900.woff2") format("woff2"), url("../fonts/fira-sans/900.woff") format("woff"), url("../fonts/fira-sans/900.ttf") format("truetype");
}

/**
 * Theme colors
 */
/**
 * Default variables
 */
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu/ubuntu-regular-webfont.woff2") format("woff2"), url("../fonts/ubuntu/ubuntu-regular-webfont.woff") format("woff"), url("../fonts/ubuntu/ubuntu-regular-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu/ubuntu-regular-italic-webfont.woff2") format("woff2"), url("../fonts/ubuntu/ubuntu-regular-italic-webfont.woff") format("woff"), url("../fonts/ubuntu/ubuntu-regular-italic-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu/ubuntu-medium-webfont.woff2") format("woff2"), url("../fonts/ubuntu/ubuntu-medium-webfont.woff") format("woff"), url("../fonts/ubuntu/ubuntu-medium-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu/ubuntu-medium-italic-webfont.woff2") format("woff2"), url("../fonts/ubuntu/ubuntu-medium-italic-webfont.woff") format("woff"), url("../fonts/ubuntu/ubuntu-medium-italic-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu/ubuntu-bold-webfont.woff2") format("woff2"), url("../fonts/ubuntu/ubuntu-bold-webfont.woff") format("woff"), url("../fonts/ubuntu/ubuntu-bold-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu/ubuntu-bold-italic-webfont.woff2") format("woff2"), url("../fonts/ubuntu/ubuntu-bold-italic-webfont.woff") format("woff"), url("../fonts/ubuntu/ubuntu-bold-italic-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/**
 * Colors - Mixins
 */
/**
 * Typography - Mixins
 */
/**
 * Media Queries - Mixins
 */
/**
 * Others
 */
table:not(.ui-datepicker-calendar) {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table:not(.ui-datepicker-calendar) caption {
  padding: 10px;
  text-align: left;
  color: #ffffff;
  background-color: #be0d3e;
}

table:not(.ui-datepicker-calendar) td,
table:not(.ui-datepicker-calendar) th {
  font-weight: 400;
  padding: 8px 10px;
  text-align: left;
}

table:not(.ui-datepicker-calendar) td:first-child,
table:not(.ui-datepicker-calendar) th:first-child {
  border-left: 0;
}

table:not(.ui-datepicker-calendar) td:last-child,
table:not(.ui-datepicker-calendar) th:last-child {
  border-right: 0;
}

table:not(.ui-datepicker-calendar) td {
  border-bottom: 1px solid #313131;
  vertical-align: top;
}

table:not(.ui-datepicker-calendar) td:before {
  content: '';
  display: block;
  min-width: 100px;
}

table:not(.ui-datepicker-calendar) tr:first-child td {
  border-top: 1px solid #313131;
}

table:not(.ui-datepicker-calendar) thead {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

table:not(.ui-datepicker-calendar) thead th {
  color: #ffffff;
  background-color: #004767;
}

table:not(.ui-datepicker-calendar).zebra tr:nth-child(odd) {
  background: rgba(0, 95, 124, 0.1);
}

table:not(.ui-datepicker-calendar).zebra tr:nth-child(even) {
  background: #ffffff;
}

table:not(.ui-datepicker-calendar).header tr:first-child {
  color: #ffffff;
  background: #004767;
}

table:not(.ui-datepicker-calendar).header tr:first-child td {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  white-space: nowrap;
}

table:not(.ui-datepicker-calendar).rowheader td:first-child,
table:not(.ui-datepicker-calendar).footer tr:last-child td {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

table:not(.ui-datepicker-calendar).rowheader.header tr:first-child td:first-child {
  color: #ffffff;
  background: transparent;
}

table:not(.ui-datepicker-calendar).sortable .sort-wrapper {
  display: flex;
  justify-content: space-between;
}

table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows:before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 10 5%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath clip-rule%3D%22evenodd%22 d%3D%22M0 0l5 5 5-5z%22 fill%3D%22%23d8d8d8%22 fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: NaN0px/14px0em;
  width: NaN0px/14px0em;
  content: "";
  display: inline-block;
}

.no-svg table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows:before {
  background-image: url("../media/icons/icon-sort-arrow--colorToReplace.png");
}

table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 10 5%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath clip-rule%3D%22evenodd%22 d%3D%22M0 0l5 5 5-5z%22 fill%3D%22%23d8d8d8%22 fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: NaN0px/14px0em;
  width: NaN0px/14px0em;
  content: "";
  display: inline-block;
}

.no-svg table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows:after {
  background-image: url("../media/icons/icon-sort-arrow--colorToReplace.png");
}

table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows {
  cursor: pointer;
  width: 20px;
  padding-left: 4px;
  user-select: none;
}

table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows:before, table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows:after {
  width: 10px;
  height: 10px;
  display: block;
}

table:not(.ui-datepicker-calendar).sortable .sort-wrapper__sort-arrows:before {
  transform: rotate(-180deg);
  margin-bottom: 2px;
}

table:not(.ui-datepicker-calendar).pageable tr:nth-child(n+11) {
  display: none;
}

table:not(.ui-datepicker-calendar).pageable.header tr {
  display: table-row;
}

table:not(.ui-datepicker-calendar).pageable.header tr:nth-child(n+12) {
  display: none;
}

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

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

h1,
h2,
h3,
h4,
h6 {
  color: #be0d3e;
}

h1 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
}

h2 {
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
}

h3 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

ul {
  list-style-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%227%22 height%3D%227%22 viewBox%3D%220 0 10 10%22%3E%3Ccircle fill%3D%22%23be0d3e%22 fill-rule%3D%22evenodd%22 cx%3D%225%22 cy%3D%225%22 r%3D%225%22%2F%3E%3C%2Fsvg%3E");
  padding-left: 15px;
}

ul ul {
  list-style-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%227%22 height%3D%227%22 viewBox%3D%220 0 10 10%22%3E%3Ccircle fill%3D%22%23007ca3%22 fill-rule%3D%22evenodd%22 cx%3D%225%22 cy%3D%225%22 r%3D%225%22%2F%3E%3C%2Fsvg%3E");
}

ul ul ul {
  list-style-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%227%22 height%3D%227%22 viewBox%3D%220 0 10 10%22%3E%3Ccircle fill%3D%22%23a8aab3%22 fill-rule%3D%22evenodd%22 cx%3D%225%22 cy%3D%225%22 r%3D%225%22%2F%3E%3C%2Fsvg%3E");
}

p {
  font-size: 16px;
  line-height: 22px;
}

a {
  color: #be0d3e;
  text-decoration: none;
}

a:hover, a:focus-within {
  text-decoration: underline;
}

small {
  font-size: 14px;
  line-height: 18px;
}

sup {
  top: auto;
  vertical-align: super;
}

:focus {
  outline: none;
}

:focus-visible:where(:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(p)) {
  outline: 1px solid #007ca3;
}

.is-keyboard-focus:where(:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(p)) {
  outline: 3px solid #007ca3;
  outline-offset: 3px;
}

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

.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.disable-overflow-x {
  overflow-x: hidden;
}

.disable-overflow-y {
  overflow-y: hidden;
}

.disable-overflow {
  overflow: hidden;
}

.secret {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}

.secret__icon {
  fill: currentColor;
  width: 16px;
  height: 20px;
  margin-left: 20px;
  transform: translateY(-2px);
  vertical-align: middle;
  flex-shrink: 0;
}

.ah-richtext .secret {
  display: inline-flex;
}

.ah-richtext .secret .ah-svgicon {
  top: auto !important;
}

.ah-button.secret {
  display: inline-flex;
  vertical-align: baseline;
}

.ah-nav__link.secret {
  display: flex;
  justify-content: flex-start;
}

.ah-nav__link.secret .secret__icon {
  fill: #B11A3B;
}

.ah-tab__title.secret .secret__icon {
  fill: #B11A3B;
}

.ah-shoppingcart__item a.secret {
  display: inline;
}

.ah-shoppingcart__item a.secret .secret__icon {
  fill: #B11A3B;
}

.ah-file__link span.secret {
  display: inline;
}

.ah-file__link span.secret .secret__icon {
  fill: #B11A3B;
}

.flex {
  /**
	 * Input radio
	 */
  /**
	 * Input text
	 */
  /**
	 * Select
	 */
  /**
	 * Text area
	 */
  /**
	 * Checkbox
	 */
}

.flex_formcontainer fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.flex_formcontainer input {
  border: 0;
}

.flex_formcontainer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flex_formcontainer label.error {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.41;
  color: #E23E21;
  position: absolute;
}

.flex_formcontainer input[type="text"],
.flex_formcontainer input[type="password"],
.flex_formcontainer input[type="number"],
.flex_formcontainer input[type="email"],
.flex_formcontainer select,
.flex_formcontainer textarea {
  border: 0;
  background-color: #F4F9FD;
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), inset 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  color: #666666;
  margin-top: 7px;
  margin-bottom: 3px;
  padding: 13px 11px;
  width: 100%;
  border-bottom: 2px solid transparent;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.flex_formcontainer input[type="text"].error,
.flex_formcontainer input[type="password"].error,
.flex_formcontainer input[type="number"].error,
.flex_formcontainer input[type="email"].error,
.flex_formcontainer select.error,
.flex_formcontainer textarea.error {
  border-bottom: 2px solid #E23E21;
}

.flex_formcontainer input::-webkit-input-placeholder, .flex_formcontainer textarea::-webkit-input-placeholder {
  color: #999999;
}

.flex_formcontainer input::-moz-placeholder, .flex_formcontainer textarea::-moz-placeholder {
  color: #999999;
}

.flex_formcontainer input:-ms-input-placeholder, .flex_formcontainer textarea:-ms-input-placeholder {
  color: #999999;
}

.flex_formcontainer input:-moz-placeholder, .flex_formcontainer textarea:-moz-placeholder {
  color: #999999;
}

.flex_formcontainer select {
  width: 100%;
  padding: 11px;
  cursor: pointer;
}

.flex_formcontainer select::-ms-expand {
  display: none;
}

.flex_formcontainer select:focus::-ms-value {
  background-color: #F4F9FD;
  color: #666666;
}

.flex_label {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.41;
  color: #666666;
}

.flex_radiogroupoptions {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.flex_radiogroupoptions {
  margin: 7px 0 24px;
}

.flex_radiogroupoption {
  display: flex;
  height: 24px;
}

.flex_radiogroupoption input {
  visibility: hidden;
}

.flex_radiogroupoption label {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  line-height: 26px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
  vertical-align: middle;
}

@media all and (min-width: 48em) {
  .flex_radiogroupoption label {
    margin-left: 22px;
    margin-right: 24px;
  }
}

.flex_radiogroupoption input + label:not(.error)::before,
.flex_radiogroupoption input + .error + label::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #F1F8FE;
  display: inline-block;
  left: 0;
  top: 0;
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), inset 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  margin-right: 10px;
}

.flex_radiogroupoption input:checked + label:not(.error)::after,
.flex_radiogroupoption input:checked + .error + label::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4C97BE;
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 6px;
}

.flex_radiogroupoption label.error {
  width: calc(100% - 34px);
  position: absolute;
  left: 34px;
  top: 26px;
  margin: 0;
}

.flex_radiogroupoption label.error:before, .flex_radiogroupoption label.error:after {
  content: none;
}

.flex_singletextfield {
  margin-bottom: 28px;
}

.flex_singletextfield label {
  display: block;
}

.flex_singletextfield.flex_datefield .flex_icon {
  display: flex;
  align-items: center;
}

.flex_singletextfield.flex_datefield .flex_icon svg {
  width: 28px;
  height: 28px;
  fill: #4C97BE;
  margin: 0 0 0 5px;
}

.flex_singleselectfield label {
  display: block;
}

.flex_singleselectfield select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.flex_textarea {
  margin-bottom: 28px;
}

.flex_textarea label {
  display: block;
}

.flex_singlecheckbox {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

.flex_singlecheckbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.flex_singlecheckbox input[type="checkbox"] ~ label {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #666666;
  margin-left: 40px;
}

.flex_singlecheckbox input[type="checkbox"] ~ label a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 56.693 56.693%22%3E%3Cpath d%3D%22M28.347.142C12.795.142.142 12.795.142 28.347c0 15.552 12.653 28.204 28.205 28.204 15.552 0 28.204-12.652 28.204-28.204C56.551 12.794 43.898.142 28.347.142zm15.694 28.473c-.016.084-.052.16-.084.241a1.333 1.333 0 01-.127.267c-.015.023-.018.05-.035.073a1.408 1.408 0 01-.271.269c-.006.004-.008.011-.013.015L16.882 49.434a1.414 1.414 0 01-1.984-.284 1.415 1.415 0 01.284-1.983l25.116-18.82-25.115-18.82a1.416 1.416 0 111.699-2.268l26.629 19.953c.056.042.087.102.135.151.048.048.108.078.149.133.017.022.019.05.035.073.056.084.091.174.127.267.032.081.068.157.084.241.017.089.013.178.013.269 0 .091.004.179-.013.269z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: NaN0px/14px0em;
  width: NaN0px/14px0em;
  content: "";
  display: inline-block;
}

.no-svg .flex_singlecheckbox input[type="checkbox"] ~ label a:before {
  background-image: url("../media/icons/arrowright--colorToReplace.png");
}

.flex_singlecheckbox input[type="checkbox"] ~ label a:before {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  background-size: 80%;
  margin-left: 2px;
}

.flex_singlecheckbox input[type="checkbox"] ~ label.error {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.41;
  color: #E23E21;
}

.flex_singlecheckbox input[type="checkbox"] ~ label.error:before, .flex_singlecheckbox input[type="checkbox"] ~ label.error:after {
  display: none;
}

.flex_singlecheckbox input[type="checkbox"] ~ label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  background-color: #F1F8FE;
  box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.5), inset 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: absolute;
  left: -40px;
}

.flex_singlecheckbox input[type="checkbox"] ~ label:after {
  left: -40px;
}

.flex_singlecheckbox input[type="checkbox"]:focus ~ label:before {
  outline: 3px solid #be0d3e;
  outline-offset: 2px;
}

.flex_singlecheckbox input[type="checkbox"]:checked ~ label:before {
  height: 24px;
  width: 24px;
  background-color: #4C97BE;
  box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.5), inset 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}

.flex_singlecheckbox input[type="checkbox"]:checked ~ label:after {
  content: '';
  position: absolute;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2224%22 height%3D%2224%22%3E%3Cg fill%3D%22%23FFFFFF%22 fill-rule%3D%22evenodd%22%3E%3Cpath d%3D%22M4.318 11.318a1.502 1.502 0 012.122 0l4.243 4.243a1.5 1.5 0 01-2.122 2.121L4.318 13.44a1.5 1.5 0 010-2.122z%22%2F%3E%3Cpath d%3D%22M20.156 6.343a1.5 1.5 0 010 2.121l-9.192 9.192a1.5 1.5 0 11-2.121-2.121l9.192-9.192a1.5 1.5 0 012.121 0z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 1.71429em;
  width: 1.71429em;
  height: 24px;
  width: 24px;
  background-size: 80%;
  background-position: center;
  cursor: pointer;
}

.no-svg .flex_singlecheckbox input[type="checkbox"]:checked ~ label:after {
  background-image: url("../media/icons/check--colorToReplace.png");
}

form button {
  background-color: #B11A3B;
  color: #FFFFFF;
  border-radius: 0;
  padding: 12px 28px;
}

form button:hover, form button:focus-within {
  text-decoration: none;
  -webkit-box-shadow: 0 5px 10px rgba(102, 102, 102, 0.5);
  -moz-box-shadow: 0 5px 10px rgba(102, 102, 102, 0.5);
  box-shadow: 0 5px 10px rgba(102, 102, 102, 0.5);
}

.ah-form input, .ah-form textarea {
  font-style: italic;
  width: 100%;
  -webkit-appearance: none;
}

.ah-form input::-webkit-input-placeholder, .ah-form textarea::-webkit-input-placeholder {
  color: #999999;
  font-weight: 100;
}

.ah-form input::-moz-placeholder, .ah-form textarea::-moz-placeholder {
  color: #999999;
}

.ah-form input:-ms-input-placeholder, .ah-form textarea:-ms-input-placeholder {
  color: #999999;
}

.ah-form input:-moz-placeholder, .ah-form textarea:-moz-placeholder {
  color: #999999;
}

.ah-form label {
  font-weight: 500;
  font-size: 10px;
  line-height: inherit;
  color: #999999;
}

.ah-form input[type="text"],
.ah-form input[type="number"] {
  border: 0;
  padding: 20px 11px 16px;
  height: 60px;
  background-color: #ffffff;
  box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), inset 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  font-size: 18px;
}

* {
  box-sizing: border-box;
}

html {
  color: #313131;
  background-color: #ffffff;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 87.5%;
  line-height: 1.5;
  position: relative;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 85px;
}

@media (min-width: 768px) {
  html {
    scroll-padding-top: 134px;
  }
}

html.is-portal {
  scroll-padding-top: 162px;
}

@media (min-width: 768px) {
  html.is-portal {
    scroll-padding-top: 211px;
  }
}

html.iframe {
  background-color: rgba(255, 255, 255, 0);
}

body {
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .l-page {
    position: relative;
    width: 100%;
  }
}

.l-page.is-navigation-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(168, 170, 179, 0.8);
  z-index: 12;
}

.l-page__login {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  height: 77px;
  z-index: 12;
}

@media all and (min-width: 87.5em) {
  .l-page__login {
    width: 1440px;
    left: 50%;
    margin-left: -720px;
  }
}

.l-page__header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 15px;
  margin: 0 auto;
  height: 63px;
  width: 100%;
  max-width: 1440px;
  background-color: #ffffff;
  border-bottom: 1px solid #d8d8d8;
  border-top: 2px solid #be0d3e;
  z-index: 12;
}

@media (min-width: 768px) {
  .l-page__header {
    border-top: 3px solid #be0d3e;
    height: 111px;
  }
}

.is-navigation-active .l-page__header {
  border-bottom-style: none;
  z-index: 13;
}

.l-page--portal .l-page__header {
  top: 77px;
}

.l-page--portal .l-page__header--fixed {
  top: 0;
}

.is-navigation-active .l-page--portal .l-page__header {
  top: 0;
}

[data-experience-editor] .l-page__header {
  position: relative;
  left: auto;
  transform: none;
  top: 0;
}

.l-page__logo {
  position: relative;
  top: -5px;
  display: flex;
  align-items: center;
  max-width: calc(100% - 157px);
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}

@media (min-width: 768px) {
  .l-page__logo {
    max-width: calc(100% - 234px);
  }
}

.l-page__content {
  -webkit-transition: left 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: left 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: left 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  position: relative;
  min-height: 200px;
  width: 100%;
  max-width: 1440px;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .l-page__content {
    min-height: 550px;
    padding: 0 20px;
  }
}

@media (min-width: 1224px) {
  .l-page__content {
    padding: 0;
    margin: 0 auto;
  }
}

.l-page--unbrandet .l-page__content {
  width: 100%;
  min-height: 0;
  margin: 0;
}

.is-navigation-active .l-page__content {
  left: calc(100% - 70px);
}

@media (min-width: 768px) {
  .is-navigation-active .l-page__content {
    left: 0;
  }
}

.l-page__content > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.l-page__content > .ah-cookielayer, .l-page__content > .ah-dialoge, .l-page__content > .ah-heroslider, .l-page__content > .ah-linkexpose, .l-page__content > .ah-uspteaser, .l-page__content > .ah-sealslider, .l-page__content > .ah-videohero, .l-page__content > .ah-heroslider__item, .l-page__content > .ah-iframe.ah-iframe--fullscreen {
  max-width: none;
  margin-left: -15px;
  margin-right: -15px;
}

@media (min-width: 768px) {
  .l-page__content > .ah-cookielayer, .l-page__content > .ah-dialoge, .l-page__content > .ah-heroslider, .l-page__content > .ah-linkexpose, .l-page__content > .ah-uspteaser, .l-page__content > .ah-sealslider, .l-page__content > .ah-videohero, .l-page__content > .ah-heroslider__item, .l-page__content > .ah-iframe.ah-iframe--fullscreen {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 1224px) {
  .l-page__content > .ah-cookielayer, .l-page__content > .ah-dialoge, .l-page__content > .ah-heroslider, .l-page__content > .ah-linkexpose, .l-page__content > .ah-uspteaser, .l-page__content > .ah-sealslider, .l-page__content > .ah-videohero, .l-page__content > .ah-heroslider__item, .l-page__content > .ah-iframe.ah-iframe--fullscreen {
    margin-left: auto;
    margin-right: auto;
  }
}

.l-page--all {
  margin-top: 63px;
}

@media (min-width: 768px) {
  .l-page--all {
    margin-top: 111px;
  }
}

.l-page--portal .l-page--all {
  margin-top: 0;
}

[data-experience-editor] .l-page--all {
  margin-top: 0;
  padding-top: 0;
}

.l-page--unbrandet {
  padding: 0 15px 15px;
  background: #ffffff;
  margin-top: 0;
}

.l-page--unbrandet-with-line {
  border-top: 2px solid #be0d3e;
}

@media (min-width: 768px) {
  .l-page--unbrandet-with-line {
    border-top: 3px solid #be0d3e;
  }
}

.l-page--portal {
  padding-top: 77px;
}

.l-page--zIndex .l-page__content > [class^="ah-"] {
  position: relative;
  z-index: 1;
}

.l-page--zIndex .l-page__content > [class^="ah-"].ah-stickybutton--sticky {
  position: fixed;
  z-index: 0;
}

.l-page--zIndex .l-page__content > [class^="ah-"].ah-separator {
  z-index: 0;
}

.l-iframe {
  min-height: 150px;
}

.ah-richtext .table {
  margin-bottom: 20px;
}

.ah-richtext .table.overflow {
  margin-left: -4px;
  margin-right: -4px;
}

.ah-richtext .table.overflow .table__wrapper {
  overflow-x: auto;
  margin: 0;
}

.ah-richtext .table .table__wrapper {
  margin: 0 -4px;
}

.ah-richtext .table .table__wrapper table {
  border-collapse: separate;
  border-spacing: 4px 0;
  margin: 0;
}

.ah-richtext .table .table__tools {
  display: flex;
  justify-content: space-between;
}

.ah-richtext .table .table__tools-hide {
  position: relative;
}

.ah-richtext .table .table__tools-hide .hide-menu {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
  padding: 4px 10px;
  display: none;
  position: absolute;
  top: 10px;
  left: 35px;
  background: #ffffff;
  z-index: 1;
  min-width: 200px;
  border-radius: 5px;
}

.ah-richtext .table .table__tools-hide .hide-menu .flex_singlecheckbox label {
  padding: 10px 0;
  user-select: none;
}

.ah-richtext .table .table__tools-hide .hide-menu .flex_singlecheckbox label:before, .ah-richtext .table .table__tools-hide .hide-menu .flex_singlecheckbox label:after {
  top: 5px;
}

.ah-richtext .table .table__tools-hide .hide-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 4px;
  cursor: pointer;
  user-select: none;
}

.ah-richtext .table .table__tools-hide .hide-toggle .ah-svgicon {
  width: 100%;
  height: 100%;
  fill: #646d74;
}

.ah-richtext .table .table__tools-pager {
  display: flex;
  max-width: 150px;
  overflow: hidden;
  position: relative;
  height: 36px;
}

.ah-richtext .table .table__tools-pager a {
  display: block;
  margin-left: 4px;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  height: 32px;
  padding-top: 4px;
  text-align: center;
  text-decoration: none;
  color: #313131;
  background-color: #d8d8d8;
}

.ah-richtext .table .table__tools-pager a:before {
  display: none;
}

.ah-richtext .table .table__tools-pager a.active {
  background: #be0d3e;
  color: #ffffff;
}

.ah-richtext .table .table__tools-pager a.first, .ah-richtext .table .table__tools-pager a.last {
  position: absolute;
  top: 0;
}

.ah-richtext .table .table__tools-pager a.first {
  left: 0;
  display: none;
}

.ah-richtext .table .table__tools-pager a.last {
  right: 0;
}

.ah-richtext {
  *zoom: 1;
  font-size: 16px;
  line-height: 22px;
}

.ah-richtext:before, .ah-richtext:after {
  content: " ";
  display: table;
}

.ah-richtext:after {
  clear: both;
}

@media all and (max-width: 35.49em) {
  .ah-richtext h1 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
  }
  .ah-richtext h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .ah-richtext h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

.ah-richtext.inherit a, .ah-richtext--simple.inherit a {
  color: inherit;
}

.ah-richtext.inherit .is-keyboard-focus, .ah-richtext--simple.inherit .is-keyboard-focus {
  outline-color: currentcolor;
}

.ah-richtext a {
  display: inline-block;
}

.ah-richtext a:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23be0d3e%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-richtext a:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-richtext a:before {
  width: 10px;
  height: 6px;
  transform: rotate(-90deg);
  position: relative;
  top: -2px;
  left: -1px;
}

.ah-richtext a.ah-button {
  display: inline-flex;
}

.ah-richtext a.ah-button:before {
  content: none;
}

.ah-richtext img {
  max-width: 100%;
}

.ah-richtext p, .ah-richtext ul, .ah-richtext ol, .ah-richtext img {
  margin: 0 0 15px;
}

.ah-richtext p {
  font-size: inherit;
}

.ah-richtext .infotext {
  display: none;
}

.ah-richtext .ah-tooltip.infotext {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #313131;
  display: inline-block;
  top: 4px;
  margin: 0 10px;
}

.ah-richtext .button.button--transformed {
  display: block;
  margin: 10px 0;
}

.ah-richtext .button.button--transformed.button--tertiary {
  display: inline;
  margin: 0;
}

.ah-richtext .button.button--transformed a:before {
  display: none;
}

.ah-richtext .button .ah-button--secondary {
  color: #be0d3e;
}

.ah-richtext .button .ah-iconlink {
  color: #be0d3e;
}

.ah-richtext .button .ah-iconlink .ah-svgicon {
  width: 16px;
  height: 16px;
  fill: #be0d3e;
  position: relative;
  top: 3px;
  margin-right: 4px;
}

.ah-richtext .leadtext {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}

.ah-accordion--team .ah-accordion__item-content .ah-richtext {
  text-align: center;
}

.ah-grid .ah-detailteaser .ah-richtext {
  margin: 0;
}

.ah-richtext .ah-richtext__hide-icon:before,
.ah-richtext .hide-icon:before {
  display: none;
}

.ah-richtext--large {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  width: 100%;
}

@media all and (min-width: 48em) {
  .ah-richtext--large {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-richtext--large {
    padding: 0;
  }
}

.ah-richtext--medium > * {
  padding: 0 10px;
  width: 100%;
}

@media all and (min-width: 48em) {
  .ah-richtext--medium > * {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-richtext--medium > * {
    padding: 0;
    width: 60%;
  }
}

.ah-link--white {
  color: #FFFFFF;
}

.ah-svgsprite {
  padding: 0 50px;
}

.ah-svgsprite__masks {
  height: 0;
  position: absolute;
}

.ah-svgsprite__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ah-svgsprite__item {
  *zoom: 1;
  margin-bottom: 10px;
}

.ah-svgsprite__item:before, .ah-svgsprite__item:after {
  content: " ";
  display: table;
}

.ah-svgsprite__item:after {
  clear: both;
}

.ah-svgsprite__item__name {
  vertical-align: top;
}

.ah-svgsprite--hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.ah-svgsprite--preview {
  background: #DDDDDD;
}

.ah-svgsprite--preview .ah-svgsprite__item__name {
  margin: 8px 0 0 15px;
  display: inline-block;
}

.ah-svgicon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  padding: 0;
  tap-highlight-color: transparent;
}

.ah-svgicon > use {
  tap-highlight-color: transparent;
}

.ah-svgicon--default-fill {
  fill: #ffffff;
}

.ah-svgicon--fill-red {
  fill: #be0d3e;
}

.ah-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ah-responsiveimage {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.ah-responsiveimage__inner {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-bottom: 61.11%;
}

.ah-image {
  max-width: 100%;
}

.ah-image--has-parent {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover";
  object-position: 50% 0;
  background-position-y: top !important;
}

.ah-image--has-parent.ah-image--center {
  object-position: 50% 50%;
  background-position-y: center !important;
}

.ah-image--has-parent.ah-image--bottom {
  object-position: 50% 100%;
  background-position-y: bottom !important;
}

.ah-image--circle {
  border-radius: 50%;
}

.ah-imagelink {
  display: inline-block;
  position: relative;
  outline: none;
}

.ah-imagelink img[src$=".svg"] {
  width: inherit;
  display: block;
}

.ah-imagelink:before {
  display: none !important;
}

.ah-imagelink:focus {
  outline: 1px solid #007ca3;
}

.is-keyboard-focus-within .ah-imagelink:focus {
  outline-width: 3px;
  outline-offset: 3px;
}

.ah-imagelink__image {
  position: static;
  display: block;
  max-width: none;
  object-fit: contain;
  font-family: "object-fit: contain";
  width: auto;
}

.ah-imagebutton {
  border: 0;
  background: unset;
  display: inline-block;
  position: relative;
  outline: none;
}

.ah-imagebutton img[src$=".svg"] {
  width: inherit;
  display: block;
}

.ah-imagebutton:before {
  display: none !important;
}

.ah-imagebutton:focus {
  outline: 1px solid #007ca3;
}

.ah-imagebutton__image {
  position: static;
  display: block;
  max-width: none;
  object-fit: contain;
  font-family: "object-fit: contain", sans-serif;
  width: auto;
}

.ah-iconlink {
  display: inline-block;
}

.ah-iconlink__text--hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ah-iconlink__text--hidden .ah-iconlink__text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ah-nav :focus-visible {
  outline: -4px dotted grey;
}

.is-navigation-search .ah-nav {
  display: none;
}

.ah-nav__wrapper {
  position: relative;
  overflow-y: auto;
  z-index: 1;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__wrapper {
    height: auto;
  }
}

@keyframes displayNav {
  0% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}

.ah-nav__level {
  width: 100%;
  display: none;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__level {
    display: block;
    flex-basis: calc(25% - 20px);
    width: auto;
    position: relative;
  }
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__level-1:after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    z-index: -1;
  }
}

.ah-nav__wrapper-1--active .ah-nav__level-1 {
  display: block;
  animation: displayNav .2s;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__wrapper-1--active .ah-nav__level-1 {
    animation: none;
  }
}

.ah-nav__wrapper-2--active .ah-nav__level-2 {
  display: block;
  animation: displayNav .2s;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__wrapper-2--active .ah-nav__level-2 {
    animation: none;
  }
}

.ah-nav__wrapper-3--active .ah-nav__level-3 {
  display: block;
  animation: displayNav .2s;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__wrapper-3--active .ah-nav__level-3 {
    animation: none;
  }
}

.ah-nav__wrapper-4--active .ah-nav__level-4 {
  display: block;
  animation: displayNav .2s;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__wrapper-4--active .ah-nav__level-4 {
    animation: none;
  }
}

.ah-nav__wrapper-5--active .ah-nav__level-5 {
  display: block;
  animation: displayNav .2s;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__wrapper-5--active .ah-nav__level-5 {
    animation: none;
  }
}

.ah-nav__lists {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 0 35px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__lists {
    margin: 0;
  }
}

.ah-nav__level-1 .ah-nav__lists {
  margin-top: 10px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__level-1 .ah-nav__lists {
    display: flex;
    align-items: flex-start;
    margin: 0;
  }
}

.ah-nav__lists .ah-nav__lists {
  margin-right: 0;
  margin-left: 35px;
}

.ah-nav__inner {
  width: 100%;
  overflow-y: auto;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    width: 100%;
  }
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__back-wrapper {
    display: none;
  }
}

.ah-nav__back-btn {
  background-color: #F7F7F7;
  padding: 15px 35px;
}

.ah-nav__back-btn-link {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.ah-nav__back-btn .ah-svgicon {
  fill: #313131;
  height: 10px;
  margin-right: 5px;
  width: 12px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__parent {
    display: none;
  }
}

.ah-nav__parent a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d8d8d8;
  padding: 15px 35px;
}

.ah-nav__parent__inner {
  display: flex;
  flex-flow: column;
}

.ah-nav__parent__current {
  font-size: 14px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-1.ah-nav__item--active {
    border-bottom: 3px solid #be0d3e;
  }
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-1 + .ah-nav__item-1 {
    margin-left: 35px;
  }
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-5 {
    display: block;
  }
}

.ah-nav__item-1:not(.ah-nav__item--is-meta) + .ah-nav__item--is-meta {
  margin-top: 50px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-1:not(.ah-nav__item--is-meta) + .ah-nav__item--is-meta {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item--is-meta.ah-nav__item-1 {
    margin: 1px 0 0 auto;
  }
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item--is-meta.ah-nav__item-1 ~ .ah-nav__item--is-meta.ah-nav__item-1 {
    margin-right: 0;
    margin-left: 18px;
    position: relative;
  }
  .ah-nav__item--is-meta.ah-nav__item-1 ~ .ah-nav__item--is-meta.ah-nav__item-1:before {
    content: "|";
    position: absolute;
    top: 8px;
    left: -12px;
  }
}

.ah-nav__link {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
  color: #646d74;
  height: 51px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ah-nav__link:hover, .ah-nav__link:focus-within {
  text-decoration: none;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__link {
    font-weight: 400;
    font-size: 12px;
    display: flex;
  }
}

.ah-nav__link:hover {
  font-weight: 700;
  color: #be0d3e;
}

.ah-nav__item--has-children > .ah-nav__link:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23646d74%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-nav__item--has-children > .ah-nav__link:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-nav__item--has-children > .ah-nav__link:after {
  height: 15px;
  width: 22px;
  margin-left: auto;
  flex-shrink: 0;
}

.ah-nav__item--has-children > .ah-nav__link:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-nav__item--has-children > .ah-nav__link:hover:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-nav__item--has-children > .ah-nav__link:hover:after {
  height: 15px;
  width: 22px;
  margin-left: auto;
  flex-shrink: 0;
}

.ah-nav__item--active .ah-nav__link {
  font-weight: 700;
  color: #be0d3e;
}

.ah-nav__item--active.ah-nav__item--has-children .ah-nav__link:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-nav__item--active.ah-nav__item--has-children .ah-nav__link:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-nav__item--active.ah-nav__item--has-children .ah-nav__link:after {
  height: 15px;
  width: 22px;
  margin-left: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-1 .ah-nav__link {
    font-size: 16px;
    font-weight: 400;
    border: none;
    padding-bottom: 15px;
  }
}

.ah-nav__item-1.ah-nav__item--active .ah-nav__link {
  font-weight: 500;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-1.ah-nav__item--has-children > .ah-nav__link:after {
    content: none;
  }
}

.ah-nav__item-1.ah-nav__item--is-meta .ah-nav__link {
  font-size: 12px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-1.ah-nav__item--is-meta .ah-nav__link {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item-2 .ah-nav__link {
    font-size: 14px;
  }
}

.ah-nav__tag {
  font-size: 12px;
  font-weight: 400;
  background-color: #be0d3e;
  border-radius: 10px;
  color: #ffffff;
  display: inline-block;
  margin-right: auto;
  padding: 1px 8px;
}

.ah-nav__item a .ah-nav__svg {
  display: none;
  width: 26px;
  height: 26px;
  fill: #646d74;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-nav__item a .ah-nav__svg {
    display: inline-block;
    margin-right: 15px;
  }
}

.is-navigation-active .ah-navigation {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 61px);
  top: 61px;
}

@media (min-width: 768px) {
  .is-navigation-active .ah-navigation {
    height: calc(100vh - 109px);
    top: 109px;
  }
}

.ah-navigation__inner {
  display: none;
  position: absolute;
  top: 0;
  background-color: #ffffff;
  padding-bottom: 70px;
  height: calc(100vh - 63px);
  width: calc(100% - 70px);
  overflow-y: auto;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-navigation__inner {
    padding: 30px 70px 70px;
    height: auto;
    min-height: 300px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-height: 100%;
  }
}

@media (min-width: 1224px) {
  .ah-navigation__inner {
    width: 1330px;
    max-width: 100%;
  }
}

.ah-navigation__inner .ah-navigation-close-btn {
  position: absolute;
  left: -999px;
  width: 0;
  overflow: hidden;
}

.ah-navigation__inner .ah-navigation-close-btn:focus {
  left: auto;
  bottom: 10px;
  right: 10px;
  width: auto;
}

.is-navigation-search .ah-navigation__inner {
  padding-bottom: 45px;
}

@media (min-width: 1224px) {
  .is-navigation-search .ah-navigation__inner {
    padding-bottom: 130px;
  }
}

.is-navigation-active .ah-navigation__inner {
  display: block;
}

.ah-navigation__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: absolute;
  width: 100%;
  max-width: 1440px;
  transform: translateX(-50%);
  left: 50%;
  top: 8px;
}

@media (min-width: 768px) {
  .ah-navigation__buttons {
    top: 25px;
    padding: 0 45px;
  }
}

.is-navigation-active .ah-navigation__buttons {
  position: fixed;
}

.ah-navigation__button {
  background-color: transparent;
  border: none;
  padding: 0;
  width: 36px;
  height: 36px;
  z-index: 1000;
}

.ah-navigation__button__icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.ah-navigation__menu-btn, .ah-navigation__search-btn {
  padding: 0;
  pointer-events: all;
}

.ah-navigation__menu-btn .ah-iconlink__text, .ah-navigation__search-btn .ah-iconlink__text {
  font-size: 12px;
  line-height: 16px;
}

.is-navigation-active .ah-navigation__menu-btn .ah-iconlink__text, .is-navigation-active .ah-navigation__search-btn .ah-iconlink__text {
  justify-content: center;
  display: flex;
}

.is-navigation-search .ah-navigation__menu-btn {
  display: none;
}

.ah-navigation__search-btn {
  margin-left: auto;
}

.is-navigation-search .ah-navigation__search-btn {
  display: block;
}

.is-navigation-active .ah-navigation__menu__open, .is-navigation-active .ah-navigation__search__open {
  display: none;
}

.ah-navigation__menu__open .ah-iconlink__text, .ah-navigation__search__open .ah-iconlink__text {
  margin-top: -6px;
}

@media (min-width: 768px) {
  .ah-navigation__menu__open .ah-iconlink__text, .ah-navigation__search__open .ah-iconlink__text {
    margin-top: 0;
  }
}

.ah-navigation__search__open {
  margin-top: -5px;
}

.is-navigation-search .ah-navigation__search__open {
  display: none;
}

.ah-navigation__menu__open, .ah-navigation__menu__close, .ah-navigation__search__open, .ah-navigation__search__close {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  z-index: 2;
}

@media (min-width: 768px) {
  .ah-navigation__menu__open, .ah-navigation__menu__close, .ah-navigation__search__open, .ah-navigation__search__close {
    height: 62px;
    width: 62px;
  }
}

.ah-navigation__menu__open:hover, .ah-navigation__menu__open:focus-within, .ah-navigation__menu__close:hover, .ah-navigation__menu__close:focus-within, .ah-navigation__search__open:hover, .ah-navigation__search__open:focus-within, .ah-navigation__search__close:hover, .ah-navigation__search__close:focus-within {
  text-decoration: none;
}

.ah-navigation__menu__open .ah-iconlink__text, .ah-navigation__menu__close .ah-iconlink__text, .ah-navigation__search__open .ah-iconlink__text, .ah-navigation__search__close .ah-iconlink__text {
  font-size: 12px;
  line-height: 16px;
  color: #be0d3e;
  text-align: center;
  width: 100%;
}

.ah-navigation__menu__close, .ah-navigation__search__close {
  display: none;
}

.ah-navigation__menu__close .ah-iconlink__text, .ah-navigation__search__close .ah-iconlink__text {
  margin-top: -4px;
}

.is-navigation-menu .ah-navigation__menu__close {
  display: flex;
}

.is-navigation-search .ah-navigation__search__close {
  display: flex;
}

.ah-navigation .ah-svgicon {
  fill: #be0d3e;
}

.ah-navigation__menu__close .ah-svgicon,
.ah-navigation__search__close .ah-svgicon {
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .ah-navigation__menu__close .ah-svgicon,
  .ah-navigation__search__close .ah-svgicon {
    width: 46px;
    height: 46px;
  }
}

.ah-navigation__menu__open .ah-svgicon {
  width: 35px;
  height: 35px;
}

@media (min-width: 768px) {
  .ah-navigation__menu__open .ah-svgicon {
    width: 46px;
    height: 46px;
  }
}

.ah-navigation__search__open .ah-svgicon {
  width: 42px;
  height: 42px;
}

@media (min-width: 768px) {
  .ah-navigation__search__open .ah-svgicon {
    width: 45px;
    height: 45px;
  }
}

.ah-logo {
  display: block;
  width: 150px;
  height: 36px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ah-logo {
    width: 308px;
    height: 73px;
  }
}

.ah-logo .ah-svgicon {
  width: 100%;
  height: 100%;
  fill: #be0d3e;
}

.ah-button {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  display: inline-flex;
  padding: 10px 15px;
  color: #ffffff;
  background-color: #be0d3e;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 0 20px 20px 0;
  outline: none;
  transition: all 0.3s ease;
}

.ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

input.ah-button::after,
.ah-button.secret::after {
  content: none !important;
}

.ah-button.ah-button--loading::after {
  width: 18px;
  height: 18px;
  border: 2px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  background: none;
  transition: none;
  animation: loading-button-rotation 1s linear infinite;
}

@keyframes loading-button-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ah-button::after {
  transition: all 0.3s ease;
}

.ah-button:hover, .ah-jobsearch__card:hover .ah-jobsearch__cta, .ah-button:focus {
  text-decoration: none;
  background-color: rgba(190, 13, 62, 0.8);
}

.ah-button:hover::after, .ah-jobsearch__card:hover .ah-jobsearch__cta::after, .ah-button:focus::after {
  transform: translateX(5px);
}

.ah-button:focus {
  outline: 1px solid #007ca3;
}

.is-keyboard-focus-within .ah-button:focus {
  outline-width: 3px;
  outline-offset: 3px;
}

.ah-button:active {
  background-color: rgba(190, 13, 62, 0.3);
  color: #ffffff;
}

.ah-button--default-no-icon::after {
  content: unset;
}

.ah-button--disabled, .ah-button--disabled:hover, .ah-button--disabled:active {
  color: #a8aab3;
  background: #F7F7F7;
  cursor: not-allowed;
  opacity: 1;
}

.ah-button--disabled:after, .ah-button--disabled:hover:after, .ah-button--disabled:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23a8aab3%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-button--disabled:after, .no-svg .ah-button--disabled:hover:after, .no-svg .ah-button--disabled:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-button--disabled:after, .ah-button--disabled:hover:after, .ah-button--disabled:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-button--disabled::after, .ah-button--disabled:hover::after, .ah-button--disabled:active::after {
  transform: unset;
}

.ah-button--secondary:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-button--secondary:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-button--secondary:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-button--secondary, .ah-button--secondary-no-icon {
  color: #be0d3e;
  background-color: #ffffff;
  border-color: #be0d3e;
}

.ah-button--secondary:hover, .ah-button--secondary:focus, .ah-button--secondary-no-icon:hover, .ah-button--secondary-no-icon:focus {
  color: #be0d3e;
  background-color: #ffffff;
  border-color: rgba(190, 13, 62, 0.8);
}

.ah-button--secondary:focus, .ah-button--secondary-no-icon:focus {
  outline: 1px solid #007ca3;
}

.ah-button--secondary:active, .ah-button--secondary-no-icon:active {
  color: #be0d3e;
  background-color: #ffffff;
  border-color: rgba(190, 13, 62, 0.3);
}

.ah-button--secondary-no-icon::after {
  content: unset;
}

.ah-button--secondary-disabled, .ah-button--secondary-disabled:hover, .ah-button--secondary-disabled:active {
  color: #a8aab3;
  background-color: #ffffff;
  border-color: #a8aab3;
  cursor: not-allowed;
  opacity: 1;
}

.ah-button--secondary-disabled:after, .ah-button--secondary-disabled:hover:after, .ah-button--secondary-disabled:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23a8aab3%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-button--secondary-disabled:after, .no-svg .ah-button--secondary-disabled:hover:after, .no-svg .ah-button--secondary-disabled:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-button--secondary-disabled:after, .ah-button--secondary-disabled:hover:after, .ah-button--secondary-disabled:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-button--secondary-disabled::after, .ah-button--secondary-disabled:hover::after, .ah-button--secondary-disabled:active::after {
  transform: unset;
}

.ah-button--tertiary-bg {
  color: #be0d3e;
  background-color: #ffffff;
  border-radius: 0;
}

.ah-button--tertiary-bg:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-button--tertiary-bg:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-button--tertiary-bg:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-button--tertiary-bg:hover, .ah-button--tertiary-bg:focus, .ah-button--tertiary-bg:active {
  color: #be0d3e;
  background-color: #ffffff;
}

.ah-button--round {
  justify-content: center;
  border-radius: 50px;
}

.ah-button--round::after {
  content: unset;
}

.ah-button--round-secondary {
  justify-content: center;
  color: #be0d3e;
  background-color: #ffffff;
  border-radius: 50px;
}

.ah-button--round-secondary::after {
  content: unset;
}

.ah-button--round-secondary:hover, .ah-button--round-secondary:focus-within {
  color: #be0d3e;
  background-color: #ffffff;
  border-color: rgba(190, 13, 62, 0.8);
}

.ah-button--round-secondary:active {
  color: #be0d3e;
  background-color: #ffffff;
  border-color: rgba(190, 13, 62, 0.3);
}

.ah-button--icon .ah-svgicon {
  margin-right: 10px;
}

.ah-button--icon, .ah-button--icon-last {
  text-align: center;
  vertical-align: middle;
}

.ah-button--icon::after, .ah-button--icon-last::after {
  content: unset;
}

.ah-button--icon .ah-svgicon, .ah-button--icon-last .ah-svgicon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  fill: currentColor;
}

.ah-button--icon-last {
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  display: flex;
}

.ah-button--icon-last .ah-svgicon {
  margin-left: 10px;
}

.ah-button--secondary-icon {
  text-align: center;
  vertical-align: middle;
}

.ah-button--secondary-icon::after {
  content: unset;
}

.ah-button--secondary-icon .ah-svgicon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  fill: #be0d3e;
}

.ah-button--primary-bg {
  color: #ffffff;
  background-color: #be0d3e;
}

.ah-button__svgicon {
  width: 32px;
  height: 32px;
}

.ah-button.secret .ah-button__svgicon {
  display: none;
}

.ah-search {
  display: none;
  position: relative;
  margin: 0 35px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-search {
    top: 10px;
    margin: 0;
  }
}

.is-navigation-search .ah-search {
  display: block;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .is-navigation-menu .ah-search {
    display: block;
  }
}

.ah-navigationpanel--hide-search .ah-search {
  display: none;
}

.ah-search__button {
  padding: 9px;
  border: none;
}

@media (min-width: 768px) {
  .ah-search__button {
    position: absolute;
    right: 1px;
    top: 2px;
    z-index: 1;
  }
}

.ah-search__field {
  position: relative;
  display: block;
  margin-bottom: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-search__field {
    margin-top: 0;
  }
}

.ah-search__field-input {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #be0d3e;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid #d8d8d8;
  background: transparent;
  width: 100%;
  outline: none;
}

@media (min-width: 768px) {
  .ah-search__field-input {
    padding: 10px calc(5em + 12px) 10px 4px;
  }
}

.ah-search__field-input::placeholder {
  color: #be0d3e;
}

.ah-search__field-input.is-keyboard-focus {
  outline: 3px solid #007ca3;
  outline-offset: 3px;
}

.ah-search__field__label {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 1px;
  padding: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.25s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.25s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.25s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

.is-filled .ah-search__field__label {
  top: -18px;
  opacity: 0.9;
  background: white;
  font-size: 14px;
  line-height: 18px;
  padding: 4px;
}

.ah-search__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ah-search__tags__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ah-search__tags__label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #646d74;
  margin: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .ah-search__tags__label {
    font-size: 14px;
    line-height: 18px;
    margin-right: 15px;
    width: auto;
  }
}

.ah-search__tags__item {
  all: unset;
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
  background-color: #646d74;
  border-radius: 20px;
  color: #ffffff;
  margin: 5px 10px 5px 0;
  padding: 1px 8px;
}

.ah-search__tags__item:hover, .ah-search__tags__item:focus, .ah-search__tags__item--is-active {
  background-color: #be0d3e;
  text-decoration: none;
}

.is-keyboard-focus-within .ah-search__tags__item:hover, .is-keyboard-focus-within .ah-search__tags__item:focus, .is-keyboard-focus-within .ah-search__tags__item--is-active {
  outline: 3px solid #007ca3;
  outline-offset: 3px;
}

.ah-search__tags__item__result {
  margin-left: 4px;
}

.ah-search__filter .ah-search__tags__item {
  background-color: #d8d8d8;
  color: #313131;
  border-radius: 0;
  margin: 0;
  padding: 4px 20px;
}

.ah-search__filter .ah-search__tags__item--is-active, .ah-search__filter .ah-search__tags__item:hover, .ah-search__filter .ah-search__tags__item:focus {
  background-color: #be0d3e;
  color: #ffffff;
}

.ah-search__filter .ah-search__tags__item:first-child {
  border-radius: 20px 0 0 20px;
}

.ah-search__filter .ah-search__tags__item:last-child {
  border-radius: 0 20px 20px 0;
}

.ah-search__categories {
  display: none;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 10px;
  margin: 10px 0;
  position: relative;
}

@media (min-width: 768px) {
  .ah-search__categories {
    display: flex;
  }
}

.ah-search__autocomplete {
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.ah-search__autocomplete__item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  background-color: #ffffff;
  color: #313131;
  display: block;
  padding: 10px 15px;
  border: 1px solid #d8d8d8;
  border-style: solid solid none solid;
}

.ah-search__autocomplete__item:last-child {
  border-bottom-style: solid;
}

.ah-search__autocomplete__item:hover, .ah-search__autocomplete__item[aria-selected="true"] {
  background-color: #F7F7F7;
}

.ah-search__resultscounter {
  font-size: 14px;
  line-height: 18px;
  color: #be0d3e;
}

.ah-search__header--active .ah-search__resultscounter {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .ah-search__resultscounter {
    font-weight: 700;
    color: #646d74;
  }
}

.ah-search__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.ah-search__header--active {
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .ah-search__header {
    margin-bottom: 30px;
    margin-top: 45px;
  }
}

.ah-search__filter__button {
  color: #313131;
  display: flex;
  align-items: center;
}

.ah-search__filter__button .ah-svgicon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.ah-search__filter__button span {
  display: none;
}

@media (min-width: 768px) {
  .ah-search__filter__button span {
    display: block;
  }
}

.ah-search__filter__button--active {
  color: #be0d3e;
}

.ah-search__results {
  padding: 10px 10px 0;
  position: relative;
  margin: 0 -10px;
  overflow-y: auto;
}

.ah-search__results-item {
  border: 1px solid #d8d8d8;
  cursor: pointer;
  margin-bottom: 4px;
  padding: 15px;
  position: relative;
  -webkit-transition: all 0.25s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.25s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.25s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

.ah-search__results-item:hover, .ah-search__results-item:focus-within {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
}

.ah-search__results-item:hover .ah-search__results-item-title, .ah-search__results-item:focus-within .ah-search__results-item-title {
  color: #be0d3e;
}

@media (min-width: 768px) {
  .ah-search__results-item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
    padding: 20px;
    margin-bottom: 30px;
  }
  .ah-search__results-item:hover, .ah-search__results-item:focus-within {
    box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
  }
}

.ah-search__results-item:last-child {
  margin-bottom: 0;
}

.ah-search__results-item-title {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #313131;
}

@media (min-width: 768px) {
  .ah-search__results-item-title {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (min-width: 768px) {
  .ah-search__results-item-title--small {
    margin-right: 140px;
  }
}

.ah-search__results-tag + .ah-search__results-item-title {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .ah-search__results-tag + .ah-search__results-item-title {
    margin-top: 0;
  }
}

.ah-search__results-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #be0d3e;
  border-bottom-left-radius: 22px;
  color: #ffffff;
  padding: 5px 20px;
  text-transform: uppercase;
}

.ah-search__results-file {
  font-size: 12px;
  line-height: 16px;
  display: flex;
  justify-items: center;
  align-items: center;
  color: #a8aab3;
}

@media (min-width: 768px) {
  .ah-search__results-file {
    position: absolute;
    top: 8px;
    right: 10px;
  }
}

.ah-search__results-icon {
  width: 20px;
  margin-right: 10px;
}

.ah-search__results-secure {
  fill: #be0d3e;
  width: 30px;
  height: 15px;
  margin-bottom: -1px;
}

.ah-search__results-path {
  font-size: 12px;
  line-height: 16px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .ah-search__results-path {
    font-size: 14px;
    line-height: 18px;
  }
}

.ah-search__results-path a {
  color: #a8aab3;
  margin-right: 4px;
}

.ah-search__results-path a:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23a8aab3%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-search__results-path a:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-search__results-path a:before {
  transform: rotate(-90deg);
  width: 10px;
  height: 7px;
}

.ah-search__results-path a:first-child:before {
  display: none;
}

.ah-search__no-results {
  margin-top: 30px;
}

.ah-search__pagination {
  font-size: 14px;
  line-height: 18px;
  display: flex;
  justify-content: center;
  padding-top: 30px;
  margin-top: 20px;
  position: relative;
}

.ah-search__pagination:after {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  background-color: #be0d3e;
  width: calc(100% + 70px);
}

@media (min-width: 768px) {
  .ah-search__pagination:after {
    content: none;
  }
}

.ah-search__pagination .hidden {
  visibility: hidden;
}

.ah-search__pagination .ah-svgicon {
  fill: #313131;
  width: 8px;
  height: 10px;
}

.ah-search__pagination__prev .ah-svgicon {
  transform: rotate(90deg);
}

.ah-search__pagination__next .ah-svgicon {
  transform: rotate(-90deg);
}

.ah-search__pagination__prev, .ah-search__pagination__next {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.ah-search__pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  color: #313131;
  background-color: rgba(49, 49, 49, 0.3);
  border-radius: 2px;
  width: 35px;
  height: 35px;
}

.ah-search__pagination__item:hover, .ah-search__pagination__item:focus-within, .ah-search__pagination__item.ah-search__pagination--active {
  background: #be0d3e;
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .ah-search__pagination__item {
    width: 24px;
    height: 24px;
  }
}

.is-navigation-menu [data-react-init="search"] {
  position: absolute;
  top: 100px;
  right: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .is-navigation-menu [data-react-init="search"] {
    width: calc(75% - 160px);
    right: 70px;
    z-index: 1;
  }
}

.l-page__footer > .ah-footer:first-child {
  margin-top: -40px;
}

.ah-footer__bottom {
  position: relative;
  width: 100%;
  background: #ffffff;
}

@media (min-width: 1224px) {
  .ah-footer__bottom {
    z-index: 1;
  }
}

.ah-footer__inner-bottom {
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  padding: 30px 30px 15px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ah-footer__inner-bottom {
    align-items: center;
    justify-content: flex-end;
    display: flex;
    padding-bottom: 30px;
  }
}

@media (min-width: 1224px) {
  .ah-footer__inner-bottom {
    max-width: 1180px;
    padding: 30px 0;
  }
}

.ah-footer__bottom-text {
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .ah-footer__bottom-text {
    margin-right: 22px;
    margin-bottom: 0;
  }
}

.ah-footer__sociallinks {
  width: 100%;
}

@media (min-width: 768px) {
  .ah-footer__sociallinks {
    width: auto;
  }
}

.ah-footer__top {
  font-size: 14px;
  line-height: 18px;
  background-color: #dd023a;
  position: relative;
  z-index: 1;
  width: 100%;
}

.ah-footer__top .is-keyboard-focus {
  outline-color: #ffffff;
}

@media (min-width: 768px) {
  .ah-footer__top {
    font-weight: 700;
  }
}

@media (min-width: 1224px) {
  .ah-footer__top {
    font-weight: 700;
  }
}

.ah-footer--small .ah-footer__top {
  background-color: #be0d3e;
}

@media (min-width: 1224px) {
  .ah-footer--small .ah-footer__top {
    border-radius: 0 0 76px 0;
  }
}

.ah-footer__inner-top {
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding: 22px 30px;
  margin: 0 auto;
}

@media (min-width: 1224px) {
  .ah-footer__inner-top {
    max-width: 1180px;
    padding: 21px 0 25px;
  }
}

.ah-footer--small .ah-footer__inner-top {
  padding-bottom: 26px;
  padding-top: 26px;
}

.ah-footer__links {
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
}

@media (min-width: 768px) {
  .ah-footer__links li + li:before {
    content: "\007C";
    margin: 0 8px;
    color: #ffffff;
  }
}

.ah-footer .ah-link-list__list-item + .ah-link-list__list-item {
  display: flex;
  margin-left: 40px;
}

@media (min-width: 768px) {
  .ah-footer .ah-link-list__list-item + .ah-link-list__list-item {
    margin-left: 0;
  }
}

.ah-footer__top-right {
  position: relative;
  top: 0;
  right: 0;
  justify-content: flex-end;
  display: flex;
}

.ah-footer-bg {
  display: none;
}

@media (min-width: 1224px) {
  .ah-footer-bg {
    position: absolute;
    top: -40px;
    left: 50%;
    display: block;
    width: 100%;
    height: 418px;
    max-width: 1440px;
    transform: translateX(-50%);
  }
}

.l-page__footer {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 1224px) {
  .l-page__footer {
    flex-direction: column;
    display: flex;
    margin-top: 40px;
  }
}

.ah-sociallinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0 -5px;
  width: calc(100% + 10px);
}

@media (min-width: 768px) {
  .ah-sociallinks {
    justify-content: flex-end;
    padding: 0;
    width: auto;
  }
}

@media (min-width: 1224px) {
  .ah-sociallinks {
    margin: 0;
  }
}

.ah-sociallinks__link {
  display: flex;
  align-items: center;
  margin: 0 5px 15px;
}

@media (min-width: 768px) {
  .ah-sociallinks__link {
    margin-bottom: 0;
  }
}

@media (min-width: 1224px) {
  .ah-sociallinks__link {
    margin: 0 0 0 20px;
  }
}

.ah-sociallinks__link__icon {
  fill: #ffffff;
  width: 32px;
  height: 32px;
}

.ah-sociallinks .ah-svgicon--icon-youtube-color {
  width: 48px;
}

.ah-sociallinks__link__icon--red {
  fill: #be0d3e;
}

.ah-stickybutton {
  position: relative;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1223px) {
  .ah-stickybutton {
    position: absolute;
    width: 100%;
    top: 0;
    background-color: #FFFFFF;
    min-height: 70px;
    z-index: 1;
    border-top: 1px solid #ECECEC;
    padding: 0;
  }
  .ah-stickybutton:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 25%;
    width: 50%;
    height: 10px;
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 3px 30px #666666;
    -moz-box-shadow: 0 3px 30px #666666;
    box-shadow: 0 3px 30px #666666;
    clip: rect(20px, auto, 50px, 0);
  }
}

@media (min-width: 1224px) {
  .ah-stickybutton {
    padding: 30px 20px;
  }
  .ah-stickybutton:before {
    content: '';
    position: absolute;
    left: -15px;
    width: 5px;
    height: 100%;
    background-color: transparent;
    border-radius: 50%;
    -webkit-box-shadow: 3px 0 30px #444444;
    -moz-box-shadow: 3px 0 30px #444444;
    box-shadow: 3px 0 30px #444444;
    clip: rect(0, 50px, auto, 15px);
    display: none;
  }
}

.ah-stickybutton__header {
  display: none;
}

@media (min-width: 768px) and (max-width: 1223px) {
  .ah-stickybutton__header {
    display: block;
    text-align: left;
    width: 50%;
  }
}

@media (min-width: 1224px) {
  .ah-stickybutton__header {
    display: block;
  }
}

.ah-stickybutton__title {
  color: #B11A3B;
  line-height: 1;
  margin-top: 0;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 5px;
}

@media all and (min-width: 87.5em) {
  .ah-stickybutton__title {
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1223px) {
  .ah-stickybutton__title {
    font-size: 16px;
    text-align: left;
  }
}

@media (min-width: 1224px) {
  .ah-stickybutton__title {
    font-size: 18px;
    text-align: center;
  }
}

.ah-stickybutton__text {
  margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 1223px) {
  .ah-stickybutton__text {
    margin: 0;
  }
}

@media (min-width: 1224px) {
  .ah-theme--light .ah-stickybutton__text {
    color: #FFFFFF;
  }
}

@media (min-width: 768px) and (max-width: 1223px) {
  .ah-stickybutton__inner {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
  }
}

@media (min-width: 1224px) {
  .ah-stickybutton__inner {
    padding-top: 50px;
  }
}

.ah-stickybutton__button-wrapper {
  width: 60%;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1223px) {
  .ah-stickybutton__button-wrapper {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
  }
}

@media (min-width: 1224px) {
  .ah-stickybutton__button-wrapper {
    width: 70%;
  }
}

.ah-stickybutton__button {
  width: 100%;
  margin-bottom: 15px;
}

.ah-stickybutton__button--secondary {
  width: 100%;
  margin-bottom: 15px;
  color: #444444;
  border: 1px solid #F2F2F2;
}

@media (min-width: 768px) and (max-width: 1223px) {
  .ah-stickybutton__button,
  .ah-stickybutton__button--secondary {
    width: auto;
    margin: 0 0 0 10px;
  }
}

.ah-stickybutton--sticky {
  visibility: hidden;
}

@media (min-width: 1224px) {
  .ah-stickybutton--sticky {
    visibility: visible;
    position: fixed;
    z-index: 0;
    width: 375px;
    min-height: 180px;
    top: calc(50% - 290px);
    left: calc(50% + 213px);
  }
}

.ah-stickybutton--small .ah-stickybutton__button,
.ah-stickybutton--small .ah-stickybutton__button--secondary {
  padding: 10px 10px;
}

@media (min-width: 1224px) {
  .ah-stickybutton--small .ah-stickybutton__button-wrapper {
    width: 85%;
  }
}

@media (min-width: 1224px) {
  .ah-stickybutton--sticky .ah-stickybutton--small {
    width: 300px;
    min-height: 180px;
    top: calc(50% - 290px);
    left: calc(50% + 290px);
  }
}

.ah-headerteaser {
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .ah-headerteaser {
    height: auto;
    padding-top: 70px;
  }
}

@media (min-width: 1224px) {
  .ah-headerteaser {
    padding-top: 0;
    -webkit-box-shadow: 0 0.5em 5em rgba(68, 68, 68, 0.3);
    -moz-box-shadow: 0 0.5em 5em rgba(68, 68, 68, 0.3);
    box-shadow: 0 0.5em 5em rgba(68, 68, 68, 0.3);
  }
}

.ah-headerteaser__inner {
  text-align: center;
  padding: 10px 20px;
  position: relative;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

@media all and (min-width: 48em) {
  .ah-headerteaser__inner {
    text-align: left;
    padding: 27px 20px;
    width: calc(100% - 107px);
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser__inner {
    width: 65%;
    padding: 62px 20px;
    padding-left: 63px;
  }
}

.ah-headerteaser__subtitle {
  order: 2;
  color: #DDDDDD;
  font-weight: normal;
  margin: 0 0 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: inherit;
}

@media all and (min-width: 48em) {
  .ah-headerteaser__subtitle {
    order: 1;
    color: #444444;
    font-size: 24px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser__subtitle {
    font-size: 20px;
  }
}

.ah-headerteaser__title {
  order: 3;
  color: #B11A3B;
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  line-height: 1.1;
}

@media all and (min-width: 48em) {
  .ah-headerteaser__title {
    order: 2;
    font-size: 54px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser__title {
    font-size: 64px;
  }
}

.ah-headerteaser__text {
  margin: 14px 0;
  order: 4;
  font-weight: 700;
  font-size: 18px;
  line-height: inherit;
}

@media all and (min-width: 48em) {
  .ah-headerteaser__text {
    order: 3;
    font-weight: 500;
    font-size: 18px;
    line-height: inherit;
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser__text {
    font-size: 18px;
  }
}

@media all and (min-width: 48em) {
  .ah-theme--light .ah-headerteaser__subtitle,
  .ah-theme--light .ah-headerteaser__text {
    color: #FFFFFF;
  }
}

.ah-headerteaser__seals {
  order: 1;
  margin: 16px 0;
  display: flex;
  min-height: 80px;
  height: auto;
  justify-content: center;
  flex-flow: wrap;
}

@media all and (min-width: 48em) {
  .ah-headerteaser__seals {
    margin: 0;
    order: 4;
    display: flex;
    min-height: 120px;
    height: auto;
    justify-content: flex-start;
  }
}

@media all and (min-width: 48em) {
  .ah-headerteaser__media {
    width: 100%;
    height: calc(100% - 70px);
    position: absolute;
    z-index: 0;
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser__media {
    height: 100%;
  }
}

.ah-headerteaser__media-seal__image {
  width: auto;
  height: 100%;
  position: relative;
}

@media all and (min-width: 48em) {
  .ah-headerteaser__media-seal__image {
    width: auto;
    height: 100%;
    position: relative;
  }
}

.ah-headerteaser__media-seal {
  margin-right: 1em;
  margin-bottom: .5em;
  display: flex;
  height: 80px;
}

@media all and (min-width: 48em) {
  .ah-headerteaser__media-seal {
    display: flex;
    height: 120px;
    margin-right: 1em;
    margin-bottom: 1em;
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser__button-wrapper {
    position: absolute;
    right: 0;
    top: calc(50% - 42%);
    width: 375px;
    padding-top: 0;
  }
  .ah-headerteaser__button-wrapper:before {
    content: none;
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser__button-wrapper--small {
    width: 300px;
  }
}

.ah-headerteaser--form-typo {
  background-color: transparent;
  box-shadow: none;
}

.ah-headerteaser--form-typo .ah-headerteaser__text {
  font-weight: 400;
  font-size: 18px;
  line-height: inherit;
}

@media all and (min-width: 48em) {
  .ah-headerteaser--form-typo .ah-headerteaser__subtitle {
    color: #444444;
  }
}

@media all and (min-width: 48em) {
  .ah-headerteaser--form-typo .ah-headerteaser__text {
    font-weight: 400;
    font-size: 16px;
    line-height: inherit;
  }
}

@media all and (min-width: 87.5em) {
  .ah-headerteaser--form-typo .ah-headerteaser__text {
    font-weight: 500;
    font-size: 18px;
    line-height: inherit;
  }
}

@media all and (max-width: 47.99em) {
  .ah-headerteaser--seals-hidden-m .ah-headerteaser__seals {
    display: none;
  }
}

.ah-linkexpose {
  padding: 0 20px;
}

@media (min-width: 1224px) {
  .ah-linkexpose {
    padding: 0;
  }
}

.ah-linkexpose--inverted {
  background-color: #d8d8d8;
}

.ah-linkexpose p {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.ah-linkexpose__wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.ah-linkexpose__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #be0d3e;
  text-align: center;
}

@media (min-width: 1224px) {
  .ah-linkexpose__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-linkexpose--inverted .ah-linkexpose__title {
  color: #313131;
}

.ah-linkexpose__subtitle {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.ah-linkexpose--inverted .ah-linkexpose__subtitle {
  color: #313131;
}

.ah-linkexpose__content {
  margin-top: 20px;
}

@media (min-width: 1224px) {
  .ah-linkexpose__content {
    margin-top: 29px;
  }
}

.ah-linkexpose__list {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  margin: 0 -10px;
}

@media (min-width: 1224px) {
  .ah-linkexpose__list {
    margin: 0 -11px;
  }
}

.ah-linkexpose__item {
  margin: 10px;
}

@media (min-width: 1224px) {
  .ah-linkexpose__item {
    margin: 11px;
  }
}

@media (min-width: 768px) {
  .ah-linkexpose--duo .ah-linkexpose__item {
    flex: 0 0 50%;
    max-width: calc(50% - 20px);
  }
}

@media (min-width: 1224px) {
  .ah-linkexpose--duo .ah-linkexpose__item {
    max-width: calc(50% - 22px);
  }
}

@media (min-width: 768px) {
  .ah-linkexpose--trio .ah-linkexpose__item {
    flex: 0 0 33.33%;
    max-width: calc(33.33% - 20px);
  }
}

@media (min-width: 1224px) {
  .ah-linkexpose--trio .ah-linkexpose__item {
    max-width: calc(33.33% - 22px);
  }
}

@media (min-width: 768px) {
  .ah-linkexpose--quad .ah-linkexpose__item {
    flex: 0 0 50%;
    max-width: calc(50% - 20px);
  }
}

@media (min-width: 1224px) {
  .ah-linkexpose--quad .ah-linkexpose__item {
    max-width: calc(25% - 22px);
  }
}

.ah-linkexpose__item.ah-teaserlink {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  padding: 30px;
}

@media (min-width: 1224px) {
  .ah-linkexpose__item.ah-teaserlink {
    padding: 30px 50px;
  }
}

.ah-linkexpose__item.ah-teaserlink .ah-teaserlink__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
}

.ah-linkexpose__item.ah-teaserlink .ah-teaserlink__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ah-linkexpose__item.ah-teaserlink .ah-teaserlink__text {
  font-size: 16px;
  line-height: 22px;
}

.ah-linkexpose--inverted .ah-linkexpose__item.ah-teaserlink {
  background-color: #646d74;
}

.ah-linkexpose--inverted .ah-linkexpose__item.ah-teaserlink .ah-teaserlink__icon {
  fill: #ffffff;
}

.ah-linkexpose--inverted .ah-linkexpose__item.ah-teaserlink .ah-teaserlink__title {
  color: #ffffff;
}

.ah-linkexpose--inverted .ah-linkexpose__item.ah-teaserlink .ah-teaserlink__text {
  color: #ffffff;
}

.ah-teaserlink:focus-within {
  outline: 1px solid #007ca3;
}

.ah-teaserlink {
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(68, 68, 68, 0.1), 0 1px 2px 0 rgba(68, 68, 68, 0.3);
  background-color: rgba(255, 255, 255, 0.94);
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: block;
}

@media (min-width: 768px) {
  .ah-teaserlink {
    padding: 20px 30px 30px;
  }
}

@media (min-width: 1224px) {
  .ah-teaserlink {
    padding: 20px 100px 40px;
  }
}

.ah-teaserlink--link {
  cursor: pointer;
}

.ah-teaserlink--link:hover, .ah-teaserlink--link:focus-within {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
  text-decoration: none;
}

.ah-teaserlink--red {
  background-color: #be0d3e;
}

.ah-teaserlink--blue {
  background-color: #E4F1F9;
}

.ah-teaserlink--transparent-light {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0;
  box-shadow: none;
}

.ah-teaserlink--transparent-dark {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0;
  box-shadow: none;
}

.ah-teaserlink--transparent-dark .ah-svgicon {
  fill: #313131;
}

.ah-teaserlink__icon {
  fill: #be0d3e;
}

.ah-teaserlink__icon--white {
  fill: #FFFFFF;
}

.ah-teaserlink__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  color: #be0d3e;
  margin-bottom: inherit;
  hyphens: auto;
}

@media (min-width: 1224px) {
  .ah-teaserlink__title {
    text-align: center;
  }
}

.ah-teaserlink--red .ah-teaserlink__title {
  color: #FFFFFF;
}

.ah-teaserlink--transparent-light .ah-teaserlink__title {
  color: #ffffff;
}

.ah-teaserlink--transparent-dark .ah-teaserlink__title {
  color: #313131;
}

.ah-dialoge .ah-teaserlink__title {
  margin-bottom: 20px;
}

.ah-teaserlink__text {
  margin-top: 8px;
  color: #313131;
}

.ah-teaserlink__text a {
  font-weight: 700;
}

.ah-teaserlink__text a:before {
  display: none;
}

.ah-teaserlink--red .ah-teaserlink__text {
  color: #FFFFFF;
}

.ah-teaserlink--red .ah-teaserlink__text a {
  color: inherit;
}

.ah-teaserlink--transparent-light .ah-teaserlink__text {
  color: #ffffff;
}

.ah-teaserlink--transparent-light .ah-teaserlink__text a {
  color: #ffffff;
}

.ah-teaserlink--transparent-dark .ah-teaserlink__text {
  color: #313131;
}

.ah-teaserlink--transparent-dark .ah-teaserlink__text a {
  color: #313131;
}

.ah-dialoge .ah-teaserlink__text {
  font-size: 12px;
  line-height: 16px;
  margin-top: 10px;
  color: #be0d3e;
}

@media (min-width: 1224px) {
  .ah-dialoge .ah-teaserlink__text {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    margin-top: 20px;
  }
}

.ah-dialoge .ah-teaserlink__text b,
.ah-dialoge .ah-teaserlink__text strong {
  font-family: inherit;
}

.ah-dialoge .ah-teaserlink__text p {
  font-size: inherit;
  line-height: inherit;
}

.ah-dialoge .ah-teaserlink__text p:last-child {
  margin-bottom: 0;
}

.ah-teaserlink__texttarget, .ah-teaserlink__target {
  color: inherit;
}

.ah-iconlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ah-iconlist__item {
  display: flex;
  margin: 0 0 20px;
}

.ah-detailteaser .ah-iconlist__item {
  align-items: center;
  padding: 15px 0;
  margin: 0;
}

.ah-detailteaser .ah-iconlist__item:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 4px solid #ffffff;
}

.ah-detailteaser .ah-iconlist__item:first-child {
  margin-top: -15px;
}

.ah-detailteaser .ah-iconlist__item:last-child {
  margin-bottom: -15px;
}

.ah-iconlist__icon {
  width: 30px;
  height: 30px;
  margin: 3px 15px 0 0;
}

@media (min-width: 1224px) {
  .ah-iconlist__icon {
    width: 37px;
    height: 37px;
  }
}

.ah-detailteaser .ah-iconlist__icon {
  width: 30px;
  height: 30px;
  fill: #be0d3e;
}

.ah-iconlist__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ah-iconlist__title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  margin: 0;
  color: #be0d3e;
}

.ah-detailteaser .ah-iconlist__title {
  font-size: 16px;
  line-height: 22px;
  color: #313131;
}

.ah-iconlist__text {
  margin: 0;
}

.ah-usplist {
  font-size: 14px;
  line-height: 18px;
}

@media (min-width: 1224px) {
  .ah-usplist {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-usplist__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: #be0d3e;
  margin-bottom: 22px;
  text-align: left;
}

@media (min-width: 1224px) {
  .ah-usplist__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 30px;
  }
}

.ah-usplist__subline {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 22px;
}

@media (min-width: 1224px) {
  .ah-usplist__subline {
    margin-bottom: 30px;
  }
}

.ah-usplist__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ah-usplist .ah-iconlist__title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #313131;
}

@media (min-width: 1224px) {
  .ah-usplist .ah-iconlist__title {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-usplist .ah-iconlist__item {
  margin-bottom: 30px;
}

@media (min-width: 1224px) {
  .ah-usplist--two-col > * {
    width: 60%;
  }
}

@media (min-width: 1224px) {
  .ah-accordion--two-col {
    padding-right: 33%;
  }
}

.ah-accordion__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #be0d3e;
}

@media (min-width: 768px) {
  .ah-accordion__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-accordion__subtitle {
  font-size: 16px;
  line-height: 22px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .ah-accordion__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}

.ah-accordion__wrapper {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .ah-accordion__wrapper {
    position: relative;
    z-index: 1;
  }
}

.ah-accordion--inner .ah-accordion__wrapper {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .ah-accordion--inner .ah-accordion__wrapper {
    margin-top: 25px;
  }
}

.ah-accordion__anchor {
  display: block;
  height: 0;
  overflow: hidden;
  order: 2;
  width: 0;
}

.ah-accordion__item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: all 0.3s ease;
}

.ah-accordion__item + .ah-accordion__item {
  margin-top: 10px;
}

.ah-accordion__item:hover {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
}

.ah-accordion--inner .ah-accordion__item {
  margin-top: 0;
  margin-right: -20px;
  margin-left: -20px;
  box-shadow: none;
  border-radius: 0;
}

.ah-accordion--inner .ah-accordion__item--is-open {
  background-color: rgba(0, 95, 124, 0.1);
  border-color: #d8d8d8;
}

.ah-accordion--inner .ah-accordion__item .ah-accordion__item-header {
  border-radius: 0;
}

.ah-accordion__item-header {
  position: relative;
  padding: 0;
  border-top-right-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1;
  color: black;
  font-weight: 700;
  margin: 0;
}

.ah-accordion--inner .ah-accordion__item-header {
  padding: 0;
  color: #B11A3B;
  border-bottom: 1px solid #d8d8d8;
}

.ah-accordion--inner .ah-accordion__item--is-open .ah-accordion__item-header {
  border-color: transparent;
}

.ah-accordion__item-arrow {
  margin-top: 15px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  fill: #be0d3e;
}

.ah-accordion__item--is-open > .ah-accordion__item-header .ah-accordion__item-arrow {
  transform: translateY(-50%) rotate(180deg);
  fill: #be0d3e;
}

.ah-accordion--inner .ah-accordion__item-arrow {
  right: 0;
  fill: #a8aab3;
}

.ah-accordion__item-title {
  order: 1;
  font-weight: 700;
}

.ah-accordion__item-content {
  position: relative;
  max-height: 0;
  padding: 0 20px 20px;
  margin-top: -20px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.ah-accordion--inner .ah-accordion__item-content {
  padding: 0 35px 20px;
}

@media (min-width: 768px) {
  .ah-accordion--inner .ah-accordion__item-content {
    padding: 0 40px 20px;
  }
}

.ah-accordion__item--is-open > .ah-accordion__item-content {
  max-height: unset;
  margin-top: 0;
  opacity: 1;
  visibility: inherit;
}

.ah-accordion--inner .ah-accordion__item > .ah-accordion__item-content::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  z-index: 1;
  height: 1px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.ah-accordion--inner .ah-accordion__item--is-open > .ah-accordion__item-content::after {
  background-color: #d8d8d8;
}

.ah-accordion--team .ah-accordion__item-contentwrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.ah-accordion__button {
  padding: 15.5px 20px 15.5px;
  background-color: transparent;
  border: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  outline-offset: -12px;
}

.ah-accordion--inner .ah-accordion__button {
  padding-inline: 40px 20px;
}

.ah-accordion__button span {
  width: 100%;
  text-align: start;
  order: 0;
}

.ah-accordion__button svg {
  order: 2;
}

.ah-comparison {
  position: relative;
  z-index: 1;
}

.ah-comparison__box {
  background-color: #ffffff;
  border-radius: 10px;
}

.ah-comparison__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: #be0d3e;
  text-align: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .ah-comparison__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

@media (min-width: 1224px) {
  .ah-comparison__title {
    margin-bottom: 20px;
  }
}

.ah-comparison__subtitle {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.ah-comparison__body {
  margin-top: 22px;
}

@media (min-width: 1224px) {
  .ah-comparison__body {
    margin-top: 40px;
  }
}

.ah-comparison__close {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  align-items: center;
  top: 93px;
  margin-bottom: 35px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  color: #be0d3e;
  text-transform: uppercase;
  z-index: 2;
  width: 100%;
}

@media (min-width: 768px) {
  .ah-comparison__close {
    top: 141px;
  }
}

@media (min-width: 1224px) {
  .ah-comparison__close {
    display: none;
  }
}

.is-open .ah-comparison__close::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.95);
  height: 60px;
  top: -30px;
  width: 100%;
  z-index: -1;
}

.ah-comparison__close[hidden] {
  display: none;
}

.l-page--portal .ah-comparison__close {
  top: 170px;
}

@media (min-width: 768px) {
  .l-page--portal .ah-comparison__close {
    top: 218px;
  }
}

.ah-comparison__close .ah-svgicon {
  fill: #be0d3e;
  width: 16px;
  height: 12px;
  margin-right: 20px;
  transform: rotate(180deg);
}

.ah-comparison__items {
  display: flex;
  justify-content: center;
  list-style: none;
  width: 100%;
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 144px;
}

@media (min-width: 768px) {
  .ah-comparison__items {
    top: 192px;
  }
}

@media (min-width: 1224px) {
  .ah-comparison__items {
    top: 141px;
  }
}

.l-page--portal .ah-comparison__items {
  top: 221px;
}

@media (min-width: 768px) {
  .l-page--portal .ah-comparison__items {
    top: 269px;
  }
}

@media (min-width: 1224px) {
  .l-page--portal .ah-comparison__items {
    top: 218px;
  }
}

.ah-comparison__items[static] {
  position: static;
}

.is-open .ah-comparison__items::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.95);
  height: calc(100% + 22px);
  top: -22px;
  width: 100%;
  z-index: -1;
}

@media (min-width: 1224px) {
  .is-open .ah-comparison__items::before {
    top: -40px;
    height: calc(100% + 40px);
  }
}

.ah-comparison__table {
  position: relative;
  margin-top: 20px;
}

.ah-comparison__table[hidden] {
  display: none;
}

.ah-comparison__table-footer {
  margin-top: 20px;
  text-align: center;
}

.ah-comparison__link {
  width: 100%;
}

@media (min-width: 768px) {
  .ah-comparison__link {
    width: auto;
  }
}

.ah-comparison__notes {
  font-size: 12px;
  line-height: 16px;
  color: #646d74;
}

.ah-comparison__tooltip {
  font-weight: 400;
  font-size: 14px;
  line-height: inherit;
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
  position: absolute;
  background-color: #ffffff;
  bottom: 50px;
  left: 50%;
  min-width: 260px;
  min-height: 50px;
  padding: 15px;
  transform: translateX(-50%);
  z-index: 1;
}

.ah-comparison__tooltip::after {
  content: '';
  display: block;
  border-top: 16px solid #ffffff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.ah-comparison__buttons {
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 20px;
}

.ah-comparison__buttons .ah-button {
  text-transform: uppercase;
}

.ah-comparison__buttons .ah-button[hidden] {
  display: none;
}

.ah-comparison p {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.ah-comparisonitem {
  background-color: #ffffff;
  flex-direction: column;
  display: flex;
  text-align: center;
  border-radius: 10px;
  flex: 0 1 100%;
  margin-left: 4px;
}

@media (min-width: 1224px) {
  .ah-comparisonitem {
    margin-left: 22px;
  }
}

.ah-comparisonitem[hidden] {
  display: none;
}

.ah-comparisonitem:first-child {
  margin-left: 0;
}

.ah-comparisonitem:first-child[hidden] + .ah-comparisonitem {
  margin-left: 0;
}

.ah-comparisonitem__box {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 10px;
  position: relative;
}

@media (min-width: 1224px) {
  .ah-comparisonitem__box {
    padding-bottom: 30px;
  }
}

.ah-comparisonitem__highlight {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  background-color: #be0d3e;
  color: #ffffff;
  padding: 4px 4px 1px;
  text-transform: uppercase;
  width: 100%;
}

.ah-comparisonitem__prefix {
  font-size: 12px;
  line-height: 16px;
  color: #be0d3e;
  margin-top: 20px;
  padding: 0 10px;
}

@media (min-width: 1224px) {
  .ah-comparisonitem__prefix {
    font-size: 18px;
    line-height: 24px;
  }
}

.ah-comparisonitem__prefix[hidden] {
  display: none;
}

.ah-comparisonitem__name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #be0d3e;
  margin: 0 10px 8px;
  padding-bottom: 8px;
}

@media (min-width: 1224px) {
  .ah-comparisonitem__name {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 15px;
    padding-bottom: 20px;
  }
}

.ah-comparisonitem__text {
  display: none;
  color: rgba(49, 49, 49, 0.8);
}

@media (min-width: 1224px) {
  .ah-comparisonitem__text {
    align-self: center;
    display: block;
    max-width: 80%;
    font-size: 14px;
    line-height: 18px;
  }
}

.ah-comparisonitem__text[hidden] {
  display: none;
}

.ah-comparisonitem__text ul {
  text-align: left;
  margin: 0;
}

.ah-comparisonitem__text p {
  font-size: inherit;
  line-height: inherit;
}

.ah-comparisonitem__text > p {
  margin: 0;
}

.ah-comparisonitem__price {
  font-size: 16px;
  line-height: 22px;
}

@media (min-width: 1224px) {
  .ah-comparisonitem__price {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.ah-comparisonitem__price-prefix {
  text-transform: capitalize;
}

.ah-comparisonitem__select {
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 8px 10px 10px;
  padding-top: 15px;
}

@media (min-width: 1224px) {
  .ah-comparisonitem__select {
    display: none;
  }
}

.ah-comparisonitem__select[hidden] {
  display: none;
}

.ah-comparisonitem .ah-forms .ah-forms__checkbox .ah-forms__label:before {
  background-color: #F7F7F7;
  border: 1px solid #57a4bf;
  border-radius: 3px;
  box-shadow: none;
}

.ah-comparisonitem .ah-forms .ah-forms__checkbox input[type="checkbox"]:checked ~ .ah-forms__label:before {
  background-color: #F7F7F7;
}

.ah-comparisonitem .ah-forms .ah-forms__checkbox input[type="checkbox"]:checked ~ .ah-forms__label:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2224%22 height%3D%2224%22%3E%3Cg fill%3D%22%2357a4bf%22 fill-rule%3D%22evenodd%22%3E%3Cpath d%3D%22M4.318 11.318a1.502 1.502 0 012.122 0l4.243 4.243a1.5 1.5 0 01-2.122 2.121L4.318 13.44a1.5 1.5 0 010-2.122z%22%2F%3E%3Cpath d%3D%22M20.156 6.343a1.5 1.5 0 010 2.121l-9.192 9.192a1.5 1.5 0 11-2.121-2.121l9.192-9.192a1.5 1.5 0 012.121 0z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 1.71429em;
  width: 1.71429em;
}

.no-svg .ah-comparisonitem .ah-forms .ah-forms__checkbox input[type="checkbox"]:checked ~ .ah-forms__label:after {
  background-image: url("../media/icons/check--colorToReplace.png");
}

.ah-comparedetails {
  margin-bottom: 20px;
}

.ah-richtext .ah-comparedetails__title p, .ah-richtext .ah-comparedetails__subtitle p {
  margin: 0;
}

.ah-comparedetails__title {
  font-size: 14px;
  line-height: 18px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: inherit;
  margin: 0;
}

@media (min-width: 1224px) {
  .ah-comparedetails__title {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-comparedetails__subtitle {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}

.ah-comparedetails__wrapper {
  display: flex;
  min-height: 40px;
  justify-content: center;
  width: 100%;
}

.ah-comparedetails__item {
  background-color: rgba(87, 164, 191, 0.1);
  border-color: #313131;
  border-style: solid none;
  border-width: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  margin-left: 4px;
  width: 100%;
}

.ah-comparedetails__item:first-child, .ah-comparedetails__item[hidden] {
  margin-left: 0;
}

.ah-comparedetails__item[hidden] {
  display: none;
}

.ah-comparedetails__item .ah-richtext {
  font-size: 14px;
  line-height: 18px;
  padding: 10px;
}

.ah-comparedetails__item .ah-richtext p {
  margin: 0;
}

.ah-comparedetails__item--darken,
.ah-comparedetails__item--darken[hidden] + .ah-comparedetails__item {
  background-color: rgba(87, 164, 191, 0.2);
}

.ah-comparedetails__item__icon {
  fill: #004767;
  width: 18px;
  height: 18px;
}

.ah-media {
  width: 100%;
}

@media (min-width: 768px) {
  .ah-media {
    width: 60%;
  }
}

.ah-media h2,
.ah-media .ah-richtext h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .ah-media h2,
  .ah-media .ah-richtext h3 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
  }
}

.ah-media__title {
  margin-bottom: 20px;
}

.ah-media__content {
  font-size: 16px;
  line-height: 22px;
}

.ah-media__content .ah-richtext p {
  font-size: inherit;
  line-height: inherit;
}

.ah-media__wrapper {
  position: relative;
  margin-bottom: 20px;
}

.ah-media__text {
  margin-bottom: 20px;
}

.ah-media__buttons {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.ah-media__buttons .ah-button {
  margin-bottom: 20px;
}

.ah-media__buttons .ah-button:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .ah-media__buttons {
    align-items: flex-start;
    margin-bottom: 30px;
  }
}

.ah-media .ah-swiper__next:after,
.ah-media .ah-swiper__prev:after {
  content: none;
}

.ah-media .ah-swiper__next:hover, .ah-media .ah-swiper__next:focus-within,
.ah-media .ah-swiper__prev:hover,
.ah-media .ah-swiper__prev:focus-within {
  background-color: rgba(255, 255, 255, 0);
}

.ah-media .ah-swiperitem {
  overflow: hidden;
}

.ah-media .ah-swiperitem:before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  background: radial-gradient(180% 110% at left, rgba(255, 255, 255, 0) 50%, #ffffff 51%);
  top: 0;
  height: 100%;
  left: auto;
  right: 0;
  width: 20px;
}

@media (min-width: 768px) {
  .ah-media--column .ah-media__inner, .ah-media--column-medium .ah-media__inner {
    display: flex;
    justify-content: space-between;
  }
  .ah-media--column .ah-media__inner .ah-media__wrapper, .ah-media--column-medium .ah-media__inner .ah-media__wrapper {
    width: calc(60% - 15px);
    margin-bottom: 0;
  }
  .ah-media--column .ah-media__inner .ah-media__content, .ah-media--column-medium .ah-media__inner .ah-media__content {
    width: calc(40%  - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.ah-media--column-medium {
  width: 100%;
}

@media (min-width: 768px) {
  .ah-media--column-medium {
    width: 60%;
  }
}

.ah-media--column {
  width: 100%;
}

.ah-swiper {
  position: relative;
}

.ah-swiper__content > div > div:last-child {
  display: none;
}

.ah-swiper__content > div > div:first-child {
  display: block;
}

.ah-swiper__prev, .ah-swiper__next {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  position: absolute;
  top: calc(50% - 28px);
  height: 32px;
}

.ah-swiper__prev:hover, .ah-swiper__prev:focus-within, .ah-swiper__next:hover, .ah-swiper__next:focus-within {
  box-shadow: none;
}

.ah-swiper__prev:hover .ah-swiper__svgicon, .ah-swiper__prev:focus-within .ah-swiper__svgicon, .ah-swiper__next:hover .ah-swiper__svgicon, .ah-swiper__next:focus-within .ah-swiper__svgicon {
  fill: #666666;
}

.ah-swiper__prev {
  left: 0;
}

.ah-swiper__next {
  right: 0;
}

.ah-swiper__svgicon {
  height: 100%;
  fill: rgba(153, 153, 153, 0.8);
}

.ah-swiperitem {
  position: relative;
}

.ah-detailteaser .ah-swiperitem .ah-responsiveimage {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
}

.ah-swiperitem--img .ah-responsiveimage .ah-image--has-parent {
  height: 100%;
}

.ah-swiperitem--img .ah-image--has-parent {
  position: static;
  height: auto;
  font-family: sans-serif;
}

.ah-swiperitem__label {
  font-size: 12px;
  line-height: 16px;
  font-style: italic;
  margin: 4px 0 0;
  color: #a8aab3;
}

@media (min-width: 768px) {
  .ah-swiperitem__label {
    margin-top: 10px;
  }
}

.ah-detailteaser .ah-swiperitem__label {
  font-size: 12px;
  line-height: 16px;
  color: inherit;
}

.ah-swiperitem__play {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  position: absolute;
  top: calc(50% - 42px);
  left: 50%;
  align-items: center;
  justify-content: center;
  z-index: 2;
  display: flex;
  width: 60px;
  height: 60px;
  background-color: #be0d3e;
  border: 0;
  border-radius: 50%;
  transform: translateX(-50%);
}

.ah-swiperitem__playicon {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.ah-swiperitem__lightbox {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
}

.ah-video {
  position: relative;
}

.ah-video__play {
  position: absolute;
  border: 0;
  background-color: #be0d3e;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ah-video__playicon {
  height: 100%;
  width: 100%;
  fill: #ffffff;
}

.ah-uspteaser {
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1224px) {
  .ah-uspteaser {
    padding: 46px 0;
  }
}

.ah-uspteaser:before, .ah-uspteaser:after {
  content: "";
  background-color: #dd023a;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}

.ah-uspteaser:before {
  height: 400px;
  width: 218%;
  top: 0;
  border-radius: 50% / 100% 100% 0 0;
  left: -55%;
  z-index: -1;
}

@media (min-width: 1224px) {
  .ah-uspteaser:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at bottom, #be0d3e 50%, rgba(255, 255, 255, 0) 51%);
    top: 0;
    height: 46px;
    width: 100%;
    border-radius: 0;
  }
}

.ah-uspteaser:after {
  bottom: 0;
  border-radius: 0 0 100px 0 / 0 0 30px 0;
  height: 30px;
}

@media (min-width: 1224px) {
  .ah-uspteaser:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at top, #be0d3e 50%, rgba(255, 255, 255, 0) 51%);
    bottom: 0;
    height: 46px;
    width: 100%;
    border-radius: 0;
  }
}

.ah-uspteaser__inner {
  padding-left: 30px;
  padding-right: 30px;
  background-color: #be0d3e;
  border-radius: 0 50px 0 0 / 0 15px 0 0;
  padding-bottom: 10px;
  padding-top: 50px;
  margin-top: 60px;
}

@media (min-width: 1224px) {
  .ah-uspteaser__inner {
    border-radius: 0;
    margin-top: 0;
    padding: 0 0 24px;
  }
}

.ah-uspteaser__wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.ah-uspteaser--blue .ah-uspteaser__inner {
  background-color: #007ca3;
}

.ah-uspteaser--blue:before, .ah-uspteaser--blue:after {
  background-color: #57a4bf;
}

@media (min-width: 1224px) {
  .ah-uspteaser--blue:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at bottom, #007ca3 50%, rgba(255, 255, 255, 0) 51%);
    top: 0;
    height: 46px;
    width: 100%;
  }
}

@media (min-width: 1224px) {
  .ah-uspteaser--blue:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at top, #007ca3 50%, rgba(255, 255, 255, 0) 51%);
    bottom: 0;
    height: 46px;
    width: 100%;
  }
}

.ah-uspteaser--green .ah-uspteaser__inner {
  background-color: #427e5b;
}

.ah-uspteaser--green:before, .ah-uspteaser--green:after {
  background-color: #93b05d;
}

@media (min-width: 1224px) {
  .ah-uspteaser--green:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at bottom, #427e5b 50%, rgba(255, 255, 255, 0) 51%);
    top: 0;
    height: 46px;
    width: 100%;
  }
}

@media (min-width: 1224px) {
  .ah-uspteaser--green:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at top, #427e5b 50%, rgba(255, 255, 255, 0) 51%);
    bottom: 0;
    height: 46px;
    width: 100%;
  }
}

.ah-uspteaser--yellow .ah-uspteaser__inner {
  background-color: #f1b41f;
}

.ah-uspteaser--yellow:before, .ah-uspteaser--yellow:after {
  background-color: #eecf3f;
}

@media (min-width: 1224px) {
  .ah-uspteaser--yellow:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at bottom, #f1b41f 50%, rgba(255, 255, 255, 0) 51%);
    top: 0;
    height: 46px;
    width: 100%;
  }
}

@media (min-width: 1224px) {
  .ah-uspteaser--yellow:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at top, #f1b41f 50%, rgba(255, 255, 255, 0) 51%);
    bottom: 0;
    height: 46px;
    width: 100%;
  }
}

.ah-uspteaser--dark-blue .ah-uspteaser__inner {
  background-color: #004767;
}

.ah-uspteaser--dark-blue:before, .ah-uspteaser--dark-blue:after {
  background-color: #005f7c;
}

@media (min-width: 1224px) {
  .ah-uspteaser--dark-blue:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at bottom, #004767 50%, rgba(255, 255, 255, 0) 51%);
    top: 0;
    height: 46px;
    width: 100%;
  }
}

@media (min-width: 1224px) {
  .ah-uspteaser--dark-blue:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at top, #004767 50%, rgba(255, 255, 255, 0) 51%);
    bottom: 0;
    height: 46px;
    width: 100%;
  }
}

.ah-uspteaser--grey .ah-uspteaser__inner {
  background-color: #646d74;
}

.ah-uspteaser--grey:before, .ah-uspteaser--grey:after {
  background-color: #a8aab3;
}

@media (min-width: 1224px) {
  .ah-uspteaser--grey:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at bottom, #646d74 50%, rgba(255, 255, 255, 0) 51%);
    top: 0;
    height: 46px;
    width: 100%;
  }
}

@media (min-width: 1224px) {
  .ah-uspteaser--grey:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at top, #646d74 50%, rgba(255, 255, 255, 0) 51%);
    bottom: 0;
    height: 46px;
    width: 100%;
  }
}

.ah-uspteaser__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center;
}

@media (min-width: 1224px) {
  .ah-uspteaser__title {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-uspteaser--yellow .ah-uspteaser__title {
  color: #313131;
}

.ah-uspteaser__subline {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 45px;
  margin-top: 0;
}

.ah-uspteaser__subline a {
  font-weight: 700;
}

.ah-uspteaser__subline a:before {
  display: none;
}

@media (min-width: 1224px) {
  .ah-uspteaser__subline {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.ah-uspteaser--yellow .ah-uspteaser__subline {
  color: #313131;
}

@media (min-width: 768px) {
  .ah-uspteaser__teaser-wrapper {
    display: flex;
    justify-content: space-between;
    flex-flow: row;
  }
}

.ah-uspteaser__teaser-item {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 10px;
  padding: 20px 0 30px;
  min-height: 150px;
}

@media (min-width: 768px) {
  .ah-uspteaser__teaser-item {
    border-bottom: 0;
    margin-bottom: 0;
    padding: 0 30px 0;
    width: 25%;
    flex-grow: 1;
  }
}

.ah-uspteaser--yellow .ah-uspteaser__teaser-item {
  border-bottom-color: #313131;
}

.ah-uspteaser__teaser-item:last-child {
  border: none;
}

.ah-uspteaser__teaser-item__icon {
  margin-bottom: 20px;
  height: 48px;
  width: 48px;
}

@media (min-width: 768px) {
  .ah-uspteaser__teaser-item + .ah-uspteaser__teaser-item {
    border-left: 1px solid #ffffff;
  }
  .ah-uspteaser--yellow .ah-uspteaser__teaser-item + .ah-uspteaser__teaser-item {
    border-left-color: #313131;
  }
}

.ah-uspteaser .ah-teaserlink__text {
  margin-top: 10px;
}

@media (min-width: 1224px) {
  .ah-uspteaser .ah-teaserlink__text {
    margin-top: 20px;
  }
}

.ah-separator {
  height: 1px;
  margin: 20px 10px;
  border: none;
}

@media (min-width: 768px) {
  .ah-separator {
    margin: 20px;
  }
}

@media (min-width: 1224px) {
  .ah-separator {
    margin: 20px auto;
  }
}

.ah-separator--large {
  margin: 40px 10px;
}

@media (min-width: 768px) {
  .ah-separator--large {
    margin: 40px 20px;
  }
}

@media (min-width: 1224px) {
  .ah-separator--large {
    margin: 40px auto;
  }
}

.ah-separator--line {
  background-color: rgba(49, 49, 49, 0.4);
}

.ah-endteaser {
  width: 100%;
  position: relative;
  z-index: 0;
  position: relative;
  padding: 0 10px;
  padding-top: 50px;
  padding-bottom: 30px;
}

@media all and (min-width: 48em) {
  .ah-endteaser {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-endteaser {
    padding: 0;
  }
}

.ah-endteaser:after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  z-index: 0;
}

@media all and (min-width: 48em) {
  .ah-endteaser {
    padding-top: 50px;
    padding-bottom: 135px;
  }
}

.ah-endteaser__inner {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}

@media all and (min-width: 48em) {
  .ah-endteaser__inner {
    width: 75%;
    margin-bottom: 30px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-endteaser__inner {
    width: 60%;
    margin-bottom: 45px;
  }
}

.ah-endteaser__title {
  color: #B11A3B;
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}

@media all and (min-width: 48em) {
  .ah-endteaser__title {
    font-size: 54px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-endteaser__title {
    font-size: 64px;
  }
}

.ah-endteaser__subtitle {
  color: #DDDDDD;
  margin: 0 0 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: inherit;
}

@media all and (min-width: 48em) {
  .ah-endteaser__subtitle {
    font-size: 24px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-endteaser__subtitle {
    font-size: 20px;
  }
}

.ah-endteaser__image {
  width: 110px;
  height: 100%;
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 10px;
  left: auto;
  object-fit: contain;
  font-family: "object-fit: contain";
}

@media all and (min-width: 48em) {
  .ah-endteaser__image {
    width: 200px;
    right: 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-endteaser__image {
    right: 30%;
  }
}

.ah-hintteaser {
  flex-wrap: wrap;
  display: flex;
  padding: 30px 30px 20px;
  border-bottom: 30px solid;
  color: #ffffff;
  background-color: #be0d3e;
  border-color: #dd023a;
}

@media (min-width: 1224px) {
  .ah-hintteaser {
    flex-wrap: nowrap;
  }
}

.ah-hintteaser--gamma {
  color: #ffffff;
  background-color: #004767;
  border-color: #005f7c;
}

.ah-hintteaser--epsilon {
  color: #ffffff;
  background-color: #007ca3;
  border-color: #57a4bf;
}

.ah-hintteaser--eta {
  color: #ffffff;
  background-color: #427e5b;
  border-color: #93b05d;
}

.ah-hintteaser--jota {
  color: #000000;
  background-color: #f1b41f;
  border-color: #eecf3f;
}

.ah-hintteaser--inverted {
  color: #ffffff;
  background-color: #646d74;
  border-color: #a8aab3;
}

.ah-grid__col-2 .ah-hintteaser {
  flex-wrap: wrap;
}

.ah-hintteaser__content {
  order: 1;
  max-width: 100%;
}

@media (min-width: 1224px) {
  .ah-hintteaser__content {
    order: 0;
  }
}

.ah-hintteaser__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: inherit;
}

@media (min-width: 768px) {
  .ah-hintteaser__title {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
  }
}

.ah-hintteaser__text {
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
}

.ah-hintteaser__text a {
  font-weight: 700;
}

.ah-hintteaser__text a:before {
  display: none;
}

.ah-hintteaser__text p {
  margin: 0;
}

.ah-hintteaser .ah-imagelink {
  height: 100px;
  margin: 0 auto 30px;
}

@media (min-width: 1224px) {
  .ah-hintteaser .ah-imagelink {
    margin-right: 0;
    margin-left: 100px;
  }
}

@media (min-width: 1224px) {
  .ah-grid__col-2 .ah-hintteaser .ah-imagelink {
    margin: 0 auto;
  }
}

.flex_formcontainer {
  position: relative;
  padding: 0 10px;
  max-height: 100% !important;
}

@media all and (min-width: 48em) {
  .flex_formcontainer {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .flex_formcontainer {
    padding: 0;
  }
}

.flex_formcontainer p {
  margin: 0;
}

.flex_formcontainer .title-wrapper {
  display: block;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid #DDDDDD;
}

.flex_formcontainer .title-wrapper p {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.14;
  color: #B11A3B;
  margin: 0;
}

@media all and (min-width: 48em) {
  .flex_formcontainer .title-wrapper p {
    font-size: 26px;
    line-height: 1.15;
  }
}

@media all and (min-width: 87.5em) {
  .flex_formcontainer .title-wrapper p {
    font-size: 32px;
    line-height: 1.19;
  }
}

.flex_formcontainer .text-wrapper {
  padding-top: 27px;
  padding-bottom: 22px;
}

.flex_formcontainer .message-info {
  padding: 18px 0 24px;
  border-top: 1px solid #DDDDDD;
  padding-left: 35px;
  position: relative;
  width: 100%;
}

.flex_formcontainer .message-info:before {
  content: '';
  width: 28px;
  height: 28px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2220%22 height%3D%2221%22%3E%3Cpath fill%3D%22%23999%22 d%3D%22M11.25 14.958h-.625V9.333a.6.6 0 00-.186-.44.6.6 0 00-.439-.185H8.75a.6.6 0 00-.44.186.6.6 0 00-.185.44.6.6 0 00.186.439.6.6 0 00.439.185h.625v5H8.75a.6.6 0 00-.44.186.6.6 0 00-.185.44.6.6 0 00.186.439.6.6 0 00.439.185h2.5a.6.6 0 00.44-.185.6.6 0 00.185-.44.6.6 0 00-.186-.44.6.6 0 00-.439-.185zM9.111 7.097c.241.24.537.361.889.361s.648-.12.889-.361c.24-.24.361-.537.361-.889 0-.351-.12-.647-.361-.888A1.208 1.208 0 0010 4.958c-.352 0-.648.12-.889.362-.24.24-.361.537-.361.888 0 .352.12.648.361.889zm4.043-6.006A9.968 9.968 0 0010 .583c-1.08 0-2.132.17-3.154.508a9.669 9.669 0 00-2.764 1.426 10.5 10.5 0 00-2.148 2.148A9.669 9.669 0 00.508 7.43 9.968 9.968 0 000 10.583c0 1.354.264 2.65.791 3.887s1.237 2.301 2.129 3.193c.892.892 1.956 1.602 3.193 2.13a9.81 9.81 0 003.887.79 9.81 9.81 0 003.887-.79c1.237-.528 2.301-1.238 3.193-2.13.892-.892 1.602-1.956 2.129-3.193A9.81 9.81 0 0020 10.583c0-1.08-.17-2.132-.508-3.154a9.669 9.669 0 00-1.426-2.764 10.5 10.5 0 00-2.148-2.148 9.669 9.669 0 00-2.764-1.426zM10 19.353a8.8 8.8 0 01-2.764-.44 8.112 8.112 0 01-2.412-1.26A9.802 9.802 0 012.94 15.76a8.242 8.242 0 01-1.25-2.412 8.8 8.8 0 01-.439-2.764c0-1.185.231-2.317.693-3.398A8.79 8.79 0 013.81 4.392a8.79 8.79 0 012.793-1.865A8.554 8.554 0 0110 1.833c1.185 0 2.318.231 3.398.694a8.79 8.79 0 012.793 1.865 8.79 8.79 0 011.866 2.793 8.554 8.554 0 01.693 3.398 8.554 8.554 0 01-.693 3.399 8.908 8.908 0 01-1.866 2.803 8.708 8.708 0 01-2.793 1.875 8.554 8.554 0 01-3.398.693z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: calc(50% - 16px);
  background-size: 90%;
}

.no-svg .flex_formcontainer .message-info:before {
  background-image: url("../media/icons/info--default.png");
}

.flex_formcontainer .message-info strong {
  font-size: 12px;
  font-style: italic;
  line-height: 1.16;
  display: block;
  color: #999999;
}

@media all and (min-width: 87.5em) {
  .flex_formcontainer .message-info strong {
    font-size: 12px;
    line-height: 1.16;
  }
}

.flex_formcontainer .info3-block {
  display: none;
}

.flex_formcontainer .flex_formfooter {
  text-align: right;
  width: 100%;
  padding-top: 20px;
}

.flex_formcontainer .flex_formfooter button {
  margin: 0 0 10px 16px;
}

@media all and (min-width: 48em) {
  .flex_formcontainer > .flex_var_nolegend > ul {
    display: flex;
    flex-flow: row wrap;
  }
  .flex_formcontainer .flex_listitem {
    width: 100%;
  }
  .flex_formcontainer .flex_singletextfield {
    width: 50%;
  }
  .flex_formcontainer .flex_singletextfield:nth-of-type(even) {
    padding-right: 10px;
  }
  .flex_formcontainer .flex_singletextfield:nth-of-type(odd) {
    padding-left: 10px;
  }
}

@media all and (min-width: 87.5em) {
  .flex_formcontainer {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
  }
  .lity-content .flex_formcontainer {
    display: flex;
  }
  .flex_formcontainer .text-wrapper {
    padding-bottom: 53px;
  }
  .flex_formcontainer > .flex_var_nolegend:nth-of-type(even) {
    width: 60%;
    padding-right: 100px;
  }
  .flex_formcontainer > .flex_var_nolegend:nth-of-type(odd) {
    width: 40%;
  }
  .flex_formcontainer > .flex_var_nolegend:first-of-type {
    width: 100%;
    padding: 0;
  }
  .flex_formcontainer > .flex_var_nolegend > ul {
    display: flex;
    flex-flow: row wrap;
  }
  .flex_formcontainer .flex_listitem {
    width: 100%;
  }
  .flex_formcontainer .flex_singletextfield {
    width: 50%;
  }
}

.ah-lightbox-wrapper {
  display: none;
}

.ah-lightbox-wrapper--editmode {
  border: 2px dashed #a977b7;
  display: block;
  min-height: 100px;
  position: relative;
  background: rgba(169, 119, 183, 0.15);
}

.ah-lightbox-wrapper--editmode .ah-lightbox {
  display: none;
}

.ah-lightbox-wrapper--editmode:before {
  content: 'Lightbox';
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.ah-lightbox {
  position: absolute;
  height: 100%;
}

.ah-lightbox__wrap {
  position: absolute;
  overflow: auto;
  vertical-align: top;
  padding: 0;
}

@media all and (min-width: 87.5em) {
  .ah-lightbox__wrap {
    padding: 10px;
  }
}

.ah-lightbox__container {
  vertical-align: top;
  -webkit-box-shadow: 3px 0 30px #BBBBBB;
  -moz-box-shadow: 3px 0 30px #BBBBBB;
  box-shadow: 3px 0 30px #BBBBBB;
  background-color: #FFFFFF;
}

.ah-lightbox__container:before {
  display: block;
  content: '';
  width: 30%;
  height: 10px;
  background: #E23E21;
}

.ah-lightbox__container:after {
  display: block;
  content: '';
  width: calc(70% - 2px);
  height: 10px;
  background: #B11A3B;
  left: auto;
  border-left: 2px solid #E4F1F9;
  position: absolute;
  top: 0;
  right: 0;
}

@media all and (min-width: 48em) {
  .ah-lightbox__container {
    /* &:before {
			margin: pxToRem(20) auto pxToRem(16);
			width: pxToRem(216);
			height: pxToRem(60);
		} */
  }
}

@media all and (min-width: 87.5em) {
  .ah-lightbox__container {
    background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2210200%22 height%3D%22780%22 viewBox%3D%22-914.118 0 10200 780%22%3E%3Cpath fill%3D%22%23f7fbfd%22 d%3D%22M-914.118 780.1S-393.517 610.08 171.482 0h9114.4v781.1h-10200v-1z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-size: cover;
  }
  .no-svg .ah-lightbox__container {
    background-image: url("../media/icons/nav-background-desktop--default.png");
  }
  .ah-lightbox__container:before {
    background: #E23E21;
  }
  .ah-lightbox__container:after {
    background: #B11A3B;
  }
}

.ah-lightbox__content {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 10px;
}

.ah-lightbox__content:before {
  content: '';
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 193.343 40.258%22%3E%3Cpath d%3D%22M54.334 38.188q-.191-.5-.358-.991t-.347-.99h-3.513l-.706 1.981h-1.13q.448-1.232.84-2.278t.766-1.986q.375-.941.744-1.8t.772-1.7h1q.4.839.773 1.7t.743 1.8q.376.941.767 1.986t.84 2.278zm-1.018-2.876q-.359-.974-.711-1.886t-.733-1.751q-.392.838-.744 1.751t-.7 1.886zm7.923 1.936v.94h-4.667v-7.755h1.086v6.815zm6.02-6.815h1.085v7.755h-1.085v-3.581h-3.794v3.581H62.38v-7.755h1.085v3.234h3.794zm10.328 3.939h1.085V38a3.928 3.928 0 01-.386.1q-.251.057-.582.112t-.721.095q-.392.039-.8.039a3.977 3.977 0 01-1.488-.268 3.166 3.166 0 01-1.153-.783 3.553 3.553 0 01-.744-1.265 5.209 5.209 0 01-.258-1.73 4.692 4.692 0 01.3-1.728 3.726 3.726 0 01.8-1.27 3.36 3.36 0 011.181-.784 3.89 3.89 0 011.448-.268 5.785 5.785 0 01.935.067 5.551 5.551 0 01.7.156 3.409 3.409 0 01.476.18 2.351 2.351 0 01.252.134l-.347.906a2.951 2.951 0 00-.862-.352 4.348 4.348 0 00-1.1-.14 2.661 2.661 0 00-1.079.213 2.241 2.241 0 00-.828.615 2.9 2.9 0 00-.532.979 4.1 4.1 0 00-.19 1.292 4.622 4.622 0 00.162 1.265 2.7 2.7 0 00.493.979 2.218 2.218 0 00.816.632 2.714 2.714 0 001.147.224 5.487 5.487 0 00.8-.05 3.726 3.726 0 00.476-.095zm4.868-2.126c.089 0 .192 0 .307.016s.23.027.342.045.214.038.308.056a1.646 1.646 0 01.206.051l-.179.906a3.622 3.622 0 00-.408-.107 3.662 3.662 0 00-.733-.061 2.79 2.79 0 00-.576.061l-.375.084v4.891h-1.041v-5.573a6.924 6.924 0 01.918-.252 5.91 5.91 0 011.231-.117zm6.804 5.774q-.359.09-.946.19a8.145 8.145 0 01-1.36.1 2.893 2.893 0 01-1.13-.2 1.82 1.82 0 01-.738-.554 2.247 2.247 0 01-.4-.845 4.409 4.409 0 01-.123-1.08v-3.262H85.6v3.043a2.637 2.637 0 00.336 1.522 1.307 1.307 0 001.13.459c.112 0 .228 0 .347-.011s.231-.017.336-.028.2-.022.285-.034a.836.836 0 00.185-.039v-4.912h1.041zm6.915-2.731a4.12 4.12 0 01-.174 1.22 2.758 2.758 0 01-.51.962 2.312 2.312 0 01-.822.627 2.643 2.643 0 01-1.113.224 2.717 2.717 0 01-.89-.134 2.793 2.793 0 01-.576-.258v2.328h-1.04v-7.71q.369-.09.923-.2a6.843 6.843 0 011.281-.106 3.256 3.256 0 011.209.212 2.588 2.588 0 01.918.605 2.68 2.68 0 01.587.956 3.674 3.674 0 01.207 1.274zm-1.085 0a2.232 2.232 0 00-.5-1.566 1.734 1.734 0 00-1.343-.549 6.22 6.22 0 00-.733.034 3.006 3.006 0 00-.419.078v3.671a2.134 2.134 0 00.548.3 2.059 2.059 0 00.783.145 1.677 1.677 0 00.767-.162 1.4 1.4 0 00.52-.448 1.894 1.894 0 00.288-.669 3.67 3.67 0 00.089-.834zm7.676 0a4.12 4.12 0 01-.173 1.22 2.758 2.758 0 01-.51.962 2.312 2.312 0 01-.822.627 2.644 2.644 0 01-1.114.224 2.715 2.715 0 01-.889-.134 2.793 2.793 0 01-.576-.258v2.328H97.64v-7.71q.369-.09.923-.2a6.843 6.843 0 011.281-.106 3.256 3.256 0 011.209.212 2.576 2.576 0 01.917.605 2.668 2.668 0 01.588.956 3.674 3.674 0 01.207 1.274zm-1.085 0a2.237 2.237 0 00-.5-1.566 1.736 1.736 0 00-1.343-.549 6.208 6.208 0 00-.733.034 3.006 3.006 0 00-.419.078v3.671a2.134 2.134 0 00.548.3 2.055 2.055 0 00.783.145 1.673 1.673 0 00.766-.162 1.4 1.4 0 00.521-.448 1.894 1.894 0 00.291-.671 3.728 3.728 0 00.086-.832zm2.226 0a3.714 3.714 0 01.224-1.348 2.823 2.823 0 01.593-.957 2.4 2.4 0 01.851-.57 2.65 2.65 0 01.984-.191 2.242 2.242 0 011.8.733 3.372 3.372 0 01.626 2.233v.173a1.492 1.492 0 01-.011.2h-3.983a2.124 2.124 0 00.526 1.376 1.92 1.92 0 001.432.47 3.79 3.79 0 00.923-.1 3.259 3.259 0 00.565-.185l.145.873a2.983 2.983 0 01-.665.213 4.767 4.767 0 01-1.08.112 3.425 3.425 0 01-1.315-.23 2.441 2.441 0 01-.912-.632 2.561 2.561 0 01-.531-.956 4.04 4.04 0 01-.172-1.214zm3.995-.57a1.748 1.748 0 00-.353-1.159 1.213 1.213 0 00-1-.453 1.372 1.372 0 00-.632.14 1.508 1.508 0 00-.465.364 1.657 1.657 0 00-.3.514 2.527 2.527 0 00-.14.594zM23.451 22.11c-7.208-.851-11.087-6.475-12.794-10.93-.052-.137-.113-.3-.525-.3H.306a.332.332 0 00-.246.52 25.728 25.728 0 0023.389 11.146c.305-.046.314-.389.002-.436z%22 fill%3D%22%23B11A3B%22%2F%3E%3Ccircle cx%3D%2221.88%22 cy%3D%225.43%22 r%3D%225.43%22 fill%3D%22%23B11A3B%22%2F%3E%3Cpath d%3D%22M21.233 19.823c6.434-1.889 9.193-7.3 10.124-12.413a.323.323 0 01.317-.241H40.7c.253 0 .343.259.324.475a6.033 6.033 0 01-.716 2.08C39.125 12.29 33.031 21.011 23.5 20.686a6.07 6.07 0 01-2.276-.42c-.113-.066-.246-.366.009-.443zm39.221-5.786q-.733-1.878-1.454-3.566t-1.467-3.3H54.31q-.764 1.609-1.475 3.3t-1.442 3.566q-.732 1.876-1.5 4t-1.613 4.629h3.529q.248-.8.535-1.654l.573-1.7h5.9l.578 1.694c.194.568.373 1.121.542 1.659h3.64q-.854-2.5-1.62-4.628t-1.503-4zm-6.764 2.5q.357-1 .7-1.919c.23-.612.438-1.17.626-1.678s.352-.955.5-1.343.257-.693.333-.917c.09.221.209.523.356.91l.513 1.341c.195.508.4 1.068.617 1.681s.44 1.254.672 1.925zm15.165 3a1.41 1.41 0 01-.25-.6 4.546 4.546 0 01-.066-.8V6.644l-3.246.535V18.8a7.026 7.026 0 00.186 1.689 2.712 2.712 0 00.7 1.273 3.387 3.387 0 001.395.817 7.9 7.9 0 002.3.313l.458-2.751a2.84 2.84 0 01-.936-.2 1.326 1.326 0 01-.541-.404zm9.677.433a6.05 6.05 0 01-1.078.1 1.524 1.524 0 01-1.449-.626 3.352 3.352 0 01-.36-1.676v-4.137h3.9V10.86h-3.9V6.6l-3.245.534v10.678a9.675 9.675 0 00.207 2.08 3.864 3.864 0 00.73 1.6 3.459 3.459 0 001.394 1.03 5.679 5.679 0 002.2.368 7.383 7.383 0 001.764-.179A8.876 8.876 0 0080 22.284l-.457-2.594a5.389 5.389 0 01-1.011.28zm8.158-9.47a5.346 5.346 0 00-2.037.4 5.079 5.079 0 00-1.753 1.188 5.883 5.883 0 00-1.231 1.956 7.364 7.364 0 00-.468 2.738 7.847 7.847 0 00.359 2.418 5.139 5.139 0 001.111 1.932 5.211 5.211 0 001.895 1.286 7.061 7.061 0 002.691.47 10.844 10.844 0 001.22-.068c.406-.043.788-.1 1.144-.167a9.326 9.326 0 00.969-.235 4.391 4.391 0 00.7-.267l-.436-2.706a6.439 6.439 0 01-1.405.413 9.2 9.2 0 01-1.753.168 3.68 3.68 0 01-2.222-.6 2.218 2.218 0 01-.937-1.632H91.9c.014-.178.029-.382.044-.615s.021-.442.021-.636a6.415 6.415 0 00-1.416-4.5A4.994 4.994 0 0086.69 10.5zm-2.156 5.009a4.76 4.76 0 01.207-.839 2.289 2.289 0 01.4-.726 1.956 1.956 0 01.654-.5 2.136 2.136 0 01.937-.189 2.027 2.027 0 01.947.2 1.982 1.982 0 01.632.515 2.091 2.091 0 01.371.715 3.545 3.545 0 01.142.828zm18.778-8.337h-3.399v15.494h9.514V19.67h-6.115V7.172zm13.071 3.328a5.346 5.346 0 00-2.037.4 5.079 5.079 0 00-1.753 1.184 5.883 5.883 0 00-1.231 1.956 7.364 7.364 0 00-.468 2.738 7.847 7.847 0 00.359 2.417 5.153 5.153 0 001.111 1.932 5.207 5.207 0 001.9 1.286 7.053 7.053 0 002.69.47 10.844 10.844 0 001.22-.068c.407-.043.788-.1 1.144-.167a9.264 9.264 0 00.969-.235 4.447 4.447 0 00.7-.267l-.437-2.706a6.439 6.439 0 01-1.405.413 9.2 9.2 0 01-1.753.168 3.68 3.68 0 01-2.222-.6 2.218 2.218 0 01-.937-1.632h7.363c.015-.178.029-.382.044-.615s.021-.442.021-.636a6.415 6.415 0 00-1.415-4.5 5 5 0 00-3.863-1.538zm-2.156 5.009a4.76 4.76 0 01.207-.839 2.272 2.272 0 01.4-.726 1.943 1.943 0 01.653-.5 2.136 2.136 0 01.937-.189 2.031 2.031 0 01.948.2 2 2 0 01.632.515 2.107 2.107 0 01.37.715 3.545 3.545 0 01.142.828zm9.933-4.649h3.246v11.759h-3.246zm15.381 1.397a5.18 5.18 0 00-1.874-1.23 6.87 6.87 0 00-2.527-.436q-.588 0-1.231.056t-1.264.146q-.621.087-1.187.211t-1 .258l-.026 15.885h3.246l.026-4.819a5.941 5.941 0 001.133.38 5.7 5.7 0 001.264.135 4.941 4.941 0 002.157-.448 4.34 4.34 0 001.568-1.252 5.615 5.615 0 00.958-1.923 8.812 8.812 0 00.327-2.481 7.629 7.629 0 00-.4-2.549 5.3 5.3 0 00-1.17-1.933zm-4.053 7.769a3.756 3.756 0 01-.991-.134 2.806 2.806 0 01-.8-.335v-6.015c.16-.029.363-.057.61-.078s.516-.033.807-.033a2.32 2.32 0 012 .928 4.111 4.111 0 01.674 2.469q.012 3.198-2.3 3.198zm12.486-2.096q.776-1.009 1.539-1.931c.509-.612.986-1.175 1.43-1.683s.8-.913 1.059-1.213V10.86H142.9v2.782h4.88q-.588.719-1.285 1.606t-1.405 1.828q-.71.943-1.351 1.875t-1.1 1.741v1.974h9.477v-2.784h-5.545q.629-.942 1.403-1.952zm6.641-7.07h3.246v11.759h-3.246zm13.704-.067q-.61-.09-1.232-.146a13.205 13.205 0 00-1.209-.056 6.907 6.907 0 00-2.461.413 5.079 5.079 0 00-1.841 1.175A5.028 5.028 0 00160.432 14a6.751 6.751 0 00-.392 2.358 5.922 5.922 0 001.263 4.036 4.578 4.578 0 003.639 1.443 5.576 5.576 0 001.208-.124 5.111 5.111 0 001.079-.368v.424a3.3 3.3 0 01-.577 1.972 2.6 2.6 0 01-1.971.626 8.745 8.745 0 01-3.508-.671l-.567 2.794a12.662 12.662 0 001.939.5 11.751 11.751 0 002.091.19 6.091 6.091 0 004.412-1.4 6.709 6.709 0 001.427-4.643v-9.875q-.435-.134-.991-.258t-1.165-.211zm-1.09 7.914a3.612 3.612 0 01-.741.313 3.185 3.185 0 01-.936.133q-2.2 0-2.2-2.795a3.674 3.674 0 01.632-2.212 2.209 2.209 0 011.917-.872 7.221 7.221 0 011.329.111zm10.925-8.162a5.358 5.358 0 00-2.037.4 5.085 5.085 0 00-1.754 1.185 5.894 5.894 0 00-1.231 1.955 7.37 7.37 0 00-.468 2.739 7.871 7.871 0 00.359 2.416 5.141 5.141 0 001.112 1.932 5.214 5.214 0 001.9 1.287 7.053 7.053 0 002.69.469 11.083 11.083 0 001.22-.067q.611-.066 1.144-.168a8.971 8.971 0 00.969-.234 4.538 4.538 0 00.7-.268l-.436-2.705a6.53 6.53 0 01-1.405.413 9.22 9.22 0 01-1.754.167 3.681 3.681 0 01-2.222-.6 2.224 2.224 0 01-.941-1.632h7.364c.014-.178.028-.382.043-.615s.022-.442.022-.637a6.419 6.419 0 00-1.416-4.505 5 5 0 00-3.859-1.532zM176 15.554a4.875 4.875 0 01.208-.839 2.272 2.272 0 01.4-.726 1.976 1.976 0 01.653-.5 2.157 2.157 0 01.937-.189 2.043 2.043 0 01.948.2 2 2 0 01.632.515 2.09 2.09 0 01.37.715 3.554 3.554 0 01.142.828zm16.712-4.636c-.247-.053-.495-.1-.741-.134s-.494-.068-.741-.09-.457-.034-.631-.034a11.585 11.585 0 00-2.647.28 18.871 18.871 0 00-2.059.593v11.133h3.246v-8.988a4.415 4.415 0 01.643-.122 5.576 5.576 0 01.729-.056 6.179 6.179 0 011.264.124q.588.123 1.024.234l.544-2.751a3.333 3.333 0 00-.631-.189z%22 fill%3D%22%23B11A3B%22%2F%3E%3Ccircle cx%3D%22125.783%22 cy%3D%227.021%22 r%3D%221.968%22 fill%3D%22%23B11A3B%22%2F%3E%3Ccircle cx%3D%22156.238%22 cy%3D%227.021%22 r%3D%221.968%22 fill%3D%22%23B11A3B%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: NaN0px/14px0em;
  width: NaN0px/14px0em;
  margin: 10px auto 0;
  width: 144px;
  height: 40px;
}

.no-svg .ah-lightbox__content:before {
  background-image: url("../media/icons/alh-logo--colorToReplace.png");
}

.ah-lightbox__content:after {
  box-shadow: none;
}

@media all and (min-width: 48em) {
  .ah-lightbox__content:before {
    margin: 20px auto 16px;
    width: 216px;
    height: 60px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-lightbox__content {
    padding: 20px;
    background-color: transparent;
  }
  .ah-lightbox__content:before {
    margin: 0 auto 16px;
    width: 216px;
    height: 60px;
  }
}

.ah-lightbox__close, .ah-lightbox__close:hover, .ah-lightbox__close:focus, .ah-lightbox__close:active {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.41;
  text-transform: uppercase;
  color: #444444;
  text-shadow: none;
  background-position: center;
  background-size: 30px;
  margin-top: 40px;
}

@media all and (min-width: 87.5em) {
  .ah-lightbox__close, .ah-lightbox__close:hover, .ah-lightbox__close:focus, .ah-lightbox__close:active {
    width: auto;
    height: auto;
  }
}

.ah-lightbox__close-label {
  display: none;
}

@media all and (min-width: 87.5em) {
  .ah-lightbox__close-label {
    display: block;
  }
}

.ah-lightbox.lity-iframe .lity-container {
  width: 1420px;
  margin: 0 auto;
  max-width: 100%;
  -webkit-box-shadow: 0 1px 5px rgba(68, 68, 68, 0.3);
  -moz-box-shadow: 0 1px 5px rgba(68, 68, 68, 0.3);
  box-shadow: 0 1px 5px rgba(68, 68, 68, 0.3);
}

.ah-lightbox .lity-iframe-container {
  max-height: 100% !important;
  height: auto;
  transform: none;
  padding-top: 0px;
}

.ah-lightbox .lity-iframe-container iframe {
  margin-top: 0px;
  box-shadow: none;
  position: relative;
  background: transparent;
}

@media all and (min-width: 87.5em) {
  .ah-lightbox .lity-iframe-container iframe {
    margin-top: 0px;
  }
}

.ah-lightbox--simple {
  position: fixed;
}

.ah-lightbox--simple .ah-lightbox__wrap {
  position: fixed;
}

.ah-lightbox--simple .ah-lightbox__close {
  margin-top: 20px;
  margin-right: 20px;
}

.ah-lightbox--simple .ah-lightbox__close-label {
  display: none;
}

.ah-lightbox--simple .ah-lightbox__container {
  background: #FFFFFF;
  vertical-align: middle;
  width: auto;
}

.ah-lightbox--simple .ah-lightbox__container:before, .ah-lightbox--simple .ah-lightbox__container:after {
  content: none;
}

@media all and (min-width: 87.5em) {
  .ah-lightbox--simple .ah-lightbox__container {
    max-width: 580px;
  }
}

.ah-lightbox--simple .ah-lightbox__content {
  max-width: none;
  min-width: 300px;
  min-height: 200px;
  padding: 45px 15px 15px;
  display: flex;
  justify-content: center;
}

.ah-lightbox--simple .ah-lightbox__content:before {
  content: none;
}

.ah-lightbox--simple .ah-lightbox__content img[src$=".svg"] {
  width: 100%;
}

@media all and (min-width: 48em) {
  .ah-lightbox--simple .ah-lightbox__content {
    padding: 45px 40px 20px;
    min-width: 500px;
    min-height: 400px;
  }
}

.ah-lightbox--simple .ah-lightbox__title {
  padding: 0 40px;
}

.ah-lightbox--simple .ah-lightbox__description {
  padding: 0 40px 40px;
}

.ah-lightbox--default.lity-loading .ah-lightbox__navigation,
.ah-lightbox--default.lity-loading .lity-close {
  display: none;
}

.ah-lightbox--default.ah-lightbox--disable-transition {
  transition: none;
}

.ah-lightbox--default.ah-lightbox--disable-transition .lity-content {
  transition: none;
}

.ah-lightbox--default .lity-wrap {
  overflow: hidden;
  padding: 0 2%;
}

@media all and (min-width: 48em) {
  .ah-lightbox--default .lity-wrap {
    padding: 0 5%;
  }
}

@media all and (min-width: 87.5em) {
  .ah-lightbox--default .lity-wrap {
    padding: 0 15%;
  }
}

.ah-lightbox--default .lity-loader {
  display: none;
  background: #B11A3B;
  width: 100%;
  overflow: hidden;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

.ah-lightbox--default .lity-loader:before {
  content: "";
  width: 50%;
  height: 100%;
  background: #E23E21;
  position: absolute;
  animation: loading 3s infinite ease-in-out both;
}

.ah-lightbox--default .ah-lightbox__title {
  padding: 0 30px 20px 0;
  margin: -5px 0 15px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #DDDDDD;
}

.ah-lightbox--default .lity-content {
  padding: 30px 30px 15px;
  position: relative;
  z-index: 0;
}

.ah-lightbox--default.ah-lightbox--gallery .lity-container,
.ah-lightbox--default.ah-lightbox--gallery .lity-content {
  padding: 0;
}

.ah-lightbox--default.ah-lightbox--gallery .ah-lightbox__batch {
  text-align: center;
  color: #FFFFFF;
  padding: 5px 12px;
}

.ah-lightbox--default.lity-image .lity-container {
  max-width: 964px;
}

.ah-lightbox--default .ah-lightbox__navigation a {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.1);
}

.ah-lightbox--default .ah-lightbox__navigation a.ah-lightbox__navigation--prev {
  left: 0;
}

.ah-lightbox--default .ah-lightbox__navigation a.ah-lightbox__navigation--prev .ah-svgicon {
  left: auto;
  right: 0;
}

.ah-lightbox--default .ah-lightbox__navigation a.ah-lightbox__navigation--next {
  right: 0;
}

.ah-lightbox--default .ah-lightbox__navigation a.ah-lightbox__navigation--next .ah-svgicon {
  left: 0;
}

.ah-lightbox--default .ah-lightbox__navigation a:hover .ah-svgicon, .ah-lightbox--default .ah-lightbox__navigation a:focus-within .ah-svgicon {
  fill: #666666;
}

.ah-lightbox--default .ah-lightbox__navigation .ah-svgicon {
  fill: rgba(153, 153, 153, 0.8);
  position: absolute;
  top: 10px;
}

.ah-message {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-message {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-message {
    padding: 0;
  }
}

@media all and (min-width: 35.5em) {
  .ah-message {
    min-height: 320px;
  }
}

@media all and (min-width: 48em) {
  .ah-message {
    min-height: 500px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-message {
    min-height: 700px;
  }
}

.ah-message__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.14;
  color: #B11A3B;
  margin: 0;
}

@media all and (min-width: 48em) {
  .ah-message__title {
    font-size: 26px;
    line-height: 1.15;
  }
}

@media all and (min-width: 87.5em) {
  .ah-message__title {
    font-size: 32px;
    line-height: 1.19;
  }
}

.ah-message__wrapper {
  display: flex;
  align-items: center;
}

.ah-message__icon {
  margin-right: 9px;
  fill: #B11A3B;
  width: 32px;
  height: 32px;
}

.ah-message__text {
  margin: 0;
}

.ah-message__separator {
  margin: 0;
  margin-top: 14px;
  margin-bottom: 27px;
}

@media all and (min-width: 87.5em) {
  .ah-message__separator {
    display: block;
  }
}

.ah-message.ah-message--error {
  text-align: center;
  position: relative;
  padding-top: 300px;
  padding-bottom: 130px;
}

.ah-message.ah-message--error .ah-message__title {
  color: #E23E21;
  font-weight: 400;
  font-size: 22px;
}

.ah-message.ah-message--error .ah-message__wrapper {
  display: block;
  max-width: 571px;
  margin: 12px auto;
}

.ah-message.ah-message--error .ah-error__icon {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 146px;
  left: 50%;
  margin-left: -60px;
  fill: #DDDDDD;
}

@media all and (min-width: 48em) {
  .ah-message.ah-message--error {
    padding-top: 345px;
    padding-bottom: 100px;
  }
  .ah-message.ah-message--error .ah-error__icon {
    top: 200px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-message.ah-message--error {
    padding-top: 240px;
    padding-bottom: 100px;
  }
  .ah-message.ah-message--error .ah-error__icon {
    top: 100px;
  }
}

.ah-ctateaser {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-ctateaser {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-ctateaser {
    padding: 0;
  }
}

.ah-ctateaser__inner {
  padding: 30px 20px;
  color: #ffffff;
  text-align: center;
  background-color: #be0d3e;
}

@media (min-width: 768px) {
  .ah-ctateaser__inner {
    padding: 70px 100px 15px;
  }
}

.ah-ctateaser--gamma .ah-ctateaser__inner {
  background-color: #004767;
}

.ah-ctateaser--epsilon .ah-ctateaser__inner {
  background-color: #007ca3;
}

.ah-ctateaser--eta .ah-ctateaser__inner {
  background-color: #427e5b;
}

.ah-ctateaser--jota .ah-ctateaser__inner {
  color: #000000;
  background-color: #f1b41f;
}

.ah-ctateaser--inverted .ah-ctateaser__inner {
  background-color: #646d74;
}

.ah-ctateaser__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: inherit;
}

@media (min-width: 768px) {
  .ah-ctateaser__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-ctateaser__text {
  font-size: 16px;
  line-height: 22px;
  margin-top: 30px;
}

.ah-ctateaser__text a {
  font-weight: 700;
}

.ah-ctateaser__text a:before {
  display: none;
}

.ah-ctateaser__buttons {
  position: relative;
  padding-top: 40px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .ah-ctateaser__buttons {
    margin-top: 50px;
  }
}

.ah-ctateaser__buttons::before {
  -webkit-box-shadow: 0 0 10px #313131;
  -moz-box-shadow: 0 0 10px #313131;
  box-shadow: 0 0 10px #313131;
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 100%;
  height: 10px;
  clip: rect(10px, auto, 20px, auto);
  border-radius: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .ah-ctateaser__buttons::before {
    -webkit-box-shadow: 0 0 20px #313131;
    -moz-box-shadow: 0 0 20px #313131;
    box-shadow: 0 0 20px #313131;
    top: -20px;
    width: 90%;
    height: 20px;
    clip: rect(20px, auto, 40px, auto);
  }
}

.ah-ctateaser__buttons-wrapper {
  flex-direction: column;
  display: inline-flex;
}

@media (min-width: 768px) {
  .ah-ctateaser__buttons-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.ah-ctateaser__buttons-wrapper .ah-button {
  color: #be0d3e;
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0);
}

.ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser__buttons-wrapper .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ah-ctateaser__buttons-wrapper .ah-button {
    margin: 0 15px 15px;
  }
}

.ah-ctateaser__buttons-wrapper .ah-button:hover, .ah-ctateaser__buttons-wrapper .ah-jobsearch__card:hover .ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-ctateaser__buttons-wrapper .ah-jobsearch__cta, .ah-ctateaser__buttons-wrapper .ah-button:focus-within {
  background-color: rgba(255, 255, 255, 0.8);
}

.ah-ctateaser__buttons-wrapper .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser__buttons-wrapper .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:hover, .ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-jobsearch__card:hover .ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-jobsearch__cta, .ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:focus-within,
.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:hover,
.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-jobsearch__card:hover .ah-jobsearch__cta,
.ah-jobsearch__card:hover .ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-jobsearch__cta,
.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:focus-within,
.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:hover,
.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-jobsearch__card:hover .ah-jobsearch__cta,
.ah-jobsearch__card:hover .ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-jobsearch__cta,
.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:focus-within,
.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:hover,
.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-jobsearch__card:hover .ah-jobsearch__cta,
.ah-jobsearch__card:hover .ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-jobsearch__cta,
.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:focus-within,
.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:hover,
.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-jobsearch__card:hover .ah-jobsearch__cta,
.ah-jobsearch__card:hover .ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-jobsearch__cta,
.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:focus-within {
  background-color: rgba(255, 255, 255, 0.8);
}

.ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button {
  color: #004767;
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0);
}

.ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23004767%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--gamma .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button {
  color: #007ca3;
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0);
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23007ca3%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button {
  color: #427e5b;
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0);
}

.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23427e5b%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--eta .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button {
  color: #000000 !important;
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0);
}

.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23000000%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:active {
  color: #000000;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23000000%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--jota .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button {
  color: #646d74;
  border-color: rgba(255, 255, 255, 0);
}

.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23646d74%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--inverted .ah-ctateaser__buttons-wrapper .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0);
  border-color: #ffffff;
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover, .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within {
  color: #be0d3e;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0);
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .no-svg .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover, .ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within {
  color: #004767;
}

.ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23004767%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .no-svg .ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--gamma .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover, .ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within {
  color: #007ca3;
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23007ca3%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .no-svg .ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active {
  color: #ffffff;
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--epsilon .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover, .ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within {
  color: #427e5b;
}

.ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23427e5b%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .no-svg .ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active {
  color: #ffffff;
}

.ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--eta .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--jota .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary {
  border-color: #000000;
}

.ah-ctateaser--jota .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23000000%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--jota .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--jota .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--jota .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover, .ah-ctateaser--jota .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within {
  border-color: rgba(255, 255, 255, 0);
  color: #f1b41f;
}

.ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover, .ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within {
  color: #646d74;
}

.ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23646d74%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .no-svg .ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:hover:after, .ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active {
  color: #ffffff;
}

.ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-ctateaser--inverted .ah-ctateaser__buttons .ah-ctateaser__buttons-wrapper .ah-button--secondary:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-ctateaser__buttons-wrapper .ah-button:not(:last-child) {
  margin-bottom: 15px;
}

.ah-sealslider {
  position: relative;
  z-index: 1;
  padding: 30px 30px 45px;
  background-color: rgba(216, 216, 216, 0.15);
}

@media (min-width: 1224px) {
  .ah-sealslider {
    padding: 62px 100px 60px;
  }
}

.ah-accordion .ah-sealslider {
  width: 100%;
}

.ah-detailteaser .ah-sealslider {
  padding: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0);
}

@media (min-width: 1224px) {
  .ah-sealslider--simple {
    padding: 0 30px 0;
  }
}

.ah-detailteaser .ah-sealslider:before, .ah-detailteaser .ah-sealslider:after {
  content: none;
}

.ah-sealslider:before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  background: radial-gradient(110% 180% at bottom, rgba(255, 255, 255, 0) 50%, #ffffff 51%);
  top: 0;
  height: 25px;
  width: 100%;
}

@media (min-width: 1224px) {
  .ah-sealslider:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at bottom, rgba(255, 255, 255, 0) 50%, #ffffff 51%);
    top: 0;
    height: 40px;
    width: 100%;
  }
}

.ah-sealslider:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  background: radial-gradient(110% 180% at top, rgba(255, 255, 255, 0) 50%, #ffffff 51%);
  bottom: 0;
  height: 25px;
  width: 100%;
}

@media (min-width: 1224px) {
  .ah-sealslider:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(110% 180% at top, rgba(255, 255, 255, 0) 50%, #ffffff 51%);
    bottom: 0;
    height: 40px;
    width: 100%;
  }
}

.ah-sealslider__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-weight: 700;
  margin-bottom: 20px;
  color: #be0d3e;
  text-align: center;
}

@media (min-width: 1224px) {
  .ah-sealslider__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-sealslider__title * {
  font-size: inherit;
  font-weight: inherit;
}

.ah-sealslider__wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.ah-sealslider__inner {
  position: relative;
  justify-content: space-between;
  display: flex;
  padding: 10px 0;
  margin: 20px auto 0;
}

@media (min-width: 1224px) {
  .ah-sealslider__inner {
    max-width: 1180px;
    padding: 50px 0;
  }
}

.ah-sealslider__inner:before, .ah-sealslider__inner:after {
  -webkit-box-shadow: 3px 0 15px #313131;
  -moz-box-shadow: 3px 0 15px #313131;
  box-shadow: 3px 0 15px #313131;
  content: "";
  position: absolute;
  left: 15%;
  width: 70%;
  height: 20px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .ah-sealslider__inner:before, .ah-sealslider__inner:after {
    left: 10%;
    width: 80%;
  }
}

@media (min-width: 1224px) {
  .ah-sealslider__inner:before, .ah-sealslider__inner:after {
    -webkit-box-shadow: 3px 0 20px #313131;
    -moz-box-shadow: 3px 0 20px #313131;
    box-shadow: 3px 0 20px #313131;
    left: 0;
    width: 100%;
  }
}

.ah-sealslider__inner:before {
  top: -25px;
  clip: rect(25px, auto, 40px, 0);
}

.ah-sealslider__inner:after {
  bottom: -25px;
  clip: rect(-25px, auto, -5px, 0);
}

.ah-sealslider--simple .ah-sealslider__inner {
  padding: 0;
  margin: 0 auto;
}

.ah-sealslider--simple .ah-sealslider__inner:before, .ah-sealslider--simple .ah-sealslider__inner:after {
  display: none;
}

.ah-sealslider__content {
  order: 2;
  width: 70%;
}

@media (min-width: 768px) {
  .ah-sealslider__content {
    width: 80%;
  }
}

@media (min-width: 1224px) {
  .ah-sealslider__content {
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 1224px) {
  .ah-sealslider--simple .ah-sealslider__content {
    width: 200px;
  }
}

.ah-sealslider--edit-mode .ah-sealslider__content {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.ah-sealslider .ah-imagelink:focus {
  outline-offset: -1px;
}

.is-keyboard-focus-within .ah-sealslider .ah-imagelink:focus {
  outline-offset: -3px;
  outline-width: 3px;
}

.ah-sealslider__item {
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 190px;
  height: 190px;
  padding: 20px;
  margin: 0 auto;
}

.ah-sealslider__item:not(.is-keyboard-focus) {
  outline: none;
}

@media (min-width: 768px) {
  .ah-sealslider__item {
    width: 150px;
    height: 150px;
  }
}

@media (min-width: 1224px) {
  .ah-sealslider__item {
    width: 190px;
    height: 190px;
  }
}

.ah-sealslider--edit-mode .ah-sealslider__item {
  margin-bottom: 20px;
}

.ah-richtext .ah-sealslider__item {
  display: flex;
}

.ah-sealslider__item:hover, .ah-sealslider__item.is-keyboard-focus {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
}

.ah-detailteaser .ah-sealslider__item {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0);
}

.ah-detailteaser .ah-sealslider__item:hover, .ah-detailteaser .ah-sealslider__item:focus-within {
  box-shadow: none;
}

.ah-sealslider__item .ah-image {
  position: static;
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  font-family: sans-serif;
  object-fit: fill;
}

.ah-sealslider--hide-btns .ah-button {
  visibility: hidden;
}

.ah-sealslider--hide-btns .ah-sealslider__content {
  cursor: auto !important;
}

.ah-sealslider__prev, .ah-sealslider__next {
  width: auto;
  padding: 0;
  background: rgba(255, 255, 255, 0);
  color: #be0d3e;
  box-shadow: none;
  border: 0;
}

.ah-sealslider__prev:disabled, .ah-sealslider__next:disabled {
  color: #d8d8d8;
}

.ah-sealslider__prev:not(:disabled):hover, .ah-sealslider__prev:not(:disabled):focus-within, .ah-sealslider__next:not(:disabled):hover, .ah-sealslider__next:not(:disabled):focus-within {
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
  color: #dd023a;
}

.ah-sealslider__prev:active, .ah-sealslider__next:active {
  background-color: transparent;
}

.ah-sealslider__prev.ah-button--disabled:after, .ah-sealslider__prev:after, .ah-sealslider__next.ah-button--disabled:after, .ah-sealslider__next:after {
  content: none;
}

.ah-sealslider--simple .ah-sealslider__prev, .ah-sealslider--simple .ah-sealslider__next {
  margin-right: 0;
  margin-left: 0;
}

.ah-sealslider__prev {
  order: 1;
  transform: rotate(180deg);
}

.ah-sealslider__next {
  order: 3;
}

.ah-sealslider__subtitle {
  font-size: 16px;
  line-height: 22px;
  color: #313131;
  text-align: center;
}

.ah-sealslider__svgicon {
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  width: 23px;
  fill: currentColor;
}

.ah-sealslider .ah-button--disabled {
  visibility: hidden;
}

.ah-sealslider .ah-button {
  outline: none;
}

.ah-sealslider .ah-button:hover, .ah-sealslider .ah-jobsearch__card:hover .ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-sealslider .ah-jobsearch__cta, .ah-sealslider .ah-button:focus {
  background-color: unset;
}

.ah-sealslider .ah-button:focus-visible {
  outline: 1px solid #be0d3e;
}

.is-keyboard-focus-within .ah-sealslider .ah-button:focus-visible {
  outline-width: 3px;
  outline-offset: 3px;
}

.ah-videohero {
  position: relative;
  z-index: 1;
}

.ah-videohero__wrapper {
  background-color: #004767;
  padding: 30px 35px 8px;
  z-index: 4;
}

.ah-videohero--blue .ah-videohero__wrapper {
  background-color: #007ca3;
}

.ah-videohero--green .ah-videohero__wrapper {
  background-color: #427e5b;
}

.ah-videohero--grey .ah-videohero__wrapper {
  background-color: #646d74;
}

.ah-videohero--red .ah-videohero__wrapper {
  background-color: #be0d3e;
}

.ah-videohero--yellow .ah-videohero__wrapper {
  background-color: #f1b41f;
}

@media (min-width: 768px) {
  .ah-videohero__wrapper {
    padding: 20px 70px 0;
  }
}

@media (min-width: 1224px) {
  .ah-videohero__wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    padding: 30px 0 0;
    margin-left: 130px;
    background-color: rgba(255, 255, 255, 0) !important;
  }
}

.ah-videohero__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .ah-videohero__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 8px;
  }
}

.ah-videohero--yellow .ah-videohero__title {
  color: #000000;
}

.ah-videohero__text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #d8d8d8;
}

.ah-videohero--yellow .ah-videohero__text {
  color: #000000;
}

.ah-videohero__text p {
  margin-top: 0;
}

.ah-videohero__text p:last-child {
  margin-bottom: 0;
}

.ah-videohero .ah-responsiveimage__inner {
  padding-bottom: 55%;
}

@media (min-width: 768px) {
  .ah-videohero .ah-responsiveimage__inner {
    padding-bottom: 42%;
  }
}

@media (min-width: 1224px) {
  .ah-videohero .ah-responsiveimage__inner {
    padding-bottom: 40%;
  }
}

.ah-videohero__bg {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 730px;
  height: 376px;
}

@media (min-width: 1224px) {
  .ah-videohero__bg {
    display: block;
  }
}

.ah-videohero__tablet-bg {
  display: none;
}

@media (min-width: 768px) {
  .ah-videohero__tablet-bg {
    display: block;
  }
}

@media (min-width: 1224px) {
  .ah-videohero__tablet-bg {
    display: none;
  }
}

@media (min-width: 768px) {
  .ah-videohero__mobile-bg {
    display: none;
  }
}

.ah-facts {
  position: relative;
  padding: 0 10px;
  z-index: 1;
}

@media all and (min-width: 48em) {
  .ah-facts {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts {
    padding: 0;
  }
}

.ah-facts__inner {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0.5em 5em #DDDDDD;
  -moz-box-shadow: 0 0.5em 5em #DDDDDD;
  box-shadow: 0 0.5em 5em #DDDDDD;
}

@media all and (min-width: 48em) {
  .ah-facts__inner {
    flex-direction: row;
  }
}

.ah-facts__media {
  background-color: #B11A3B;
  text-align: center;
  padding: 20px 34px 20px 11px;
}

@media all and (min-width: 48em) {
  .ah-facts__media {
    width: 50%;
    padding: 28px 20px 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts__media {
    width: auto;
    max-width: 372px;
    padding: 35px 40px 35px 26px;
  }
}

.ah-facts__map {
  margin: 0;
  position: relative;
  display: inline-flex;
  height: 335px;
  width: 302px;
}

@media all and (min-width: 48em) {
  .ah-facts__map {
    margin: 0 auto;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts__map {
    height: 306px;
  }
}

.ah-facts__maplinks {
  width: 0;
}

.ah-facts__area {
  position: absolute;
  color: black;
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 17px;
  cursor: pointer;
  border: 15px solid transparent;
}

.ah-facts__psycho {
  left: 48.6755%;
  top: 4.77612%;
}

@media all and (min-width: 87.5em) {
  .ah-facts__psycho {
    left: 48.36601%;
    top: 4.63576%;
  }
}

.ah-facts__cancer {
  left: 41.0596%;
  top: 37.31343%;
}

.ah-facts__movement {
  left: 51.3245%;
  top: 67.46269%;
}

.ah-facts__accident {
  left: 52.31788%;
  top: 43.28358%;
}

.ah-facts__heart {
  left: 49.66887%;
  top: 25.67164%;
}

.ah-facts__neuro {
  left: 42.05298%;
  top: 11.34328%;
}

.ah-facts__various {
  left: 37.41722%;
  top: 20.89552%;
}

.ah-facts__graphic {
  width: 0;
  height: 100%;
  opacity: 0;
}

.ah-facts__graphic.active {
  width: 100%;
  opacity: 1;
}

.ah-facts__content {
  padding: 13px 20px 15px;
  background-color: #FFFFFF;
  position: relative;
}

.ah-facts__content p {
  margin: 0;
}

.ah-facts__content:before {
  content: '';
  display: block;
  position: absolute;
  border: 12px solid #FFFFFF;
  border-bottom-color: transparent;
  border-right-color: transparent;
  top: -12px;
  transform: translateX(-50%) rotate(45deg);
  left: 50%;
}

@media all and (min-width: 48em) {
  .ah-facts__content {
    width: 50%;
    padding: 18px 18px 18px 24px;
  }
  .ah-facts__content:before {
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: #FFFFFF;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: -12px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts__content {
    width: auto;
    padding: 36px 206px 36px 41px;
  }
}

.ah-facts__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.17;
  color: #B11A3B;
}

@media all and (min-width: 48em) {
  .ah-facts__title {
    font-size: 20px;
    line-height: 1.2;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts__title {
    font-size: 24px;
    line-height: 1.17;
  }
}

.ah-facts__subline {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
  padding-top: 9px;
  padding-bottom: 5px;
}

@media all and (min-width: 48em) {
  .ah-facts__subline {
    font-size: 16px;
    line-height: 1.12;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts__subline {
    font-size: 18px;
    line-height: 1.33;
  }
}

.ah-facts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 8px 0 12px;
  border-bottom: 1px solid #DDDDDD;
}

@media all and (min-width: 48em) {
  .ah-facts__list {
    padding-bottom: 14px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts__list {
    padding-bottom: 12px;
  }
}

.ah-facts__link {
  color: #444444;
}

.ah-facts__link.active {
  color: #B11A3B;
}

@media all and (min-width: 48em) {
  .ah-facts__link {
    line-height: 1.63;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts__link {
    line-height: 1.8;
  }
}

.ah-facts__text {
  margin: 0;
  padding-top: 15px;
}

@media all and (min-width: 48em) {
  .ah-facts__text {
    padding-top: 16px;
  }
}

.ah-facts--wide .ah-facts__inner {
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

@media all and (min-width: 48em) {
  .ah-facts--wide .ah-facts__media {
    padding-right: 34px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts--wide .ah-facts__media {
    max-width: 100%;
    width: 50%;
  }
}

.ah-facts--wide .ah-facts__map {
  width: 100%;
}

@media all and (min-width: 87.5em) {
  .ah-facts--wide .ah-facts__map {
    width: 532px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-facts--wide .ah-facts__content {
    width: 50%;
    padding-right: 31px;
  }
}

.ah-facts--blue .ah-facts__media {
  background: #E4F1F9;
}

.ah-facts--grey .ah-facts__media {
  background: #F2F2F2;
}

.ah-masonry__wrapper {
  visibility: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

@media (min-width: 768px) {
  .ah-masonry__wrapper {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media (min-width: 1224px) {
  .ah-masonry__wrapper {
    position: relative;
  }
}

@media (min-width: 768px) {
  .ah-masonry__wrapper:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }
}

.ah-masonry__wrapper--ee {
  display: flex;
  flex-wrap: wrap;
}

.ah-masonry__wrapper--show {
  visibility: visible;
}

.ah-masonry__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 1224px) {
  .ah-masonry__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

@media (min-width: 1224px) {
  .ah-masonry__subtitle {
    display: inline-block;
    min-width: 60%;
  }
}

.ah-masonry__highlight {
  font-size: 14px;
  line-height: 18px;
  background-color: #be0d3e;
  border-bottom-left-radius: 30px;
  color: #ffffff;
  padding: 6px 10px 6px 20px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  right: 0;
  z-index: 1;
}

.ah-masonry__item {
  display: block;
  position: relative;
  padding-bottom: 10px;
  padding-top: 10px;
  transform-style: preserve-3d;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  z-index: 1;
}

.ah-masonry__item:hover .ah-masonry__item__inner, .ah-masonry__item:focus-within .ah-masonry__item__inner {
  overflow: visible;
}

.ah-masonry__item .ah-image {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

@media (min-width: 768px) {
  .ah-masonry__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: calc(33.33333% - 1px);
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1224px) {
  .ah-masonry__item {
    position: relative;
    z-index: 1;
  }
}

.ah-masonry__wrapper--ee .ah-masonry__item--stamp {
  position: static !important;
}

@media (min-width: 768px) {
  .ah-masonry__item--stamp.ah-masonry__item {
    position: absolute;
    top: 0;
    left: 0;
  }
  .ah-masonry__item--stamp.ah-masonry__item .ah-image__cube {
    padding-top: 88%;
    position: relative;
    overflow: hidden;
  }
  .ah-masonry__item--stamp.ah-masonry__item .ah-image__cube .ah-image {
    position: absolute;
    height: 100%;
  }
}

.ah-masonry__item-bg-wrapper {
  height: 0;
  overflow: hidden;
  padding-top: 16.97128%;
  position: absolute;
  bottom: -5px;
  width: 100%;
}

.ah-masonry__item-bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(1.01);
}

.ah-masonry__imgwrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ah-masonry__item__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ah-masonry__item__text {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 18px;
}

.ah-masonry__item__text:last-child {
  margin-bottom: 0;
}

@media (min-width: 1224px) {
  .ah-masonry__item__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-masonry p {
  font-size: 14px;
  line-height: 18px;
}

.ah-masonry p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1224px) {
  .ah-masonry p {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-masonry__item--link {
  color: inherit;
}

.ah-masonry__item--link:hover, .ah-masonry__item--link:focus-within {
  text-decoration: inherit;
}

.ah-masonry__item__inner {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  background-color: #ffffff;
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  z-index: 1;
  min-height: 10px;
}

.ah-masonry__item--flipper .ah-masonry__item__inner {
  display: none;
}

.js-masonry__flipper .ah-masonry__item__inner:hover {
  cursor: pointer;
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
}

@media (min-width: 768px) {
  .js-masonry__flipper .js-masonry__flipper .ah-masonry__item__inner:hover .ah-image {
    transform: scale(1.1);
  }
}

.ah-masonry__item__inner-back {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  background-color: #ffffff;
  display: none;
  position: absolute;
  transform: rotateY(180deg);
  width: 100%;
  height: calc(100% - 20px);
  top: 10px;
  left: 0;
  z-index: 5;
}

@media (min-width: 768px) {
  .ah-masonry__item__inner-back {
    width: calc(100% - 20px);
    left: 10px;
  }
}

.ah-masonry__item--flipper .ah-masonry__item__inner-back {
  display: block;
}

.ah-masonry__item__content, .ah-masonry__item__content--back {
  position: relative;
}

.ah-masonry__item__content {
  padding: 15px 20px 30px;
}

.ah-masonry__item__content--back {
  padding: 30px 20px 30px;
}

.ah-masonry__item__tags {
  color: #646d74;
  font-style: italic;
  margin-bottom: 10px;
  margin-top: 30px;
}

.ah-masonry__item__close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}

.ah-masonry__item__close:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2232%22 height%3D%2232%22%3E%3Cpath fill%3D%22%23a8aab3%22 fill-rule%3D%22evenodd%22 d%3D%22M26.331 4L15.912 14.496 5.5 4.162 4.006 5.67l10.413 10.334L4 26.5l1.506 1.493 10.418-10.496L26.505 28 28 26.494 17.417 15.99l10.42-10.495z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-masonry__item__close:before {
  background-image: url("../media/icons/cross--colorToReplace.png");
}

.ah-masonry__item__close:before {
  width: 16px;
  height: 16px;
}

.ah-masonry__item__close span {
  display: inline-block;
  text-indent: -99999px;
}

.ah-masonry__link {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.ah-masonry__link .ah-svgicon {
  width: 22px;
  height: 15px;
  fill: #be0d3e;
  margin-left: 10px;
}

.ah-masonry__item--flipper {
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transform: rotateY(180deg);
}

.ah-masonry__price {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  font-weight: 700;
  color: #be0d3e;
}

.ah-masonry .ah-richtext a:before {
  content: none;
}

.ah-statistic {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-statistic {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-statistic {
    padding: 0;
  }
}

@media all and (min-width: 48em) {
  .ah-statistic {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media all and (min-width: 87.5em) {
  .ah-statistic {
    max-width: none;
    margin-left: 0;
  }
}

@media all and (min-width: 87.5em) {
  .ah-statistic--medium {
    width: 680px;
  }
}

.ah-statistic__title {
  margin-top: 0;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

@media all and (min-width: 87.5em) {
  .ah-statistic__title {
    text-align: left;
  }
}

.ah-statistic__subtitle {
  font-size: 16px;
  line-height: 1.38;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

@media all and (min-width: 87.5em) {
  .ah-statistic__subtitle {
    font-size: 18px;
    line-height: 1.56;
  }
}

@media all and (min-width: 87.5em) {
  .ah-statistic__subtitle {
    text-align: left;
  }
}

.ah-statistic__chart {
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  max-width: 355px;
  margin: 0 auto 20px;
}

@media all and (min-width: 48em) {
  .ah-statistic__chart {
    max-width: 580px;
    margin-bottom: 10px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-statistic__chart {
    max-width: 680px;
    margin-bottom: 30px;
  }
}

.ah-statistic__chart svg {
  width: 100%;
  overflow: visible;
}

.ah-statistic__chart__filter svg {
  width: 1px;
  height: 1px;
}

.ah-statistic__chart__bar {
  cursor: pointer;
}

.ah-statistic__chart__legend {
  cursor: pointer;
}

.ah-statistic__chart__medium,
.ah-statistic__chart__large {
  display: none;
}

@media all and (min-width: 48em) {
  .ah-statistic__chart__small,
  .ah-statistic__chart__large {
    display: none;
  }
}

@media all and (min-width: 48em) {
  .ah-statistic__chart__medium {
    display: block;
  }
}

@media all and (min-width: 87.5em) {
  .ah-statistic__chart__small,
  .ah-statistic__chart__medium {
    display: none;
  }
}

@media all and (min-width: 87.5em) {
  .ah-statistic__chart__large {
    display: block;
  }
}

polygon.ah-statistic__chart__bar--highlight-blue {
  outline-color: #4C97BE;
  outline-style: solid;
  outline-width: 4px;
  outline-offset: -4px;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

polygon.ah-statistic__chart__bar--highlight-red {
  outline-color: #B11A3B;
  outline-style: solid;
  outline-width: 4px;
  outline-offset: -4px;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

.ah-statistic__chart__legend--highlight-blue rect {
  outline-color: #4C97BE;
  outline-style: solid;
  outline-width: 4px;
  outline-offset: -4px;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

.ah-statistic__chart__legend--highlight-blue text {
  fill: #B11A3B;
  font-weight: 700;
  font-size: 14px;
  line-height: inherit;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

.ah-statistic__chart__legend--highlight-red rect {
  outline-color: #B11A3B;
  outline-style: solid;
  outline-width: 4px;
  outline-offset: -4px;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

.ah-statistic__chart__legend--highlight-red text {
  fill: #B11A3B;
  font-weight: 700;
  font-size: 14px;
  line-height: inherit;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.2s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
}

@media all and (-ms-high-contrast: none) {
  polygon.ah-statistic__chart__bar--highlight-blue {
    stroke: #4C97BE;
    stroke-width: 2px;
  }
  polygon.ah-statistic__chart__bar--highlight-red {
    stroke: #B11A3B;
    stroke-width: 2px;
  }
  .ah-statistic__chart__legend--highlight-blue rect {
    stroke: #4C97BE;
    stroke-width: 2px;
  }
  .ah-statistic__chart__legend--highlight-red rect {
    stroke: #B11A3B;
    stroke-width: 2px;
  }
}

.ah-quickcalc {
  position: relative;
  padding: 0 10px;
  z-index: 1;
}

@media all and (min-width: 48em) {
  .ah-quickcalc {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc {
    padding: 0;
  }
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc {
    padding: 0;
  }
}

.ah-quickcalc__inner {
  background-color: #FFFFFF;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #B11A3B;
  padding-top: 15px;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__inner {
    padding-top: 34px;
  }
}

.ah-quickcalc__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.17;
  color: #B11A3B;
  text-align: center;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__title {
    font-size: 20px;
    line-height: 1.2;
  }
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc__title {
    font-size: 24px;
    line-height: 1.17;
  }
}

.ah-quickcalc__text {
  text-align: left;
  font-size: 16px;
  line-height: 1.38;
  margin: 8px 0 20px;
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc__text {
    font-size: 18px;
    line-height: 1.56;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__text {
    text-align: center;
  }
}

.ah-quickcalc__form {
  background-color: #FFFFFF;
  text-align: center;
  padding: 0 19px;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__form {
    padding: 0 30px;
    margin: 0 auto;
    max-width: 700px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc__form {
    padding: 0;
  }
}

.ah-quickcalc__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ah-quickcalc__pair {
  width: 32%;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__pair {
    width: auto;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__input {
    max-width: 154px;
  }
}

.ah-quickcalc__label {
  text-align: left;
  display: block;
  padding-bottom: 4px;
}

.ah-quickcalc__btns {
  text-align: center;
  padding: 20px;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__btns {
    padding: 30px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc__btns {
    padding: 21px 0 40px;
  }
}

.ah-quickcalc__result {
  background-color: #F2F2F2;
  list-style-image: none;
  position: relative;
}

.ah-quickcalc__result:before {
  content: '';
  display: block;
  border-top: 16px solid #FFFFFF;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ah-quickcalc__result:after {
  content: '';
  display: block;
  border-top: 16px solid #F2F2F2;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: 50%;
  bottom: -16px;
  width: 0;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__result {
    display: flex;
    padding-bottom: 48px;
  }
}

.ah-quickcalc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 24px 32px 4px;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__list {
    width: 50%;
  }
}

.ah-quickcalc__item {
  padding: 18px 0 16px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ah-quickcalc__item:first-child {
  border: 0;
}

.ah-quickcalc__item:last-child {
  border: 0;
}

.ah-quickcalc__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.12;
  display: inline-block;
}

.ah-quickcalc__tooltip {
  margin-left: 16px;
  margin-right: auto;
}

.ah-quickcalc__amount {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.12;
  display: inline-block;
}

.ah-quickcalc__subtext {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.6;
  width: 100%;
}

.ah-quickcalc__graph {
  display: none;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__graph {
    position: relative;
    width: 50%;
    display: block;
    padding-top: 31px;
    padding-right: 20px;
    padding-left: 8px;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__graph-wrap {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__legends {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__legend {
    font-weight: 400;
    font-size: 10px;
    line-height: inherit;
    padding: 4px 0;
  }
  .ah-quickcalc__legend:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    vertical-align: middle;
    background-color: #77C3DF;
  }
  .ah-quickcalc__legend:first-child {
    font-weight: 700;
    font-size: 10px;
    line-height: inherit;
  }
  .ah-quickcalc__legend:first-child:before {
    background-color: #B11A3B;
  }
  .ah-quickcalc__legend:last-child:before {
    background-color: #4C97BE;
  }
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc__legend {
    font-weight: 400;
    font-size: 12px;
    line-height: inherit;
  }
  .ah-quickcalc__legend:first-child {
    font-weight: 700;
    font-size: 12px;
    line-height: inherit;
  }
  .ah-quickcalc__legend:before {
    width: 18px;
    height: 18px;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__columns {
    height: 100%;
    bottom: 0;
    left: 0;
    width: 60%;
    padding: 0px 5px 0;
    display: flex;
    align-items: flex-end;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__column {
    float: left;
    padding: 0 5px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    min-height: 10%;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__column-wrap {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: height 0.5s linear;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__column-label {
    font-weight: 700;
    font-size: 10px;
    line-height: inherit;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

@media all and (min-width: 87.5em) {
  .ah-quickcalc__column-label {
    font-weight: 700;
    font-size: 12px;
    line-height: inherit;
  }
}

@media all and (min-width: 48em) {
  .ah-quickcalc__value {
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #77C3DF;
    color: #FFFFFF;
    text-align: center;
    transition: height 0.5s ease-out;
    overflow: hidden;
  }
  .ah-quickcalc__value:first-child {
    background-color: #B11A3B;
  }
  .ah-quickcalc__value:last-child {
    background-color: #4C97BE;
  }
  .ah-quickcalc__value:only-child {
    background-color: #77C3DF;
    transition: height 0.25s ease-out;
  }
}

.ah-quickcalc__footer {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.12;
  background-color: #B11A3B;
  color: #FFFFFF;
  text-align: center;
  padding: 35px 14px 14px;
}

.ah-quickcalc__footer span {
  display: block;
}

@media all and (min-width: 48em) {
  .ah-quickcalc__footer {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.12;
    padding: 35px;
  }
  .ah-quickcalc__footer span {
    display: inline;
  }
  .ah-quickcalc__footer span:first-child {
    margin-right: 1rem;
  }
}

.ah-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.ah-tooltip:hover .ah-tooltip__content, .ah-tooltip:focus-within .ah-tooltip__content {
  display: block;
}

.ah-tooltip__icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: #2E77A1;
}

.ah-tooltip__content {
  display: none;
  position: absolute;
  z-index: 100000;
  bottom: 40px;
  left: -96px;
  padding: 15px;
  width: 210px;
  min-height: 50px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  font-weight: 400;
  font-size: 14px;
  line-height: inherit;
}

.ah-tooltip__content:after {
  content: '';
  display: block;
  border-top: 16px solid #FFFFFF;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
}

.ah-tooltip--left .ah-tooltip__content {
  bottom: auto;
  left: auto;
  right: 40px;
  top: -18px;
  -webkit-box-shadow: 10px 0 50px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 10px 0 50px rgba(0, 0, 0, 0.4);
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.4);
}

.ah-tooltip--left .ah-tooltip__content:after {
  left: auto;
  right: -28px;
  top: 18px;
  transform: rotate(-90deg) translateX(0);
  bottom: auto;
}

.ah-tooltip--right .ah-tooltip__content {
  bottom: auto;
  left: 40px;
  top: -18px;
  -webkit-box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
}

.ah-tooltip--right .ah-tooltip__content:after {
  bottom: auto;
  left: -28px;
  top: 18px;
  transform: rotate(90deg) translateX(0);
}

.ah-quickbutton {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.is-navigation-active .ah-quickbutton {
  display: none;
}

@media (min-width: 1400px) {
  [data-experience-editor] .ah-quickbutton {
    text-align: center;
  }
}

.ah-quickbutton--show {
  display: block;
}

.ah-quickbutton__inner {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
  justify-content: center;
  display: inline-flex;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  background-color: #ffffff;
  border-radius: 0 0 15px 15px;
}

@media (min-width: 1400px) {
  .ah-quickbutton__inner {
    position: fixed;
    top: 50%;
    flex-flow: column;
    display: none;
    width: 81px;
    padding: 0;
    border: 0;
    border-radius: 0 15px 15px 0;
    transform: translateY(-50%);
  }
}

@media (min-width: 1400px) {
  .ah-quickbutton--initialized .ah-quickbutton__inner {
    display: inline-flex;
  }
}

@media (min-width: 1400px) {
  [data-experience-editor] .ah-quickbutton__inner {
    position: relative;
    transform: none;
    top: 0;
  }
}

.ah-quickbutton__inner:empty {
  display: none;
}

.ah-quickbutton__item {
  position: relative;
  align-items: center;
  flex-flow: column;
  flex-grow: 1;
  justify-content: center;
  display: flex;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0) !important;
  border-right: 2px solid #d8d8d8;
}

@media (min-width: 1400px) {
  .ah-quickbutton__item {
    padding-right: 0;
    padding-left: 0;
    border-right: none;
    border-bottom: 1px solid #d8d8d8;
  }
}

.ah-quickbutton__item--text-large {
  margin-bottom: 40px;
}

.ah-quickbutton__item--text-large .ah-iconlink__text {
  flex-wrap: wrap;
}

.ah-quickbutton__item--text-hidden {
  margin-bottom: 20px;
}

.ah-quickbutton__item--text-hidden .ah-iconlink__text {
  display: none;
}

.ah-quickbutton__inner > li:last-child > .ah-quickbutton__item {
  border: none;
}

.ah-quickbutton__item:hover, .ah-quickbutton__item:focus-within {
  text-decoration: none;
}

.ah-quickbutton__item:hover .ah-svgicon, .ah-quickbutton__item:focus-within .ah-svgicon {
  fill: #be0d3e;
}

.ah-quickbutton__item .ah-svgicon {
  display: none;
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  fill: #646d74;
}

@media (min-width: 1400px) {
  .ah-quickbutton__item .ah-svgicon {
    display: flex;
  }
}

.ah-quickbutton__item .ah-iconlink__text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #be0d3e;
  text-align: center;
}

@media (min-width: 1400px) {
  .ah-quickbutton__item .ah-iconlink__text {
    max-width: 81px;
    margin-top: 4px;
    hyphens: auto;
    word-wrap: break-word;
    word-break: break-word;
  }
}

.ah-cookielayer {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
  position: fixed;
  bottom: 15px;
  z-index: 100;
  width: calc(100% - 30px);
  display: none;
  padding: 20px;
  background-color: #ffffff;
  transform: translateX(15px);
  transition: all 0.3s ease;
}

@media (min-width: 1224px) {
  .ah-cookielayer {
    bottom: 0;
    width: 100%;
    max-width: 1440px !important;
    transform: none;
  }
}

.ah-cookielayer--move {
  top: auto;
  bottom: -50px;
}

.ah-cookielayer--show {
  display: block;
}

@media (min-width: 768px) {
  .ah-cookielayer__inner {
    justify-content: space-between;
    display: flex;
  }
}

@media (min-width: 1224px) {
  .ah-cookielayer__inner {
    width: 1180px;
    margin: auto;
  }
}

.ah-cookielayer__text {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .ah-cookielayer__text {
    width: calc(75% - 15px);
    margin-right: 15px;
    margin-bottom: 0;
  }
}

@media (min-width: 1224px) {
  .ah-cookielayer__text {
    width: 100%;
  }
}

.ah-cookielayer__buttons {
  align-items: center;
  justify-content: space-between;
  display: flex;
}

@media (min-width: 768px) {
  .ah-cookielayer__buttons {
    width: 25%;
  }
}

@media (min-width: 1224px) {
  .ah-cookielayer__buttons {
    width: 20%;
  }
}

.ah-cookielayer__link {
  font-weight: 700;
}

.ah-cookielayer__close {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #be0d3e;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ah-cookielayer__close:hover, .ah-cookielayer__close:focus-within {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
}

.ah-cookielayer__close .ah-svgicon {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.ah-heroslider {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  color: #ffffff;
}

@media (min-width: 768px) {
  .ah-heroslider {
    display: block;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider {
    overflow-x: visible;
    margin: 0 auto;
  }
}

.ah-heroslider__silder {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .ah-heroslider__silder {
    overflow: hidden;
  }
  .ah-heroslider__silder > div {
    display: flex;
  }
}

@media (min-width: 768px) {
  .ah-heroslider__media {
    height: 100%;
  }
}

.ah-heroslider__item {
  overflow: hidden;
  position: relative;
  min-height: 50px;
}

@media (min-width: 768px) {
  .ah-heroslider__item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: stretch;
    min-height: 340px;
    height: 100%;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item {
    min-height: 450px;
  }
}

.ah-heroslider__item--alternative {
  flex-direction: row;
}

.ah-heroslider__item__inner {
  position: relative;
  max-width: 100%;
  color: #ffffff;
  background-color: #004767;
}

@media (min-width: 768px) {
  .ah-heroslider__item__inner {
    z-index: 1;
    position: relative;
    width: 45.2%;
    min-width: auto;
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0) !important;
  }
}

.ah-heroslider__item--blue .ah-heroslider__item__inner {
  background-color: #007ca3;
}

.ah-heroslider__item--green .ah-heroslider__item__inner {
  background-color: #427e5b;
}

.ah-heroslider__item--grey .ah-heroslider__item__inner {
  background-color: #646d74;
}

.ah-heroslider__item--red .ah-heroslider__item__inner {
  background-color: #be0d3e;
}

.ah-heroslider__item--yellow .ah-heroslider__item__inner {
  color: #000000;
  background-color: #f1b41f;
}

.ah-heroslider__item__inner-inner {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .ah-heroslider__item__inner-inner {
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 30px 50px 30px 30px;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item__inner-inner {
    padding: 50px 80px 60px 120px;
  }
}

@media (min-width: 768px) {
  .ah-heroslider__item--alternative .ah-heroslider__item__inner-inner {
    padding: 30px 30px 30px 60px;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item--alternative .ah-heroslider__item__inner-inner {
    padding: 50px 50px 60px 120px;
  }
}

@media (min-width: 768px) {
  .ah-heroslider__item--vcard .ah-heroslider__item__inner-inner {
    padding: 30px 50px 30px 30px;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item--vcard .ah-heroslider__item__inner-inner {
    padding: 50px 80px 50px 120px;
  }
}

.ah-heroslider__item__media {
  position: relative;
}

@media (min-width: 768px) {
  .ah-heroslider__item__media {
    width: calc(54.8% + 122px);
    margin-left: -122px;
  }
  .ah-heroslider__item__media .ah-responsiveimage__inner {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .ah-heroslider__item--alternative .ah-heroslider__item__media {
    width: calc(54.8% + 122px);
    margin-right: -122px;
    margin-left: unset;
  }
}

.ah-heroslider__item__media .ah-responsiveimage__inner {
  padding-bottom: 44.68%;
}

.ah-heroslider__item__title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: currentColor;
}

.ah-heroslider__item--vcard .ah-heroslider__item__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .ah-heroslider__item__title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
  }
  .ah-heroslider__item--vcard .ah-heroslider__item__title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item__title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
  }
  .ah-heroslider__item--vcard .ah-heroslider__item__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-heroslider__item__vcard-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #ffffff;
}

@media (min-width: 768px) {
  .ah-heroslider__item__vcard-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    margin: 0;
  }
}

.ah-heroslider__item__text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.ah-heroslider__item--vcard .ah-heroslider__item__text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .ah-heroslider__item__text {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
  }
  .ah-heroslider__item--vcard .ah-heroslider__item__text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item__text {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-heroslider__item__text p {
  margin-bottom: 0;
  line-height: inherit;
}

.ah-heroslider__item--vcard .ah-heroslider__item__text p {
  margin-bottom: 4px;
}

.ah-heroslider__item--vcard .ah-heroslider__item__text .ah-heroslider__item__text-bold {
  font-weight: 700;
}

@media (min-width: 1224px) {
  .ah-heroslider__item--alternative .ah-heroslider__item__text {
    margin-bottom: 20px;
  }
}

.ah-heroslider__item--yellow .ah-heroslider__item__text {
  color: #000000;
}

.ah-heroslider__mobile-bg-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 16.90821%;
}

@media (min-width: 768px) {
  .ah-heroslider__mobile-bg-wrapper {
    display: none;
  }
}

.ah-heroslider__mobile-bg {
  z-index: -1;
  position: absolute;
  bottom: 1px;
  transform: scale(1.01);
}

.ah-heroslider__bg-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ah-heroslider__bg-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.ah-heroslider__item:not(.ah-heroslider__item--alternative) .ah-heroslider__bg-wrapper {
  transform: scaleX(-1);
}

.ah-heroslider__bg {
  display: none;
}

@media (min-width: 768px) {
  .ah-heroslider__bg {
    display: block;
  }
}

.ah-heroslider__alt-bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 730px;
  height: 376px;
}

@media (min-width: 1224px) {
  .ah-heroslider__item--alternative .ah-heroslider__alt-bg {
    display: block;
  }
}

.ah-heroslider__item__seals {
  z-index: 1;
  order: 2;
  display: block;
  width: 100px;
  height: auto;
  max-height: 100px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .ah-heroslider__item__seals {
    order: 1;
    width: 80px;
    min-width: 80px;
    max-height: unset;
    margin-bottom: 10px;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item__seals {
    width: 140px;
    min-width: 140px;
    margin-bottom: 4px;
  }
}

.ah-heroslider__item__seals .ah-imagelink {
  display: block;
}

.ah-heroslider__item__seals .ah-imagelink + .ah-imagelink {
  display: none;
}

.ah-heroslider__item__seals:empty {
  display: none;
}

.ah-heroslider__item__seals--empty {
  display: none;
}

.ah-heroslider__item__content-wrapper {
  z-index: 1;
  width: 100%;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .ah-heroslider__item__content-wrapper {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .ah-heroslider__item--vcard .ah-heroslider__item__content-wrapper {
    display: flex;
    align-items: center;
  }
}

.ah-heroslider__item__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 35px 0;
}

@media (min-width: 768px) {
  .ah-heroslider__item__content {
    padding: 0;
  }
}

.ah-heroslider__item__content-inner {
  order: 1;
}

.ah-heroslider__media-seal__image {
  position: static;
  display: block;
  width: 100px;
  min-width: 100px;
  height: auto;
  font-family: Arial;
}

@media (min-width: 768px) {
  .ah-heroslider__media-seal__image {
    width: 80px;
    min-width: 80px;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__media-seal__image {
    width: 80px;
    min-width: 80px;
    margin-bottom: 4px;
  }
}

.ah-heroslider__item__button {
  z-index: 1;
  margin: 20px 0 0;
}

.ah-heroslider__item__button:empty {
  display: none;
}

.ah-heroslider__item__button .ah-button {
  width: 100%;
  margin-bottom: 15px;
  color: #004767;
  text-align: center;
  background-color: #ffffff;
}

.ah-heroslider__item__button .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23004767%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item__button .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item__button .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item__button .ah-button:hover, .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-heroslider__item__button .ah-jobsearch__cta, .ah-heroslider__item__button .ah-button:focus-within {
  background-color: rgba(255, 255, 255, 0.8);
}

.ah-heroslider__item__button .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-heroslider__item__button .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item__button .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item__button .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ah-heroslider__item__button .ah-button {
    width: 100%;
  }
  .ah-heroslider__item__button .ah-button:first-of-type {
    margin-bottom: 10px;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item__button .ah-button:first-of-type {
    margin-bottom: 22px;
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__item--alternative .ah-heroslider__item__button .ah-button {
    margin-bottom: 15px;
  }
  .ah-heroslider__item--alternative .ah-heroslider__item__button .ah-button:last-child {
    margin-right: 0;
  }
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button:active,
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button:active,
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button:active,
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button:active:after,
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button:active:after,
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button:active:after,
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button:active:after, .no-svg
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button:active:after, .no-svg
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button:active:after, .no-svg
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button:active:after,
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button:active:after,
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button:active:after,
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button {
  color: #007ca3;
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23007ca3%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--green .ah-heroslider__item__button .ah-button {
  color: #427e5b;
}

.ah-heroslider__item--green .ah-heroslider__item__button .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23427e5b%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--green .ah-heroslider__item__button .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--green .ah-heroslider__item__button .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button {
  color: #646d74;
}

.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23646d74%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--red .ah-heroslider__item__button .ah-button {
  color: #be0d3e;
}

.ah-heroslider__item--red .ah-heroslider__item__button .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--red .ah-heroslider__item__button .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--red .ah-heroslider__item__button .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button {
  color: #000000;
}

.ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23000000%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item__button .ah-button:last-child {
  margin-bottom: 0;
}

.ah-heroslider__item__button .ah-button.ah-button--secondary {
  color: #ffffff;
  background-color: inherit;
  border-color: #ffffff;
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item__button .ah-button.ah-button--secondary:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:hover, .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta, .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0);
  color: #004767;
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23004767%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .no-svg .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .no-svg .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .no-svg .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item__button .ah-button.ah-button--secondary:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:hover, .ah-heroslider__item--blue .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta, .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within {
  color: #007ca3;
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--blue .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23007ca3%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .no-svg .ah-heroslider__item--blue .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .no-svg .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .no-svg .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--blue .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:hover, .ah-heroslider__item--green .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-heroslider__item--green .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta, .ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within {
  color: #427e5b;
}

.ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--green .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--green .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23427e5b%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .no-svg .ah-heroslider__item--green .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .no-svg .ah-heroslider__item--green .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .no-svg .ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--green .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--green .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:hover, .ah-heroslider__item--grey .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta, .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within {
  color: #646d74;
}

.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--grey .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23646d74%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .no-svg .ah-heroslider__item--grey .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .no-svg .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .no-svg .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--grey .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:hover, .ah-heroslider__item--red .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-heroslider__item--red .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta, .ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within {
  color: #be0d3e;
}

.ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--red .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--red .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23be0d3e%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .no-svg .ah-heroslider__item--red .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .no-svg .ah-heroslider__item--red .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .no-svg .ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:hover:after, .ah-heroslider__item--red .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta:after, .ah-jobsearch__card:hover .ah-heroslider__item--red .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta:after, .ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:active,
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:active,
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:active,
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after,
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after,
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after,
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after, .no-svg
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after, .no-svg
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after, .no-svg
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--blue .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after,
.ah-heroslider__item--green .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after,
.ah-heroslider__item--grey .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after,
.ah-heroslider__item--red .ah-heroslider__item__button .ah-button.ah-button--secondary:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button.ah-button--secondary {
  border-color: #000000;
  color: #000000;
}

.ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button.ah-button--secondary:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23000000%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button.ah-button--secondary:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button.ah-button--secondary:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button.ah-button--secondary:hover, .ah-heroslider__item--yellow .ah-heroslider__item__button .ah-jobsearch__card:hover .ah-button--secondary.ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button--secondary.ah-jobsearch__cta, .ah-heroslider__item--yellow .ah-heroslider__item__button .ah-button.ah-button--secondary:focus-within {
  border-color: rgba(255, 255, 255, 0);
}

@media (min-width: 768px) {
  .ah-heroslider__item__button {
    display: flex;
    flex-direction: column;
    width: fit-content;
  }
}

.ah-heroslider__bullets {
  z-index: 1;
  position: absolute;
  top: 30px;
  right: 35px;
  justify-content: space-between;
  display: flex;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .ah-heroslider__bullets {
    top: auto;
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
  }
}

@media (min-width: 1224px) {
  .ah-heroslider__bullets {
    bottom: 20px;
  }
}

.ah-heroslider__bullet__item {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 8px;
  text-indent: -50000px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.ah-heroslider__bullet__item.active {
  background: #004767;
}

.ah-detailteaser {
  font-size: 16px;
  line-height: 22px;
  color: #313131;
}

@media (min-width: 768px) {
  .ah-detailteaser {
    max-width: 380px;
  }
}

.ah-detailteaser__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 10px 20px;
  margin-bottom: 4px;
  color: #ffffff;
  background-color: #004767;
}

.ah-detailteaser__subtitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  background-color: rgba(0, 95, 124, 0.1);
  margin-bottom: 0;
  padding: 20px 20px 0;
}

.ah-detailteaser__subtitle p {
  margin: 0;
}

.ah-detailteaser__content {
  margin: 0;
  padding: 20px 20px 30px;
  background-color: rgba(0, 95, 124, 0.1);
}

.ah-detailteaser__content p {
  font-size: 16px;
  line-height: 22px;
}

.ah-detailteaser__content p:last-child {
  margin-bottom: 0;
}

.ah-download__item {
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(68, 68, 68, 0.1), 0 1px 2px 0 rgba(68, 68, 68, 0.3);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  align-items: center;
  display: flex;
  padding: 20px;
  border-radius: 0;
}

.ah-download__item:hover, .ah-download__item:focus-within {
  -webkit-box-shadow: 0 5px 10px #BBBBBB;
  -moz-box-shadow: 0 5px 10px #BBBBBB;
  box-shadow: 0 5px 10px #BBBBBB;
  text-decoration: none;
}

.ah-detailteaser .ah-download__item {
  align-items: center;
  padding: 15px 0;
  margin: 0;
  box-shadow: none;
}

.ah-detailteaser .ah-download__item:hover, .ah-detailteaser .ah-download__item:focus-within {
  box-shadow: none;
}

.ah-download__item .ah-svgicon {
  width: 25px;
  margin-right: 15px;
}

.ah-detailteaser .ah-download__itembox:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 4px solid #ffffff;
}

.ah-detailteaser .ah-download__itembox:first-child {
  margin-top: -15px;
}

.ah-detailteaser .ah-download__itembox:last-child {
  margin-bottom: -15px;
}

.ah-download__item__text {
  flex-flow: column;
  display: flex;
  width: 100%;
}

.ah-download__item__title {
  color: #444444;
  word-wrap: break-word;
}

.ah-detailteaser .ah-download__item__title {
  color: #313131;
}

.ah-download__item__subtitle {
  color: #BBBBBB;
}

.ah-detailteaser .ah-download__item__subtitle {
  color: #a8aab3;
}

.ah-mainfooter {
  background-color: #be0d3e;
  border-top: 30px solid #dd023a;
  padding: 0 30px;
  position: relative;
}

.ah-mainfooter .is-keyboard-focus {
  outline-color: #ffffff;
}

@media (min-width: 1224px) {
  .ah-mainfooter {
    font-weight: 500;
    background-color: inherit;
    background: linear-gradient(to bottom, transparent, transparent 312px, #dd023a 312px, #dd023a);
    border-top: none;
    min-height: 312px;
    padding: 0;
  }
}

.ah-mainfooter__inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 0 10px;
}

@media (min-width: 1224px) {
  .ah-mainfooter__inner {
    display: flex;
    justify-content: space-between;
    padding: 50px 0 20px;
    position: relative;
    z-index: 1;
  }
}

.ah-mainfooter__item {
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item {
    padding: 0;
    width: 50%;
  }
}

.ah-mainfooter__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item + .ah-mainfooter__item {
    margin-left: 30px;
  }
}

.ah-mainfooter__item h1, .ah-mainfooter__item h2, .ah-mainfooter__item h3, .ah-mainfooter__item h4, .ah-mainfooter__item h5, .ah-mainfooter__item h6 {
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}

.ah-mainfooter__item h6 {
  margin-bottom: 22px;
}

.ah-mainfooter__item h6 > span {
  display: block;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item h6 {
    margin-bottom: 10px;
  }
}

.ah-mainfooter__item .ah-link-list__list-item {
  margin-bottom: 8px;
}

.ah-mainfooter__item .ah-link-list__list-item:last-child {
  margin-bottom: 22px;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item .ah-link-list__list-item {
    margin-bottom: 10px;
  }
}

.ah-mainfooter__item a {
  color: #ffffff;
}

.ah-mainfooter__item .ah-iconlink {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.ah-mainfooter__item .ah-svgicon {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  margin-right: 10px;
}

.ah-mainfooter__item__title * {
  font-weight: 700;
}

.ah-mainfooter__item__text {
  margin-bottom: 22px;
  padding-left: 20px;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item__text {
    padding-left: 0;
  }
}

.ah-mainfooter__item__content {
  padding-left: 20px;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item__content {
    padding-left: 0;
  }
}

.ah-mainfooter__item.ah-mainfooter__item--accordion {
  position: relative;
}

.ah-mainfooter__item.ah-mainfooter__item--accordion:after {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-mainfooter__item.ah-mainfooter__item--accordion:after {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-mainfooter__item.ah-mainfooter__item--accordion:after {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 2px;
  width: 21px;
  height: 12px;
  -webkit-transition: transform 0.3s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: transform 0.3s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: transform 0.3s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transform-origin: center;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item.ah-mainfooter__item--accordion:after {
    content: none;
  }
}

.ah-mainfooter__item.ah-mainfooter__item--accordion-last {
  margin-bottom: 20px;
}

.ah-mainfooter__item.ah-mainfooter__item--accordion .ah-mainfooter__item__content {
  -webkit-transition: all 0.3s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  -moz-transition: all 0.3s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  transition: all 0.3s cubic-bezier(0, 0.35, 0.47, 1.01) 0s;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item.ah-mainfooter__item--accordion .ah-mainfooter__item__content {
    max-height: none;
    overflow: initial;
    opacity: 1;
    visibility: inherit;
  }
}

.ah-mainfooter__item.ah-mainfooter__item--accordion .ah-mainfooter__item__title {
  cursor: pointer;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item.ah-mainfooter__item--accordion .ah-mainfooter__item__title {
    cursor: initial;
  }
}

.ah-mainfooter__item--open.ah-mainfooter__item:after {
  transform: rotate(-180deg);
}

@media (min-width: 1224px) {
  .ah-mainfooter__item--open.ah-mainfooter__item {
    border: none;
  }
}

.ah-mainfooter__item--open.ah-mainfooter__item .ah-mainfooter__item__content {
  opacity: 1;
  max-height: 1800px;
  visibility: inherit;
}

@media (min-width: 1224px) {
  .ah-mainfooter__item--open.ah-mainfooter__item .ah-mainfooter__item__content {
    padding-bottom: inherit;
  }
}

.ah-mainfooter__item__icon--large.ah-iconlink {
  margin-bottom: 15px;
}

.ah-mainfooter__item__icon--large .ah-svgicon {
  height: 32px;
  width: 32px;
  fill: #ffffff;
  margin-right: 8px;
}

.ah-dialoge {
  padding: 30px;
  background-color: rgba(216, 216, 216, 0.15);
}

@media (min-width: 1224px) {
  .ah-dialoge {
    padding: 70px 30px 30px;
  }
}

.ah-dialoge .ah-svgicon {
  width: 45px;
  height: 45px;
}

@media (min-width: 1224px) {
  .ah-dialoge .ah-svgicon {
    width: 68px;
    height: 68px;
  }
}

.ah-dialoge__wrapper {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.ah-dialoge__title p, .ah-dialoge__subtitle p {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.ah-dialoge__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #be0d3e;
  text-align: center;
}

@media (min-width: 1224px) {
  .ah-dialoge__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 20px;
  }
}

.ah-dialoge__subtitle {
  font-size: 18px;
  line-height: 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.ah-dialoge__inner {
  align-content: center;
  flex-direction: row;
  flex-flow: row wrap;
  justify-content: center;
  display: flex;
  padding: 0;
  margin-top: 30px;
}

@media (min-width: 1224px) {
  .ah-dialoge__inner {
    margin: 50px -11px 0;
  }
  .ah-dialoge--rect .ah-dialoge__inner {
    align-items: flex-start;
    flex-flow: row;
    justify-content: space-between;
  }
}

.ah-dialoge__item {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  background-color: #ffffff;
  width: 130px;
  padding: 20px 8px;
  margin: 0 4px 8px;
}

@media (min-width: 1224px) {
  .ah-dialoge__item {
    width: 168px;
    padding: 30px 20px;
    margin: 0 11px 20px;
  }
  .ah-dialoge--rect .ah-dialoge__item {
    width: 50%;
    height: auto;
  }
}

.ah-dialoge__item:hover, .ah-dialoge__item:focus-within {
  box-shadow: 0 4px 13px 0 rgba(0, 0, 0, .13), 0 6px 10px rgba(0, 0, 0, .04);
}

.ah-contentslider {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-contentslider__item {
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;
  }
}

@media (min-width: 1224px) {
  .ah-contentslider__item {
    align-items: stretch;
  }
}

.ah-contentslider__item__media-wrapper {
  position: relative;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-contentslider__item__media-wrapper {
    flex: 1 auto;
    order: 2;
    width: calc(50% + 100px);
    margin-left: -100px;
  }
}

.ah-contentslider__item__media-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  background: radial-gradient(110% 180% at top, rgba(255, 255, 255, 0) 50%, #ffffff 51%);
  bottom: 0;
  height: 35px;
  width: 100%;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-contentslider__item__media-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    background: radial-gradient(180% 110% at right, rgba(255, 255, 255, 0) 50%, #ffffff 51%);
    right: auto;
    height: 100%;
    width: 35px;
    left: -2px;
  }
}

.ah-contentslider__media {
  height: 100%;
  width: calc(100% - 1px);
}

.ah-contentslider__image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding-bottom: calc(66.11% - 42px);
  pointer-events: none;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-contentslider__image-overlay {
    height: 100%;
    padding-bottom: 0;
  }
}

.ah-contentslider__buttongroup {
  display: none;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

.is-slider-active .ah-contentslider__buttongroup {
  display: flex;
}

.ah-contentslider__next, .ah-contentslider__prev {
  all: unset;
  position: relative;
  cursor: pointer;
  margin: 5px 10px;
  background: #ffffff;
  color: rgba(190, 13, 62, 0.8);
  width: 20px;
  height: 15px;
  overflow: hidden;
}

.ah-contentslider__next:hover:not(:disabled), .ah-contentslider__next:focus, .ah-contentslider__prev:hover:not(:disabled), .ah-contentslider__prev:focus {
  fill: rgba(190, 13, 62, 0.8);
}

.ah-contentslider__next.is-keyboard-focus, .ah-contentslider__prev.is-keyboard-focus {
  outline: 3px solid #007ca3;
  outline-offset: 3px;
}

.ah-contentslider__next .ah-contentslider__svgicon, .ah-contentslider__prev .ah-contentslider__svgicon {
  position: relative;
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: fill 300ms;
}

.ah-contentslider__next:disabled, .ah-contentslider__prev:disabled {
  cursor: not-allowed;
  opacity: 1;
  color: #d8d8d8;
}

.ah-contentslider .ah-contentslider__prev .ah-contentslider__svgicon {
  transform: rotate(180deg);
}

.ah-contentslider__bullets {
  justify-content: space-between;
  display: flex;
  margin: 0 5px;
  padding: 0;
  list-style: none;
}

.ah-contentslider__bullet__item {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 5px;
  text-indent: -50000px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #004767;
  cursor: pointer;
  pointer-events: auto;
}

.ah-contentslider__bullet__item.active {
  background: #be0d3e;
  border-color: #be0d3e;
  cursor: default;
}

.ah-contentslider__item__inner {
  padding: 20px 20px 40px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-contentslider__item__inner {
    order: 1;
    width: 50%;
    padding: 30px 150px 20px 0;
  }
}

.ah-contentslider__item__content {
  width: 100%;
}

.ah-contentslider__item__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 1224px) {
  .ah-contentslider__item__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-contentslider__item__text {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (orientation: landscape), (min-width: 1224px) {
  .ah-contentslider__item__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-contentslider__item__text p {
  font-size: inherit;
  line-height: inherit;
}

.ah-contentslider__item__button {
  align-items: flex-start;
  flex-flow: column;
  display: inline-flex;
}

.ah-contentslider__item__button .ah-button {
  width: 100%;
  margin-bottom: 15px;
}

.ah-contentslider__item__button .ah-button:last-child {
  margin-bottom: 0;
}

.ah-breadcrumb {
  display: none;
  padding-bottom: 20px;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .ah-breadcrumb {
    display: block;
  }
}

.ah-breadcrumb__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ah-breadcrumb .ah-link-list__list-item {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
  position: relative;
}

.ah-breadcrumb .ah-link-list__list-item + .ah-link-list__list-item {
  margin-left: 10px;
}

.ah-breadcrumb .ah-link-list__list-item + .ah-link-list__list-item:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23313131%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-breadcrumb .ah-link-list__list-item + .ah-link-list__list-item:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-breadcrumb .ah-link-list__list-item + .ah-link-list__list-item:before {
  transform: rotate(-90deg);
  width: 10px;
  height: 6px;
  margin-right: 10px;
  margin-bottom: 2px;
}

.ah-breadcrumb__item {
  color: #313131;
  font-size: 14px;
  line-height: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  max-width: 345px;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

.ah-breadcrumb__item:hover, .ah-breadcrumb__item:focus-within {
  color: #be0d3e;
  text-decoration: none;
  border-bottom: 1px solid #be0d3e;
}

.ah-breadcrumb__item--active {
  font-weight: 500;
  color: #be0d3e;
  cursor: none;
  pointer-events: none;
  user-select: none;
}

.ah-eyecatcher {
  font-weight: 400;
  color: #000000;
  display: block;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .ah-eyecatcher {
    width: 200px;
  }
}

.ah-eyecatcher__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.ah-richtext .ah-eyecatcher {
  float: right;
  margin: 0 0 20px 20px;
}

.ah-richtext .ah-eyecatcher::before {
  content: none;
}

.ah-richtext .ah-eyecatcher.ah-eyecatcher--left {
  float: left;
  margin: 0 20px 20px 0;
}

.ah-eyecatcher * {
  color: inherit;
}

.ah-eyecatcher__corner {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ah-eyecatcher__content {
  padding: 20px;
  position: relative;
  border-top-right-radius: 45px;
}

.ah-eyecatcher__content h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.ah-eyecatcher__content p {
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}

.ah-infocard {
  font-size: 18px;
  line-height: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
}

@media (min-width: 1224px) {
  .ah-infocard {
    margin: 0 auto;
  }
}

.ah-infocard p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.ah-infocard .ah-svgicon {
  fill: #be0d3e;
  width: 72px;
  height: 48px;
  margin-bottom: 8px;
}

@media (min-width: 1224px) {
  .ah-infocard .ah-svgicon {
    margin-bottom: 15px;
  }
}

.ah-infocard__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .ah-infocard__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

.ah-infocard__inner {
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  padding: 15px 20px 30px;
}

@media (min-width: 1224px) {
  .ah-infocard__inner {
    padding: 22px 100px 50px;
  }
}

.ah-infocard.ie-flex-fix .ah-infocard__footer__inner {
  width: 100%;
}

.ah-infocard .ah-infocard__text {
  width: 100%;
}

.ah-infocard .ah-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.ah-infocard .ah-button:hover, .ah-infocard .ah-jobsearch__card:hover .ah-jobsearch__cta, .ah-jobsearch__card:hover .ah-infocard .ah-jobsearch__cta, .ah-infocard .ah-button:focus-within {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(190, 13, 62, 0.8);
}

.ah-infocard .ah-button:last-child {
  margin-bottom: 0;
}

.ah-infocard .ah-button:active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(190, 13, 62, 0.3);
}

.ah-infocard .ah-button:active:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 22 16%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath fill%3D%22%23ffffff%22 d%3D%22M15.4.7l6.1 6.6c.3.4.4.9.1 1.3l-.1.1-6 6.5c-.4.4-1 .4-1.4.1s-.4-.9-.1-1.3l.1-.1L18.5 9H1.3c-.6 0-1-.4-1-1 0-.5.4-.9.9-1h17.3L14 2.2c-.3-.4-.4-.9 0-1.3l.1-.1c.3-.4.9-.4 1.3-.1z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
}

.no-svg .ah-infocard .ah-button:active:after {
  background-image: url("../media/icons/fullarrow--colorToReplace.png");
}

.ah-infocard .ah-button:active:after {
  height: 15px;
  width: 22px;
  margin-left: 20px;
  flex-shrink: 0;
}

.ah-infocard .ah-button .ah-svgicon {
  margin: 0 0 0 20px;
  transform: rotate(-90deg);
  width: 20px;
  height: 20px;
}

.ah-infocard__footer {
  background-color: #be0d3e;
  display: flex;
  align-items: center;
  padding: 20px;
}

.ah-infocard__footer__inner {
  display: flex;
  flex-flow: column;
  margin: 0 auto;
}

.ah-team {
  width: 160px;
  text-align: center;
}

@media (min-width: 768px) {
  .ah-team {
    width: 185px;
  }
}

.ah-accordion--team .ah-team {
  margin: 8px;
}

@media (min-width: 768px) {
  .ah-accordion--team .ah-team {
    margin: 20px;
  }
}

.ah-team__image {
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 15px;
}

.ah-team__title,
.ah-richtext .ah-team__title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  margin: 0;
  color: #be0d3e;
}

.ah-team__text {
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
  color: #646d74;
}

.ah-team__text a[href] {
  font-weight: 400;
}

.ah-team__vcard,
.ah-richtext .ah-team__vcard {
  font-size: 14px;
  align-items: center;
  display: inline-flex;
  margin-top: 10px;
}

.ah-team__vcard::before,
.ah-richtext .ah-team__vcard::before,
.ah-richtext .ah-team__vcard::before,
.ah-richtext
.ah-richtext .ah-team__vcard::before {
  content: none;
}

.ah-team__vcard .ah-svgicon,
.ah-richtext .ah-team__vcard .ah-svgicon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  fill: #be0d3e;
}

.ah-tabs {
  position: relative;
  display: none;
  padding: 0;
}

.ah-tabs__nav {
  position: relative;
  overflow: hidden;
  height: 45px;
}

.ah-tabs--large .ah-tabs__nav {
  height: 70px;
}

.ah-tabs__wrapper {
  display: flex;
  position: absolute;
  height: 100%;
}

.ah-tabs__button {
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #E0E0E0;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  border: none;
}

.ah-tabs__button-prev {
  left: 0;
}

.ah-tabs__button-next {
  right: 0;
}

.ah-tabs__arrow-icon {
  height: 100%;
  padding: 0 10px;
  fill: #a8aab3;
}

.ah-tabs__icon-prev {
  left: 0;
  border-left: 1px solid #ffffff;
  transform: rotate(180deg);
}

.ah-tabs__icon-next {
  right: 0;
  border-left: 1px solid #ffffff;
}

.ah-tab__title {
  font-size: 14px;
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 100%;
  background-color: rgba(216, 216, 216, 0.8);
  color: #313131;
  border-top: 3px solid rgba(255, 255, 255, 0);
  border-radius: 3px 3px 0 0;
  margin-right: 1px;
  padding: 0 30px;
  white-space: nowrap;
  position: relative;
}

.ah-tab__title:hover, .ah-tab__title:focus-within {
  color: #be0d3e;
  text-decoration: none;
}

.ah-tab--is-active .ah-tab__title {
  font-weight: 700;
  background: rgba(216, 216, 216, 0.15);
  border-top: 3px solid #be0d3e;
  color: #be0d3e;
  z-index: 1;
}

.ah-tabs--large .ah-tab__title {
  padding: 0 30px;
}

@media (min-width: 768px) {
  .ah-tabs--large .ah-tab__title {
    padding: 0 40px;
  }
}

.ah-tabs--small .ah-tab__title {
  text-align: center;
  padding: 0 15px;
}

.ah-tabs--small .ah-tab__title--has-icon {
  padding-left: 15px;
}

.ah-tab--is-disabled .ah-tab__title {
  cursor: not-allowed;
  color: #a8aab3;
}

.ah-tab__title .ah-svgicon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  fill: currentColor;
}

.ah-tabs--small .ah-tab__title .ah-svgicon {
  display: none;
}

.ah-tabs--large .ah-tabs__wrapper .ah-tab__title .ah-svgicon {
  display: block;
  width: 22px;
  height: 22px;
  position: static;
}

.ah-tab__content {
  background: rgba(216, 216, 216, 0.15);
  position: relative;
  display: none;
  padding: 40px 10px 30px;
}

@media (min-width: 768px) {
  .ah-tab__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ah-forkteaser .ah-iconlink {
  color: #B11A3B;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.ah-forkteaser .ah-iconlink .ah-svgicon {
  width: 1rem;
  height: 1rem;
  fill: #B11A3B;
  margin-right: 5px;
}

.ah-forkteaser__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.ah-forkteaser__title .ah-link {
  color: #444444;
}

.ah-forkteaser__text {
  margin: 0 0 10px 0;
}

.ah-forkteaser__links {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.ah-forkteaser__links:last-child {
  margin: 0;
}

/* TODO - on the next usage of this simplyfied masonry grid, refactor it to a generic one */
.ah-fork {
  visibility: hidden;
  margin-bottom: 50px;
}

.ah-fork:after {
  content: '';
  display: block;
  clear: both;
}

.ah-fork__grid-sizer,
.ah-fork__item {
  width: 100%;
  float: left;
}

.ah-fork__content {
  margin: 10px 0;
  padding: 20px 20px 10px 20px;
  background: #FFFFFF;
  border-radius: 0;
  box-shadow: 0 1px 6px 0 rgba(68, 68, 68, 0.1), 0 1px 2px 0 rgba(68, 68, 68, 0.3);
}

@media all and (min-width: 48em) {
  .ah-fork__content {
    margin: 10px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-fork__content {
    margin: 10px;
  }
}

@media all and (min-width: 48em) {
  .ah-fork__grid-sizer,
  .ah-fork__item {
    width: 50%;
  }
}

@media all and (min-width: 87.5em) {
  .ah-fork__grid-sizer,
  .ah-fork__item {
    width: 33.333%;
  }
}

.ah-sitemap {
  margin: 10px 10px 0;
}

.ah-sitemap ul {
  min-width: 200px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ah-sitemap ul a {
  font-weight: 500;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  display: block;
  padding-bottom: 12px;
  margin: 0 20px 20px;
  color: #444444;
  border-bottom: 1px solid #DDDDDD;
}

.ah-sitemap ul a:hover, .ah-sitemap ul a:focus {
  color: #be0d3e;
}

.ah-sitemap ul ul {
  flex-wrap: wrap;
  display: flex;
  margin-bottom: 20px;
  font-size: 16px;
}

.ah-sitemap ul ul li {
  flex: 0 0 100%;
}

@media all and (min-width: 48em) {
  .ah-sitemap ul ul li {
    flex: 0 0 33.333%;
  }
}

@media all and (min-width: 87.5em) {
  .ah-sitemap ul ul li {
    flex: 0 0 25%;
  }
}

.ah-sitemap ul ul a {
  font-weight: 500;
  padding: 0;
  margin-bottom: 20px;
  font-size: 1rem;
  border: none;
}

.ah-sitemap ul ul ul {
  display: block;
}

.ah-sitemap ul ul ul li {
  flex: none;
}

.ah-sitemap ul ul ul a {
  font-weight: 400;
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}

.ah-sitemap ul ul ul a:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23be0d3e%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-sitemap ul ul ul a:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-sitemap ul ul ul a:before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
}

.ah-sitemap ul ul ul ul {
  margin-left: 15px;
}

.ah-pagetitle {
  padding: 30px 0 40px;
}

@media (min-width: 1224px) {
  .ah-pagetitle .ah-pagetitle__subtitle {
    max-width: 75%;
  }
}

.ah-pagetitle .ah-pagetitle__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
}

@media (min-width: 1224px) {
  .ah-pagetitle .ah-pagetitle__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 30px;
  }
}

.ah-pagetitle .ah-pagetitle__subtitle {
  font-size: 16px;
  line-height: 1.38;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  text-align: left;
}

@media all and (min-width: 87.5em) {
  .ah-pagetitle .ah-pagetitle__subtitle {
    font-size: 18px;
    line-height: 1.56;
  }
}

@media all and (min-width: 87.5em) {
  .ah-pagetitle .ah-pagetitle__subtitle {
    text-align: left;
  }
}

.ah-files {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-files {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-files {
    padding: 0;
  }
}

[data-experience-editor] .ah-files {
  min-height: 40px;
}

.ah-files .ah-files__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #DDDDDD;
}

@media all and (min-width: 48em) {
  .ah-files.ah-files--orderable .ah-file__actions {
    position: relative;
    width: 242px;
  }
  .ah-files.ah-files--orderable .ah-file__actions .ah-svgicon--icon-cart {
    position: absolute;
    left: auto;
    right: 0;
  }
}

.ah-files.ah-files--latest .ah-files__list {
  border: none;
}

.ah-files.ah-files--latest .ah-file {
  padding: 15px 12px;
  border: none;
}

.ah-files.ah-files--latest .ah-file:nth-child(even) {
  background: #FFFFFF;
}

.ah-files.ah-files--latest .ah-file--bordered {
  border-top: 1px solid #DDDDDD;
}

.ah-files.ah-files--latest .ah-file--bordered:last-child {
  border-bottom: 1px solid #DDDDDD;
}

.ah-files.ah-files--latest .ah-file .ah-file__wrap {
  max-width: 100%;
  display: flex;
}

.ah-files.ah-files--latest .ah-file .ah-file__wrap .ah-file__date {
  min-width: 80px;
}

.ah-files.ah-files--latest .ah-file .ah-file__item {
  align-items: flex-start;
  flex-wrap: nowrap;
}

.ah-files.ah-files--latest .ah-file .ah-file__item .ah-file__actions {
  margin-left: 0;
}

.ah-files.ah-files--latest .ah-file .ah-file__item .ah-svgicon.ah-svgicon--icon-lock {
  position: static;
  margin-left: 10px;
}

.ah-files.ah-files--latest .ah-file .ah-file__item .ah-svgicon.ah-svgicon--icon-cart {
  margin-right: -5px;
  transform: translateY(-6px);
}

.ah-files.ah-files--latest .ah-file__more {
  margin: 20px 10px;
  display: block;
}

.ah-files.ah-files--latest .ah-file__more:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23be0d3e%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-files.ah-files--latest .ah-file__more:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-files.ah-files--latest .ah-file__more:before {
  transform: rotate(-90deg);
  position: relative;
  top: -2px;
  left: -1px;
  font-size: 9px;
  line-height: 0;
  margin-right: 5px;
}

.ah-files .ah-file__more {
  display: none;
}

.ah-accordion .ah-files {
  font-size: 87.5%;
  padding: 0;
}

.ah-accordion .ah-files .ah-file__link {
  font-weight: 400;
}

.ah-accordion .ah-files .ah-file__versions__toggle {
  font-weight: 400;
}

.ah-file {
  padding: 4px 12px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}

.ah-file:nth-child(odd) {
  background: #FFFFFF;
}

.ah-file:nth-child(even) {
  background: #F4F9FD;
}

.ah-file .ah-file__item,
.ah-file .ah-file__versions__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ah-file .ah-file__wrap {
  flex: 1 1 100%;
}

@media all and (min-width: 48em) {
  .ah-file .ah-file__wrap {
    max-width: 60%;
  }
}

@media all and (min-width: 87.5em) {
  .ah-file .ah-file__wrap {
    padding-right: 15px;
    max-width: 70%;
  }
}

@media all and (max-width: 47.99em) {
  .ah-file .ah-file__item {
    flex-wrap: wrap-reverse;
  }
  .ah-file .ah-file__item .ah-file__wrap {
    width: 100%;
    display: flex;
  }
  .ah-file .ah-file__item .ah-file__actions {
    margin-left: -10px;
  }
}

.ah-file .ah-file__meta {
  display: none;
}

.ah-file .ah-file__link {
  color: #444444;
  position: relative;
  padding-left: 12px;
}

.ah-file .ah-file__link:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23be0d3e%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-file .ah-file__link:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-file .ah-file__link::before {
  transform: rotate(-90deg);
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 9px;
  min-width: 10px;
  line-height: 0;
  align-self: flex-start;
}

@media all and (max-width: 47.99em) {
  .ah-file .ah-file__link {
    text-decoration: none;
  }
}

.ah-file .ah-file__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.ah-file .ah-file__actions .ah-svgicon--icon-cart {
  left: auto;
  right: 0;
  margin-left: auto;
}

@media all and (min-width: 48em) {
  .ah-file .ah-file__actions .ah-svgicon--icon-cart {
    position: absolute;
  }
}

.ah-file .ah-svgicon {
  width: 30px;
  height: 30px;
  fill: #2E77A1;
  position: relative;
  left: 0;
  top: 0;
  padding: 6px;
  cursor: pointer;
  user-select: none;
}

.ah-file .ah-svgicon:hover, .ah-file .ah-svgicon:focus-within {
  fill: #4C97BE;
}

.ah-file .ah-svgicon.ah-svgicon--icon-lock {
  padding: 0;
  width: 18px;
  height: 18px;
  margin-left: 5px;
  position: absolute;
  right: 10px;
  top: 10px;
  left: auto;
}

.ah-file .ah-svgicon.ah-svgicon--icon-lock:hover, .ah-file .ah-svgicon.ah-svgicon--icon-lock:focus-within {
  fill: #2E77A1;
}

@media all and (min-width: 48em) {
  .ah-file .ah-svgicon.ah-svgicon--icon-lock {
    position: relative;
    left: 0;
    top: 0;
    right: auto;
  }
}

.ah-file .ah-file__action {
  padding: 0 5px;
}

.ah-file .ah-file__action--id {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

@media all and (min-width: 48em) {
  .ah-file .ah-file__action--id {
    min-width: 150px;
  }
}

.ah-file .ah-file__action--category {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (min-width: 48em) {
  .ah-file .ah-file__action:last-of-type {
    padding-right: 40px;
  }
}

@media all and (min-width: 48em) {
  .ah-filesearch .ah-file .ah-file__action:not(:last-of-type) {
    flex: 1 1 100%;
  }
}

.ah-file .ah-file__versions__main_item {
  text-decoration: none;
  display: block;
  color: #2E77A1;
  padding-left: 15px;
  position: relative;
  font-size: 12px;
  user-select: none;
}

.ah-file .ah-file__versions__toggle {
  text-decoration: none;
  display: block;
  color: #2E77A1;
  padding-left: 15px;
  position: relative;
  font-size: 12px;
  user-select: none;
}

.ah-file .ah-file__versions__toggle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #2E77A1;
  transform: none;
}

.ah-file .ah-file__versions__toggle--active:before {
  top: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #2E77A1;
}

.ah-file .ah-file__versions__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.ah-file .ah-file__versions__list .ah-file__versions__link {
  color: #444444;
  margin: 2px 0 2px 30px;
}

.ah-richtext .ah-file .ah-file__versions__list .ah-file__versions__link::before {
  content: none;
}

@media all and (max-width: 47.99em) {
  .ah-file .ah-file__versions__list .ah-file__id {
    display: none;
  }
  .ah-file .ah-file__versions__list .ah-svgicon--icon-info {
    left: auto;
    right: -8px;
  }
}

.js-files__orderform {
  display: none;
}

.ah-lightbox--filemeta .lity-container {
  max-width: 300px;
}

@media all and (min-width: 48em) {
  .ah-lightbox--filemeta .lity-container {
    max-width: 600px;
  }
}

.ah-lightbox--filemeta .ah-file__meta_item {
  display: flex;
}

.ah-lightbox--filemeta .ah-file__meta_item:last-child {
  padding-bottom: 20px;
}

.ah-lightbox--filemeta .ah-file__meta_item .ah-file__meta__key {
  width: 45%;
  margin-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ah-lightbox--filemeta .ah-file__meta_item .ah-file__meta__value {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ah-lightbox--fileorder .lity-container {
  max-width: 580px;
}

.ah-lightbox--fileorder .ah-file__orderform .ah-file__orderform__input {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 10px;
}

.ah-lightbox--fileorder .ah-file__orderform input[type="text"] {
  width: 54px;
  margin-right: 10px;
}

.ah-lightbox--fileorder .ah-file__orderform .ah-forms__input {
  display: flex;
  align-items: center;
}

.ah-lightbox--fileorder .ah-file__orderform .ah-forms__input .ah-forms__label {
  order: 1;
  font-weight: 400;
  font-size: 14px;
  line-height: inherit;
}

.ah-lightbox--fileorder .ah-file__orderform .ah-forms__row {
  justify-content: space-between;
}

.ah-login {
  height: 100%;
  border-top: 7px solid #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ah-login--standard {
  justify-content: center;
}

.ah-login--standard .flex_formcontainer {
  flex-direction: column;
  align-items: center !important;
}

.ah-login--standard .flex_formcontainer input {
  display: block !important;
  margin: 0 0 15px !important;
}

.ah-login--standard .flex_formcontainer button {
  margin: 0 !important;
}

.ah-login__link {
  margin: 0 10px;
  line-height: 0;
}

.ah-login__link .ah-svgicon {
  width: 24px;
  height: 24px;
  fill: #B11A3B;
}

.ah-login__name {
  font-weight: 500;
  font-size: 14px;
  line-height: inherit;
  display: flex;
  align-items: center;
}

.ah-login__name--ao {
  margin-right: auto;
}

.ah-login--logged-in .ah-login__name {
  flex-direction: column;
}

@media all and (min-width: 35.5em) {
  .ah-login--logged-in .ah-login__name {
    flex-direction: row;
  }
}

.ah-login--ao .ah-login__name {
  margin: 0 auto;
  text-align: center;
}

.ah-login__name .ah-login__id {
  font-weight: 400;
  font-size: 14px;
  line-height: inherit;
  margin-left: 0;
}

@media all and (min-width: 35.5em) {
  .ah-login__name .ah-login__id {
    margin-left: 4px;
  }
}

.ah-login__name a {
  color: #444444;
}

.ah-login__cart {
  margin-left: 15px;
  margin-right: auto;
  color: #444444;
  text-decoration: none;
  position: relative;
  line-height: 0;
}

.ah-login__cart .ah-svgicon {
  width: 24px;
  height: 24px;
  fill: #666;
}

.ah-login__counter {
  margin-left: 2px;
  position: absolute;
  top: 100%;
  left: 100%;
}

.ah-login .flex_formcontainer {
  display: none;
}

@media all and (min-width: 48em) {
  .ah-login .flex_formcontainer {
    display: flex;
    align-items: flex-end;
  }
}

.ah-login .flex_formcontainer input {
  margin: 0 10px 0 0;
  padding: 12px;
}

@media all and (min-width: 87.5em) {
  .ah-login .flex_formcontainer input {
    width: 222px;
  }
}

.ah-login .flex_formcontainer button {
  position: relative;
  top: -2px;
  padding: 11px 20px;
}

@media all and (min-width: 87.5em) {
  .ah-login .flex_formcontainer button {
    margin-right: 10px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-login {
    width: 80%;
    margin: 0 auto;
  }
}

.ah-login__modal-trigger {
  margin-right: 10px;
}

@media all and (min-width: 48em) {
  .ah-login__modal-trigger {
    display: none;
  }
}

.ah-login__modal .lity-content {
  padding: 70px 20px 20px;
}

.ah-login__modal .flex_formcontainer {
  padding: 0;
}

.ah-login__modal .flex_formcontainer [type="submit"] {
  margin-top: 5px;
}

.ah-iframe iframe {
  overflow: hidden;
}

.ah-iframe iframe.ah-iframe--scrollable {
  overflow: visible;
}

.ah-iframe.demo iframe {
  height: 1000px;
}

.ah-shoppingcart {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-shoppingcart {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-shoppingcart {
    padding: 0;
  }
}

.ah-shoppingcart__title {
  margin-bottom: 10px;
  font-weight: bold;
}

.ah-shoppingcart .ah-shoppingcart__item {
  font-size: 16px;
  align-items: center;
  display: flex;
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
}

.ah-shoppingcart .ah-shoppingcart__item > .file {
  padding: 7px 10px;
  flex-direction: column;
}

.ah-shoppingcart .ah-shoppingcart__item > .file a:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23B11A3B%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-shoppingcart .ah-shoppingcart__item > .file a:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-shoppingcart .ah-shoppingcart__item > .file a:before {
  transform: rotate(-90deg);
  position: relative;
  top: -2px;
  left: -1px;
  font-size: 9px;
  line-height: 0;
  margin-right: 5px;
}

.ah-shoppingcart .ah-shoppingcart__item > .file.name {
  flex: 1;
  width: 50%;
}

.ah-shoppingcart .ah-shoppingcart__item > .file.name a {
  color: #444444;
}

.ah-shoppingcart .ah-shoppingcart__item > .file.id, .ah-shoppingcart .ah-shoppingcart__item > .file.category, .ah-shoppingcart .ah-shoppingcart__item > .file.date {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (max-width: 47.99em) {
  .ah-shoppingcart .ah-shoppingcart__item > .file.id, .ah-shoppingcart .ah-shoppingcart__item > .file.category, .ah-shoppingcart .ah-shoppingcart__item > .file.date {
    display: none;
  }
}

.ah-shoppingcart .ah-shoppingcart__item > .file.count, .ah-shoppingcart .ah-shoppingcart__item > .file.info, .ah-shoppingcart .ah-shoppingcart__item > .file.remove {
  width: 50px;
  padding: 0;
}

.ah-shoppingcart .ah-shoppingcart__item.ah-shoppingcart__item--header {
  font-size: 16px;
  font-weight: 700;
  background-color: #004767;
  color: #ffffff;
}

.ah-shoppingcart .ah-shoppingcart__item.ah-shoppingcart__item--even {
  background-color: rgba(0, 95, 124, 0.1);
}

.ah-shoppingcart .ah-shoppingcart__item .ah-svgicon {
  width: 30px;
  height: 30px;
  fill: #2E77A1;
  padding: 6px;
  cursor: pointer;
  user-select: none;
}

.ah-shoppingcart .ah-shoppingcart__item .ah-svgicon:hover, .ah-shoppingcart .ah-shoppingcart__item .ah-svgicon:focus-within {
  fill: #4C97BE;
}

.ah-shoppingcart .ah-shoppingcart__item .count input {
  width: 45px;
  text-align: center;
}

.ah-grid {
  margin: 0 auto;
}

.ah-grid__wrapper {
  justify-content: space-between;
  display: block;
}

.ah-grid.ah-grid--no-wrap .ah-grid__wrapper {
  display: flex;
}

@media all and (min-width: 48em) {
  .ah-grid.ah-grid--wrap-mobile .ah-grid__wrapper {
    display: flex;
  }
}

@media all and (min-width: 87.5em) {
  .ah-grid__wrapper {
    margin: 0 -20px;
    display: flex;
  }
}

.ah-grid .ah-grid__col {
  flex: 1;
  min-width: 0;
  min-height: 0;
}

@media all and (min-width: 87.5em) {
  .ah-grid .ah-grid__col {
    padding: 0 20px;
  }
}

.ah-grid.ah-grid--12 .ah-grid__col:last-child {
  flex: 2.38;
}

.ah-grid.ah-grid--21 .ah-grid__col:first-child {
  flex: 2.38;
}

.ah-grid .ah-detailteaser {
  max-width: none;
}

.ah-grid .ah-detailteaser .ah-sealslider__wrapper {
  max-width: none;
}

.ah-grid .ah-news,
.ah-grid .ah-files {
  padding-left: 0;
  padding-right: 0;
}

.ah-grid .ah-usplist,
.ah-grid .ah-usplist--two-col > * {
  width: 100%;
}

.ah-grid .ah-richtext:not(.ah-accordion__item-title),
.ah-grid .ah-richtext:not(.ah-accordion__item-title) > * {
  max-width: none;
  width: auto;
}

.ah-news {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-news {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-news {
    padding: 0;
  }
}

.ah-news .ah-news__list {
  padding: 0;
  margin: 0;
}

.ah-news .ah-news__item {
  display: flex;
  padding: 15px 12px;
  border-bottom: 1px solid #DDDDDD;
  background: #FFFFFF;
}

.ah-news .ah-news__item .ah-news__date {
  min-width: 80px;
  margin-top: 0;
}

.ah-news .ah-news__item .ah-news__content h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #444444;
}

.ah-news .ah-news__item .ah-news__content h6 {
  font-weight: 500;
}

.ah-news .ah-news__item .ah-news__content .ah-news__text {
  margin: 14px 0;
}

.ah-news .ah-news__item .ah-news__content .ah-news__link {
  display: block;
}

.ah-news .ah-news__item .ah-news__content .ah-news__link:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23B11A3B%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-news .ah-news__item .ah-news__content .ah-news__link:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-news .ah-news__item .ah-news__content .ah-news__link:before {
  transform: rotate(-90deg);
  position: relative;
  top: -2px;
  left: -1px;
  font-size: 9px;
  line-height: 0;
  margin-right: 5px;
}

@media all and (min-width: 48em) {
  .ah-news .ah-forms__datepicker {
    max-width: 120px;
  }
}

.ah-news .ah-news__more {
  margin: 20px 0;
}

.ah-news .ah-news__more .ah-news__link {
  margin: 0 10px;
  display: block;
}

.ah-news .ah-news__more .ah-news__link:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23B11A3B%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-news .ah-news__more .ah-news__link:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-news .ah-news__more .ah-news__link:before {
  transform: rotate(-90deg);
  position: relative;
  top: -2px;
  left: -1px;
  font-size: 9px;
  line-height: 0;
  margin-right: 5px;
}

.ah-news.ah-news--latest .ah-news__item:first-child {
  border-top: 1px solid #DDDDDD;
}

@media all and (min-width: 48em) and (max-width: 87.49em) {
  .ah-news .ah-news__date {
    margin-top: -1px;
  }
}

.ah-workshopsearch {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-workshopsearch {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-workshopsearch {
    padding: 0;
  }
}

.ah-workshopsearch .ah-workshopsearch__result {
  padding: 15px 12px;
  border-bottom: 1px solid #DDDDDD;
}

.ah-workshopsearch .ah-workshopsearch__result a {
  display: block;
  margin: 0 0 10px 0;
  position: relative;
}

.ah-workshopsearch .ah-workshopsearch__result a:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23B11A3B%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .ah-workshopsearch .ah-workshopsearch__result a:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.ah-workshopsearch .ah-workshopsearch__result a:before {
  transform: rotate(-90deg);
  position: relative;
  top: -2px;
  left: -1px;
  font-size: 9px;
  line-height: 0;
  margin-right: 5px;
}

.ah-workshopsearch .ah-workshopsearch__label {
  margin-top: 10px;
}

.ah-workshopsearch .ah-workshopsearch__value {
  margin-right: 50px;
  font-weight: 500;
}

.ah-workshopsearch .ah-workshopsearch__assignment {
  margin-bottom: 20px;
}

.ah-workshopsearch .ah-workshopsearch__hint {
  font-size: 10px;
  text-align: right;
  margin-top: 2px;
}

.ah-workshopsearch .ah-workshopsearch__no-results {
  color: #B11A3B;
  text-align: center;
  margin: 20px 0;
}

@media all and (min-width: 48em) {
  .ah-workshopsearch .ah-forms--filter label {
    min-width: 200px;
  }
  .ah-workshopsearch .flex {
    display: flex;
  }
  .ah-workshopsearch .flex.space {
    justify-content: space-between;
  }
  .ah-workshopsearch .ah-workshopsearch__label {
    min-width: 200px;
    margin-top: 0;
  }
}

.ah-gallery {
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  position: relative;
  -webkit-transition: opacity 0.3s linear 0s;
  -moz-transition: opacity 0.3s linear 0s;
  transition: opacity 0.3s linear 0s;
}

.ah-gallery.ah-gallery--loaded {
  opacity: 1;
}

.ah-gallery .ah-lightbox__navigation {
  display: none;
}

.ah-gallery .ah-gallery__item {
  width: 50%;
  line-height: 0;
  padding: 5px;
}

.ah-gallery .ah-gallery__item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.ah-gallery .ah-gallery__item a:hover, .ah-gallery .ah-gallery__item a:focus-within {
  -webkit-box-shadow: 0 0 15px #BBBBBB;
  -moz-box-shadow: 0 0 15px #BBBBBB;
  box-shadow: 0 0 15px #BBBBBB;
}

.ah-gallery .ah-gallery__item a:hover span, .ah-gallery .ah-gallery__item a:focus-within span {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.ah-gallery .ah-gallery__item a:hover img, .ah-gallery .ah-gallery__item a:focus-within img {
  transform: scale(1.1);
}

.ah-gallery .ah-gallery__item a:hover div, .ah-gallery .ah-gallery__item a:focus-within div {
  display: flex;
}

.ah-gallery .ah-gallery__item img {
  -webkit-transition: transform 0.1s linear 0s;
  -moz-transition: transform 0.1s linear 0s;
  transition: transform 0.1s linear 0s;
  width: 100%;
}

.ah-gallery .ah-gallery__item span {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #FFFFFF;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 30px;
}

.ah-gallery .ah-gallery__item div {
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.ah-gallery .ah-gallery__item div p {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  align-self: flex-end;
  margin: 0;
  padding: 5px 12px;
}

.ah-gallery .ah-gallery__item .ah-svgicon {
  fill: #B11A3B;
  width: 100%;
  height: 100%;
}

@media all and (min-width: 48em) {
  .ah-gallery .ah-gallery__item {
    width: 33%;
  }
}

@media all and (min-width: 87.5em) {
  .ah-gallery .ah-gallery__item {
    width: 25%;
  }
}

.ah-filesearch {
  position: relative;
  margin: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-filesearch {
    margin: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-filesearch {
    margin: 0;
  }
}

.ah-filesearch .ah-forms {
  padding: 12px 12px 0 12px;
  background-color: rgba(216, 216, 216, 0.15);
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 30px;
}

.ah-filesearch .ah-forms label, .ah-filesearch .ah-forms .ah-button {
  margin-bottom: 20px;
}

.ah-filesearch .ah-filesearch__input .ah-forms__row {
  flex-wrap: nowrap;
}

.ah-filesearch .ah-filesearch__input .ah-forms__row .ah-forms__input {
  width: 100%;
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-1 .ah-forms__select {
  width: 100%;
  margin-right: 0;
  margin-bottom: 10px;
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-1 .ah-forms__select::before {
  content: none;
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-1 .ah-forms__select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media all and (min-width: 48em) {
  .ah-filesearch .ah-filesearch__filter .ah-filesearch__row-1 {
    flex-wrap: nowrap;
  }
  .ah-filesearch .ah-filesearch__filter .ah-filesearch__row-1 .ah-forms__select {
    width: 100%;
    margin-right: 20px;
  }
  .ah-filesearch .ah-filesearch__filter .ah-filesearch__row-1 .ah-forms__select:last-child {
    margin-right: 0;
  }
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 {
  justify-content: space-between;
  align-items: baseline;
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-filesearch__buttons .ah-button {
  margin-right: 20px;
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-filesearch__buttons .ah-button:last-child {
  margin-right: 0;
}

@media all and (min-width: 48em) {
  .ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-filesearch__buttons {
    justify-content: flex-end;
  }
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-filesearch__datepicker {
  width: 100%;
}

@media all and (min-width: 48em) {
  .ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-filesearch__datepicker {
    width: auto;
    flex-wrap: nowrap;
  }
  .ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-filesearch__datepicker input {
    max-width: 94px;
  }
}

.ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-forms__datepicker {
  width: 100%;
  margin-right: 0;
}

@media all and (min-width: 48em) {
  .ah-filesearch .ah-filesearch__filter .ah-filesearch__row-2 .ah-forms__datepicker {
    width: auto;
    margin-right: 20px;
  }
}

.ah-filesearch .ah-filesearch__results {
  padding: 0;
}

.ah-filesearch .ah-filesearch__results .ah-filesearch__results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ah-filesearch .ah-filesearch__results .ah-filesearch__results-header .ah-search__pagination {
  padding: 5px 0;
}

.ah-filesearch .ah-filesearch__results .ah-file__link {
  display: inline-flex;
  align-items: flex-start;
}

.ah-filesearch .ah-filesearch__results .ah-file__link .ah-svgicon--icon-lock {
  position: static;
  margin-right: 5px;
}

.ah-filesearch .ah-filesearch__results .ah-file__actions {
  width: 100%;
  margin: 0;
}

.ah-filesearch .ah-filesearch__results .ah-file__actions .ah-svgicon--icon-info {
  margin: 0 -6px;
}

@media all and (min-width: 48em) {
  .ah-filesearch .ah-filesearch__results .ah-file__actions {
    width: 30%;
  }
}

.ah-filesearch__tooltip {
  display: block;
  margin-bottom: 20px;
}

.ah-filesearch__tooltip-icon {
  padding: 6px;
  width: 30px;
  height: 30px;
  position: relative;
  fill: #2E77A1;
  display: block;
  cursor: pointer;
}

.ah-filesearch__table {
  overflow-x: auto;
}

.lity--filesearch .lity-wrap {
  padding: 0;
}

.lity--filesearch .lity-container {
  max-width: 300px;
}

@media all and (min-width: 48em) {
  .lity--filesearch .lity-container {
    max-width: 600px;
  }
}

.filemodal {
  padding: 25px 30px 15px;
}

.filemodal__title {
  padding-right: 30px;
  padding-bottom: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.filemodal__list {
  display: flex;
  flex-wrap: wrap;
}

.filemodal__term {
  padding-right: 5px;
  flex-basis: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filemodal__detail {
  margin: 0;
  flex-basis: 55%;
}

.filemodal__order-form {
  display: flex;
  flex-wrap: wrap;
}

.filemodal__field {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.filemodal__field.ah-forms .ah-forms__label {
  font-weight: 400;
  font-size: 14px;
}

.filemodal__field.ah-forms .ah-forms__input {
  margin-right: 10px;
  width: 54px;
}

.filemodal__input {
  color: #666;
  background-color: #f4f9fd;
}

.filemodal__buttons {
  margin-top: 20px;
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.filemodal__buttons .ah-button {
  margin-top: 10px;
}

.filetable {
  font-size: 16px;
  line-height: 22px;
  width: 100%;
  min-width: 720px;
}

.filetable__row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #313131;
}

.filetable__row--head {
  border-top: 1px solid #DDDDDD;
}

.filetable__column {
  background-color: #ffffff;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.filetable__column:first-child {
  margin-left: 0;
}

.filetable__column:last-child {
  margin-right: 0;
}

.filetable__row--body:nth-child(odd) .filetable__column {
  background-color: rgba(0, 95, 124, 0.1);
}

.filetable__row--head .filetable__column {
  background-color: #004767;
}

.filetable__column--name {
  max-width: 32%;
}

@media (min-width: 768px) {
  .filetable__column--name {
    max-width: 37%;
  }
}

@media (min-width: 1224px) {
  .filetable__column--name {
    max-width: 56%;
  }
}

.filetable__column--versions .filetable__column--name {
  padding-left: 25px;
}

.filetable__column--id {
  max-width: 20%;
}

@media (min-width: 768px) {
  .filetable__column--id {
    max-width: 20%;
  }
}

@media (min-width: 1224px) {
  .filetable__column--id {
    max-width: 16%;
  }
}

.filetable__column--category {
  max-width: 20%;
}

@media (min-width: 768px) {
  .filetable__column--category {
    max-width: 15%;
  }
}

@media (min-width: 1224px) {
  .filetable__column--category {
    max-width: 11%;
  }
}

.filetable__column--date {
  max-width: 18%;
}

@media (min-width: 1224px) {
  .filetable__column--date {
    max-width: 11%;
  }
}

.filetable__column--actions {
  max-width: 10%;
}

@media (min-width: 1224px) {
  .filetable__column--actions {
    max-width: 6%;
  }
}

.filetable__column--versions {
  padding: 0;
  flex-basis: 100%;
}

.filetable__row--body .filetable__column .filetable__column--versions {
  background-color: rgba(255, 255, 255, 0);
  border-bottom: none;
}

.filetable__column-name {
  color: #ffffff;
}

.filetable__row--head .filetable__column-name {
  font-weight: 700;
}

.filetable__sort {
  margin-left: 6px;
  display: flex;
  flex-direction: column;
}

.filetable__sort-trigger {
  padding: 0;
  border: none;
  background-color: transparent;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.filetable__sort-icon {
  fill: #d8d8d8;
  width: 10px;
  height: 10px;
}

.filetable__sort-icon--asc {
  transform: rotate(180deg);
}

[disabled] .filetable__sort-icon {
  fill: #B11A3B;
}

.filetable__trigger {
  display: inline-flex;
  padding: 5px;
  vertical-align: middle;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.filetable__trigger-icon {
  width: 16px;
  height: 16px;
  fill: #2E77A1;
}

.filetable__versions-list {
  display: flex;
  flex-wrap: wrap;
}

.filetable__versions-row {
  flex-grow: 1;
  flex-basis: 100%;
  display: flex;
}

.filetable__versions-row:not(:last-child) {
  margin-bottom: 5px;
}

.filetable__versions-trigger {
  margin: 5px 10px;
  padding-left: 15px;
  font-size: 12px;
  color: #2E77A1;
  background-color: transparent;
  border: none;
  position: relative;
}

.filetable__versions-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #2E77A1;
  transform: none;
}

.filetable__versions-trigger--active::before {
  top: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #2E77A1;
}

.filetable__versions-list:not(:last-child) {
  margin-bottom: 5px;
}

.filetable__body .ah-file__wrap {
  max-width: 64% !important;
}

.filetable__body .ah-file__actions {
  width: 35% !important;
}

.filetable__latest, .filetable__versions-list {
  display: flex;
}

.filetable__order {
  padding: 0;
  background-color: transparent;
  border: none;
  vertical-align: middle;
}

.filetable__order-icon {
  width: 16px;
  height: 16px;
  fill: #2E77A1;
  vertical-align: middle;
}

.filetable__cell {
  flex-grow: 1;
}

.filetable__column--id .filetable__cell,
.filetable__column--category .filetable__cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filetable__column--id .filetable__cell {
  position: relative;
  padding-left: 21px;
}

.filetable__column--actions .filetable__cell {
  text-align: center;
}

.filetable__link {
  color: #444444;
  display: inline-flex;
  position: relative;
  padding-left: 12px;
}

.filetable__link:before {
  background-image: url("data:image/svg+xml,%3Csvg width%3D%2216%22 height%3D%2210%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M14.177.312L8 6.49 1.823.312a1.069 1.069 0 00-1.51 1.511l6.929 6.93c.209.208.485.313.758.311.276 0 .55-.103.758-.312l6.93-6.929a1.069 1.069 0 00-1.511-1.51z%22 fill%3D%22%23B11A3B%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 0.71429em;
  width: 1.14286em;
  content: "";
  display: inline-block;
}

.no-svg .filetable__link:before {
  background-image: url("../media/icons/icon-arrow--colorToReplace.png");
}

.filetable__versions .filetable__link::before {
  content: none;
}

.filetable__link::before {
  transform: rotate(-90deg);
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 9px;
  min-width: 10px;
  line-height: 0;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .filetable__link {
    text-decoration: none;
  }
}

.ah-forms input[type="text"],
.ah-forms input[type="password"],
.ah-forms input[type="number"],
.ah-forms input[type="email"],
.ah-forms select,
.ah-forms textarea {
  background-color: #F4F9FD;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
  color: #666666;
  margin: 0;
  outline: none;
  padding: 11px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.ah-forms input::-webkit-input-placeholder, .ah-forms textarea::-webkit-input-placeholder {
  color: #999999;
}

.ah-forms input::-moz-placeholder, .ah-forms textarea::-moz-placeholder {
  color: #999999;
}

.ah-forms input:-ms-input-placeholder, .ah-forms textarea:-ms-input-placeholder {
  color: #999999;
}

.ah-forms input:-moz-placeholder, .ah-forms textarea:-moz-placeholder {
  color: #999999;
}

.ah-forms input:focus, .ah-forms textarea:focus {
  background-color: #F4F9FD;
  color: #666666;
  outline: 1px solid #007ca3;
}

.ah-forms select {
  cursor: pointer;
  padding: 9px 11px;
  box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.ah-forms select::-ms-expand {
  display: none;
}

.ah-forms select:focus {
  outline: 1px solid #007ca3;
  background-color: #F4F9FD;
  color: #666666;
}

.ah-forms select:focus::-ms-value {
  background-color: #F4F9FD;
  color: #666666;
}

.ah-forms label {
  display: block;
  margin-bottom: 30px;
  user-select: none;
  cursor: pointer;
}

.ah-forms label[disabled] {
  opacity: 0.5;
}

.ah-forms .ah-forms__label {
  font-weight: 700;
  font-size: 12px;
  line-height: inherit;
  display: block;
  margin-bottom: 5px;
}

.ah-forms .ah-forms__input input {
  border: 2px solid transparent;
}

.ah-forms .ah-forms__select {
  position: relative;
}

.ah-forms .ah-forms__select select {
  border: 2px solid transparent;
}

.ah-forms .ah-forms__select:before {
  content: "\25BE";
  position: absolute;
  color: #999999;
  font-size: 25px;
  right: 4px;
  line-height: 0;
  padding: 10px 7px 18px 7px;
  bottom: 4px;
  pointer-events: none;
}

.ah-forms .ah-forms__checkbox,
.ah-forms .ah-forms__radio {
  position: relative;
}

.ah-forms .ah-forms__checkbox input,
.ah-forms .ah-forms__radio input {
  position: absolute;
  opacity: 0;
}

.ah-forms .ah-forms__checkbox input:focus ~ .ah-forms__label:before,
.ah-forms .ah-forms__radio input:focus ~ .ah-forms__label:before {
  outline: 1px solid #007ca3;
}

.ah-forms .ah-forms__checkbox .ah-forms__label,
.ah-forms .ah-forms__radio .ah-forms__label {
  margin-left: 32px;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: inherit;
}

.ah-forms .ah-forms__checkbox .ah-forms__label:before,
.ah-forms .ah-forms__radio .ah-forms__label:before {
  box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
  background-color: #F1F8FE;
  content: '';
  display: inline-block;
  height: 24px;
  left: 0;
  margin-right: 10px;
  position: absolute;
  top: -1px;
  vertical-align: middle;
  width: 24px;
}

.ah-forms .ah-forms__checkbox .ah-forms__label:after,
.ah-forms .ah-forms__radio .ah-forms__label:after {
  position: absolute;
  content: '';
}

.ah-forms .ah-forms__checkbox input[type="checkbox"]:checked ~ .ah-forms__label:before {
  background-color: #4C97BE;
}

.ah-forms .ah-forms__checkbox input[type="checkbox"]:checked ~ .ah-forms__label:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2224%22 height%3D%2224%22%3E%3Cg fill%3D%22%23FFFFFF%22 fill-rule%3D%22evenodd%22%3E%3Cpath d%3D%22M4.318 11.318a1.502 1.502 0 012.122 0l4.243 4.243a1.5 1.5 0 01-2.122 2.121L4.318 13.44a1.5 1.5 0 010-2.122z%22%2F%3E%3Cpath d%3D%22M20.156 6.343a1.5 1.5 0 010 2.121l-9.192 9.192a1.5 1.5 0 11-2.121-2.121l9.192-9.192a1.5 1.5 0 012.121 0z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 1.71429em;
  width: 1.71429em;
}

.no-svg .ah-forms .ah-forms__checkbox input[type="checkbox"]:checked ~ .ah-forms__label:after {
  background-image: url("../media/icons/check--colorToReplace.png");
}

.ah-forms .ah-forms__checkbox .ah-forms__label:after {
  background-position: center;
  background-size: 80%;
  height: 24px;
  left: 0;
  top: -1px;
  width: 24px;
}

.ah-forms .ah-forms__radio input[type="radio"]:checked ~ .ah-forms__label:before {
  background-color: #F1F8FE;
}

.ah-forms .ah-forms__radio input[type="radio"]:checked ~ .ah-forms__label:after {
  background-color: #4C97BE;
}

.ah-forms .ah-forms__radio .ah-forms__label:before {
  border-radius: 50%;
}

.ah-forms .ah-forms__radio .ah-forms__label:after {
  height: 12px;
  left: 6px;
  top: 5px;
  width: 12px;
  border-radius: 50%;
}

.ah-forms .ah-forms__datepicker div,
.ah-forms .ah-forms__input div {
  display: flex;
  align-items: center;
}

.ah-forms .ah-forms__datepicker svg,
.ah-forms .ah-forms__input svg {
  width: 28px;
  height: 28px;
  fill: #4C97BE;
  margin: 0 0 0 5px;
}

.ah-forms .ah-forms__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ah-forms .ah-forms__row > label {
  margin-right: 20px;
}

.ah-forms .ah-forms__error-msg {
  color: #4C97BE;
  font-size: 24px;
  margin-bottom: 30px;
}

.ah-forms .ah-forms__error.ah-forms__input input {
  border: 2px solid red;
}

.ah-forms .ah-forms__error.ah-forms__select select {
  border: 2px solid red;
}

.ah-forms .ah-forms__buttons {
  margin: 20px 0 0 0;
  text-align: center;
  vertical-align: middle;
}

.ah-forms .ah-forms__buttons > * {
  margin: 0 5px 10px;
}

.ah-forms .ah-forms__buttons.ah-forms__buttons--right {
  text-align: right;
}

.ah-forms .ah-forms__buttons.ah-forms__buttons--right > * {
  margin: 0 0 10px 10px;
}

.ah-forms .ah-forms__buttons.ah-forms__buttons--left {
  text-align: center;
}

.ah-forms .ah-forms__buttons.ah-forms__buttons--left > * {
  margin: 0 10px 10px 0;
}

.ah-forms.ah-forms--filter {
  padding: 12px;
  background-color: rgba(216, 216, 216, 0.15);
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.ah-forms.ah-forms--filter .ah-forms__row {
  display: block;
  text-align: center;
}

.ah-forms.ah-forms--filter .ah-forms__row label {
  margin: 0 0 20px 0;
}

.ah-forms.ah-forms--filter .ah-forms__row label .ah-forms__label {
  display: none;
}

@media all and (min-width: 48em) {
  .ah-forms.ah-forms--filter .ah-forms__row {
    display: flex;
    justify-content: flex-end;
  }
  .ah-forms.ah-forms--filter .ah-forms__row label {
    margin: 0 0 0 20px;
  }
  .ah-forms.ah-forms--filter .ah-forms__row .ah-button {
    margin: 0 0 0 20px;
  }
}

.ui-datepicker {
  background: #FFFFFF;
  margin-top: 10px;
  -webkit-box-shadow: 0 0.5em 5em rgba(68, 68, 68, 0.3);
  -moz-box-shadow: 0 0.5em 5em rgba(68, 68, 68, 0.3);
  box-shadow: 0 0.5em 5em rgba(68, 68, 68, 0.3);
}

.ui-datepicker a {
  text-decoration: none;
}

.ui-datepicker a.ui-datepicker-prev, .ui-datepicker a.ui-datepicker-next {
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  background: #4C97BE;
}

.ui-datepicker .ui-datepicker-title {
  display: flex;
  position: relative;
}

.ui-datepicker .ui-datepicker-title:before, .ui-datepicker .ui-datepicker-title:after {
  content: "\25BE";
  position: absolute;
  color: #FFFFFF;
  font-size: 20px;
  right: 105px;
  top: 8px;
  pointer-events: none;
}

.ui-datepicker .ui-datepicker-title:after {
  right: 14px;
}

.ui-datepicker .ui-datepicker-title select {
  -webkit-border-radius: 0px;
  margin: 8px;
  width: 100%;
  background: #2E77A1;
  outline: none;
  border: 1px solid #2E77A1;
  color: #FFFFFF;
  padding: 5px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
  width: 50%;
  margin-left: 0;
}

.ui-datepicker .ui-datepicker-title select::-ms-expand {
  display: none;
}

.ui-datepicker .ui-datepicker-title select:focus::-ms-value {
  background-color: white;
  color: #000;
}

.ui-datepicker .ui-datepicker-calendar th {
  border: none;
  text-align: center;
  background: #4C97BE;
  color: #FFFFFF;
  padding: 2px 12px;
  font-weight: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: inherit;
}

.ui-datepicker .ui-datepicker-calendar td {
  border: 1px solid #DDDDDD;
  text-align: center;
  padding: 0;
}

.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-week-end:last-child {
  background: #F4F9FD;
}

.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-today {
  background: #F1F8FE;
}

.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day {
  background: #B11A3B !important;
}

.ui-datepicker .ui-datepicker-calendar td a {
  color: #444444;
  display: block;
  padding: 6px;
}

.ui-datepicker .ui-datepicker-calendar td a:hover, .ui-datepicker .ui-datepicker-calendar td a:focus-within {
  background: #B11A3B;
  color: #FFFFFF;
}

.ui-datepicker .ui-datepicker-calendar td a.ui-state-active {
  color: #FFFFFF;
}

.ah-contactsearch {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-contactsearch {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-contactsearch {
    padding: 0;
  }
}

.ah-contactsearch .ah-contactsearch__results {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.ah-contactsearch .ah-contactsearch__results .ah-contactsearch__result {
  margin: 0 40px 20px;
  text-align: center;
}

.ah-contactsearch.ah-contactsearch--centered .ah-forms--filter {
  padding: 0 12px;
}

.ah-contactsearch.ah-contactsearch--centered .ah-forms__row {
  justify-content: center;
}

.ah-contactsearch.ah-contactsearch--centered .ah-forms__row .ah-forms__input {
  margin: 12px;
}

.ah-contactsearch.ah-contactsearch--centered .ah-forms__row .ah-button {
  margin: 12px;
}

.ah-contactsearch.ah-contactsearch--centered .ah-contactsearch__result {
  margin: 0 20px 20px;
}

.ah-cug {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-cug {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-cug {
    padding: 0;
  }
}

.ah-cug .error {
  color: #B11A3B;
}

.ah-eventbooking {
  position: relative;
  margin: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-eventbooking {
    margin: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-eventbooking {
    margin: 0;
  }
}

.ah-eventbooking__add {
  margin-top: 30px;
}

.ah-eventbooking__remove {
  margin-top: 30px;
}

.ah-eventbooking__hint {
  margin: 0 0 30px;
}

.ah-eventbooking .ah-forms__grp {
  position: relative;
}

.ah-eventbooking .ah-forms__grp:not(:last-child) {
  margin-bottom: 30px;
}

.ah-eventbooking .ah-forms__grp:last-of-type:not(:first-of-type) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #999;
}

.ah-eventbooking .ah-forms__field-group-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #999;
}

.ah-eventbooking .ah-forms__hint {
  font-size: 12px;
  color: #666;
}

.ah-eventbooking .ah-forms__input input {
  border: 2px solid transparent;
}

.ah-eventbooking .ah-forms__input.has-error input {
  border-color: red;
}

.ah-eventbooking .ah-forms__radio {
  display: inline-block;
}

.ah-eventbooking .ah-forms__group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid transparent;
}

.ah-eventbooking .ah-forms__group > *:not(:last-child) {
  margin-bottom: 30px;
}

.ah-eventbooking .ah-forms__group--inline {
  flex-direction: row;
}

.ah-eventbooking .ah-forms__group--inline > * {
  margin-bottom: 0 !important;
  margin-right: 30px;
}

.ah-eventbooking .ah-forms__group--inline > *:not(:last-child) {
  margin-bottom: 0;
}

.ah-eventbooking .ah-forms__field {
  position: relative;
}

.ah-eventbooking .ah-forms__field:not(:last-child) {
  margin-bottom: 30px;
}

.ah-eventbooking .ah-forms__field--disabled {
  opacity: .5;
}

.ah-eventbooking .ah-forms__field--select.has-error .ah-forms__select select {
  border-color: red;
}

.ah-eventbooking .ah-forms__field--radio.has-error .ah-forms__group {
  border-color: red;
}

.ah-eventbooking .ah-forms__field--options .ah-forms__field--checkboxgroup {
  margin-left: 30px;
}

.ah-eventbooking .ah-forms__field--date .ah-forms__input {
  display: flex;
  align-items: center;
}

.ah-eventbooking .ah-forms__field--date .ah-svgicon {
  margin-left: 5px;
  width: 28px;
  height: 28px;
  fill: #4C97BE;
}

.ah-eventbooking .ah-forms__field--date .ah-svgicon > * {
  pointer-events: none;
}

.ah-eventbooking .ah-forms__field--textarea {
  max-width: 720px;
}

.ah-eventbooking .ah-forms__field-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.ah-eventbooking .ah-forms__field-row > * {
  flex: 0 0 100%;
  max-width: 350px;
  margin-bottom: 30px;
}

.ah-eventbooking .ah-forms__field-row > *:not(:last-child) {
  margin-right: 25px;
}

@media all and (min-width: 87.5em) {
  .ah-eventbooking .ah-forms__field-row > *:not(:last-child) {
    margin-right: 30px;
  }
}

@media all and (min-width: 48em) {
  .ah-eventbooking .ah-forms__field-row > * {
    flex: 0 0 50%;
  }
}

.ah-eventbooking .ah-forms__error {
  position: absolute;
  bottom: -18px;
  font-size: 12px;
  color: red;
}

.ah-eventbooking .ah-forms__field-box {
  margin-bottom: 30px;
  border-bottom: 1px solid #999;
}

.ah-eventbooking h6 {
  margin: 0 0 15px 0;
}

.ah-eventbooking .ah-forms__input,
.ah-eventbooking .ah-forms__select {
  max-width: 350px;
}

.ah-eventbooking .ah-eventbooking__form {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #999999;
}

.ah-eventbooking .ah-eventbooking__topic {
  margin-left: 30px;
}

.ah-eventbooking .ah-eventbooking__2col label {
  width: 350px;
}

.ah-eventbooking__persons {
  position: relative;
}

.ah-eventbooking__persons.has-error {
  border: 2px solid red;
}

.ah-eventbooking .ah-forms__input {
  position: relative;
}

.ah-eventbooking .ah-forms__input .has-error {
  border-color: red;
}

.ah-eventbooking .ah-forms__label {
  flex-basis: 100%;
}

.ah-eventbooking .has-error + .ah-forms__label::before {
  border: 2px solid red;
  left: -2px;
  top: -1px;
}

.ah-eventbooking textarea {
  display: block;
}

.ah-eventbooking .ah-eventbooking__submit p {
  font-size: 12px;
  color: #666666;
}

.ah-eventbooking .ah-eventbooking__account {
  margin-bottom: 30px;
}

@media all and (max-width: 35.49em) {
  .ah-eventbooking .ah-forms .ah-forms__row > label:not(.ah-forms__radio) {
    margin-right: 0;
  }
}

.ah-eventbooking__error {
  color: #B11A3B;
}

.ah-eventbooking .ah-forms__message {
  position: absolute;
  bottom: -18px;
  font-size: 12px;
  display: none;
}

.ah-eventbooking .is-invalid {
  color: red;
  display: block;
}

.ah-anchor {
  height: 0;
  overflow: hidden;
}

/**
 * brokerImpressum - module styling
 *
 * @author Damian Szczypka
 * @copyright Unic AG
 */
.ah-brokerimpressum {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-brokerimpressum {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-brokerimpressum {
    padding: 0;
  }
}

.ah-brokerimpressum__agency {
  font-weight: 700;
}

.ah-brokerimpressum__address {
  font-size: 14px;
  line-height: 1.29;
  margin-bottom: 1em;
  font-style: normal;
}

@media all and (min-width: 87.5em) {
  .ah-brokerimpressum__address {
    line-height: 1.43;
  }
}

.ah-brokerimpressum__label {
  font-weight: 700;
  margin: 0;
}

.ah-brokerimpressum__label--light {
  font-weight: 400;
}

.ah-brokerimpressum__label-item:first-child::before, .ah-brokerimpressum__label-item:not(:last-child)::after {
  content: " / ";
}

.ah-brokerimpressum__tax {
  margin-bottom: 0;
}

.ah-brokerimpressum__membership .ah-brokerimpressum__label {
  margin-bottom: 0;
}

.ah-brokerimpressum__membership .ah-brokerimpressum__content {
  margin-top: 0;
}

.ah-brokerimpressum__court {
  margin-bottom: 0;
}

.ah-brokerimpressum__regs-list {
  padding: 0;
  list-style: none;
}

.ah-brokerimpressum__regs-id:first-child::before, .ah-brokerimpressum__regs-id:not(:last-child)::after {
  content: " / ";
}

.ah-brokerimpressum__ihks .ah-brokerimpressum__label {
  margin-bottom: 1em;
}

.ah-brokerimpressum__ihk {
  display: block;
  margin-bottom: 1em;
}

.ah-brokerimpressum__directors .ah-brokerimpressum__label {
  margin: 1em 0;
}

.ah-brokerimpressum__directors-list {
  padding: 0;
  list-style: none;
}

.ah-brokerimpressum__information .ah-brokerimpressum__label {
  margin-bottom: 0;
}

.ah-brokerimpressum__information-address {
  margin-top: 0;
}

.ah-brokerimpressum__complaints-list {
  padding: 0;
  list-style: none;
}

.ah-brokerimpressum__complaints-item {
  margin-bottom: 1em;
}

/**
 * backToTop - module styling
 *
 * @author Damian Szczypka
 * @copyright Unic AG
 */
.ah-backtotop {
  display: none;
  background-color: #dd023a;
  border: 2px solid #dd023a;
  border-radius: 50%;
  bottom: 150px;
  padding: 0;
  position: fixed;
  width: 36px;
  height: 36px;
  z-index: 1000;
}

.ah-backtotop.is-keyboard-focus {
  outline-color: #007ca3;
}

.ah-backtotop__icon {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .ah-backtotop {
    bottom: 105px;
  }
}

@media (min-width: 1224px) {
  .ah-backtotop {
    bottom: 107px;
  }
}

.ah-filesorder {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 48em) {
  .ah-filesorder {
    padding: 0 20px;
  }
}

@media all and (min-width: 87.5em) {
  .ah-filesorder {
    padding: 0;
  }
}

.ah-filesorder__meta {
  margin-bottom: 15px;
}

.ah-filesorder__content {
  display: flex;
}

.ah-filesorder__image {
  display: none;
}

@media all and (min-width: 87.5em) {
  .ah-filesorder__image {
    display: inline-flex;
  }
}

.ah-filesorder__cart {
  margin: 30px 0 45px;
}

.ah-filesorder__cart .ah-shoppingcart:not(:last-child) {
  margin-bottom: 20px;
}

.ah-filesorder__content .ah-forms {
  width: 100%;
}

.ah-filesorder__content fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.ah-filesorder__form-wrapper:disabled {
  position: relative;
}

.ah-filesorder__form-wrapper:disabled::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(228, 241, 249, 0.5);
  z-index: 1;
}

.ah-filesorder__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.ah-filesorder__group:not(:first-child) {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.ah-filesorder__group-content {
  flex: 0 0 100%;
  overflow: hidden;
}

.ah-filesorder__group-heading {
  margin-bottom: 15px;
}

.ah-filesorder__row {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  flex-grow: 1;
}

@media all and (min-width: 48em) {
  .ah-filesorder__row {
    margin: 0 -10px 20px;
  }
}

.ah-filesorder__column {
  flex-grow: 1;
  flex-basis: 100%;
  display: flex;
  align-items: center;
}

@media all and (min-width: 48em) {
  .ah-filesorder__column {
    padding: 0 10px;
    flex-basis: 0%;
  }
}

.ah-filesorder__column--inline {
  display: inline-flex;
  flex: 0 0 auto;
}

.ah-filesorder__column:not(:last-child) {
  margin-bottom: 20px;
}

@media all and (min-width: 48em) {
  .ah-filesorder__column:not(:last-child) {
    margin-bottom: 0;
  }
}

.ah-filesorder__column .ah-forms__input,
.ah-filesorder__column .ah-forms__select,
.ah-filesorder__column .ah-forms__checkbox {
  margin: 0;
}

.ah-filesorder__column input {
  border: 2px solid transparent !important;
}

.ah-filesorder__column input.has-error {
  border-color: #f00 !important;
}

.ah-filesorder__input, .ah-filesorder__select {
  width: 100%;
}

.ah-filesorder__select select {
  border: 2px solid transparent;
}

.ah-filesorder__select select.has-error {
  border-color: red;
}

.ah-filesorder__radio-group {
  display: flex;
  flex-wrap: wrap;
}

.ah-filesorder__radio-group .ah-forms__radio {
  margin-right: 20px;
}

.ah-filesorder__checkbox-group .ah-forms__label {
  max-width: calc(100% - 60px);
}

@media all and (min-width: 35.5em) {
  .ah-filesorder__checkbox-group .ah-forms__label {
    max-width: none;
  }
}

@media all and (min-width: 48em) {
  .ah-filesorder__input [name="brokerCode"] {
    max-width: 250px;
  }
}

.ah-filesorder__broker {
  display: flex;
}

.ah-filesorder__broker > div {
  display: flex;
  align-items: center;
}

.ah-filesorder__broker > div .ah-forms__radio {
  margin: 0 20px 0 0;
}

.ah-filesorder__broker .ah-filesorder__input {
  visibility: hidden;
}

.ah-filesorder__broker .ah-filesorder__input--visible {
  visibility: visible;
}

.ah-filesorder__buttons {
  margin-left: auto;
}

.ah-filesorder__buttons .ah-button:not(:last-child) {
  margin-right: 20px;
}

.ah-filesorder .ah-forms__message {
  position: absolute;
  bottom: -18px;
  font-size: 12px;
  display: none;
}

.ah-filesorder .ah-forms__message.is-invalid {
  color: red;
  display: block;
}

.ah-filesorder .ah-forms__message.is-valid {
  color: green;
}

.ah-quickstart__list {
  display: inline-flex;
  position: relative;
  height: 45px;
}

.ah-quickstart__item {
  font-size: 14px;
  line-height: 18px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-top: 3px solid rgba(255, 255, 255, 0);
  background-color: rgba(216, 216, 216, 0.8);
  color: #313131;
  border-radius: 3px 3px 0 0;
  padding: 0 15px;
}

.ah-quickstart__item:not(:last-child) {
  border-right: 1px solid #ffffff;
}

.ah-quickstart__item.is-active {
  color: #be0d3e;
  border-top: 3px solid #be0d3e;
}

@media (min-width: 768px) {
  .ah-quickstart__item.is-active {
    font-weight: 500;
    background: rgba(216, 216, 216, 0.15);
  }
}

.ah-quickstart__icon {
  width: 18px;
  height: 18px;
  margin-right: 15px;
  fill: currentColor;
}

.ah-quickstart__panel {
  padding: 40px 10px 30px;
  background: rgba(216, 216, 216, 0.15);
  display: none;
}

.ah-quickstart__panel.is-active {
  display: block;
}

@media (min-width: 768px) {
  .ah-quickstart__panel {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ah-quickstart__field:not(:last-child) {
  margin-bottom: 15px;
}

.ah-quickstart__field .ah-forms__select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ah-quickstart__fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.ah-quickstart__radiogroup {
  display: flex;
}

.ah-quickstart__radiogroup .ah-forms__radio:not(:last-child) {
  margin-right: 15px;
}

.ah-rss:not([hidden]) {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .ah-rss__wrapper {
    column-count: 3;
    column-gap: 20px;
  }
}

@media (min-width: 1224px) {
  .ah-rss__wrapper {
    position: relative;
  }
}

.ah-rss__highlight {
  font-size: 14px;
  line-height: 18px;
  background-color: #be0d3e;
  border-bottom-left-radius: 30px;
  color: #ffffff;
  padding: 6px 10px 6px 20px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  right: 0;
  z-index: 1;
}

.ah-rss__title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 1224px) {
  .ah-rss__title {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
  }
}

@media (min-width: 1224px) {
  .ah-rss__subtitle {
    display: inline-block;
    min-width: 60%;
  }
}

.ah-rss__item:not([hidden]) {
  display: block;
  position: relative;
  padding-bottom: 10px;
  padding-top: 10px;
  break-inside: avoid;
  page-break-inside: avoid;
  page-break-before: always;
}

.ah-rss__item:not([hidden]) .ah-image {
  position: relative;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .ah-rss__item:not([hidden]) {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1224px) {
  .ah-rss__item:not([hidden]) {
    position: relative;
    z-index: 1;
  }
}

.ah-rss__item-bg-wrapper {
  height: 0;
  overflow: hidden;
  padding-top: 16.97128%;
  position: absolute;
  bottom: 2px;
  width: 100%;
}

.ah-rss__item-bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(1.01);
}

.ah-rss__imgwrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ah-rss__item__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ah-rss__item__text {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 18px;
}

.ah-rss__item__text:last-child {
  margin-bottom: 0;
}

@media (min-width: 1224px) {
  .ah-rss__item__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-rss p {
  font-size: 14px;
  line-height: 18px;
}

.ah-rss p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1224px) {
  .ah-rss p {
    font-size: 16px;
    line-height: 22px;
  }
}

.ah-rss__item--link {
  color: inherit;
}

.ah-rss__item--link:hover, .ah-rss__item--link:focus-within {
  text-decoration: inherit;
}

.ah-rss__item__inner {
  box-shadow: 0 1px 3px rgba(0, 0, 0, .17), 0 1px 6px rgba(0, 0, 0, .1);
  background-color: #ffffff;
  width: 100%;
  min-height: 10px;
}

@media (min-width: 768px) {
  .ah-rss__item__inner {
    display: flex;
    flex-direction: column;
  }
}

.ah-rss__item__content {
  position: relative;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .ah-rss__item__content {
    display: flex;
    flex-direction: column;
  }
}

.ah-rss__item__content {
  padding: 15px 20px 30px;
}

.ah-rss__link {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: auto;
  display: flex;
  align-items: center;
}

.ah-rss__link .ah-svgicon {
  width: 22px;
  height: 15px;
  fill: #be0d3e;
  margin-left: 10px;
}

.ah-rss .ah-richtext a:before {
  content: none;
}

.ah-rss__more {
  margin: 15px auto 0;
}

/*
- floating label
- form-control farben anpassen
- buttons aus main page
- filter section kleiner.
 */
.ah-multiselect {
  position: relative;
}

.ah-multiselect__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.85rem 0.65rem 1.25rem;
  background: #eaf4f7;
  border: 1px solid #007ca3;
  border-radius: 8px;
  color: #000;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.ah-multiselect__button::after {
  position: absolute;
  right: 0.7rem;
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0.25rem;
}

.ah-multiselect__button:hover, .ah-multiselect__button:focus {
  border-color: #1976D2;
}

.ah-multiselect__button:disabled {
  opacity: 0.6;
  background: #eaeaea;
}

.ah-multiselect__button[aria-expanded='true'] {
  background: #c9e2ea;
}

.ah-multiselect__button--active {
  background: #c9e2ea;
  font-weight: 600;
}

.ah-multiselect__button--active .ah-multiselect__button-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.7rem;
}

.ah-multiselect__selected-text {
  white-space: nowrap;
  max-width: 8rem;
  min-width: 2rem;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ah-multiselect__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 320px;
  max-width: 400px;
  background: #FFFFFF;
  border: 1px solid #D0D7DD;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 1rem;
  z-index: 100;
}

.ah-multiselect__options {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}

.ah-multiselect__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #0A2A43;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
}

.ah-multiselect__option:last-child {
  margin-bottom: 0;
}

.ah-multiselect__option:hover, .ah-multiselect__option:focus {
  background: #F8F9FA;
  border-color: #D0D7DD;
  outline-offset: -4px;
}

[aria-pressed='true'] .ah-multiselect__option {
  background: #E3F2FD;
  border-color: #1976D2;
}

.ah-multiselect__option-label {
  flex: 1;
  font-weight: 500;
}

.ah-multiselect__option-count {
  color: #6C7A89;
  font-size: 0.9rem;
  margin: 0 0.5rem;
}

.ah-multiselect__option-check {
  margin: 0 0.5rem 0 -0.5rem;
  color: #1976D2;
  font-weight: bold;
  font-size: 1.1rem;
  visibility: hidden;
}

[aria-pressed='true'] .ah-multiselect__option-check {
  visibility: inherit;
}

.ah-multiselect__actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #D0D7DD;
}

.ah-multiselect__action {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ah-multiselect__action--secondary {
  background: #FFFFFF;
  border: 1px solid #D0D7DD;
  color: #4A6478;
}

.ah-multiselect__action--secondary:hover:not(:disabled) {
  border-color: #4A6478;
  color: #0A2A43;
}

.ah-multiselect__action--secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ah-multiselect__action--primary {
  background: #be0d3e;
  border: 1px solid #be0d3e;
  color: #FFFFFF;
}

.ah-multiselect__action--primary:hover {
  background: #8A152E;
}

.js .ah-jobsearch--wait-hydration {
  visibility: hidden;
}

.ah-jobsearch__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ah-jobsearch__hero {
  padding: 3rem 0;
}

.ah-jobsearch__hero-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ah-jobsearch__headline {
  margin: 0 0 2rem 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0A2A43;
  text-align: center;
}

.ah-jobsearch__form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.ah-jobsearch__search {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.ah-jobsearch__search-icon, .ah-jobsearch__search-input-label {
  position: absolute;
  margin-inline: 10px;
  flex-shrink: 0;
  pointer-events: none;
}

.ah-jobsearch__search-icon {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%234A6478" stroke-width="2"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>') center/contain no-repeat;
}

.ah-jobsearch__search-input-label {
  left: 30px;
  transition: all 0.3s;
}

:where(.ah-jobsearch__search--has-value, .ah-jobsearch__search:focus-within) .ah-jobsearch__search-input-label {
  transform: translateY(-0.9rem);
  font-size: 85%;
  opacity: 0.7;
}

.ah-jobsearch__search-input {
  flex: 1;
  background: transparent;
  padding: 1.5rem 1rem 0.8rem calc(1rem + 25px);
  font-size: 1rem;
  color: #0A2A43;
  outline: none;
  background: #eaf4f7;
  border: 1px solid #007ca3;
  border-radius: 8px;
  transition: all 0.2s;
}

:where(.ah-jobsearch__search--has-value) .ah-jobsearch__search-input, .ah-jobsearch__search-input:focus {
  background: #c9e2ea;
  border-color: #1976D2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.ah-jobsearch__toolbar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.ah-jobsearch__filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
  border-radius: 8px;
}

@media (max-width: 460px) {
  .ah-jobsearch__filters {
    flex-direction: column;
  }
  .ah-jobsearch__filters .ah-button, .ah-jobsearch__filters .ah-multiselect, .ah-jobsearch__filters .ah-multiselect__button {
    width: 100%;
  }
}

.ah-jobsearch__toolbar-reset {
  padding: 0.65rem 1.25rem;
  background: #FFFFFF;
  border: 2px solid #be0d3e;
  border-radius: 8px;
  color: #be0d3e;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ah-jobsearch__toolbar-reset:hover:not(:disabled) {
  background: #be0d3e;
  color: #FFFFFF;
}

.ah-jobsearch__toolbar-reset:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ah-jobsearch__chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.ah-jobsearch__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #be0d3e;
  color: #FFFFFF;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: outline-color 0.2s;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border: 1px solid transparent;
}

.ah-jobsearch__chip:hover, .ah-jobsearch__chip:focus {
  outline-color: #be0d3e;
}

.ah-jobsearch__results-summary-reset {
  align-self: flex-start;
}

.ah-jobsearch__results-summary-heading {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A2A43;
}

.ah-jobsearch__body {
  padding: 2.5rem 0;
}

.ah-jobsearch__summary {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A2A43;
}

.ah-jobsearch__error {
  padding: 1rem 1.5rem;
  background: #FEE;
  border: 1px solid #be0d3e;
  border-radius: 8px;
  color: #be0d3e;
  margin-bottom: 1.5rem;
}

.ah-jobsearch__results {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ah-jobsearch__card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: #FFFFFF;
  border: 1px solid #D0D7DD;
  border-radius: 12px;
  transition: all 0.2s;
}

.ah-jobsearch__card:has(.ah-jobsearch__cta) {
  cursor: pointer;
}

.ah-jobsearch__card:hover, .ah-jobsearch__card:focus-within {
  border-color: #1976D2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.ah-jobsearch__card-main {
  flex: 1;
  min-width: 0;
}

.ah-jobsearch__card-title {
  margin: 0 0 1.25rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0A2A43;
  line-height: 1.4;
}

.ah-jobsearch__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.ah-jobsearch__card-title a:hover, .ah-jobsearch__card-title a:focus {
  color: #1976D2;
  outline: none;
}

.ah-jobsearch__card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ah-jobsearch__card-meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1976D2;
  margin-bottom: 0.35rem;
}

.ah-jobsearch__card-meta-value, .ah-jobsearch__card-meta-values {
  display: block;
  font-size: 0.95rem;
  color: #0A2A43;
  line-height: 1.4;
}

.ah-jobsearch__card-action {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}

.ah-jobsearch__no-results {
  padding: 3rem 2rem;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #D0D7DD;
  border-radius: 12px;
}

.ah-jobsearch__no-results h2 {
  margin: 0 0 1rem 0;
  color: #0A2A43;
}

.ah-jobsearch__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.ah-jobsearch__pagination-button {
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 0.75rem;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  color: #0A2A43;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ah-jobsearch__pagination-button:focus {
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.ah-jobsearch__pagination-button:focus, .ah-jobsearch__pagination-button:hover:not(:disabled):not(.ah-jobsearch__pagination-button--current), .ah-jobsearch__pagination-button--current {
  background: #be0d3e;
  border-color: #be0d3e;
  color: #FFFFFF;
}

.ah-jobsearch__pagination-button:focus:hover, .ah-jobsearch__pagination-button:hover:not(:disabled):not(.ah-jobsearch__pagination-button--current):hover, .ah-jobsearch__pagination-button--current:hover {
  background: #a60b36;
  border-color: #a60b36;
}

.ah-jobsearch__pagination-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #FFFFFF;
}

.ah-jobsearch__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1023px) {
  .ah-jobsearch__hero-card {
    padding: 2rem;
  }
  .ah-jobsearch__card-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ah-jobsearch__form {
    flex-direction: column;
  }
  .ah-jobsearch__cta--primary {
    width: 100%;
  }
  .ah-jobsearch__card {
    flex-direction: column;
    gap: 1.5rem;
  }
  .ah-jobsearch__card-meta {
    grid-template-columns: 1fr;
  }
  .ah-jobsearch__card-action {
    width: 100%;
  }
  .ah-jobsearch__card-action .ah-jobsearch__cta {
    width: 100%;
  }
  .ah-jobsearch__facet-panel {
    position: static;
    margin-top: 0.75rem;
    width: 100%;
    max-width: none;
  }
  .ah-jobsearch__pagination-button {
    min-width: 36px;
    height: 36px;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 599px) {
  .ah-jobsearch__container {
    padding: 0 1rem;
  }
  .ah-jobsearch__hero {
    padding: 2rem 0;
  }
  .ah-jobsearch__hero-card {
    padding: 1.5rem;
  }
  .ah-jobsearch__body {
    padding: 2rem 0;
  }
  .ah-jobsearch__card {
    padding: 1.5rem;
  }
}
