@charset "UTF-8";
/**
* 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: "Arial", 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.
 */
[hidden] {
  display: none;
}

/**
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
*/
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: 600;
}

/**
* 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.7407407407em 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 {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

/**
*
* Global
*
**/
html {
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-moz-selection {
  background: #66b360;
  color: #fff;
}

::selection {
  background: #66b360;
  color: #fff;
}

body {
  position: relative;
  min-height: 100%;
  background: #fff;
}
@media only print {
  body {
    background: none;
    padding-top: 0 !important;
  }
}

img, picture {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

.region--content img {
  border: 1px solid #e6e6e6;
  background: #fff;
}

figure {
  margin: 0;
}
figure.clickable {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
figure figcaption {
  text-align: left;
  padding-top: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25em;
}

.clickable {
  cursor: pointer;
}

@media only print {
  #__bs_notify__ {
    display: none;
  }
}

.clear-both {
  clear: both;
}

@media (max-width: 47.9375em) {
  .hidden-phone {
    display: none !important;
  }
}

@media (min-width: 64.0625em) {
  .hidden-desktop {
    display: none !important;
  }
}

@media only print {
  #block-ivory-content {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.25em;
    overflow: hidden;
  }
}

.only-show-print {
  display: none;
}
@media only print {
  .only-show-print {
    display: block;
  }
}

/**
* Typography: Headings, body text, lists, code, and more for a versatile and durable typography system.
*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25em;
  color: #575757;
}
.wf-active body {
  font-family: "Arial", sans-serif;
}
@media (max-width: 64em) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.25em;
  }
}

b, strong, .strong {
  font-weight: 600;
}

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

a {
  color: #114775;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
@media only print {
  a[href]:after {
    display: block;
    font-style: italic;
    content: " [" attr(href) "]";
    text-decoration: none;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.25em;
    opacity: 0.75;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0 0 1.5em;
  color: #114775;
}

h1 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.25em;
  text-align: left;
}

h2 {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.25em;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.25em;
}

h4 {
  font-weight: 600;
}

blockquote {
  margin: 0 60px 2em 60px;
  font-style: italic;
  border-left: 2px solid #cbcbcb;
  border-right: 2px solid #cbcbcb;
  color: rgb(112.5, 112.5, 112.5);
  position: relative;
  padding: 0.6em 1em;
  background-color: white;
}
blockquote:before {
  color: rgb(163.5, 163.5, 163.5);
  content: "„";
  position: absolute;
  right: 100%;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.25em;
  line-height: 0;
  height: 40px;
  padding: 0 10px 20px 0;
  vertical-align: top;
  margin-top: -12px;
}
blockquote:after {
  color: rgb(163.5, 163.5, 163.5);
  content: "„";
  position: absolute;
  left: 100%;
  bottom: 0;
  font-size: 50px;
  font-size: 5rem;
  line-height: 1.25em;
  line-height: 0;
  height: 40px;
  padding: 0 0 20px 10px;
  vertical-align: top;
  margin-top: -12px;
}

#content ul {
  padding-left: 1em;
}
#content ul li {
  padding-bottom: 0.4em;
}

/**
 * Form elements: Inputs, buttons, etc.
 */
form {
  max-width: 100%;
}

fieldset,
fieldset.form-item {
  margin-bottom: 1.5em;
}
label,
input,
button,
select,
textarea {
  vertical-align: top;
  max-width: 100%;
}
label[disabled], label:disabled,
input[disabled],
input:disabled,
button[disabled],
button:disabled,
select[disabled],
select:disabled,
textarea[disabled],
textarea:disabled {
  cursor: not-allowed !important;
}

input,
button,
select,
textarea {
  font-family: "Arial", sans-serif;
}

textarea,
input[type=text],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

label {
  font-weight: 600;
}

.button, .button-red, .button-edit,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25em;
  display: inline-block;
  background: #f8f8f8;
  -webkit-box-shadow: 0 3px 3px 0 rgba(17, 71, 117, 0.2);
          box-shadow: 0 3px 3px 0 rgba(17, 71, 117, 0.2);
  color: #114775;
  padding: 8px 10px;
  border: none;
  border-radius: 3px;
}
.button:hover, .button-red:hover, .button-edit:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  background: #114775;
  color: white;
}
a.button, a.button-red, a.button-edit {
  text-decoration: none;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=url],
input[type=tel],
textarea,
select {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25em;
  background: #f8f8f8;
  border: none;
  padding: 7px 10px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
input[type=text]:-webkit-autofill,
input[type=password]:-webkit-autofill,
input[type=email]:-webkit-autofill,
input[type=search]:-webkit-autofill,
input[type=url]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #fff inset;
}
input[type=text].error,
input[type=password].error,
input[type=email].error,
input[type=search].error,
input[type=url].error,
input[type=tel].error,
textarea.error,
select.error {
  border-color: #d80e0e;
}
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgb(150.75, 150.75, 150.75);
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: rgb(150.75, 150.75, 150.75);
}
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=url]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
  color: rgb(150.75, 150.75, 150.75);
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=url]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgb(150.75, 150.75, 150.75);
}

.chosen-container .chosen-choices {
  border: 1px solid #cbcbcb;
  background-image: none;
}
.chosen-container.chosen-container-active .chosen-choices {
  border: 1px solid #114775;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=checkbox]:disabled + label, input[type=radio]:disabled + label {
  cursor: not-allowed !important;
}
.form-item {
  margin-bottom: 5px;
}
.form-item:last-child {
  margin-bottom: 0;
}
.form-item .description {
  font-style: italic;
}

.js-form-type-radio, .js-form-type-checkbox {
  display: inline-block;
  float: left;
  width: 50%;
  white-space: nowrap;
  padding-right: 1em;
}
.js-form-type-radio:nth-child(odd), .js-form-type-checkbox:nth-child(odd) {
  clear: left;
}
.js-form-type-radio input, .js-form-type-radio label, .js-form-type-checkbox input, .js-form-type-checkbox label {
  display: inline-block;
}
.js-form-type-radio input, .js-form-type-checkbox input {
  margin: 4px 0;
}
.js-form-type-radio label, .js-form-type-checkbox label {
  margin-left: 0.2em;
  font-weight: normal;
}

.form-item--error-message {
  color: #d60000;
  font-style: italic;
}

label.form-required:after {
  content: " *";
  color: #d60000;
}

.fieldgroup legend {
  font-weight: 600;
  margin-bottom: 1em;
}

.site {
  background: white;
}

@media (max-width: 47.9375em) {
  body .site {
    max-width: 83%;
    margin: 0 auto;
  }
}
@media (min-width: 48em) and (max-width: 64em) {
  body .site {
    max-width: 83%;
    margin: 0 auto;
  }
}

.region {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 10px;
}
.region::after {
  clear: both;
  content: "";
  display: table;
}
.region:after {
  content: " ";
  display: block;
  clear: both;
}
.region > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.region--content {
  padding-top: 25px;
  padding-bottom: 25px;
}
.region--content > *:last-child {
  margin-bottom: 35px;
}

.wrapper--footer {
  background: #114775;
  color: white;
}
.wrapper--footer a {
  color: white;
}

.region--footer {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 47.9375em) {
  .region--footer {
    text-align: center;
  }
}

.wrapper--header {
  background: white;
}

.region--header {
  position: relative;
}
.region--header::after {
  clear: both;
  content: "";
  display: table;
}

#hidden-section {
  display: none;
}

.wrapper--navigation {
  background: #114775;
  -webkit-box-shadow: 0 0 6px 0 rgba(51, 51, 51, 0.16);
          box-shadow: 0 0 6px 0 rgba(51, 51, 51, 0.16);
}
@media (max-width: 47.9375em) {
  .wrapper--navigation {
    display: none;
  }
}

.region--navigation {
  padding: 0;
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.66s;
  transition: opacity 0.66s;
  font-size: 0;
  line-height: 0;
  border-radius: 50%;
  padding: 12px 10px 12px;
  -webkit-box-shadow: 0 1px 5px rgba(51, 51, 51, 0.33);
          box-shadow: 0 1px 5px rgba(51, 51, 51, 0.33);
}
#back-to-top .arrow {
  display: inline-block;
  border: solid #575757;
  border-width: 0 5px 5px 0;
  padding: 5px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-bottom: -4px;
}
@media (max-width: 47.9375em) {
  #back-to-top {
    display: block;
  }
  .scrolled-back #back-to-top {
    opacity: 1;
    pointer-events: auto;
  }
}
@media only print {
  #back-to-top {
    display: none;
  }
}

.button-red, .button-edit {
  color: #fff;
  background: #114775;
  border: 1px solid #114775;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.button-red:hover, .button-edit:hover {
  color: #114775;
  background: #fff;
  text-decoration: none;
}

.button-edit {
  float: right;
  margin-top: 20px;
}
@media only print {
  .button-edit {
    display: none;
  }
}

.sliding-popup-bottom {
  width: 100%;
}

.eu-cookie-withdraw-tab {
  display: none;
}

.eu-cookie-compliance-banner {
  background: #114775;
  color: #fff;
}
.eu-cookie-compliance-banner .popup-content {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.eu-cookie-compliance-banner .popup-content:after {
  content: " ";
  display: block;
  clear: both;
}
@media (max-width: 47.9375em) {
  .eu-cookie-compliance-banner .popup-content {
    padding: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.eu-cookie-compliance-banner .popup-content #popup-text {
  margin: 0;
  padding: 10px 0;
  padding-right: 10px;
  max-width: none;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.25em;
}
.eu-cookie-compliance-banner .popup-content #popup-text h2 {
  color: white;
}
.eu-cookie-compliance-banner .popup-content #popup-text a {
  color: #fff;
  text-decoration: underline;
}
.eu-cookie-compliance-banner .popup-content #popup-text a:hover {
  text-decoration: none;
}
.eu-cookie-compliance-banner .popup-content #popup-buttons {
  padding: 2px 0;
  clear: none;
  max-width: none;
  float: right;
}
.eu-cookie-compliance-banner .popup-content #popup-buttons button {
  margin-top: 10px;
}
.eu-cookie-compliance-banner .popup-content #popup-buttons button:hover {
  background: #eee;
  color: #114775;
}
.eu-cookie-compliance-banner .popup-content #popup-buttons button.decline-button {
  background: transparent;
  color: white;
}
.eu-cookie-compliance-banner .find-more-button {
  display: none !important;
}
.eu-cookie-compliance-banner .ext {
  display: none;
}

.embedded-entity {
  margin-bottom: 10px;
}
.embedded-entity.align-right {
  margin-left: 10px;
}
.embedded-entity.align-left {
  margin-right: 10px;
}
.embedded-entity.align-center {
  display: table;
}

span.ext {
  display: inline-block;
}

.extra-data::after {
  clear: both;
  content: "";
  display: table;
}

.extra-date--date,
.extra-date--time,
.extra-location {
  margin-right: 25px;
  float: left;
}
.extra-date--date:before,
.extra-date--time:before,
.extra-location:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 19px;
  margin-right: 5px;
  vertical-align: middle;
}

.extra-date.has-time + .extra-location {
  clear: both;
  margin-top: 5px;
}

.extra-date--date:before {
  background: url('/themes/custom/ivory/img/svg/icn-calendar.svg') no-repeat center center/contain;
}

.extra-date--time:before {
  background: url('/themes/custom/ivory/img/svg/icn-clock.svg') no-repeat center center/contain;
}

.extra-location:before {
  background: url('/themes/custom/ivory/img/svg/icn-location.svg') no-repeat center center/contain;
}

.klaro {
  --klaro-primary-color: #114775 !important;
}
.klaro .cm-modal .cm-header, .klaro .cm-modal .cm-body, .klaro .cm-modal .cm-footer {
  padding: 3rem !important;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  right: 0;
  padding-right: 16px;
}
.mfp-image-holder .mfp-close:hover, .mfp-iframe-holder .mfp-close:hover {
  background: none;
  border: none;
}

.mfp-title {
  padding-right: 0;
}
.mfp-title .copyright {
  float: right;
}

.node-preview-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: auto;
  left: 0;
}
.node-preview-container .node-preview-backlink {
  display: inline-block;
  background-color: #114775;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
}
.node-preview-container .node-preview-backlink:hover {
  background-color: rgb(13.7649253731, 57.4888059701, 94.7350746269);
}
.node-preview-container .form-item-view-mode {
  display: none;
}

#outdated #btnCloseUpdateBrowser {
  display: none !important;
}

.pager {
  clear: both;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.25em;
}

.pager__items {
  display: block;
  margin: 0;
  padding: 0;
}

.pager__item {
  display: inline-block;
  margin-right: 20px;
  vertical-align: top;
}
.pager__item.pager__item--last, .pager__item.pager__item--first {
  display: none;
}
.pager__item:last-child, .pager__item.pager__item--next {
  margin-right: 0;
}
.pager__item.is-active a {
  background: #f8f8f8;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.pager__item a {
  display: block;
  color: #575757;
  padding: 6px 14px 6px;
  text-decoration: none;
}
.pager__item a:hover {
  background: #114775;
  color: #f8f8f8;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.pager__item.pager__item--next a, .pager__item.pager__item--previous a {
  font-size: 0;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 18px;
  width: 37px;
  height: 34px;
  display: block;
}
.pager__item.pager__item--previous a {
  background-image: url('/themes/custom/ivory/img/svg/arrow-left.svg');
}
.pager__item.pager__item--previous a:hover {
  background-image: url('/themes/custom/ivory/img/svg/arrow-white-left.svg');
}
.pager__item.pager__item--next a {
  background-image: url('/themes/custom/ivory/img/svg/arrow-right.svg');
}
.pager__item.pager__item--next a:hover {
  background-image: url('/themes/custom/ivory/img/svg/arrow-white-right.svg');
}

.swiper-container.swiper-container-horizontal .swiper-button-prev, .swiper-container.swiper-container-horizontal .swiper-button-next {
  height: 100%;
  margin-top: 0;
  top: 0;
  border-radius: 0;
  width: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 36px;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.swiper-container.swiper-container-horizontal .swiper-button-prev:hover, .swiper-container.swiper-container-horizontal .swiper-button-next:hover {
  background-color: rgba(51, 51, 51, 0.15);
}
@media (max-width: 64em) {
  .swiper-container.swiper-container-horizontal .swiper-button-prev, .swiper-container.swiper-container-horizontal .swiper-button-next {
    display: none;
  }
}
.swiper-container.swiper-container-horizontal .swiper-button-prev {
  left: 0;
  background-image: url('/themes/custom/ivory/img/svg/arrow-white-left.svg');
}
.swiper-container.swiper-container-horizontal .swiper-button-next {
  right: 0;
  background-image: url('/themes/custom/ivory/img/svg/arrow-white-right.svg');
}
.swiper-container.swiper-container-horizontal .swiper-pagination {
  position: absolute;
  bottom: 17px;
}
.swiper-container.swiper-container-horizontal .swiper-pagination-bullet {
  position: relative;
  width: 17px;
  height: 17px;
  opacity: 1;
  background: white;
  border: 2px solid #114775;
  margin: 0 7.5px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.16);
          box-shadow: 0 3px 6px 0 rgba(51, 51, 51, 0.16);
}
.swiper-container.swiper-container-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #114775;
  top: 1px;
  left: 1px;
}

@media only print {
  .swiper-wrapper, .swiper-slide {
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1;
    display: block !important;
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
  }
  .swiper-wrapper::after {
    clear: both;
    content: "";
    display: table;
  }
  .swiper-slide {
    display: none !important;
  }
  .swiper-slide.swiper-slide-active {
    display: block !important;
  }
  .swiper-pagination, .swiper-button-prev, .swiper-button-next, .swiper-slide-duplicate {
    display: none !important;
  }
}
.host-local #toolbar-administration #toolbar-bar:after, .host-staging #toolbar-administration #toolbar-bar:after, .host-live #toolbar-administration #toolbar-bar:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.2em;
  letter-spacing: 0.3em;
  z-index: -20;
}
.host-local #toolbar-administration #toolbar-bar {
  background-color: #2d2d4e;
}
.host-local #toolbar-administration #toolbar-bar:after {
  content: "Local";
}
.host-staging #toolbar-administration #toolbar-bar {
  background-color: #203720;
}
.host-staging #toolbar-administration #toolbar-bar:after {
  content: "Staging";
}
.host-live #toolbar-administration #toolbar-bar {
  background-color: #463220;
}
.host-live #toolbar-administration #toolbar-bar:after {
  content: "Live";
}

.block-system-main-block .views-element-container .view-taxonomy-term header p {
  padding-bottom: 10px;
  border-bottom: 2px dotted #cbcbcb;
  margin-bottom: 10px;
}

@media (min-width: 48em) and (max-width: 64em) {
  #toolbar-bar {
    position: fixed;
  }
}

.block-system-breadcrumb-block {
  padding: 0;
  color: #888888;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.25em;
}
.block-system-breadcrumb-block ol {
  display: block;
  margin: 0;
  padding: 0;
}
.block-system-breadcrumb-block ol li {
  display: inline-block;
  vertical-align: top;
}
.block-system-breadcrumb-block ol li:only-child {
  display: none;
}
.block-system-breadcrumb-block ol li:not(:first-child):before {
  content: "";
  width: 3px;
  height: 17px;
  background: url('/themes/custom/ivory/img/svg/arrow-breadcrumb.svg') no-repeat center center/contain;
  font-weight: normal;
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
}
.block-system-breadcrumb-block ol li:last-child {
  color: #333;
}
.block-system-breadcrumb-block ol li a {
  color: #888888;
  display: inline-block;
  text-decoration: none;
}
.block-system-breadcrumb-block ol li a:hover {
  text-decoration: underline;
}
@media only print {
  .block-system-breadcrumb-block {
    display: none;
  }
}

#block-ivory-content {
  margin-top: 35px;
}

.block-masquerade {
  clear: both;
  padding-top: 35px;
}

.masquerade-block-form h2 {
  margin-bottom: 10px;
}

.messages {
  margin: 1rem 0 1rem 0;
  border-width: 1px 0px 1px 0;
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-size: 1.2rem;
  background-position: 5px 50%;
}
.messages .messages--error {
  border-color: #E32700;
}
.messages .messages--warning {
  border-color: #E29700;
}
.messages .messages--status {
  border-color: #73B355;
}

div.block-arocom-related-articles-block {
  margin-top: -2.5em;
}
@media only print {
  div.block-arocom-related-articles-block {
    display: none;
  }
}

.block-shariff {
  position: relative;
  margin-bottom: 5px;
}
@media only print {
  .block-shariff {
    display: none;
  }
}
@media (min-width: 48em) {
  .block-shariff .shariff-button.whatsapp {
    display: none;
  }
}
.lt-ie9 .block-shariff .shariff-button.whatsapp {
  display: none;
}
.block-shariff .shariff {
  width: 100%;
}
.block-shariff .shariff ul {
  display: block;
  text-align: center;
}
.block-shariff .shariff ul li {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  float: none;
}

.shariff .orientation-horizontal li .share_text {
  text-indent: 0;
  display: inline;
}

.region-content .shariff {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 5px solid #f8f8f8;
  text-align: center;
  position: relative;
  width: 100%;
}
.region-content .shariff ul {
  display: block;
  text-align: center;
}
.region-content .shariff ul li {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  float: none;
}

ul.tabs.primary {
  display: inline-block;
  margin: 0 0 20px;
  padding: 0;
  line-height: 1;
}
ul.tabs.primary::after {
  clear: both;
  content: "";
  display: table;
}
ul.tabs.primary li {
  float: left;
  display: block;
  margin: 0 4px 0 0;
  left: 0;
}
ul.tabs.primary li a {
  display: block;
  padding: 10px 16px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #114775;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
ul.tabs.primary li a:hover, ul.tabs.primary li a.is-active {
  background: #114775;
  color: #fff;
}
@media (max-width: 47.9375em) {
  ul.tabs.primary li a {
    padding: 8px 10px;
  }
}
ul.tabs.primary li:last-child {
  margin: 0;
}

.block-local-tasks-block {
  line-height: 0;
  text-align: center;
}
@media only print {
  .block-local-tasks-block {
    display: none;
  }
}
.block-ge-footer-copyright {
  text-align: center;
}
@media (max-width: 47.9375em) {
  .block-ge-footer-copyright {
    margin-top: 1em;
  }
}
@media (min-width: 48em) {
  .block-ge-footer-copyright {
    padding: 10px 0;
    clear: left;
  }
}
.lt-ie9 .block-ge-footer-copyright {
  padding: 10px 0;
  clear: left;
}

#block-footer {
  display: block;
}
@media (min-width: 48em) {
  #block-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lt-ie9 #block-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#block-footer > ul.menu {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}
#block-footer > ul.menu::after {
  clear: both;
  content: "";
  display: table;
}
#block-footer > ul.menu > li {
  display: block;
  margin: 0;
  padding: 0;
  float: left;
}
@media (max-width: 47.9375em) {
  #block-footer > ul.menu > li {
    display: inline-block;
    float: none;
  }
}
#block-footer > ul.menu > li > a {
  display: block;
  padding: 10px;
}

@media (max-width: 47.9375em) {
  .block-ge-footer-social {
    padding: 10px 0;
  }
}
@media (min-width: 48em) {
  .block-ge-footer-social {
    float: right;
  }
}
.lt-ie9 .block-ge-footer-social {
  float: right;
}
.block-ge-footer-social .footer-social-links {
  margin: 0;
  padding: 0;
}
.block-ge-footer-social .footer-social-links::after {
  clear: both;
  content: "";
  display: table;
}
.block-ge-footer-social .footer-social-links li {
  display: block;
  float: left;
  list-style: none;
  margin: 0;
}
@media (max-width: 47.9375em) {
  .block-ge-footer-social .footer-social-links li {
    float: none;
    display: inline-block;
  }
}
.block-ge-footer-social .footer-social-links li a {
  display: block;
  padding: 0;
}
.block-ge-footer-social .footer-social-links.with-icons a {
  font-size: 0;
  text-indent: -1000px;
  overflow: hidden;
  width: 30px;
  height: 19px;
  margin: 0 5px 0 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 19px;
}
.block-ge-footer-social .footer-social-links.with-icons a.facebook {
  background-image: url('/themes/custom/ivory/img/svg/icn-facebook.svg');
}
.block-ge-footer-social .footer-social-links.with-icons a.youtube {
  background-image: url('/themes/custom/ivory/img/svg/icn-youtube.svg');
}
.block-ge-footer-social .footer-social-links.with-icons a.xing {
  background-image: url('/themes/custom/ivory/img/svg/icn-xing.svg');
}
.block-ge-footer-social .footer-social-links.with-icons a.twitter {
  background-image: url('/themes/custom/ivory/img/svg/icn-twitter.svg');
}
.block-ge-footer-social .footer-social-links.with-icons a:last-child {
  padding-right: 0;
}
@media (min-width: 48em) {
  .block-ge-footer-social .footer-social-links.with-icons a {
    width: 40px;
    height: 40px;
    margin: 20px 0;
  }
}
.lt-ie9 .block-ge-footer-social .footer-social-links.with-icons a {
  width: 40px;
  height: 40px;
  margin: 20px 0;
}

#block-webform {
  background: #fff;
  border-radius: 3px;
  margin: 0 auto;
}
@media only print {
  #block-webform {
    display: none;
  }
}
#block-webform form.webform-submission-form {
  margin-top: 10px;
  padding: 3em;
  color: #575757;
  text-align: center;
}
#block-webform form.webform-submission-form label {
  min-width: 225px;
  display: inline-block;
  text-align: right;
  padding-right: 10px;
  padding-top: 7px;
}
@media (max-width: 47.9375em) {
  #block-webform form.webform-submission-form label {
    text-align: left;
    min-width: auto;
    display: block;
  }
}
@media (min-width: 48em) and (max-width: 64em) {
  #block-webform form.webform-submission-form label {
    text-align: left;
    min-width: auto;
    display: block;
  }
}
#block-webform form.webform-submission-form .form-actions {
  text-align: right;
  margin-top: 0.6em;
  margin-right: 75px;
}
@media (max-width: 47.9375em) {
  #block-webform form.webform-submission-form .form-actions {
    text-align: right;
    margin-right: 0;
  }
}
#block-webform form.webform-submission-form .webform-button--submit {
  background: #114775;
  color: #fff;
}
#block-webform form.webform-submission-form .webform-button--submit:hover {
  background: #f8f8f8;
  color: #114775;
}
#block-webform form.webform-submission-form #edit-message {
  margin-left: 230px;
  width: 475px;
}
@media (max-width: 47.9375em) {
  #block-webform form.webform-submission-form #edit-message {
    margin-left: 0;
  }
}
@media (min-width: 48em) and (max-width: 64em) {
  #block-webform form.webform-submission-form #edit-message {
    margin-left: 0;
  }
}
#block-webform form.webform-submission-form .form-item--error-message {
  padding-top: 8px;
  margin-left: 225px;
}
@media (max-width: 47.9375em) {
  #block-webform form.webform-submission-form .form-item--error-message {
    margin-left: 0;
  }
}
@media (min-width: 48em) and (max-width: 64em) {
  #block-webform form.webform-submission-form .form-item--error-message {
    margin-left: 0;
  }
}

#block-sitebranding {
  float: left;
  padding: 24px 0;
}
#block-sitebranding a {
  display: block;
}
#block-sitebranding img {
  width: auto;
  height: 151px;
}
@media only print {
  #block-sitebranding {
    display: none;
  }
}

.block-arocom-search-form {
  position: absolute;
  bottom: 24px;
  right: 10px;
  padding: 0;
  max-width: 450px;
  clear: right;
}
.block-arocom-search-form::after {
  clear: both;
  content: "";
  display: table;
}
@media (max-width: 47.9375em) {
  .block-arocom-search-form {
    display: none;
  }
}
@media only print {
  .block-arocom-search-form {
    display: none;
  }
}

.block-arocom-search-form form, .mm-navbar form {
  position: relative;
}
.block-arocom-search-form form::after, .mm-navbar form::after {
  clear: both;
  content: "";
  display: table;
}
.block-arocom-search-form .form-item-search, .mm-navbar .form-item-search {
  margin: 0;
}
.block-arocom-search-form .form-item-search input, .mm-navbar .form-item-search input {
  background-image: none;
  background-position: 85% center !important;
}
.block-arocom-search-form .form-actions, .mm-navbar .form-actions {
  margin: 0;
  float: none;
  position: absolute;
  right: 0;
  top: 0;
}
.block-arocom-search-form .form-actions:after, .mm-navbar .form-actions:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url('/themes/custom/ivory/img/svg/icn-search.svg') no-repeat center center/contain;
  margin: 10px;
}
.block-arocom-search-form .form-submit, .mm-navbar .form-submit {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 0;
  color: transparent;
  line-height: 0;
  width: 34px;
  height: 34px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.block-arocom-search-form .form-submit:hover, .mm-navbar .form-submit:hover {
  background-color: rgba(51, 51, 51, 0.1);
}

.mm-navbar form {
  margin-top: 12px;
  margin-left: 20px;
}
.mm-navbar form .form-item-search {
  width: calc(100% - 78px - 20px);
}
.mm-navbar form .form-item-search input {
  color: #575757;
}

@-webkit-keyframes menu-open {
  0% {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes menu-open {
  0% {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
#block-mainnavigation {
  margin: 0;
  clear: both;
}
#block-mainnavigation ul, #block-mainnavigation li, #block-mainnavigation a, #block-mainnavigation span {
  padding: 0;
  margin: 0;
  display: block;
}
#block-mainnavigation a, #block-mainnavigation span {
  text-decoration: none;
  color: white;
}
#block-mainnavigation span {
  cursor: default;
}
#block-mainnavigation > ul.menu::after {
  clear: both;
  content: "";
  display: table;
}
#block-mainnavigation > ul.menu > li {
  position: relative;
  float: left;
}
#block-mainnavigation > ul.menu > li > a, #block-mainnavigation > ul.menu > li > span {
  padding: 16px 25px 14px;
}
#block-mainnavigation > ul.menu > li > a {
  -webkit-transition: background 0.15s, color 0.15s;
  transition: background 0.15s, color 0.15s;
}
#block-mainnavigation > ul.menu > li > a:hover {
  background: white;
  color: #114775;
}
#block-mainnavigation > ul.menu > li:hover > ul {
  -webkit-animation: menu-open 0.5s forwards;
          animation: menu-open 0.5s forwards;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block;
}
#block-mainnavigation > ul.menu > li > ul {
  z-index: 10;
  position: absolute;
  top: 100%;
  left: 1px;
  background: #f8f8f8;
  -webkit-box-shadow: 0 3px 3px 0 rgba(51, 51, 51, 0.16);
          box-shadow: 0 3px 3px 0 rgba(51, 51, 51, 0.16);
}
#block-mainnavigation > ul.menu > li > ul, #block-mainnavigation > ul.menu > li > ul ul {
  display: none;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
#block-mainnavigation > ul.menu > li > ul > li > a, #block-mainnavigation > ul.menu > li > ul > li > span {
  padding: 10px 25px;
  color: #114775;
}
#block-mainnavigation > ul.menu > li > ul > li > a:hover {
  background: #114775;
  color: white;
}
#block-mainnavigation > ul.menu > li:hover.has-children > a, #block-mainnavigation > ul.menu > li:hover.has-children > span {
  background: #f8f8f8;
  color: #114775;
}
#block-mainnavigation > ul.menu > li:hover.has-children > a:hover {
  background: #114775;
  color: #fff;
}
#block-mainnavigation > ul.menu > li:hover > ul {
  display: block;
}
#block-mainnavigation > ul.menu > li.active-trail > a {
  background: #f8f8f8;
  color: #114775;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 10px;
  padding: 10px;
  font-weight: 600;
  line-height: 0;
  font-size: 0;
  color: transparent;
}
.mobile-menu-toggle:before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 40px;
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url("../../../../themes/custom/ivory/images/svg/hamburger.svg");
}
@media (max-width: 47.9375em) {
  .mobile-menu-toggle {
    display: block;
  }
}
@media only print {
  .mobile-menu-toggle {
    display: none;
  }
}

.mm-menu #search-block-form-mobile {
  padding: 8px 0;
}
.mm-menu #search-block-form-mobile .form-item, .mm-menu #search-block-form-mobile .form-actions {
  display: inline-block;
}
.mm-menu .mm-navbar a, .mm-menu .mm-listview a {
  -webkit-tap-highlight-color: transparent;
}
.mm-menu .mm-searchfield {
  margin-top: 6px;
  margin-right: 20px;
}
.mm-menu .mm-searchfield input[name=search] {
  background: white;
}
.mm-menu .mm-searchfield a.mm-btn {
  width: 26px;
  height: 26px;
}
.mm-menu .mm-searchfield a.mm-btn:after {
  right: 10px;
}
.mm-menu .mm-searchfield .mm-searchfield__input {
  padding: 0;
}
@media (max-width: 47.9375em) {
  body.adminimal-admin-toolbar.toolbar-fixed .mm-menu {
    margin-top: 40px;
  }
}

.view--article-tags a, .list-display--unordered-list a {
  color: #114775;
  text-decoration: none;
}
.view--article-tags a:hover, .list-display--unordered-list a:hover {
  text-decoration: underline;
}

.view--article-tags ul.js-pager__items {
  text-align: center;
  padding-left: 0;
}
.view--article-tags ul.js-pager__items li {
  display: inline-block;
}

.taxonomy-term--type--article-tags.node--view-mode-full .headline {
  margin-bottom: 12px;
}

.user-login-form label {
  display: block;
}

.block-views-blocksearch-block-search-results .views-exposed-form {
  position: relative;
  margin-bottom: 35px;
  display: inline-block;
}
.block-views-blocksearch-block-search-results .views-exposed-form .form-item-search {
  margin: 0;
}
.block-views-blocksearch-block-search-results .views-exposed-form .form-item-search input {
  background-image: none;
}
.block-views-blocksearch-block-search-results .views-exposed-form .form-actions {
  margin: 0;
  float: none;
  position: absolute;
  right: 0;
  top: 0;
}
.block-views-blocksearch-block-search-results .views-exposed-form .form-actions:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url('/themes/custom/ivory/img/svg/icn-search.svg') no-repeat center center/contain;
  margin: 10px;
}
.block-views-blocksearch-block-search-results .views-exposed-form .form-submit {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 0;
  color: transparent;
  line-height: 0;
  width: 34px;
  height: 34px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.block-views-blocksearch-block-search-results nav.pager + .views-row {
  margin-top: 35px;
}
.block-views-blocksearch-block-search-results .views-row {
  display: block;
  margin-bottom: 35px;
}
.block-views-blocksearch-block-search-results .views-row:last-child {
  margin-bottom: 0;
}
.block-views-blocksearch-block-search-results a.views-row {
  color: inherit;
}
.block-views-blocksearch-block-search-results a.views-row:hover {
  text-decoration: none;
}
.block-views-blocksearch-block-search-results a.views-row:hover .views-field-title:after {
  width: 100%;
}
.block-views-blocksearch-block-search-results .views-field-title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25em;
  font-weight: 600;
  margin-bottom: 15px;
}
.block-views-blocksearch-block-search-results .views-field-title:after {
  content: "";
  font-size: 0;
  line-height: 0;
  color: transparent;
  display: block;
  margin-top: 5px;
  width: 100%;
  height: 2px;
  background: #114775;
}

.paragraph {
  clear: both;
  margin-top: 35px;
}
.paragraph:first-child {
  margin-top: 0;
}
.paragraph.no-margin + .paragraph {
  margin-top: 0 !important;
}

.paragraph--type--two-columns::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 48em) and (max-width: 64em) {
  .paragraph--type--two-columns .field-pg-twocol-left:nth-child(2), .paragraph--type--two-columns .field-pg-twocol-right:nth-child(2) {
    margin-top: 10px;
  }
}
.paragraph--type--header {
  background: #f8f8f8;
}
.paragraph--type--header::after {
  clear: both;
  content: "";
  display: table;
}
.paragraph--type--header .header-content {
  padding: 28px 30px 28px;
}
.paragraph--type--header .field--name-field-image picture, .paragraph--type--header .field--name-field-image img {
  width: 100%;
}
@media (min-width: 64.0625em) {
  .paragraph--type--header .header-content {
    float: left;
    width: 50%;
  }
  .paragraph--type--header .header-content:first-child {
    float: none;
    width: auto;
  }
  .paragraph--type--header .field--name-field-image {
    float: right;
    width: 50%;
  }
}
.paragraph--type--header h1 {
  margin-top: 0;
}
.paragraph--type--header h1:after {
  margin-top: 20px;
  margin-bottom: 20px;
}

.paragraph--type--image {
  text-align: center;
}
.paragraph--type--image img {
  border: 1px solid #eee;
}
@media (min-width: 64.0625em) {
  .node-no-sidebar .paragraph--type--image {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }
}
.paragraph--type--image picture {
  display: inline-block;
}
.paragraph--type--image figure figcaption {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.paragraph--type--image-gallery {
  padding-bottom: 33px;
  background-color: #f8f8f8;
}
.paragraph--type--image-gallery .teaser-image {
  text-align: center;
}
.paragraph--type--image-gallery picture, .paragraph--type--image-gallery img {
  display: inline-block;
  width: auto;
  height: auto;
}
.paragraph--type--image-gallery figure {
  margin: 10px 10px 5px;
}
.paragraph--type--image-gallery figure figcaption {
  padding: 15px 0 0;
}
.paragraph--type--image-gallery .slide-description {
  padding: 0 10px 8px;
}

.paragraph--type--image-gallery-slide.clickable {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.paragraph--type--layout-2col::after,
.paragraph--type--layout-3col::after {
  clear: both;
  content: "";
  display: table;
}
.paragraph--type--layout-2col .layout-column,
.paragraph--type--layout-3col .layout-column {
  margin-top: 35px;
}
.paragraph--type--layout-2col .layout-column:first-child,
.paragraph--type--layout-3col .layout-column:first-child {
  margin-top: 0;
}

@media (min-width: 48em) {
  .paragraph--type--layout-2col .layout-column {
    margin-top: 0;
    width: 48.9361702128%;
    float: left;
    margin-right: 2.1276595745%;
  }
  .paragraph--type--layout-2col .layout-column:last-child {
    float: right;
    margin-right: 0;
  }
}
.lt-ie9 .paragraph--type--layout-2col .layout-column {
  margin-top: 0;
  width: 48.9361702128%;
  float: left;
  margin-right: 2.1276595745%;
}
.lt-ie9 .paragraph--type--layout-2col .layout-column:last-child {
  float: right;
  margin-right: 0;
}

@media (min-width: 64.0625em) {
  .paragraph--type--layout-3col .layout-column {
    margin-top: 0;
    width: 31.914893617%;
    float: left;
    margin-right: 2.1276595745%;
  }
  .paragraph--type--layout-3col .layout-column:last-child {
    float: right;
    margin-right: 0;
  }
}

.paragraph--type--section-headline h2 {
  margin-bottom: 0;
}
.paragraph--type--section-headline + .paragraph {
  margin-top: 20px;
}

.paragraph--type--separator:after {
  content: "";
  background: #114775;
  width: 180px;
  height: 2px;
  display: block;
}

.paragraph--type--teaser-list-dynamic::after,
.paragraph--type--teaser-list-static::after {
  clear: both;
  content: "";
  display: table;
}
.paragraph--type--teaser-list-dynamic .teaser-list-more-links,
.paragraph--type--teaser-list-static .teaser-list-more-links {
  margin-bottom: 35px;
  clear: both;
}
.paragraph--type--teaser-list-dynamic .teaser-list-more-links .button, .paragraph--type--teaser-list-dynamic .teaser-list-more-links .button-red, .paragraph--type--teaser-list-dynamic .teaser-list-more-links .button-edit,
.paragraph--type--teaser-list-static .teaser-list-more-links .button,
.paragraph--type--teaser-list-static .teaser-list-more-links .button-red,
.paragraph--type--teaser-list-static .teaser-list-more-links .button-edit {
  margin-right: 15px;
}
.paragraph--type--teaser-list-dynamic + .paragraph,
.paragraph--type--teaser-list-static + .paragraph {
  margin-top: 0;
}

@media (min-width: 64.0625em) {
  .node-no-sidebar .paragraph--type--text {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }
}
@media only print {
  .paragraph--type--text h2 {
    padding: 10px;
  }
  .paragraph--type--text p, .paragraph--type--text ul {
    page-break-inside: avoid;
  }
}
.paragraph--type--text iframe {
  width: 100% !important;
}

@media (min-width: 64.0625em) {
  .node-no-sidebar .paragraph--type--youtube-video {
    width: 74.4680851064%;
    float: left;
    margin-right: 2.1276595745%;
    float: none;
  }
}

.node--view-mode-full {
  margin-bottom: 35px;
}
.node--view-mode-full::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 64.0625em) {
  .node--view-mode-full .content--main {
    width: 65.9574468085%;
    float: left;
    margin-right: 2.1276595745%;
  }
}
.node--view-mode-full .content--sidebar {
  margin-top: 35px;
}
@media (min-width: 64.0625em) {
  .node--view-mode-full .content--sidebar {
    margin-top: 0;
    width: 23.4042553191%;
    float: right;
    margin-right: 0;
  }
}
.node--view-mode-full .content--sidebar .extra-description {
  margin-bottom: 35px;
}
.node--view-mode-full .content--sidebar .teaser-headline {
  margin-bottom: 5px;
}
.node--view-mode-full .content--sidebar .teaser-headline:after {
  display: none;
}
.node--view-mode-full .post-date {
  text-align: right;
}
@media (min-width: 48em) {
  .node--view-mode-full .post-date {
    float: right;
  }
}
.lt-ie9 .node--view-mode-full .post-date {
  float: right;
}
.node--view-mode-full .field--name-field-teaser-media {
  float: right;
  margin-bottom: 15px;
  margin-left: 15px;
  max-width: 380px;
  width: 32%;
}
.node--view-mode-full.node--type--page > h1:after {
  display: none;
}
@media (min-width: 64.0625em) {
  .node--view-mode-full.node-no-sidebar .article--teaser {
    width: 74.4680851064%;
    float: left;
    margin-right: 2.1276595745%;
    float: none;
  }
}
.node--view-mode-full.node-no-sidebar .post-date {
  margin-right: 25.5319148936%;
}

.teaser {
  margin-bottom: 35px;
}
.teaser .teaser-headline {
  margin-bottom: 15px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25em;
  font-weight: 600;
}
.teaser .teaser-headline:last-child {
  margin-bottom: 0;
}
.teaser .teaser-headline:last-child:after {
  display: none;
}
.teaser .teaser-image {
  min-height: 1px;
}
.teaser .teaser-image picture, .teaser .teaser-image img {
  width: 100%;
}
.teaser .teaser-content {
  padding-left: 3px;
  padding-right: 25px;
}
.teaser .teaser-published {
  float: right;
  padding-left: 5px;
}
.teaser .teaser-data {
  margin-bottom: 15px;
  display: none;
}
.teaser .teaser-data::after {
  clear: both;
  content: "";
  display: table;
}
.teaser .teaser-body {
  padding-bottom: 5px;
  display: none;
}
.teaser a.teaser-link {
  text-decoration: none;
  color: inherit;
  display: block;
  -webkit-transition: background-color 0.33s, -webkit-box-shadow 0.33s;
  transition: background-color 0.33s, -webkit-box-shadow 0.33s;
  transition: background-color 0.33s, box-shadow 0.33s;
  transition: background-color 0.33s, box-shadow 0.33s, -webkit-box-shadow 0.33s;
}
.teaser a.teaser-link::after {
  clear: both;
  content: "";
  display: table;
}
.teaser a.teaser-link:hover {
  color: inherit;
}

.node--unpublished {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 0, 0.3), rgba(255, 255, 0, 0.3) 10px, rgba(255, 255, 0, 0.05) 10px, rgba(255, 255, 0, 0.05) 20px);
  border: 2px dashed rgba(255, 255, 0, 0.3);
}

.teaser--view-mode-basic-teaser-2col::after,
.teaser--view-mode-basic-teaser-3col::after,
.teaser--view-mode-basic-teaser-4col::after {
  clear: both;
  content: "";
  display: table;
}
.teaser--view-mode-basic-teaser-2col .teaser-image,
.teaser--view-mode-basic-teaser-3col .teaser-image,
.teaser--view-mode-basic-teaser-4col .teaser-image {
  float: left;
}
.teaser--view-mode-basic-teaser-2col .teaser-content,
.teaser--view-mode-basic-teaser-3col .teaser-content,
.teaser--view-mode-basic-teaser-4col .teaser-content {
  float: left;
  padding-left: 15px;
}

@media (min-width: 48em) {
  .teaser--view-mode-basic-teaser-2col {
    width: 48.9361702128%;
    float: left;
  }
  .teaser--view-mode-basic-teaser-2col:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-basic-teaser-2col:nth-child(2n+2) {
    margin-left: 51.0638297872%;
    margin-right: -100%;
    clear: none;
  }
}
.lt-ie9 .teaser--view-mode-basic-teaser-2col {
  width: 48.9361702128%;
  float: left;
}
.lt-ie9 .teaser--view-mode-basic-teaser-2col:nth-child(2n+1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.lt-ie9 .teaser--view-mode-basic-teaser-2col:nth-child(2n+2) {
  margin-left: 51.0638297872%;
  margin-right: -100%;
  clear: none;
}
.teaser--view-mode-basic-teaser-2col .teaser-image {
  max-width: 280px;
  width: 47.5%;
}
.teaser--view-mode-basic-teaser-2col .teaser-content {
  min-width: calc(100% - 280px);
  width: 52.5%;
}
.teaser--view-mode-basic-teaser-2col .teaser-image:empty + .teaser-content {
  width: auto;
}

@media (min-width: 48em) and (max-width: 64em) {
  .teaser--view-mode-basic-teaser-3col {
    width: 48.9361702128%;
    float: left;
  }
  .teaser--view-mode-basic-teaser-3col:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-basic-teaser-3col:nth-child(2n+2) {
    margin-left: 51.0638297872%;
    margin-right: -100%;
    clear: none;
  }
}
@media (min-width: 64.0625em) {
  .teaser--view-mode-basic-teaser-3col {
    width: 31.914893617%;
    float: left;
  }
  .teaser--view-mode-basic-teaser-3col:nth-child(3n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-basic-teaser-3col:nth-child(3n+2) {
    margin-left: 34.0425531915%;
    margin-right: -100%;
    clear: none;
  }
  .teaser--view-mode-basic-teaser-3col:nth-child(3n+3) {
    margin-left: 68.085106383%;
    margin-right: -100%;
    clear: none;
  }
}
.teaser--view-mode-basic-teaser-3col .teaser-image {
  max-width: 135px;
  width: 35%;
}
.teaser--view-mode-basic-teaser-3col .teaser-content {
  min-width: calc(100% - 135px);
  width: 65%;
}
.teaser--view-mode-basic-teaser-3col .teaser-image:empty + .teaser-content {
  width: auto;
}

@media (min-width: 48em) and (max-width: 64em) {
  .teaser--view-mode-basic-teaser-4col {
    width: 48.9361702128%;
    float: left;
  }
  .teaser--view-mode-basic-teaser-4col:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-basic-teaser-4col:nth-child(2n+2) {
    margin-left: 51.0638297872%;
    margin-right: -100%;
    clear: none;
  }
}
@media (min-width: 64.0625em) {
  .teaser--view-mode-basic-teaser-4col {
    width: 31.914893617%;
    float: left;
  }
  .teaser--view-mode-basic-teaser-4col:nth-child(3n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-basic-teaser-4col:nth-child(3n+2) {
    margin-left: 34.0425531915%;
    margin-right: -100%;
    clear: none;
  }
  .teaser--view-mode-basic-teaser-4col:nth-child(3n+3) {
    margin-left: 68.085106383%;
    margin-right: -100%;
    clear: none;
  }
}
.teaser--view-mode-basic-teaser-4col .teaser-image {
  max-width: 90px;
  width: 32%;
}
.teaser--view-mode-basic-teaser-4col .teaser-content {
  min-width: calc(100% - 90px);
  width: 68%;
}
.teaser--view-mode-basic-teaser-4col .teaser-image:empty + .teaser-content {
  width: auto;
}

.teaser.teaser--view-mode-teaser::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 64.0625em) {
  .teaser.teaser--view-mode-teaser {
    width: 74.4680851064%;
    float: left;
    margin-right: 2.1276595745%;
  }
}
.teaser.teaser--view-mode-teaser .teaser-image {
  float: left;
  max-width: 380px;
  width: 33%;
}
@media (min-width: 64.0625em) {
  .teaser.teaser--view-mode-teaser .teaser-image {
    width: 43%;
  }
}
.teaser.teaser--view-mode-teaser .teaser-content {
  float: left;
  padding-left: 15px;
  min-width: calc(100% - 380px);
  width: 67%;
}
@media (min-width: 64.0625em) {
  .teaser.teaser--view-mode-teaser .teaser-content {
    width: 57%;
  }
}

.teaser.teaser--view-mode-teaser-2col::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 48em) {
  .teaser.teaser--view-mode-teaser-2col {
    width: 48.9361702128%;
    float: left;
  }
  .teaser.teaser--view-mode-teaser-2col:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser.teaser--view-mode-teaser-2col:nth-child(2n+2) {
    margin-left: 51.0638297872%;
    margin-right: -100%;
    clear: none;
  }
}
.lt-ie9 .teaser.teaser--view-mode-teaser-2col {
  width: 48.9361702128%;
  float: left;
}
.lt-ie9 .teaser.teaser--view-mode-teaser-2col:nth-child(2n+1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.lt-ie9 .teaser.teaser--view-mode-teaser-2col:nth-child(2n+2) {
  margin-left: 51.0638297872%;
  margin-right: -100%;
  clear: none;
}

.teaser-list-display--gallery-item + .paragraph {
  margin-top: 35px;
}

.teaser--view-mode-gallery-item {
  margin-bottom: 0;
}
.teaser--view-mode-gallery-item picture, .teaser--view-mode-gallery-item img {
  width: 100%;
}
.teaser--view-mode-gallery-item figcaption {
  display: none;
}

.teaser.teaser--view-mode-teaser-layout-image::after {
  clear: both;
  content: "";
  display: table;
}
.teaser.teaser--view-mode-teaser-layout-image .teaser-image {
  float: left;
  width: 35%;
  max-width: 135px;
  min-height: 1px;
}
.teaser.teaser--view-mode-teaser-layout-image .teaser-content {
  float: left;
  width: 65%;
  min-width: calc(100% - 135px);
  padding-left: 15px;
}
.paragraph--type--layout-2col .teaser.teaser--view-mode-teaser-layout-image .teaser-image {
  width: 23%;
}
.paragraph--type--layout-2col .teaser.teaser--view-mode-teaser-layout-image .teaser-content {
  width: 77%;
}
.paragraph--type--layout-3col .teaser.teaser--view-mode-teaser-layout-image .teaser-image {
  width: 35%;
}
.paragraph--type--layout-3col .teaser.teaser--view-mode-teaser-layout-image .teaser-content {
  width: 65%;
}

.teaser.teaser--view-mode-teaser-sidebar-portrait::after {
  clear: both;
  content: "";
  display: table;
}
.teaser.teaser--view-mode-teaser-sidebar-portrait .teaser-image {
  float: left;
  min-height: 1px;
  width: 32%;
}
@media (max-width: 64em) {
  .teaser.teaser--view-mode-teaser-sidebar-portrait .teaser-image {
    width: 90px;
  }
}
.teaser.teaser--view-mode-teaser-sidebar-portrait .teaser-content {
  float: left;
  width: 68%;
  padding-left: 15px;
}
@media (max-width: 64em) {
  .teaser.teaser--view-mode-teaser-sidebar-portrait .teaser-content {
    width: calc(100% - 90px);
  }
}

.teaser.teaser--view-mode-teaser-layout {
  padding: 0;
  margin-bottom: 8px;
}
.teaser.teaser--view-mode-teaser-layout::after {
  clear: both;
  content: "";
  display: table;
}
.teaser.teaser--view-mode-teaser-layout .teaser-content .teaser-headline {
  display: list-item;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25em;
  line-height: 1.1em;
  color: #114775;
  margin-left: 16px;
}

.teaser--view-mode-wide-teaser-2col .teaser-image,
.teaser--view-mode-wide-teaser-3col .teaser-image,
.teaser--view-mode-wide-teaser-4col .teaser-image {
  margin-bottom: 10px;
}

@media (min-width: 48em) {
  .teaser--view-mode-wide-teaser-2col {
    width: 48.9361702128%;
    float: left;
  }
  .teaser--view-mode-wide-teaser-2col:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-wide-teaser-2col:nth-child(2n+2) {
    margin-left: 51.0638297872%;
    margin-right: -100%;
    clear: none;
  }
}
.lt-ie9 .teaser--view-mode-wide-teaser-2col {
  width: 48.9361702128%;
  float: left;
}
.lt-ie9 .teaser--view-mode-wide-teaser-2col:nth-child(2n+1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}
.lt-ie9 .teaser--view-mode-wide-teaser-2col:nth-child(2n+2) {
  margin-left: 51.0638297872%;
  margin-right: -100%;
  clear: none;
}

@media (min-width: 48em) and (max-width: 64em) {
  .teaser--view-mode-wide-teaser-3col {
    width: 48.9361702128%;
    float: left;
  }
  .teaser--view-mode-wide-teaser-3col:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-wide-teaser-3col:nth-child(2n+2) {
    margin-left: 51.0638297872%;
    margin-right: -100%;
    clear: none;
  }
}
@media (min-width: 64.0625em) {
  .teaser--view-mode-wide-teaser-3col {
    width: 31.914893617%;
    float: left;
  }
  .teaser--view-mode-wide-teaser-3col:nth-child(3n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-wide-teaser-3col:nth-child(3n+2) {
    margin-left: 34.0425531915%;
    margin-right: -100%;
    clear: none;
  }
  .teaser--view-mode-wide-teaser-3col:nth-child(3n+3) {
    margin-left: 68.085106383%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 48em) and (max-width: 64em) {
  .teaser--view-mode-wide-teaser-4col {
    width: 48.9361702128%;
    float: left;
  }
  .teaser--view-mode-wide-teaser-4col:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-wide-teaser-4col:nth-child(2n+2) {
    margin-left: 51.0638297872%;
    margin-right: -100%;
    clear: none;
  }
}
@media (min-width: 64.0625em) {
  .teaser--view-mode-wide-teaser-4col {
    width: 31.914893617%;
    float: left;
  }
  .teaser--view-mode-wide-teaser-4col:nth-child(3n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .teaser--view-mode-wide-teaser-4col:nth-child(3n+2) {
    margin-left: 34.0425531915%;
    margin-right: -100%;
    clear: none;
  }
  .teaser--view-mode-wide-teaser-4col:nth-child(3n+3) {
    margin-left: 68.085106383%;
    margin-right: -100%;
    clear: none;
  }
}
/*# sourceMappingURL=main.css.map */
