﻿@charset "UTF-8";
/* Settings (Theme-related */
/* Page titles, sub-headers, body-text */
/* Main color: Section headers, selected content, arrows, rollover-states */
/* Box shapes, divider bars */
/* Mobile menus and bulleted boxes */
/* Social/download icons, divider lines */
/* ToTop-icon */
/* Hyperlinks */
/* Country selector global site links */
h2, h3 {
  font-weight: 600; }

/* Shared (Global) */
label {
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none; }

.load__more__button, .carousel__content .load__more__button span, .news-list__load__more__button, .story__page .load__more__story__button {
  display: block;
  margin: .5em auto;
  border: none;
  background: none;
  text-align: center;
  outline: none; }
  .load__more__button > span, .carousel__content .load__more__button span > span, .news-list__load__more__button > span, .story__page .load__more__story__button > span {
    position: relative;
    display: inline-block;
    padding: .75em 1.25em;
    border: 1px solid #f00;
    color: #f00;
    text-transform: lowercase;
    font-variant: small-caps;
    z-index: 1;
    transition: all .3s ease-in-out;
    font-size: 1.2rem;
    overflow: hidden; }
    .load__more__button > span:before, .carousel__content .load__more__button span > span:before, .news-list__load__more__button > span:before, .story__page .load__more__story__button > span:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      transition: all .3s;
      z-index: -1;
      background: transparent; }
  .load__more__button:active > span, .carousel__content .load__more__button span:active > span, .news-list__load__more__button:active > span, .story__page .load__more__story__button:active > span {
    color: #fff; }
    .load__more__button:active > span:before, .carousel__content .load__more__button span:active > span:before, .news-list__load__more__button:active > span:before, .story__page .load__more__story__button:active > span:before {
      background: #f00; }
  @media (min-width: 769px) {
    .load__more__button:hover > span, .carousel__content .load__more__button span:hover > span, .news-list__load__more__button:hover > span, .story__page .load__more__story__button:hover > span {
      color: #fff; }
      .load__more__button:hover > span:before, .carousel__content .load__more__button span:hover > span:before, .news-list__load__more__button:hover > span:before, .story__page .load__more__story__button:hover > span:before {
        background: #f00; } }

.form {
  /* Form Grid */ }
  .form__button {
    margin: 0 2.25em 0 0 !important;
    padding: 0.8em 2.6em !important;
    border: 1px solid #f00 !important;
    text-transform: uppercase;
    color: #f00 !important;
    background-color: #fff !important;
    border-radius: unset !important;
    font-size: 13.33px !important;
    line-height: normal !important; }
    .form__button:hover {
      background-color: #f00 !important;
      color: #fff !important; }
  .form__checkbox, .form__radio {
    position: absolute;
    clip: rect(0, 0, 0, 0); }
    .form__checkbox + label, .form__radio + label {
      display: inline-block;
      position: relative;
      left: 2.25em;
      margin: 0.5em 0; }
      .form__checkbox + label::after, .form__radio + label::after {
        position: absolute;
        display: inline-block;
        top: 0;
        left: -2.25em;
        height: 100%;
        width: 1.5em;
        content: "";
        background: transparent; }
      .form__checkbox + label::before, .form__radio + label::before {
        position: absolute;
        left: -2.25em;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        margin: 0 0.75em 0 0;
        content: "\a0";
        text-align: center;
        vertical-align: middle;
        border: 2px solid #aaa;
        border-radius: 50%; }
  .form__checkbox + label::before {
    border-radius: .25em; }
  .form__checkbox:checked + label::before {
    content: "\2713";
    color: #fff;
    border-color: #f00;
    background: #f00; }
  .form__error {
    font-size: 0.875em;
    margin: 0 0 0.5em 0;
    color: #f00; }
  .form__fieldset {
    display: flex;
    flex-flow: row wrap; }
  .form__label {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin: 0 0 0.25em 0;
    color: #777; }
    .form__label__full {
      display: block;
      width: 100%; }
    .form__label--hide {
      display: none !important; }
  .form__input, .form__select, .form__textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0.75em;
    width: calc(100% - 2.25em);
    border: 1px solid #ddd;
    border-radius: 0;
    text-transform: uppercase;
    color: #231f20; }
    .form__input:focus, .form__select:focus, .form__textarea:focus {
      border-color: #666;
      outline: none; }
  .form__input__wrapper {
    position: relative;
    margin: 0 0 2em 0; }
  .form__required {
    margin-left: 0.25em;
    color: #f00; }
  .form__radio:checked + label::before {
    border-color: #f00;
    background: #f00;
    box-shadow: inset 0 0 0 .25rem #fff; }
  .form__reset {
    font-size: 1em;
    border: 0;
    color: #aaa;
    text-decoration: underline;
    background: transparent; }
  .form__select::-ms-expand {
    display: none; }
  .form__select__wrapper {
    position: relative; }
  .form__submit__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-flow: row wrap; }
    .form__submit__wrapper .form__required {
      width: 100%;
      margin: 0 0 1em 0; }
    @media (min-width: 769px) {
      .form__submit__wrapper {
        flex-flow: row nowrap; }
        .form__submit__wrapper .Form__Element__ValidationError {
          min-width: 50%;
          width: auto;
          margin: 0 0.25em;
          text-align: right; } }
    @media (max-width: 769px) {
      .form__submit__wrapper .Form__Element__ValidationError {
        order: 1;
        width: 100%; }
      .form__submit__wrapper [type="reset"] {
        order: 2; }
      .form__submit__wrapper [type="submit"] {
        order: 3; } }
  .form__textarea {
    resize: vertical;
    min-height: 10em; }
  .form__textcounter {
    display: flex;
    margin: 0.5em 0;
    justify-content: space-between;
    width: calc(100% - 2em); }
  .form--1-1, .form--1-2, .form--1-3, .form--1-4, .form--2-3, .form--3-4 {
    width: 100%; }
  @media (min-width: 769px) {
    .form--1-2 {
      width: 50%; }
    .form--1-3 {
      width: 33.333333%; }
    .form--1-4 {
      width: 25%; }
    .form--2-3 {
      width: 66.666666%; }
    .form--3-4 {
      width: 75%; } }

.EPiServerForms .Form__Status .Form__Success__Message {
  background-color: #fff; }

.EPiServerForms .Form__Status .Form__Warning__Message {
  background-color: #fff; }

.EPiServerForms .Form__Element .Form__Element__ValidationError {
  display: none; }

.EPiServerForms.ValidationFail .Form__Element .Form__Element__ValidationError__General,
.EPiServerForms.ValidationFail .Form__Element .Form__Element__ValidationError {
  display: inline-block;
  /* Because epiServer returns a block element, we need to force it into inline-block */ }
  .EPiServerForms.ValidationFail .Form__Element .Form__Element__ValidationError__General[style*=block],
  .EPiServerForms.ValidationFail .Form__Element .Form__Element__ValidationError[style*=block] {
    display: inline-block !important; }
  .EPiServerForms.ValidationFail .Form__Element .Form__Element__ValidationError__General:not(:empty)::before,
  .EPiServerForms.ValidationFail .Form__Element .Form__Element__ValidationError:not(:empty)::before {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.5em 0 0;
    content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiIgd2lkdGg9IjFlbSIgaGVpZ2h0PSIxZW0iPjxwYXRoIGZpbGw9IiNmMDAiIGQ9Ik04IDBjLTQuNDE4IDAtOCAzLjU4Mi04IDhzMy41ODIgOCA4IDggOC0zLjU4MiA4LTgtMy41ODItOC04LTh6TTkgMTNoLTJ2LTJoMnYyek05IDloLTJ2LTZoMnY2eiI+PC9wYXRoPjwvc3ZnPg==); }

.EPiServerForms.ValidationFail [required]:invalid {
  border-color: #e10; }

.EPiServerForms .Form__Element .Form__Element__ValidationError {
  padding-top: 0.35em; }

/* Theme-related */
h1 {
  font-size: 2em; }

h2 {
  font-size: 1.5em; }

h3 {
  font-size: 1.125em; }

h4 {
  font-size: 1.25em; }

h5 {
  font-size: 1em; }

h6 {
  font-size: 1em; }

h1 {
  color: #000;
  margin: 0 0 0.5em 0; }

h2, h3 {
  color: #f00;
  margin: 0 0 .5em 0; }

h4, h5, h6 {
  margin: 0 0 0.5em 0; }

a {
  color: #666;
  text-decoration: none; }
  @media (min-width: 1024px) {
    a:hover {
      color: #e10; } }

/* 
    Open Sans 

*/
/* Normal style */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/open-sans/OpenSans-Light.eot), url(/fonts/open-sans/OpenSans-Light.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/open-sans/OpenSans-Regular.eot), url(/fonts/open-sans/OpenSans-Regular.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url(/fonts/open-sans/OpenSans-Semibold.eot), url(/fonts/open-sans/OpenSans-Semibold.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url(/fonts/open-sans/OpenSans-Bold.eot), url(/fonts/open-sans/OpenSans-Bold.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url(/fonts/open-sans/OpenSans-ExtraBold.eot), url(/fonts/open-sans/OpenSans-ExtraBold.ttf); }

/* Italic style */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  src: url(/fonts/open-sans/OpenSans-LightItalic.eot), url(/fonts/open-sans/OpenSans-LightItalic.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url(/fonts/open-sans/OpenSans-Italic.eot), url(/fonts/open-sans/OpenSans-Italic.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: url(/fonts/open-sans/OpenSans-SemiboldItalic.eot), url(/fonts/open-sans/OpenSans-SemiboldItalic.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url(/fonts/open-sans/OpenSans-BoldItalic.eot), url(/fonts/open-sans/OpenSans-BoldItalic.ttf); }

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  src: url(/fonts/open-sans/OpenSans-ExtraBoldItalic.eot), url(/fonts/open-sans/OpenSans-ExtraBoldItalic.ttf); }

body {
  font-family: "Open Sans", sans-serif; }

p {
  margin: 0 0 .5em;
  line-height: 1.5; }

blockquote {
  font-size: 1.5em; }

cite {
  font-size: 1em;
  text-transform: uppercase;
  font-style: normal; }

template {
  display: none; }

span.custom-shy {
  display: inline-block; }

.hide {
  display: none; }

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

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: inherit;
  -webkit-font-smoothing: antialiased; }

html {
  -webkit-tap-highlight-color: transparent;
  background: #efefef; }

body {
  /*justify-content: space-between;*/
  min-height: 100vh;
  width: 100%;
  min-width: 320px;
  max-width: 1600px;
  margin: 0 auto;
  background-color: #FFF;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.5);
  -webkit-touch-callout: none; }
  @media (min-width: 1024px) {
    body {
      overflow-x: hidden; } }

a {
  color: currentColor; }

main {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
  top: 5rem;
  padding-bottom: 6rem; }
  @media (min-width: 769px) {
    main {
      padding-bottom: 0;
      top: auto; } }
  .episerver main {
    display: block; }

.mainBody img {
  max-width: 100%;
  height: auto; }

.mainBody p a {
  font-weight: bold; }

/* For Checkbox/Radio-hack */
.state {
  display: none; }

/* Extends */
.link::after, .menu .state:checked + .menu__label::after, .menu .menu__label:not(.no-panel)::after, .story__page__thumbnails__item__caption--calltoaction:after, .story__page .story__page__thumbnails__item__wrapper .story__page__thumbnails__item__caption--text:after {
  content: "";
  display: inline-block;
  width: calc(0.5em + 2px);
  height: calc(0.5em + 2px);
  margin: 0 0 0 0.25em;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #FF0000; }

.form__select__wrapper::after {
  content: "";
  border-top: 0.5em solid #FF0000;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  position: absolute;
  top: 50%;
  right: 2.25em;
  pointer-events: none;
  transform: translateY(-50%); }

@media (min-width: 0) {
  body {
    font-size: 13px; } }

@media (min-width: 640px) {
  body {
    font-size: 14px; } }

@media (min-width: 769px) {
  body {
    font-size: 15px; } }

@media (min-width: 1024px) {
  body {
    font-size: 16px; } }

@media (min-width: 1180px) {
  body {
    font-size: 16px; } }

@media (min-width: 1280px) {
  body {
    font-size: 17px; } }

@media (min-width: 1600px) {
  body {
    font-size: 18px; } }

.country .state:checked + label, .country .country__label {
  display: inline-block;
  position: relative;
  padding: 1em 3em;
  border-style: solid;
  border-color: #ccc;
  border-width: 1px 1px 0 1px;
  margin-right: 0.5em;
  text-align: center;
  text-transform: uppercase; }

.country .state:checked + label {
  background: #f00;
  border-color: #f00;
  color: #fff; }
  .country .state:checked + label::after {
    display: inline-block;
    bottom: -.4em;
    position: absolute;
    left: calc(50% - .4em);
    content: " ";
    transform: rotate(45deg);
    width: 1em;
    height: 1em;
    color: #f00;
    background-color: #f00; }

.icon__text {
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
  position: relative;
  top: 0.15em; }

.icon--red {
  fill: #FF0000; }

.icon--social {
  fill: #4B90B7; }

.iconblock_area {
  margin-bottom: 1em !important; }

.iconblock .icon-block {
  height: auto !important; }

.state {
  position: absolute;
  left: -10000px; }

.link {
  font-size: 1em;
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase; }
  .link::after {
    position: absolute;
    top: 50%;
    transform: rotate(-45deg) translateY(-60%); }
  @media (hover: hover) {
    .link:hover {
      color: #FF0000; } }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .link:hover {
      color: #FF0000; } }
  @supports (-moz-appearance: none) and (display: flex) {
    .link:hover {
      color: #FF0000; } }

.inner--padding {
  padding-left: 2.5%;
  padding-right: 2.5%; }
  @media (min-width: 1280px) {
    .inner--padding {
      padding-left: 0;
      padding-right: 0; } }

/* Global Elements */
.languageselector {
  /* NOT IN SPRINT, HIDE */
  display: none; }
  .languageselector .form__select {
    padding: 0.5em 2.25em 0.5em 0.5em;
    border: 1px solid #aaa;
    width: 100%;
    font-size: 0.75em; }

a.download--link::after,
p.download--link a:after {
  content: '';
  background: url(/Themes/Shared/ui/svg/download-icon.svg) no-repeat;
  background-size: cover;
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  margin-left: .5em;
  vertical-align: bottom; }

a.download--link,
p.download--link {
  display: table; }
  a.download--link:hover:after,
  p.download--link:hover:after {
    background-image: url(/Themes/Shared/ui/svg/download-icon--red.svg); }

.no-break {
  word-break: keep-all; }

.grey-link {
  color: #ccc;
  text-decoration: underline; }

.white-text {
  color: #fff; }

.grey-text {
  color: #aaa; }

.red-text {
  color: #f00; }

img {
  border: none; }

.chevron-after {
  margin-right: .5em; }
  .chevron-after::after {
    /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
    content: "";
    background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
    background-size: contain;
    width: .7em;
    height: .7em;
    display: inline-block;
    vertical-align: baseline;
    margin-left: .35em; }

.footnote {
  font-size: 12px; }

.is-preview .story__page__thumbnails__item__img__wrapper,
.episerver .story__page__thumbnails__item__img__wrapper {
  height: auto; }

.hide-on-desktop {
  display: block; }
  @media (min-width: 769px) {
    .hide-on-desktop {
      display: none; } }

.hide-on-mobile {
  display: none; }
  @media (min-width: 769px) {
    .hide-on-mobile {
      display: block; } }

.section__header {
  margin: 2em 0 0 0;
  color: #e10;
  font-size: 1.25em; }
  .section__header::after {
    display: block;
    content: "";
    border-bottom: 1px solid #CCCCCC;
    width: auto; }

.sectionpage__header {
  padding: 0em 0 .5em 0;
  overflow-wrap: break-word; }

.epi-wrapper img {
  width: 100%;
  max-width: 100%; }

.page-layout--iefix {
  height: 40vh; }

/* Grid Hacks */
.main > .epi-wrapper > [class*="grid-"] {
  padding-top: .75em; }

.grid-1-1 + .epi-wrapper > [class*="grid-1-1"]:first-of-type {
  padding-top: 0.875em; }

/* Align Background Images */
.bg-center {
  background-position: center; }

.bg-left {
  background-position: left; }

.bg-right {
  background-position: right; }

/* External Links */
a[data-action="External"]::after, a[data-action="External"].spot-block__wrapper-link .spot-block__link::after {
  content: "";
  background: url(/Themes/Shared/ui/svg/external_link.svg) no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  display: inline-block;
  margin: -.15em .25em 0 .15em;
  vertical-align: middle; }

@media (hover: hover) {
  a[data-action="External"]:hover::after, a[data-action="External"].spot-block__wrapper-link .spot-block__link:hover::after {
    background: url(/Themes/Shared/ui/svg/external_link--red.svg) no-repeat; } }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a[data-action="External"]:hover::after, a[data-action="External"].spot-block__wrapper-link .spot-block__link:hover::after {
    background: url(/Themes/Shared/ui/svg/external_link--red.svg) no-repeat; } }

@supports (-moz-appearance: none) and (display: flex) {
  a[data-action="External"]:hover::after, a[data-action="External"].spot-block__wrapper-link .spot-block__link:hover::after {
    background: url(/Themes/Shared/ui/svg/external_link--red.svg) no-repeat; } }

a[data-action="External"] {
  /* Don't show directly after spot-block, but after it's own link */ }
  a[data-action="External"].spot-block__wrapper-link::after {
    display: none; }

/* Lists in content */
ul:not([class]), ol:not([class]) {
  padding: 0 0 0 2em; }

ul:not([class]), ol:not([class]) {
  margin: 1em 0; }

/* Table in Richtext */
table {
  max-width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse; }
  table th, table thead tr {
    background-color: #ddd; }
  table td, table th {
    padding: 0.25rem; }

table[border="1"] {
  border: 1px solid #666; }

.takeda__table--striped tr:nth-of-type(odd) {
  background-color: #efefef; }

.takeda__table--striped tr:nth-of-type(even) {
  background-color: #FFF; }

.takeda__table--striped thead tr {
  background-color: #ddd !important; }

.takeda__table--striped thead + tbody tr:nth-of-type(even) {
  background-color: #efefef; }

.takeda__table--striped thead + tbody tr:nth-of-type(odd) {
  background-color: #FFF; }

.takeda__table__wrapper {
  overflow-x: auto; }

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

.richtext a {
  font-weight: bold; }

.form__select__wrapper {
  position: relative;
  margin: 1em 0;
  width: 100%;
  display: inline-block; }
  @media (min-width: 640px) {
    .form__select__wrapper {
      width: 25%; } }
  .form__select__wrapper .form__select {
    width: 100%;
    padding: 0.75em;
    padding-right: 4em; }
    .form__select__wrapper .form__select::-ms-expand {
      display: none; }
  .form__select__wrapper::after {
    right: 1em !important; }

/*.backgroundColor-color1.richtext--custom p a,
.backgroundColor-color2.richtext--custom p a,
.backgroundColor-color3.richtext--custom p a,
.backgroundColor-color4.richtext--custom p a,
.backgroundColor-color5.richtext--custom p a,
.backgroundColor-color6.richtext--custom p a,*/
a.removebold, .removebold a {
  font-weight: normal !important; }

/* Theme Heading Colors */
.headingColor-color1.custom--head,
.headingColor-color1 .custom--head,
.headingColor-color1 .news-list__title {
  color: #000; }

.backgroundColor-color1 {
  background-color: #000; }

.vbackgroundColor-color1 [class$="data--value"] {
  background-color: #000; }

.extended-list.backgroundColor-color1,
.news-list.backgroundColor-color1 {
  background: transparent !important; }
  .extended-list.backgroundColor-color1 .extended-list__row:nth-child(2n),
  .extended-list.backgroundColor-color1 .news-list__content__item:nth-child(2n),
  .news-list.backgroundColor-color1 .extended-list__row:nth-child(2n),
  .news-list.backgroundColor-color1 .news-list__content__item:nth-child(2n) {
    background-color: #000; }

.headingColor-color2.custom--head,
.headingColor-color2 .custom--head,
.headingColor-color2 .news-list__title {
  color: #e10; }

.backgroundColor-color2 {
  background-color: #e10; }

.vbackgroundColor-color2 [class$="data--value"] {
  background-color: #e10; }

.extended-list.backgroundColor-color2,
.news-list.backgroundColor-color2 {
  background: transparent !important; }
  .extended-list.backgroundColor-color2 .extended-list__row:nth-child(2n),
  .extended-list.backgroundColor-color2 .news-list__content__item:nth-child(2n),
  .news-list.backgroundColor-color2 .extended-list__row:nth-child(2n),
  .news-list.backgroundColor-color2 .news-list__content__item:nth-child(2n) {
    background-color: #e10; }

.headingColor-color3.custom--head,
.headingColor-color3 .custom--head,
.headingColor-color3 .news-list__title {
  color: #999; }

.backgroundColor-color3 {
  background-color: #999; }

.vbackgroundColor-color3 [class$="data--value"] {
  background-color: #999; }

.extended-list.backgroundColor-color3,
.news-list.backgroundColor-color3 {
  background: transparent !important; }
  .extended-list.backgroundColor-color3 .extended-list__row:nth-child(2n),
  .extended-list.backgroundColor-color3 .news-list__content__item:nth-child(2n),
  .news-list.backgroundColor-color3 .extended-list__row:nth-child(2n),
  .news-list.backgroundColor-color3 .news-list__content__item:nth-child(2n) {
    background-color: #999; }

.headingColor-color4.custom--head,
.headingColor-color4 .custom--head,
.headingColor-color4 .news-list__title {
  color: #f6f6f6; }

.backgroundColor-color4 {
  background-color: #f6f6f6; }

.vbackgroundColor-color4 [class$="data--value"] {
  background-color: #f6f6f6; }

.extended-list.backgroundColor-color4,
.news-list.backgroundColor-color4 {
  background: transparent !important; }
  .extended-list.backgroundColor-color4 .extended-list__row:nth-child(2n),
  .extended-list.backgroundColor-color4 .news-list__content__item:nth-child(2n),
  .news-list.backgroundColor-color4 .extended-list__row:nth-child(2n),
  .news-list.backgroundColor-color4 .news-list__content__item:nth-child(2n) {
    background-color: #f6f6f6; }

.headingColor-color5.custom--head,
.headingColor-color5 .custom--head,
.headingColor-color5 .news-list__title {
  color: #ccc; }

.backgroundColor-color5 {
  background-color: #ccc; }

.vbackgroundColor-color5 [class$="data--value"] {
  background-color: #ccc; }

.extended-list.backgroundColor-color5,
.news-list.backgroundColor-color5 {
  background: transparent !important; }
  .extended-list.backgroundColor-color5 .extended-list__row:nth-child(2n),
  .extended-list.backgroundColor-color5 .news-list__content__item:nth-child(2n),
  .news-list.backgroundColor-color5 .extended-list__row:nth-child(2n),
  .news-list.backgroundColor-color5 .news-list__content__item:nth-child(2n) {
    background-color: #ccc; }

.headingColor-color6.custom--head,
.headingColor-color6 .custom--head,
.headingColor-color6 .news-list__title {
  color: #FFF; }

.backgroundColor-color6 {
  background-color: #FFF; }

.vbackgroundColor-color6 [class$="data--value"] {
  background-color: #FFF; }

.extended-list.backgroundColor-color6,
.news-list.backgroundColor-color6 {
  background: transparent !important; }
  .extended-list.backgroundColor-color6 .extended-list__row:nth-child(2n),
  .extended-list.backgroundColor-color6 .news-list__content__item:nth-child(2n),
  .news-list.backgroundColor-color6 .extended-list__row:nth-child(2n),
  .news-list.backgroundColor-color6 .news-list__content__item:nth-child(2n) {
    background-color: #FFF; }

.backgroundColor-transparent .extended-list__row:nth-child(n),
.backgroundColor-transparent .news-list__content__item:nth-child(2n) {
  background: transparent; }

/* Theme Links*/
.linkCasing-uppercase .custom--link, .linkCasing-uppercase.custom--link,
.linkCasing-uppercase .news-list__title {
  text-transform: uppercase; }

/* Theme Font Weight */
.linkStyling-bold .custom--link, .linkStyling-bold.custom--link,
.linkStyling-bold .news-list__title,
.headingStyling-bold .custom--link,
.headingStyling-bold.custom--link,
.headingStyling-bold .news-list__title {
  font-weight: bold; }

.linkStyling-normal .custom--link, .linkStyling-normal.custom--link,
.linkStyling-normal .news-list__title,
.headingStyling-normal .custom--link,
.headingStyling-normal.custom--link,
.headingStyling-normal .news-list__title {
  font-weight: 400; }

/* Theme Casing */
.headingCasing-uppercase .custom--head, .headingCasing-uppercase.custom--head,
.headingCasing-uppercase .news-list__title {
  text-transform: uppercase; }

.main {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start; }
  .main__header {
    width: 100%;
    height: 5rem;
    padding: 0;
    position: fixed;
    top: 0;
    background: #fff;
    border-top: 1rem solid #e10;
    z-index: 8000;
    border-bottom: 1px solid #ccc; }
    @media (min-width: 769px) {
      .main__header {
        position: static;
        padding: 1rem 0 0;
        height: auto; } }
    .main__header__logo {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      margin: 0 0 0 2.5%;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      @media (min-width: 769px) {
        .main__header__logo {
          margin: 0; } }
      .main__header__logo__image {
        width: 6em;
        border: 0;
        margin: 0 1em 0 0; }
        @media (min-width: 769px) {
          .main__header__logo__image {
            width: 8em; } }
    .main__header__top {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      height: 100%; }
      @media (min-width: 769px) {
        .main__header__top {
          height: auto;
          padding: 0 2.5%;
          -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
      @media (min-width: 1180px) {
        .main__header__top {
          padding: 0; } }
      .main__header__top > .main__header__logo:hover .main__header__tagline {
        color: #000; }
      .main__header__top::after {
        content: none; }
    .main__header__nav {
      float: right;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      .main__header__nav .countryselector__url {
        margin: 0.5em 0 0.5em 1.7em;
        display: inline-block; }
        .main__header__nav .countryselector__url span {
          margin-left: 0.5em;
          vertical-align: middle;
          text-transform: capitalize; }
    .main__header__tagline {
      font-size: 0.925em;
      font-weight: 600;
      font-style: italic;
      max-width: 8em; }
      @media (min-width: 640px) {
        .main__header__tagline {
          white-space: nowrap; }
          .main__header__tagline--break::before {
            display: none; } }
      @media (min-width: 769px) {
        .main__header__tagline {
          font-size: 0.875em;
          top: unset;
          white-space: normal; } }
      @media (min-width: 1024px) {
        .main__header__tagline {
          font-size: 0.925em;
          display: block;
          max-width: none; } }
      .main__header__tagline--break::before {
        content: "\A";
        white-space: pre; }
        @media (min-width: 769px) {
          .main__header__tagline--break::before {
            content: unset; } }
        @media (min-width: 1280px) {
          .main__header__tagline--break::before {
            content: none; } }
    .main__header::after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 769px) {
      .main__header--scroll {
        position: fixed;
        top: 0;
        left: 0;
        border: 0;
        background: transparent;
        padding: 0;
        -webkit-animation: menuSlideDown 0.5s both;
        animation: menuSlideDown 0.5s both; }
      .main__header--scroll .main__header__top {
        display: none; }
      .main__header--scroll .menu__inner {
        margin: 0 auto;
        font-size: 0.875em;
        padding: 0;
        width: 100%;
        max-width: 1600px;
        background: #fff;
        box-shadow: 0 0.35em 0.5em 0 rgba(0, 0, 0, 0.35); }
      .main__header--scroll .menu__inner .main__header__logo {
        display: block;
        -webkit-flex: 1 1 6em;
        -ms-flex: 1 1 6em;
        flex: 1 1 6em;
        margin: 0.5em 1em 0 0; }
      .main__header--scroll .menu__inner .main__header__logo__image {
        width: 6em;
        max-height: 2.25em; } }

.menu .main__header__logo {
  display: none; }

.episerver .main {
  display: block; }

@-webkit-keyframes menuFadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes menuFadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes menuSlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes menuSlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

body > main > .inner {
  padding-left: 2.5%;
  padding-right: 2.5%; }
  @media (min-width: 1180px) {
    body > main > .inner {
      padding-left: 0;
      padding-right: 0; } }

.richtext a[id] {
  display: block;
  margin-top: -7em;
  padding-top: 5em; }
  @media (min-width: 1024px) {
    .richtext a[id] {
      margin-top: -5em;
      padding-top: 3em; } }

.close-menu {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0.5em;
  right: 1em;
  border: 1px solid #777;
  border-radius: 2em;
  background-color: #777;
  transition: all .2s; }
  .close-menu:hover {
    background-color: red;
    border-color: red; }
  .close-menu:before, .close-menu:after {
    position: absolute;
    top: 23%;
    left: 47%;
    content: ' ';
    height: 15px;
    width: 1.5px;
    background-color: #fff; }
  .close-menu:before {
    transform: rotate(45deg); }
  .close-menu:after {
    transform: rotate(-45deg); }
  @media (min-width: 769px) {
    .close-menu {
      top: 1em; } }

#secondary__toggle--nav:checked + label .secondary__heading:before {
  transform: rotate(180deg);
  opacity: 0; }

#secondary__toggle--nav:checked + label .secondary__heading:after {
  transform: rotate(180deg); }

#secondary__toggle--nav:checked ~ .secondary__dropdown {
  max-height: 50em; }

#secondary__toggle--nav {
  position: fixed;
  left: -9999px; }
  #secondary__toggle--nav + label {
    display: block; }

/* Components (Global) */
.breadcrumb-social__wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: .5em 0 0 0; }
  .breadcrumb-social__wrapper + .flex-row > [class*='grid-'] {
    padding-top: 0; }
  @media (min-width: 1024px) {
    .breadcrumb-social__wrapper + .flex-row > [class*='grid-'] {
      padding-top: .75em; } }
  .breadcrumb-social__wrapper + .hero {
    margin-top: 1.5%; }
  @supports (-moz-appearance: none) and (display: flex) {
    .breadcrumb-social__wrapper {
      padding: 15px 0 0 0; }
      .breadcrumb-social__wrapper + .hero {
        margin-top: 15px; } }

.countryselector__url {
  text-transform: uppercase; }
  .content-banner .countryselector__url {
    font-size: 0.875em;
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    padding: 1em 2em; }
    .content-banner .countryselector__url::after {
      /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
      content: "";
      background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
      background-size: contain;
      width: .7em;
      height: .7em;
      display: inline-block;
      vertical-align: baseline;
      margin-left: .35em; }

#dc_login_iframe {
  /* Scale down iframe if viewPort is less than the default size of the iframe: 500px; */ }
  @media only screen and (max-width: 320px) {
    #dc_login_iframe {
      transform-origin: 0 0;
      transform: scale(0.65); } }
  @media only screen and (min-width: 321px) and (max-width: 768px) {
    #dc_login_iframe {
      transform-origin: 0 0;
      transform: scale(0.75); } }
  @media only screen and (min-width: 769px) and (max-width: 1180px) {
    #dc_login_iframe {
      transform-origin: 0 0;
      transform: scale(0.85); } }

.EurolandTool {
  border: none; }

.tabs__panel .news-list__content__item {
  background: none !important; }

.tabs__panel .news-list__content__item--date {
  font-size: 0.9em;
  padding: 0.5em 0;
  width: 15%; }
  .tabs__panel .news-list__content__item--date .hide-on-desktop-inline {
    display: inline !important; }

.tabs__panel .news-list__content__item--body {
  font-size: 1em;
  padding: 0.5em 0 0.5em 0.25em;
  width: 100%; }

.tabs__panel .news-list__content__item--actions {
  display: none; }

@media (min-width: 769px) {
  .tabs__panel .news-list__content__item--body {
    font-size: 0.875em; }
  .tabs__panel .news-list__content__item--date {
    font-size: 0.75em; } }

a:hover .circle-icon,
[data-share-contentid]:hover svg {
  fill: #f00;
  color: #fff; }

.feed {
  width: 100%;
  max-width: 1200px; }
  .feed--error {
    text-align: center;
    color: #f00;
    font-weight: bold;
    margin: 2em 0; }

@media (max-width: 768px) {
  #stockticker {
    text-align: center; }
  #stockticker > section {
    display: inline-block;
    text-align: left; } }

.euroland {
  padding: 15px 25px; }
  .euroland table th {
    background-color: transparent;
    text-align: left;
    font-weight: 700;
    font-size: 16px; }
  .euroland .spot-block__link.custom--link {
    text-transform: uppercase;
    display: block;
    /*font-weight: 700;*/ }
  .euroland__stock p, .euroland .spot-block__link.custom--link {
    line-height: normal;
    font-size: 14px;
    padding-top: 12px; }
  .euroland__stock__content {
    width: 100%; }
    .euroland__stock__content--headline {
      text-align: left;
      color: #ff0000;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 15px; }
      .euroland__stock__content--headline--content {
        font-size: 14px;
        font-weight: 400; }
    .euroland__stock__content--last--title, .euroland__stock__content--change--title {
      padding: 1.5em 0.25rem;
      font-weight: 700;
      font-size: .9em; }
      @media (min-width: 640px) {
        .euroland__stock__content--last--title, .euroland__stock__content--change--title {
          padding: 20px 0.25rem; } }
    .euroland__stock__content--last--data, .euroland__stock__content--change--data {
      font-size: 2em;
      font-weight: 700;
      padding: 0;
      text-align: right; }
      @media (min-width: 640px) {
        .euroland__stock__content--last--data, .euroland__stock__content--change--data {
          font-size: 1.5em; } }
      .euroland__stock__content--last--data--value, .euroland__stock__content--change--data--value {
        display: inline-block;
        background: #999;
        font-size: 30px;
        font-weight: 700;
        padding: 5px 15px;
        background: #ccc;
        border-radius: 8px; }
      .euroland__stock__content--last--data--currency, .euroland__stock__content--change--data--currency {
        color: #000;
        font-size: .6em; }
    .euroland__stock__content--change--data {
      position: relative; }

@keyframes spin {
  to {
    transform: rotate(1turn); } }

.stock__ticker__loader {
  font-size: 20px;
  position: relative;
  display: block;
  left: 0;
  right: 0;
  margin: 1em auto;
  width: 5em;
  height: 5em;
  text-indent: 999em;
  overflow: hidden;
  animation: spin 1s infinite steps(8); }
  .stock__ticker__loader:before, .stock__ticker__loader:after, .stock__ticker__loader--inner::before, .stock__ticker__loader--inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 2.45em;
    width: .1em;
    height: 1.5em;
    border-radius: .2em;
    background: #ffcccc;
    box-shadow: 0 3.5em #ffe6e6;
    transform-origin: 50% 2.5em; }
  .stock__ticker__loader::before {
    background: #f00; }
  .stock__ticker__loader::after {
    transform: rotate(-45deg);
    background: #ff3333; }
  .stock__ticker__loader--inner::before {
    transform: rotate(-90deg);
    background: #ff6666; }
  .stock__ticker__loader--inner::after {
    transform: rotate(-135deg);
    background: #ff9999; }
  .stock__ticker__loader--text {
    font-weight: bold;
    text-align: center;
    color: #f00; }

/* fix for edit mode*/
.is-preview .pagedisclaimerblock {
  width: 100%; }

.content-banner-with-link .countryselector__url .icon__img {
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
  position: relative;
  top: 0.15em; }

.language-selector {
  position: relative;
  margin: 1em;
  z-index: 800; }
  @media (min-width: 769px) {
    .language-selector {
      margin: 0 0 0 1em; }
      .language-selector__overlay.js-active {
        display: block; } }
  .language-selector__overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .language-selector__overlay.js-active + .language-selector__item::after {
      -webkit-transform: rotate(45deg) scale(-1, -1);
      transform: rotate(45deg) scale(-1, -1);
      top: 10px; }
  .language-selector__item {
    font-weight: 600;
    left: 0;
    text-transform: uppercase;
    padding: .25em; }
    .language-selector__item--active {
      position: relative;
      border: 1px solid #ccc;
      padding: .25em 3em .25em .5em;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      cursor: default; }
      .language-selector__item--active::after {
        content: '';
        position: absolute;
        top: 5px;
        right: 1em;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid red;
        border-right: 2px solid red;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        transition: all .3s;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
  .language-selector__list {
    position: relative;
    list-style: none;
    border-width: 1px;
    padding-top: .5em;
    border-style: solid;
    background: #fff;
    border-color: #ccc;
    transition: all .3s ease-in-out; }
    .language-selector__list-wrap {
      height: 0;
      overflow: hidden;
      transition: all .5s; }
      @media (min-width: 769px) {
        .language-selector__list-wrap {
          position: absolute;
          min-width: 100%;
          top: 100%;
          left: 0; } }
  .footer .language-selector__list-wrap {
    bottom: 100%;
    top: initial; }
  .footer .language-selector {
    margin: 1em 0;
    display: table;
    font-size: 0.8em; }

:lang(ar) *,
:lang(he) *,
:lang(he-IL) * {
  direction: rtl; }

:lang(ar) .main__header__nav .countryselector__url,
:lang(he) .main__header__nav .countryselector__url,
:lang(he-IL) .main__header__nav .countryselector__url {
  margin: 0.5em 1em 0.5em 0; }

:lang(ar) .menu__panel__link,
:lang(he) .menu__panel__link,
:lang(he-IL) .menu__panel__link {
  text-align: right; }

:lang(ar) .menu,
:lang(ar) .menu .inner,
:lang(he) .menu,
:lang(he) .menu .inner,
:lang(he-IL) .menu,
:lang(he-IL) .menu .inner {
  padding-left: 0;
  padding-right: 0; }

:lang(ar) .footer__content,
:lang(ar) .inner,
:lang(ar) .menu,
:lang(he) .footer__content,
:lang(he) .inner,
:lang(he) .menu,
:lang(he-IL) .footer__content,
:lang(he-IL) .inner,
:lang(he-IL) .menu {
  max-width: 95%; }

:lang(ar) .menu__sub,
:lang(he) .menu__sub,
:lang(he-IL) .menu__sub {
  text-align: right; }
  :lang(ar) .menu__sub__expanded,
  :lang(he) .menu__sub__expanded,
  :lang(he-IL) .menu__sub__expanded {
    text-align: right; }

@media (min-width: 769px) {
  :lang(ar) .menu__panel__inner,
  :lang(he) .menu__panel__inner,
  :lang(he-IL) .menu__panel__inner {
    max-width: 95%; } }

:lang(ar) .menu__label,
:lang(he) .menu__label,
:lang(he-IL) .menu__label {
  margin-right: 0; }

:lang(ar) .countryselector__url::after,
:lang(ar) .hero-spot__content__link::after,
:lang(ar) .spot-block__link::after,
:lang(he) .countryselector__url::after,
:lang(he) .hero-spot__content__link::after,
:lang(he) .spot-block__link::after,
:lang(he-IL) .countryselector__url::after,
:lang(he-IL) .hero-spot__content__link::after,
:lang(he-IL) .spot-block__link::after {
  transform: rotateY(180deg);
  margin-right: 5.6px; }

@media (min-width: 769px) {
  :lang(ar) .executive__content,
  :lang(he) .executive__content,
  :lang(he-IL) .executive__content {
    padding-right: 0;
    padding-left: 1em; } }

:lang(ar) .executive__content__link::after,
:lang(he) .executive__content__link::after,
:lang(he-IL) .executive__content__link::after {
  padding-right: 0.2em; }

:lang(ar) .main__header__logo__image,
:lang(he) .main__header__logo__image,
:lang(he-IL) .main__header__logo__image {
  margin: 0 0 0 1em; }

:lang(ar) .countryselector__url a,
:lang(he) .countryselector__url a,
:lang(he-IL) .countryselector__url a {
  margin-right: 0.5em; }

:lang(ar) .icon__text,
:lang(he) .icon__text,
:lang(he-IL) .icon__text {
  margin-left: 0.3em; }

@media (min-width: 640px) {
  :lang(ar) .hero-spot__content,
  :lang(he) .hero-spot__content,
  :lang(he-IL) .hero-spot__content {
    margin: 20px 20px 20px 0; } }

@media (min-width: 640px) {
  :lang(ar) .hero-spot__content--left,
  :lang(he) .hero-spot__content--left,
  :lang(he-IL) .hero-spot__content--left {
    margin: 20px 0 20px 20px; } }

@media (min-width: 769px) {
  :lang(ar) .hero-spot__content--left,
  :lang(he) .hero-spot__content--left,
  :lang(he-IL) .hero-spot__content--left {
    margin: 20px 0 60px 20px; } }

:lang(ar) .hero-spot__content__link,
:lang(he) .hero-spot__content__link,
:lang(he-IL) .hero-spot__content__link {
  text-align: left; }
  :lang(ar) .hero-spot__content__link::after,
  :lang(he) .hero-spot__content__link::after,
  :lang(he-IL) .hero-spot__content__link::after {
    margin-right: 0.35em; }

:lang(ar) .content-banner__content h4,
:lang(ar) .content-banner__content p,
:lang(he) .content-banner__content h4,
:lang(he) .content-banner__content p,
:lang(he-IL) .content-banner__content h4,
:lang(he-IL) .content-banner__content p {
  text-align: right !important; }

:lang(ar) .content-banner .countryselector__url,
:lang(he) .content-banner .countryselector__url,
:lang(he-IL) .content-banner .countryselector__url {
  text-align: right; }

:lang(ar) .hero-spot--background,
:lang(he) .hero-spot--background,
:lang(he-IL) .hero-spot--background {
  transform: rotateY(180deg); }

:lang(ar) .social-sharing,
:lang(he) .social-sharing,
:lang(he-IL) .social-sharing {
  margin-right: auto;
  margin-left: 0; }

:lang(ar) .social-sharing__icons .icon,
:lang(he) .social-sharing__icons .icon,
:lang(he-IL) .social-sharing__icons .icon {
  margin-right: 0.5em;
  margin-left: 0; }

:lang(ar)__social__icon,
:lang(he)__social__icon,
:lang(he-IL)__social__icon {
  margin: 0 0.5em 0 0; }

:lang(ar) .footer,
:lang(he) .footer,
:lang(he-IL) .footer {
  border-left: none;
  border-right: 1em solid #f00;
  background: linear-gradient(to right, #d9d9d9, white); }
  :lang(ar) .footer__social-wrap,
  :lang(he) .footer__social-wrap,
  :lang(he-IL) .footer__social-wrap {
    padding-left: 0;
    padding-right: 0;
    border-left: none; }
    @media (min-width: 1024px) {
      :lang(ar) .footer__social-wrap,
      :lang(he) .footer__social-wrap,
      :lang(he-IL) .footer__social-wrap {
        border-right: 1px solid #aaa;
        padding-right: 4em; } }
  :lang(ar) .footer__social__icon,
  :lang(he) .footer__social__icon,
  :lang(he-IL) .footer__social__icon {
    margin: 0 0.5em 0 0; }
  @media (max-width: 768px) {
    :lang(ar) .footer__social__text,
    :lang(he) .footer__social__text,
    :lang(he-IL) .footer__social__text {
      margin-right: 0;
      margin-left: 10px; } }

:lang(ar) .search,
:lang(he) .search,
:lang(he-IL) .search {
  width: auto;
  margin-right: 5em; }

@media (min-width: 1024px) {
  :lang(ar) .breadcrumbs,
  :lang(he) .breadcrumbs,
  :lang(he-IL) .breadcrumbs {
    display: inherit; } }

:lang(ar) .executive__image,
:lang(he) .executive__image,
:lang(he-IL) .executive__image {
  padding-left: 1em;
  padding-right: 0; }

@media (min-width: 769px) {
  :lang(ar) .state:checked + .menu__label + .menu__panel .menu__panel__inner .menu__sub,
  :lang(he) .state:checked + .menu__label + .menu__panel .menu__panel__inner .menu__sub,
  :lang(he-IL) .state:checked + .menu__label + .menu__panel .menu__panel__inner .menu__sub {
    padding-left: 0.75em;
    padding-right: 0; } }

:lang(ar) .close-menu,
:lang(he) .close-menu,
:lang(he-IL) .close-menu {
  right: auto;
  left: 1em; }

:lang(ar) .totop__inner,
:lang(he) .totop__inner,
:lang(he-IL) .totop__inner {
  text-align: left; }

:lang(ar) #epi-quickNavigator,
:lang(he) #epi-quickNavigator,
:lang(he-IL) #epi-quickNavigator {
  right: auto;
  left: 10px; }

:lang(ar) .secondary__heading:before,
:lang(he) .secondary__heading:before,
:lang(he-IL) .secondary__heading:before {
  left: 30px;
  right: auto; }
  @media (min-width: 1024px) {
    :lang(ar) .secondary__heading:before,
    :lang(he) .secondary__heading:before,
    :lang(he-IL) .secondary__heading:before {
      display: none; } }

:lang(ar) .secondary__heading:after,
:lang(he) .secondary__heading:after,
:lang(he-IL) .secondary__heading:after {
  left: 20px;
  right: auto; }

@media (min-width: 1024px) {
  :lang(ar) .secondary__sublink,
  :lang(he) .secondary__sublink,
  :lang(he-IL) .secondary__sublink {
    margin-left: 1em;
    margin-right: 2em; } }

@media (min-width: 769px) {
  :lang(ar) .news-list__content__item--actions,
  :lang(he) .news-list__content__item--actions,
  :lang(he-IL) .news-list__content__item--actions {
    text-align: left; } }

:lang(ar) .news__rss,
:lang(he) .news__rss,
:lang(he-IL) .news__rss {
  float: left; }

:lang(ar) .story__page__thumbnails__item__caption--text,
:lang(he) .story__page__thumbnails__item__caption--text,
:lang(he-IL) .story__page__thumbnails__item__caption--text {
  padding-right: 0;
  padding-left: 2em; }

:lang(ar) .story__page__share,
:lang(he) .story__page__share,
:lang(he-IL) .story__page__share {
  right: auto;
  left: 0; }

@media (min-width: 769px) {
  :lang(ar) .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--content,
  :lang(he) .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--content,
  :lang(he-IL) .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--content {
    padding-left: 2em;
    padding-right: 0.5em; } }

:lang(ar) .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--text,
:lang(he) .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--text,
:lang(he-IL) .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--text {
  padding-right: 0;
  padding-left: 2em; }

:lang(ar) .accordion__title--heading,
:lang(he) .accordion__title--heading,
:lang(he-IL) .accordion__title--heading {
  margin: 0 0 0 1em; }

:lang(ar) .accordion__title--subheading,
:lang(he) .accordion__title--subheading,
:lang(he-IL) .accordion__title--subheading {
  padding-right: 0;
  padding-left: 1.5em; }

:lang(ar) .accordion__title__wrapper:after,
:lang(he) .accordion__title__wrapper:after,
:lang(he-IL) .accordion__title__wrapper:after {
  right: auto;
  left: 1em; }

:lang(ar) .accordion__title__wrapper:before,
:lang(he) .accordion__title__wrapper:before,
:lang(he-IL) .accordion__title__wrapper:before {
  right: auto;
  left: 1.5em; }

:lang(ar) .accordion__title:nth-child(n+3):after,
:lang(he) .accordion__title:nth-child(n+3):after,
:lang(he-IL) .accordion__title:nth-child(n+3):after {
  right: 7.5%;
  left: auto; }

:lang(ar) .accordion__content img,
:lang(he) .accordion__content img,
:lang(he-IL) .accordion__content img {
  float: right;
  margin: 0 0 1em 2em; }

:lang(ar) ol:not([class]),
:lang(ar) ul:not([class]),
:lang(he) ol:not([class]),
:lang(he) ul:not([class]),
:lang(he-IL) ol:not([class]),
:lang(he-IL) ul:not([class]) {
  padding: 0 2em 0 0; }

:lang(ar) .richtext > ul li,
:lang(he) .richtext > ul li,
:lang(he-IL) .richtext > ul li {
  padding-right: 1em;
  padding-left: 0; }
  :lang(ar) .richtext > ul li:before,
  :lang(he) .richtext > ul li:before,
  :lang(he-IL) .richtext > ul li:before {
    left: auto;
    right: 0; }

:lang(ar) .search-results__pagination__page [rel="next"],
:lang(he) .search-results__pagination__page [rel="next"],
:lang(he-IL) .search-results__pagination__page [rel="next"] {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg); }

:lang(ar) .search-results__pagination__page [rel="prev"],
:lang(he) .search-results__pagination__page [rel="prev"],
:lang(he-IL) .search-results__pagination__page [rel="prev"] {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

:lang(ar) .search-results .search__submit::after,
:lang(he) .search-results .search__submit::after,
:lang(he-IL) .search-results .search__submit::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

:lang(ar) .search-results__result__img,
:lang(he) .search-results__result__img,
:lang(he-IL) .search-results__result__img {
  margin-right: 0;
  margin-left: 1em; }

:lang(ar) .search-results .search,
:lang(he) .search-results .search,
:lang(he-IL) .search-results .search {
  margin-right: 0; }

:lang(ar) a.download--link::after,
:lang(ar) p.download--link a:after,
:lang(he) a.download--link::after,
:lang(he) p.download--link a:after,
:lang(he-IL) a.download--link::after,
:lang(he-IL) p.download--link a:after {
  margin-left: 0;
  margin-right: 0.5em; }

:lang(ar) .richtext--custom ul li a .red-text,
:lang(he) .richtext--custom ul li a .red-text,
:lang(he-IL) .richtext--custom ul li a .red-text {
  margin-left: 0;
  margin-right: 0.35em; }

:lang(ar) .menu__toggle--mobile--wrapper,
:lang(he) .menu__toggle--mobile--wrapper,
:lang(he-IL) .menu__toggle--mobile--wrapper {
  right: auto;
  left: 0; }

:lang(ar) .search__toggle,
:lang(he) .search__toggle,
:lang(he-IL) .search__toggle {
  right: auto;
  left: 4rem; }

:lang(ar) .menu__label,
:lang(he) .menu__label,
:lang(he-IL) .menu__label {
  text-align: right; }

:lang(ar) .menu .menu__label:not(.no-panel)::after,
:lang(he) .menu .menu__label:not(.no-panel)::after,
:lang(he-IL) .menu .menu__label:not(.no-panel)::after {
  right: auto;
  left: 1em;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }

:lang(ar) .menu__panel__submenu__link::after,
:lang(ar) .menu__sub__heading::after,
:lang(he) .menu__panel__submenu__link::after,
:lang(he) .menu__sub__heading::after,
:lang(he-IL) .menu__panel__submenu__link::after,
:lang(he-IL) .menu__sub__heading::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }

:lang(ar) .menu__panel__link::after,
:lang(he) .menu__panel__link::after,
:lang(he-IL) .menu__panel__link::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

@media (max-width: 768px) {
  :lang(ar) .menu--dir-right .menu__wrapper,
  :lang(he) .menu--dir-right .menu__wrapper,
  :lang(he-IL) .menu--dir-right .menu__wrapper {
    left: -80%;
    right: auto; }
  :lang(ar) .menu--dir-right .menu__toggle--mobile:checked ~ .menu__wrapper,
  :lang(he) .menu--dir-right .menu__toggle--mobile:checked ~ .menu__wrapper,
  :lang(he-IL) .menu--dir-right .menu__toggle--mobile:checked ~ .menu__wrapper {
    right: auto;
    left: 0; } }

:lang(ar) .link::after,
:lang(he) .link::after,
:lang(he-IL) .link::after {
  -webkit-transform: rotate(135deg) translateY(60%);
  transform: rotate(135deg) translateY(60%); }

/*

╔══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
    
    Beware of font-family implementation beneath. While Japanese, Korean and Chinese are tread as one CJK bundle there is no
    way to avoid mixing the fonts of each one using the unicode ranges (see ./Fonts/_cjk-regions.scss). Since all are Noto Sans
    it is not issue.

    If the fonts differ in future font-family must be implemented as mentioned in ./Font/Usage-example.txt. For information
    on this you may start at ./Fonts/Information.txt.

    See https://www.google.com/get/noto/help/cjk/ for information about Noto Sans fonts included.

    Because some of classic Latin and common symbols are included in CJK, Vietnamese unicode ranges Open Sans for latin etc.
    must be uncluded to override this behavior.
    
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
    
*/
/* ⁜⁜⁜

    Client is complying about font sizes – temporary solution font load file commenting out.

⁜⁜⁜ */
/*@import "Fonts/_cjk-regions.scss";
@import "Fonts/_open-sans-latin.scss";

* {
    @include font-family("Noto Sans CJK JP", "Noto Sans CJK KR", "Noto Sans CJK TC", "Open Sans Latin");
}

 */
/* Bootstrap part start */
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }

.fade.in {
  opacity: 1; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8001;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  -o-transition: -o-transform .3s ease-in-out;
  transition: transform .3s ease-in-out; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

@media (max-width: 480px) {
  .modal-header, .modal-content p, .modal-content button {
    font-size: 13px !important; }
  .modal-body .cancel {
    font-size: .8em !important; } }

@media (max-width: 991px) {
  .block-externaldisclaimer.in .modal-dialog {
    width: auto !important;
    margin: 1em; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none; }

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none; }

/* Bootstrap part end */
.block-externaldisclaimer.in:before {
  display: block;
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); }

.block-externaldisclaimer.in .modal-dialog {
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
  width: 100%;
  max-width: 900px; }

.block-externaldisclaimer .modal-dialog {
  margin-top: 0;
  margin-bottom: 0; }

.block-externaldisclaimer .modal-header {
  border: none;
  padding: 0;
  font-size: 18px; }
  .block-externaldisclaimer .modal-header .close {
    display: none; }

.block-externaldisclaimer .modal-footer {
  border: none;
  min-height: 0;
  padding: 0; }

.block-externaldisclaimer .modal-content {
  padding: 2em;
  border-radius: 10px;
  margin-top: 10px; }

.block-externaldisclaimer .modal-body {
  white-space: pre-line;
  line-height: 5px;
  text-align: center;
  padding: 10px 0 0; }
  .block-externaldisclaimer .modal-body a.btn {
    vertical-align: bottom; }
    .block-externaldisclaimer .modal-body a.btn:hover {
      cursor: pointer; }
  .block-externaldisclaimer .modal-body .ok {
    border: 1px solid #f00;
    background-color: #fff;
    color: #f00; }
    .block-externaldisclaimer .modal-body .ok:focus, .block-externaldisclaimer .modal-body .ok:hover {
      cursor: default; }
  .block-externaldisclaimer .modal-body .cancel {
    color: #999;
    background-color: #fff;
    border: none;
    min-height: 0;
    padding: 0;
    margin-top: 14px; }
    .block-externaldisclaimer .modal-body .cancel:focus, .block-externaldisclaimer .modal-body .cancel:hover {
      cursor: pointer; }
  .block-externaldisclaimer .modal-body .btn {
    min-width: 88px;
    border-radius: 10px;
    text-align: center;
    min-height: 37px;
    margin-top: 6px;
    box-shadow: none;
    text-transform: uppercase; }
    .block-externaldisclaimer .modal-body .btn:focus, .block-externaldisclaimer .modal-body .btn:hover {
      box-shadow: none; }
    .block-externaldisclaimer .modal-body .btn:first-child {
      margin-top: 0; }

@media print {
  #epi-quickNavigator,
  #quickNavigatorHiddenInput,
  #wrapper-menu,
  .footer__copyright--mobile,
  .footer__settings,
  .search__mobile,
  .social-sharing__overlay,
  .spot-block__image:after,
  .spot-block__image:after,
  .story__page__share,
  .story__page__thumbnails__item__img__wrapper:before,
  .totop__wrapper,
  .video__block__wrapper,
  .vjs-poster,
  nav,
  video,
  .search__toggle {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important; }
    #epi-quickNavigator *,
    #quickNavigatorHiddenInput *,
    #wrapper-menu *,
    .footer__copyright--mobile *,
    .footer__settings *,
    .search__mobile *,
    .social-sharing__overlay *,
    .spot-block__image:after *,
    .spot-block__image:after *,
    .story__page__share *,
    .story__page__thumbnails__item__img__wrapper:before *,
    .totop__wrapper *,
    .video__block__wrapper *,
    .vjs-poster *,
    nav *,
    video *,
    .search__toggle * {
      display: none !important;
      height: 0 !important;
      width: 0 !important;
      min-height: 0 !important;
      min-width: 0 !important;
      margin: 0 !important;
      position: static !important; }
  html {
    background: #ffffff !important; }
  html body {
    font-size: 15px;
    box-shadow: none !important;
    max-width: none;
    width: 100%;
    max-width: 100%;
    box-shadow: none !important;
    background: #ffffff; }
    html body .close-menu,
    html body .menu__panel,
    html body .social-sharing__overlay__content,
    html body .social-sharing__overlay__content > label {
      top: auto !important; }
    html body .footer {
      display: block;
      margin: 40px 0 0;
      background: none;
      background-color: #ffffff; }
      html body .footer__nav {
        display: block; }
      html body .footer__content {
        display: block; }
      html body .footer__copyright--desktop {
        display: block;
        margin: 0; }
      html body .footer__url {
        display: none; }
      html body .footer__social-wrap {
        display: none; }
    html body .main__header {
      position: relative;
      z-index: 0;
      margin: 0;
      padding-bottom: 20px;
      border-top: none; }
      html body .main__header:after {
        display: table;
        clear: both;
        z-index: 1;
        content: ""; }
      html body .main__header__tagline {
        display: inline-block;
        white-space: nowrap; }
      html body .main__header__logo {
        display: block;
        float: left;
        width: 59%; }
      html body .main__header nav {
        width: 100% !important;
        text-align: right; }
      html body .main__header-nav,
      html body .main__header nav {
        display: block !important; }
      html body .main__header__nav {
        width: 30%; }
        html body .main__header__nav span {
          display: inline-block;
          width: auto; }
      html body .main__header nav > a,
      html body .main__header nav > span {
        display: none !important; }
      html body .main__header .countryselector__url {
        white-space: nowrap; }
    html body .epi-wrapper {
      display: block !important;
      flex: none; }
    html body .executive__image img {
      width: auto !important;
      max-width: 50% !important; }
    html body .hero-spot {
      display: block !important;
      height: auto !important;
      max-height: none !important;
      min-width: 0;
      overflow: auto !important;
      page-break-inside: avoid; }
      html body .hero-spot > a,
      html body .hero-spot .hero-spot--background {
        display: none;
        height: 395px;
        width: 100%;
        position: relative; }
      html body .hero-spot-print-image {
        display: block;
        position: relative;
        z-index: 0;
        height: 395px;
        width: 100%;
        background-position: center;
        background-size: cover; }
    html body * {
      transform: none !important;
      flex: none !important;
      top: 0 !important;
      min-height: 0 !important;
      bottom: auto !important;
      -webkit-print-color-adjust: exact;
      column-break-after: unset !important;
      -moz-column-break-after: unset !important;
      -webkit-column-break-after: unset !important;
      -webkit-column-count: auto !important;
      column-count: auto !important; }
    html body main {
      display: block !important;
      top: 0 !important;
      transition: none !important;
      bottom: auto !important;
      margin: 0 !important;
      padding: 0 !important;
      box-shadow: none; }
  .country__list,
  .executive__flex,
  .extended-list,
  .flex-row,
  .hero .epi-wrapper,
  .hero-spot,
  .inner .epi-wrapper,
  .spot-block__flex,
  .tabs__panel,
  .tabs__panelб .country__list {
    display: block !important; }
  /*@media (min-width: 768px) {
        #print-id .hero-spot--background {
            border: 1px solid;
            background-image: none !important;
        }
    }

    #print-id .hero-spot--background {
        width: 400px !important;
        height: 100px !important;
        background-color: red;
    }*/
  .country__list {
    line-height: 40px; }
  .country__list .country__url {
    display: inline !important;
    margin-right: 20px;
    white-space: nowrap; }
  [class*="grid"],
  .story__page__thumbnails__item__wrapper {
    overflow: auto !important;
    float: none;
    width: auto !important;
    display: block !important; }
  .story__page__thumbnails__item__caption--video--info {
    position: relative !important; }
  .epi-wrapper img {
    width: auto !important; }
  .epi-wrapper > img,
  .spot-block__image > img {
    width: auto !important;
    height: auto !important;
    max-width: 50%;
    min-height: 0 !important;
    display: inline !important;
    min-width: 0 !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important; }
  .epi-wrapper .epi-wrapper > div:first-child,
  .spot-block__image .epi-wrapper > div:first-child {
    width: 100% !important;
    max-width: 100% !important; }
    .epi-wrapper .epi-wrapper > div:first-child > img,
    .spot-block__image .epi-wrapper > div:first-child > img {
      width: 100% !important;
      max-width: 100% !important; }
  .epi-wrapper [class*="grid-1-4"],
  .spot-block__image [class*="grid-1-4"] {
    overflow: auto !important;
    float: none;
    width: 24% !important;
    display: inline-table !important;
    padding: 1%; }
  iframe {
    max-width: 100%;
    width: 100%; }
  .epi-wrapper .main.inner {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .extended-list,
  .footer__content,
  .inner,
  .menu {
    max-width: none !important; }
  /*.country__list {
        page-break-inside: avoid;
    }*/
  .accordion--toggle:not(:checked) + .accordion__title + .accordion__content__wrapper {
    display: none !important; } }

.simple-login .simple-login-holder {
  padding: 0 0 10px; }

.simple-login .simple-login-form {
  padding: 0 0 0 4em; }
  .simple-login .simple-login-form input[type="submit"] {
    margin: 0;
    padding: 3px 5px;
    font-size: 17px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer; }

.simple-login .simple-login-form-row {
  overflow: hidden;
  padding: 0 0 15px; }
  .simple-login .simple-login-form-row input[type="checkbox"] {
    float: left;
    width: 16px;
    height: 16px;
    margin: 4px 5px 0 0;
    padding: 0; }
  .simple-login .simple-login-form-row label {
    display: block;
    overflow: hidden; }

.simple-login .simple-login-form-validation span.field-validation-error {
  display: block;
  color: #e10;
  padding: 0 0 15px;
  font-size: 12px; }

.inner .epi-wrapper,
.hero .epi-wrapper,
.flex-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  justify-content: space-between; }

.hero [class*="grid-"] {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0; }

@media (min-width: 640px) {
  .hero .grid-1-4 {
    width: 25%; } }

@media (min-width: 640px) {
  .hero .grid-3-4 {
    width: 75%; } }

.inner, .menu, .footer__content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto; }

main.inner {
  display: block; }

.inner.main {
  padding-left: 2.5%;
  padding-right: 2.5%; }
  @media only screen and (min-width: 1180px) {
    .inner.main {
      padding-left: 0;
      padding-right: 0; } }

[class*="grid-"] {
  width: 100%;
  overflow: hidden;
  padding-top: .75em; }
  [class*="grid-"] > [class*="grid-"] {
    padding-top: 0 !important; }
  [class*="grid-"].grid-no-pad {
    padding-left: 0; }
  [class*="grid-"].hide {
    display: none; }

@media (min-width: 640px) {
  .grid-1-2 {
    width: 48.75%; } }

@media (min-width: 769px) {
  .grid-1-3 {
    width: 31.6666667%; } }

@media (min-width: 769px) {
  .grid-2-3 {
    width: 65.8333333%; } }

@media (min-width: 1024px) {
  .grid-3-4 {
    width: 75%; } }

@media (min-width: 640px) {
  .grid-1-4 {
    width: 48.75%; } }

@media (min-width: 1024px) {
  .grid-1-4 {
    width: 22.5%; } }

/* Create classes, call mixins */
/*
    @include header();
    @include social-follow($social-follow-theme);
.menu {
	@include primary-menu();
	.main__header__logo { display: none; }
	@media screen and (min-width: $section-max-inner) {
		padding: 0;
	}
}

.search {
    @include search();
    @include hide-mobile();
}
*/
/* These need to be fixed as well */
.video__block__wrapper {
  position: relative;
  margin: 0 auto 1em auto; }
  .video__block__wrapper .video__block--ratio {
    position: relative; }
    .video__block__wrapper .video__block--ratio:after {
      content: '';
      display: block;
      padding-bottom: 56.25%; }
    .video__block__wrapper .video__block--ratio .video-js {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .video__block__wrapper .vjs-poster {
    background-size: cover; }
  .video__block__wrapper .video-js {
    width: 100%;
    height: 100%; }
    .video__block__wrapper .video-js .vjs-tech {
      position: relative; }
  @media (min-width: 1024px) {
    .video__block__wrapper {
      width: 75%; } }

.gallery__focus__content--caption--video--info,
.story__page__thumbnails__item__caption--video--info {
  position: relative;
  transform: translateY(0); }
  @media (min-width: 769px) {
    .gallery__focus__content--caption--video--info,
    .story__page__thumbnails__item__caption--video--info {
      position: absolute;
      top: 0;
      transform: translateY(-100%);
      padding: .5em; } }
  .gallery__focus__content--caption--video--info span,
  .story__page__thumbnails__item__caption--video--info span {
    bottom: 0;
    background: #000;
    color: #fff;
    display: inline-block;
    position: relative;
    padding: 0 .5em 0 2em;
    margin: .5em 0; }
    .gallery__focus__content--caption--video--info span:before,
    .story__page__thumbnails__item__caption--video--info span:before {
      content: '►';
      background: #fff;
      color: #000;
      position: absolute;
      left: 0;
      padding: 0 .2em; }

.grid-1-3 .video__block__wrapper,
.grid-1-4 .video__block__wrapper,
.grid-1-2 .video__block__wrapper,
.grid-2-3 .video__block__wrapper {
  font-size: .8em; }

.grid-1-3 .video__block__wrapper .gallery__focus__content--caption,
.grid-1-4 .video__block__wrapper .gallery__focus__content--caption {
  position: relative;
  padding: 0; }

/* END These need to be fixed as well */
hr {
  width: 100%;
  height: 1px;
  border: none;
  margin: 0;
  background: #ccc; }

.secondary {
  width: 100%;
  padding: 0;
  margin: 1em 0;
  display: block; }
  .secondary__link, .secondary__heading {
    margin: 0;
    padding: 1em;
    font-weight: 600;
    cursor: pointer;
    display: block; }
  .secondary__heading {
    position: relative;
    display: block;
    color: #fff;
    background: #999;
    pointer-events: none; }
    .secondary__heading:before {
      content: '';
      position: absolute;
      width: 1px;
      height: 21px;
      top: 12px;
      right: 30px;
      transform-origin: 50% 50%;
      background: #fff;
      transition: all .3s;
      opacity: 1; }
    .secondary__heading:after {
      content: '';
      position: absolute;
      width: 21px;
      height: 1px;
      top: 22px;
      right: 20px;
      transition: all .3s;
      background: #fff; }
  .secondary__dropdown {
    transition: all .3s;
    max-height: 0;
    overflow: hidden; }
  .secondary__sublink {
    font-size: 1em;
    display: block;
    padding: 1em;
    text-decoration: none; }
  @media (min-width: 769px) {
    .secondary {
      display: block; } }
  @media (min-width: 1024px) {
    .secondary--scroll:not(.secondary--horizontal) {
      opacity: 1;
      margin-top: 1em;
      position: fixed;
      max-width: 15em; }
    .secondary--static {
      position: fixed;
      top: 0; }
    .secondary__heading {
      font-weight: bold;
      text-transform: capitalize;
      cursor: pointer;
      color: #000;
      padding: 0;
      background: transparent;
      pointer-events: auto; }
    .secondary__link {
      font-size: 0.875em;
      display: block;
      margin: 1em;
      padding: 0;
      text-decoration: none;
      font-weight: bold; }
      .secondary__link.has-subitems::after {
        /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
        content: "";
        background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
        background-size: contain;
        width: .7em;
        height: .7em;
        display: inline-block;
        vertical-align: baseline;
        margin-left: .35em; }
    .secondary__sublink {
      font-size: 0.875em;
      margin: 1em;
      margin-left: 2em;
      padding: 0; }
    .secondary__dropdown {
      max-height: 100%; }
    .secondary__link--current {
      color: #f00; }
    .secondary--horizontal {
      width: 100%; }
      .secondary--horizontal .secondary__heading {
        display: none; }
      .secondary--horizontal .secondary__dropdown {
        overflow: visible;
        margin-left: -1.5em;
        margin-right: -1.5em; }
        .secondary--horizontal .secondary__dropdown__content {
          display: flex;
          flex-flow: row nowrap;
          align-items: stretch;
          justify-content: space-between;
          width: 100%;
          text-align: center; } }
      @media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
        .secondary--horizontal .secondary__dropdown__content {
          flex-flow: row wrap;
          justify-content: flex-start; } }
  @media (min-width: 1024px) {
          .secondary--horizontal .secondary__dropdown__content__stories__tabs {
            position: relative;
            display: block;
            margin-bottom: 0;
            text-align: left;
            background-color: #f0f0f0; }
            .secondary--horizontal .secondary__dropdown__content__stories__tabs:before {
              content: "";
              display: block;
              position: absolute;
              z-index: 0;
              background-color: #f0f0f0;
              top: 0;
              height: 100%;
              width: 200%;
              max-width: 1600px;
              margin: 0 auto;
              left: -100%;
              right: -100%; }
      .secondary--horizontal .secondary__link {
        text-transform: uppercase;
        font-weight: 400;
        padding: 1.15em 1.5em;
        margin: 0;
        margin-bottom: 1em;
        display: inline-block; }
        .secondary--horizontal .secondary__link__stories__tabs {
          position: relative;
          margin-bottom: 0;
          font-size: 17px;
          vertical-align: top; }
          .secondary--horizontal .secondary__link__stories__tabs--current {
            position: relative;
            color: #e10;
            text-decoration: underline; }
            .secondary--horizontal .secondary__link__stories__tabs--current:after {
              content: " ";
              color: #f00;
              display: none;
              transform: rotate(45deg);
              width: 1em;
              height: 1em;
              border-bottom: 2px solid #f00;
              border-right: 2px solid #f00;
              bottom: -8px;
              position: absolute;
              left: calc(50% - .4em);
              background-color: #e10;
              z-index: 200; }
            .secondary--horizontal .secondary__link__stories__tabs--current:hover {
              color: #e10 !important; }
          .secondary--horizontal .secondary__link__stories__tabs:hover {
            color: #e10; }
        .secondary--horizontal .secondary__link--text {
          display: flex;
          align-items: center;
          height: 100%; }
        .secondary--horizontal .secondary__link--current {
          position: relative;
          color: #fff;
          background: #f00; }
          .secondary--horizontal .secondary__link--current:after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            bottom: -15px;
            width: 0;
            height: 0;
            border-width: 20px 15px 0 15px;
            border-color: #f00 transparent transparent transparent;
            border-style: solid; } }
  @media (max-width: 1023px) {
    .secondary__heading.without_submenu {
      display: none !important; } }

.menu {
  /* Phablet */
  /* Tablet / Desktop */ }
  .menu .state:checked + .menu__label::after {
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translateX(-50%) translateY(-50%); }
  .menu .menu__label:not(.no-panel)::after {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: rotate(-45deg) translateY(-50%); }
  .menu .menu__label {
    color: #222;
    background: transparent; }
  .menu__label {
    position: relative;
    z-index: 203;
    display: block;
    margin: 0;
    padding: 0.8em 1.3em;
    text-align: left; }
    .menu__label__icon {
      width: 2em;
      height: 2em;
      display: none;
      transition: fill 0.2s ease-in; }
    .state:checked + .menu__label {
      z-index: 200;
      color: #e10; }
      .state:checked + .menu__label > span {
        display: block; }
        @media (min-width: 769px) {
          .state:checked + .menu__label > span {
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex; } }
      .state:checked + .menu__label ~ .nav-service--mobile {
        display: none; }
      .state:checked + .menu__label + .menu__panel {
        position: relative;
        z-index: 202;
        display: block;
        width: 100%;
        animation: growX 0.4s ease-out forwards;
        padding: 0 1em;
        top: 0;
        transition: all .3s;
        visibility: visible;
        opacity: 1; }
        .state:checked + .menu__label + .menu__panel .menu__panel__inner .menu__sub {
          padding: 1em 0; }
          .state:checked + .menu__label + .menu__panel .menu__panel__inner .menu__sub__heading {
            display: block;
            font-size: 1.2em;
            overflow-wrap: break-word; }
        @media (min-width: 769px) {
          .state:checked + .menu__label + .menu__panel .menu__panel__inner .menu__sub {
            padding: 0;
            padding-right: .75em; }
            .state:checked + .menu__label + .menu__panel .menu__panel__inner .menu__sub__heading {
              font-size: inherit;
              font-weight: 600; } }
        .state:checked + .menu__label + .menu__panel .menu__panel__inner__content {
          padding: 1em 0;
          border-bottom: 1px solid #fff; }
          @media (min-width: 769px) {
            .state:checked + .menu__label + .menu__panel .menu__panel__inner__content {
              border-bottom: none;
              padding: 0 0 .5em 0; } }
        .state:checked + .menu__label + .menu__panel .menu__panel__submenu__link {
          display: block;
          margin-top: 0.5em;
          line-height: 2.5; }
          @media (min-width: 769px) {
            .state:checked + .menu__label + .menu__panel .menu__panel__submenu__link {
              line-height: 1.2; } }
        .state:checked + .menu__label + .menu__panel .menu__panel__feature {
          display: none; }
          @media (min-width: 1024px) {
            .state:checked + .menu__label + .menu__panel .menu__panel__feature {
              display: block; } }
  .menu__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 201;
    display: none; }
    .menu__overlay--mobile {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 201;
      display: none; }
  .menu__panel {
    display: none; }
    @media (min-width: 769px) {
      .menu__panel {
        display: block;
        position: absolute;
        visibility: hidden;
        transition: all 0;
        opacity: 0;
        left: 0;
        max-width: 100%;
        top: calc(3.5em - 1px); } }
    .menu__panel__close {
      display: none; }
      @media (min-width: 769px) {
        .menu__panel__close {
          width: 2em;
          height: 2em;
          position: absolute;
          top: 1em;
          right: 1em;
          stroke-width: 5;
          fill: #777;
          color: white;
          transition: all .2s; } }
  @media (min-width: 769px) and (hover: hover) {
    .menu__panel__close:hover {
      color: white;
      fill: #f00; } }
  @media all and (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
    .menu__panel__close:hover {
      color: white;
      fill: #f00; } }
      @media (min-width: 769px) {
          @supports (-moz-appearance: none) and (display: flex) {
            .menu__panel__close:hover {
              color: white;
              fill: #f00; } } }
    .menu__panel .spot-block__link {
      display: block; }
    .menu__panel__link {
      display: block;
      font-weight: bold;
      text-transform: uppercase; }
      .menu__panel__link::after {
        /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
        content: "";
        background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
        background-size: contain;
        width: .7em;
        height: .7em;
        display: inline-block;
        vertical-align: baseline;
        margin-left: .35em; }
  .menu__toggle:not(:checked) + .menu__overlay {
    display: block; }
  .menu__toggle--mobile {
    display: none; }
    .menu__toggle--mobile:checked ~ .menu__overlay--mobile {
      display: block; }
      @media (min-width: 769px) {
        .menu__toggle--mobile:checked ~ .menu__overlay--mobile {
          display: none; } }
    .menu__toggle--mobile:checked ~ .menu__toggle--mobile--wrapper {
      background: #ddd; }
    .menu__toggle--mobile:checked ~ .menu__toggle--mobile--wrapper .menu__toggle--mobile__icon::after {
      content: "✕"; }
    .menu__toggle--mobile__icon {
      display: block;
      width: 2em;
      height: 2em;
      font-size: 1.5em;
      padding: 0.25em 0 0 0;
      text-align: center;
      border-radius: 50%;
      color: white;
      background-color: #e10; }
      .menu__toggle--mobile__icon::after {
        content: "☰"; }
    .menu__toggle--mobile--wrapper {
      position: absolute;
      top: 0;
      right: 0;
      height: 4rem;
      padding: 1em;
      z-index: 500;
      /* TODO */
      transition: all .5s ease; }
      @media (min-width: 769px) {
        .menu__toggle--mobile--wrapper {
          display: none; } }
  .menu__wrapper {
    z-index: 201;
    overflow-y: scroll;
    width: 80%;
    transition: all 0.3s ease;
    background-color: #ddd;
    direction: ltr;
    /* Necessary for checkbox-hack to work */
    -webkit-overflow-scrolling: touch; }
    @media (max-width: 640px) {
      .menu__wrapper {
        overflow-x: hidden; } }
  @media (max-width: 768px) {
    .menu--dir-left .menu__overlay {
      right: 20%; }
    .menu--dir-left .menu__wrapper {
      position: fixed;
      top: 5rem;
      bottom: 0;
      left: -80%; }
    .menu--dir-left .menu__toggle--mobile:checked ~ .menu__wrapper {
      left: 0; }
    .menu--dir-right .menu__overlay {
      left: 20%; }
    .menu--dir-right .menu__wrapper {
      position: fixed;
      top: 5rem;
      right: -80%;
      bottom: 0; }
    .menu--dir-right .menu__toggle--mobile:checked ~ .menu__wrapper {
      right: 0; } }
  @media (max-width: 768px) {
    .menu__label {
      text-transform: uppercase;
      border-bottom: 1px solid #fff;
      font-weight: 600;
      font-size: 1.2em; } }
  @media (min-width: 769px) {
    .menu {
      display: flex;
      max-width: 1180px;
      height: 3.5em;
      margin: 0 auto;
      padding-left: 2.5%;
      padding-right: 2.5%; }
      .menu__inner {
        padding-top: 1em; }
      .menu__label {
        display: flex;
        flex: 1 1 auto;
        cursor: pointer;
        height: 100%;
        padding: 0;
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
        margin-right: 0.75em;
        text-overflow: ellipsis;
        overflow: hidden;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        transition: color .2s; } }
    @media all and (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
      .menu__label {
        flex-direction: row; } }
  @media (min-width: 769px) {
        .menu__label__text {
          position: relative;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          height: 100%;
          align-items: center; }
          .menu__label__text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: .2em;
            transition: width .3s ease-in-out;
            background: #777; }
        .menu__label:not(.no-panel)::after {
          content: none !important; } }
    @media (min-width: 769px) and (hover: hover) {
      .menu__label:hover {
        color: #e10; } }
    @media all and (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
      .menu__label:hover {
        color: #e10; } }
  @media (min-width: 769px) {
        @supports (-moz-appearance: none) and (display: flex) {
          .menu__label:hover {
            color: #e10; } }
        .state:checked + .menu__label {
          color: #e10;
          background: white; }
          .state:checked + .menu__label > span {
            margin: 0; }
            .state:checked + .menu__label > span::after {
              width: 100%;
              bottom: 1px; }
          .state:checked + .menu__label + .menu__panel {
            position: absolute;
            top: calc(3.5em - 1px);
            left: 0;
            font-size: inherit;
            min-height: 10em;
            padding: 0;
            text-align: left;
            background: white;
            box-shadow: 0 0.35em 0.5em 0 rgba(0, 0, 0, 0.35); }
            .state:checked + .menu__label + .menu__panel .menu__panel__close {
              opacity: 1; }
            .state:checked + .menu__label + .menu__panel .menu__sub {
              transform: translateY(0);
              opacity: 1; }
              .state:checked + .menu__label + .menu__panel .menu__sub a:hover strong,
              .state:checked + .menu__label + .menu__panel .menu__sub a:hover .menu__panel__landing__caption {
                color: initial; }
              .state:checked + .menu__label + .menu__panel .menu__sub__expanded .menu__panel__inner__content {
                opacity: 1;
                transform: translateY(0); }
        .menu__label.selected .menu__label__text::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: .2em;
          background: #f00; }
      .menu__overlay {
        left: 0;
        right: 0; }
      .menu__panel {
        border-top: 2px solid #efefef; }
        .menu__panel__close {
          display: inline-block; }
        .menu__panel__inner__content {
          transform: translateY(-30px);
          opacity: 0;
          transition: transform .5s ease-in-out, opacity .5s ease-in-out; }
        .menu__panel__inner {
          width: 100%;
          max-width: 1180px;
          margin: 1em auto;
          padding-left: 2.5%;
          font-size: .85em;
          padding-right: 2.5%; }
          .menu__panel__inner__content {
            -webkit-column-break-inside: avoid;
            break-inside: avoid; } }
        @media all and (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
          .menu__panel__inner__content {
            display: table; } }
      @media (min-width: 769px) and (min-width: 769px) {
        .menu__panel__inner {
          display: flex; } }
  @media (min-width: 769px) {
      .menu__sub {
        flex: 0 0 20%;
        transition-delay: 0s;
        transform: translateY(-30px);
        opacity: 0;
        transition: all .4s ease-in-out; }
        .menu__sub__expanded {
          flex: 1 1 auto;
          margin: 0 1em;
          column-count: 3;
          column-gap: 1.5em; }
        .menu__sub__heading {
          display: block; }
        .menu__sub .spot-block__heading {
          margin: 0;
          color: #000; }
      .menu__panel__feature {
        transition: all .5s ease-in-out;
        transition-delay: .1s;
        margin-right: 2%; }
      .menu__wrapper {
        position: relative;
        display: block;
        overflow-y: visible;
        width: 100%;
        background: transparent; } }
  @media (min-width: 1280px) {
    .menu {
      padding: 0; }
      .menu__panel__inner {
        padding: 0; } }

.nav-service {
  display: none;
  font-size: 0.75em;
  justify-content: flex-end;
  flex-flow: row wrap;
  align-items: center; }
  @media (min-width: 769px) {
    .nav-service {
      display: flex; } }
  .nav-service__url {
    position: relative;
    font-weight: 600;
    vertical-align: middle;
    text-decoration: none; }
    .nav-service__url::before {
      content: "|";
      margin: 0 0.5em; }
    .nav-service__url:first-of-type::before {
      content: none; }
    .nav-service__url.selected .nav-service__url--item {
      border-bottom: 2px solid #f00; }
  .nav-service--mobile {
    border-top: 3px solid #fff; }
    .nav-service--mobile .countryselector__url {
      display: block;
      padding: 0.8em 1.3em;
      text-transform: uppercase;
      border-bottom: 1px solid #fff;
      font-weight: 600;
      font-size: 1.2em; }
    .nav-service--mobile .nav-service__url {
      display: block;
      padding: 0.8em 1.3em;
      text-transform: none;
      border-bottom: 1px solid #fff;
      font-size: 1.2em; }
      .nav-service--mobile .nav-service__url::before {
        content: none; }
    @media (min-width: 769px) {
      .nav-service--mobile {
        display: none; } }

.accordion {
  width: 100%; }
  .accordion__title {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 1em;
    padding: .5em;
    font-size: 1em;
    background: #ccc; }
    .accordion__title:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: #f00;
      z-index: 0;
      transition: all .3s; }
    .accordion__title:nth-child(n+3):after {
      content: "";
      position: absolute;
      bottom: 100%;
      left: 7.5%;
      height: 15px;
      border-left: 2px dotted #f00;
      z-index: 0; }
    .accordion__title--heading, .accordion__title--subheading {
      position: relative;
      display: inline-block;
      margin: 0;
      transition: all .3s; }
    .accordion__title--heading {
      color: #f00;
      margin: 0 1em 0 0;
      font-size: 1.3em; }
    .accordion__title--subheading {
      color: #000;
      font-weight: 600;
      padding-right: 1.5em;
      font-size: 1.2em; }
    .accordion__title__wrapper {
      display: block;
      padding: 0 .5em; }
      .accordion__title__wrapper:before {
        content: '';
        position: absolute;
        width: 1px;
        height: 1em;
        top: 50%;
        transform: translateY(-50%) rotate(0);
        right: 1.5em;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        background: #333;
        transition: all .3s;
        opacity: 1; }
      .accordion__title__wrapper:after {
        content: '';
        position: absolute;
        width: 1.1em;
        height: 1px;
        top: 50%;
        transform: translateY(-50%) rotate(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        right: 1em;
        transition: all .3s;
        background: #333; }
  .accordion__content {
    overflow: hidden;
    background: #eee;
    margin: 0; }
    .accordion__content img {
      width: 100%; }
    .accordion__content__text {
      padding: 2em; }
      .accordion__content__text p {
        margin: 0; }
        .accordion__content__text p a {
          font-weight: bold; }
    .accordion__content__wrapper {
      overflow: hidden;
      transition: all .5s; }
    @media (min-width: 769px) {
      .accordion__content img {
        width: 50%;
        float: left;
        margin: 0 2em 1em 0; }
      .accordion__content__text {
        padding: 1em 2em 2em 2em; }
        .accordion__content__text p {
          margin: 0; } }
  .accordion--toggle {
    position: fixed;
    left: -999px; }
    .accordion--toggle:checked + .accordion__title {
      background: #f00; }
      .accordion--toggle:checked + .accordion__title:before {
        height: 100%; }
      .accordion--toggle:checked + .accordion__title .accordion__title--heading,
      .accordion--toggle:checked + .accordion__title .accordion__title--subheading {
        color: #fff; }
      .accordion--toggle:checked + .accordion__title .accordion__title__wrapper:before {
        transform: rotate(180deg) translateY(-50%);
        opacity: 0;
        background: #FFF; }
      .accordion--toggle:checked + .accordion__title .accordion__title__wrapper:after {
        transform: rotate(180deg) translateY(-50%);
        background: #FFF; }
    .accordion--toggle:not(:checked) + .accordion__title + .accordion__content__wrapper {
      height: 0; }

.breadcrumbs {
  display: none;
  font-size: 0.875em;
  padding: 0.25em 0 0 0; }
  .breadcrumbs .item {
    color: #999; }
    .breadcrumbs .item:after {
      content: ">";
      margin: 0 0.5em; }
    .breadcrumbs .item:hover {
      color: #e10; }
  @media (min-width: 769px) {
    .breadcrumbs {
      display: block; } }

.carousel {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: column nowrap;
  transition: all .3s; }
  .carousel__headline {
    position: relative;
    margin-bottom: .5em; }
    .carousel__headline h2 {
      background: #FFF;
      position: relative;
      padding-right: .5em;
      display: inline-block;
      z-index: 2;
      margin: 0; }
  @media (min-width: 769px) {
    .carousel {
      flex-flow: row nowrap; } }
  .carousel__content {
    margin: 0;
    overflow: hidden; }
    @media (min-width: 769px) {
      .carousel__content {
        flex-flow: row nowrap;
        margin: 0 3.5em; } }
    .carousel__content #load__more__carousel {
      position: fixed;
      left: -99999px; }
      .carousel__content #load__more__carousel:checked + .carousel .spotblock.spot {
        display: block; }
      .carousel__content #load__more__carousel:checked ~ .load__more__button {
        display: none; }
    .carousel__content .load__more__button {
      display: block;
      background: none;
      margin: 0 auto;
      text-align: center;
      outline: none;
      border: none;
      font-size: 1em; }
      @media (min-width: 769px) {
        .carousel__content .load__more__button {
          display: none; } }
      .carousel__content .load__more__button span {
        border: 1px solid #FF0000;
        display: inline-block; }
  .carousel__wrapper {
    position: relative;
    margin-bottom: 1.5em; }
  .carousel > .spotblock.spot:nth-child(n+5) {
    display: none; }
    @media (min-width: 769px) {
      .carousel > .spotblock.spot:nth-child(n+5) {
        display: block; } }
  @media (min-width: 769px) {
    .carousel > .spotblock.spot {
      flex: 1 0 50%; } }
  @media (min-width: 1024px) {
    .carousel > .spotblock.spot {
      flex: 1 0 25%; } }
  .carousel > .spotblock.spot .spot-block {
    margin: .75em;
    overflow: hidden; }
    .carousel > .spotblock.spot .spot-block__flex {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      width: 100%; }
      @media (min-width: 769px) {
        .carousel > .spotblock.spot .spot-block__flex {
          display: inline-block; } }
    .carousel > .spotblock.spot .spot-block__heading, .carousel > .spotblock.spot .spot-block__link {
      display: none; }
    .carousel > .spotblock.spot .spot-block__text {
      font-size: 0.875em;
      margin-top: 0.5em;
      padding: 1em 0; }
      .carousel > .spotblock.spot .spot-block__text::after {
        /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
        content: "";
        background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
        background-size: contain;
        width: .7em;
        height: .7em;
        display: inline-block;
        vertical-align: baseline;
        margin-left: .35em; }
      @media (min-width: 769px) {
        .carousel > .spotblock.spot .spot-block__text {
          padding: 0 .5em 0 0; } }
    .carousel > .spotblock.spot .spot-block__image-wrapper {
      margin: 0; }
  .carousel__nav {
    display: none; }
    @media (min-width: 769px) {
      .carousel__nav {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
        .carousel__nav .carousel__arrow {
          width: 2.5em;
          height: 2.5em; }
          .carousel__nav .carousel__arrow use {
            pointer-events: none; }
        .carousel__nav--left, .carousel__nav--right {
          position: absolute;
          top: 5em;
          background: transparent;
          border: none; }
        .carousel__nav--right {
          right: .5em; }
        .carousel__nav--left {
          left: .5em; } }

.cookie {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 900;
  white-space: normal; }
  .cookie__accept {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 0 0.5em;
    border: 0;
    color: currentColor;
    background: none;
    outline: none;
    text-transform: uppercase;
    cursor: default; }
  .cookie__info {
    display: block;
    text-decoration: underline;
    white-space: nowrap;
    margin-left: 2em; }
    @media (max-width: 769px) {
      .cookie__info {
        margin: 1em 0 0 0; } }
    .cookie__info::after {
      content: none; }
  @media (min-width: 769px) {
    .cookie__inner {
      display: flex;
      justify-content: space-between; } }
  .cookie__text {
    line-height: 1.5;
    max-width: 100%; }
    .cookie__text p {
      display: inline; }
  .cookie__wrapper {
    width: 100%;
    max-width: 1600px;
    min-height: 10em;
    color: #FFF;
    background: rgba(0, 0, 0, 0.8);
    padding: 1em;
    margin: 0 auto; }

.country {
  height: 100%;
  width: 100%;
  max-width: 1180px;
  background: #FFF; }
  .country__global_sites {
    flex-flow: wrap;
    display: flex;
    margin-bottom: 1.7em; }
  .country__global_site {
    font-size: 1em;
    font-weight: 700;
    padding: 1em 1.5em;
    min-width: 240px; }
    .country__global_site_url {
      width: 100%;
      margin: 5px;
      justify-content: center;
      display: flex;
      background-color: #f1f1f1; }
    .country__global_site_name::after {
      /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
      content: "";
      background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
      background-size: contain;
      width: .7em;
      height: .7em;
      display: inline-block;
      vertical-align: baseline;
      margin-left: .35em; }
    .country__global_site .footer__country__icon {
      font-size: 1.3em; }
  .country hr {
    margin: 1em 0; }
  .country__groups {
    padding: 0 2em; }
  .country__list {
    display: flex;
    flex-flow: wrap;
    columns: 0; }
  .country__group_name {
    font-weight: 600;
    margin-top: 1.2em;
    color: #000; }
  .country__flag {
    max-width: 2em !important;
    width: auto !important;
    min-height: 1.5em;
    box-shadow: 0 0 3px #999;
    vertical-align: middle; }
  .country__header {
    margin: 0 0 1em 0; }
  .country__label {
    width: 100%;
    background: linear-gradient(to right, transparent, #efefef); }
    .country__label::after {
      color: #f00; }
    .country__label:last-of-type {
      border-bottom: 1px solid #ccc; }
  .country__name {
    margin: 0 1em; }
  .country__panel {
    display: none;
    border-style: solid;
    border-color: #ccc;
    border-width: 0 1px;
    padding: 1.5em 1em 1em 1em; }
    .country__panel:last-of-type {
      border-bottom: 1px solid #ccc; }
  .country__subheader {
    margin: 0 0 1em 0;
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    color: #000; }
  .country .state:checked + label + .country__panel {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start; }
  .country__url {
    width: 50%;
    margin: .5em 0;
    display: flex;
    align-items: center;
    font-size: 0.875em; }
  .country a[data-action=External]::after {
    display: none; }
  @media (min-width: 769px) {
    .country {
      padding: 1em 0; }
      .country__global_sites {
        justify-content: center; }
      .country__global_site_url {
        width: 40%; }
      .country__subheader {
        font-size: 1.5em; }
      .country hr {
        margin: .5em 0 1em; }
      .country__groups {
        padding: 0; }
      .country__label {
        width: 15%;
        text-align: center;
        padding: 1em !important;
        font-size: 0.875em; }
      .country__name {
        display: inline-block;
        margin: 0.5em 1em; }
      .country__panel {
        border-bottom: 1px solid #ccc;
        border-top: 2px solid #f00;
        columns: 2;
        order: 2;
        width: 100%; }
      .country__url {
        font-size: 0.75em;
        width: 16.66666%;
        margin: .5em 0 1.6em; }
        .country__url_column-1 {
          width: 100%; }
        .country__url_column-2 {
          width: 50%; }
        .country__url_column-3 {
          width: 33.33333%; }
        .country__url_column-4 {
          width: 25%; }
        .country__url_column-5 {
          width: 20%; }
        .country__url_column-6 {
          width: 16.66666%; } }
  @media (min-width: 1024px) {
    .country__panel {
      columns: 3; }
    .country__global_site_url {
      width: 33%; } }

.circle-icon {
  width: 2em;
  height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  stroke-width: 0;
  fill: #ccc;
  color: white;
  transition: all .2s;
  position: relative; }
  @media (hover: hover) {
    .circle-icon:hover {
      color: white;
      fill: #f00; } }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .circle-icon:hover {
      color: white;
      fill: #f00; } }
  @supports (-moz-appearance: none) and (display: flex) {
    .circle-icon:hover {
      color: white;
      fill: #f00; } }

.content-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.75em;
  background-position: center;
  background-repeat: no-repeat; }
  .content-banner__content {
    font-size: 0.875em;
    text-align: center; }
    @media (min-width: 640px) {
      .content-banner__content {
        text-align: left; } }
  .content-banner__header {
    flex: 1 1 auto;
    margin: 0;
    font-weight: 600;
    text-align: center; }

.content-page__img {
  width: 100%;
  margin-bottom: 1em; }
  .content-page__img img {
    width: 100%;
    vertical-align: top; }

.executive {
  margin: .5em 0;
  padding-bottom: 1em;
  border-bottom: 1px solid #efefef; }
  @media (min-width: 769px) {
    .executive {
      margin: 1em 0; } }
  .executive__heading {
    color: #f00; }
  .executive__flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media (min-width: 769px) {
      .executive__flex {
        flex-wrap: nowrap; } }
  .executive__image {
    padding-right: 10px;
    flex: 1 1 100%; }
    .executive__image img {
      max-width: 100%;
      height: auto; }
    @media (min-width: 769px) {
      .executive__image {
        flex: 0 1 25%;
        padding-right: 1em; } }
  .executive__title--mobile {
    font-weight: bold;
    font-size: 1.125em;
    flex: 0 1 50%; }
    @media (min-width: 769px) {
      .executive__title--mobile {
        display: none; } }
  .executive__title--desktop {
    display: none; }
    @media (min-width: 769px) {
      .executive__title--desktop {
        display: block;
        font-weight: bold;
        font-size: 1.125em;
        padding-bottom: 10px; } }
  .executive__content {
    flex: 0 1 100%;
    margin-top: 10px; }
    @media (min-width: 769px) {
      .executive__content {
        flex: 0 1 75%;
        margin: 0;
        padding: 0;
        padding-right: 1em; } }
    @media (min-width: 1024px) {
      .executive__content {
        flex: 0 1 60%; } }
    .executive__content__link {
      text-transform: uppercase;
      font-weight: bold; }
      .executive__content__link::after {
        content: ">";
        color: #f00;
        padding-left: .2em; }
  .executive__nav {
    font-size: 0.875em;
    display: none; }
    @media (min-width: 1024px) {
      .executive__nav {
        display: block;
        flex: 0 1 15%;
        max-width: 15%;
        text-overflow: ellipsis; } }
    .executive__nav__tab {
      background-color: #e10;
      color: white;
      text-transform: uppercase;
      text-align: center;
      padding: 10px;
      margin-bottom: 20px;
      position: relative; }
      .executive__nav__tab::after {
        content: "";
        color: #f00;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #f00;
        position: absolute;
        bottom: -10px;
        left: 45%; }
    .executive__nav__item, .executive__nav__subitem {
      display: block;
      white-space: nowrap;
      padding: .2em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .executive__nav__subitem {
      padding-left: 1em; }
  .executive--no-nav .executive__flex {
    justify-content: flex-start; }
  .executive--no-nav .executive__content {
    flex: 0 1 100%; }
    @media (min-width: 769px) {
      .executive--no-nav .executive__content {
        flex: 0 1 60%; } }

.extended-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap; }
  .extended-list.list-1-3 {
    width: 100%;
    max-width: 1180px; }
    .extended-list.list-1-3 .story__page__thumbnails__item__wrapper {
      width: 100%;
      margin-bottom: 1em; }
      @media (min-width: 769px) {
        .extended-list.list-1-3 .story__page__thumbnails__item__wrapper {
          width: 47.5%; } }
      @media (min-width: 1024px) {
        .extended-list.list-1-3 .story__page__thumbnails__item__wrapper {
          width: 31.6666667%; } }
    .extended-list.list-1-3:after {
      content: '';
      width: 31.3666667%; }
    .extended-list.list-1-3 .story__page__thumbnails__item__caption--title {
      font-size: 1.2em;
      margin-top: .5em; }
  .extended-list.list-1-4 {
    width: 100%;
    max-width: 1180px; }
    .extended-list.list-1-4 .story__page__thumbnails__item__wrapper {
      width: 100%;
      margin-bottom: 1em; }
      @media (min-width: 769px) {
        .extended-list.list-1-4 .story__page__thumbnails__item__wrapper {
          width: 47.5%; } }
      @media (min-width: 1024px) {
        .extended-list.list-1-4 .story__page__thumbnails__item__wrapper {
          width: 22.5%; } }
    .extended-list.list-1-4:after {
      content: '';
      width: 22.5%; }
    .extended-list.list-1-4 .story__page__thumbnails__item__caption--title {
      font-size: 1.2em;
      margin-top: .5em; }
  .extended-list__table {
    border: none;
    width: 100%;
    border-collapse: collapse; }
  .extended-list__heading {
    font-weight: bold;
    font-size: 1.125em;
    margin: 0 0 1em 0;
    text-align: left; }
  .extended-list__row td {
    vertical-align: middle;
    width: auto; }
  .extended-list__row:nth-child(odd) {
    background-color: #f6f6f6; }
  .extended-list__row:nth-child(even) {
    background-color: #fff; }
  .extended-list__cell__date, .extended-list__cell__body, .extended-list__cell__actions {
    vertical-align: top;
    padding: 15px; }
  .extended-list__cell__date {
    text-transform: uppercase; }
  .extended-list__body__mobile-date {
    padding: 0 0 6px 0;
    display: block; }
  .extended-list__cell__body {
    width: 100%;
    padding-right: 0; }
  .extended-list__anchor::after {
    /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
    content: "";
    background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
    background-size: contain;
    width: .7em;
    height: .7em;
    display: inline-block;
    vertical-align: baseline;
    margin-left: .35em; }
  .extended-list__cell__actions {
    white-space: nowrap;
    text-align: right; }
  .extended-list__action--share {
    margin: 0 0 0 .4em; }
  .extended-list__read-more {
    padding-top: 1em;
    display: block;
    text-align: right;
    padding-right: .4em; }
    .extended-list__read-more::after {
      /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
      content: "";
      background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
      background-size: contain;
      width: .7em;
      height: .7em;
      display: inline-block;
      vertical-align: baseline;
      margin-left: .35em; }
  @media (min-width: 640px) {
    .extended-list .grid-1-1 .extended-list__cell__date {
      display: table-cell;
      white-space: nowrap;
      padding-right: 0; } }
  .extended-list .extended-list--color1 .extended-list__row:nth-child(odd) {
    background-color: #000; }
  .extended-list .extended-list--color2 .extended-list__row:nth-child(odd) {
    background-color: #e10; }
  .extended-list .extended-list--color3 .extended-list__row:nth-child(odd) {
    background-color: #999; }
  .extended-list .extended-list--color4 .extended-list__row:nth-child(odd) {
    background-color: #f6f6f6; }
  .extended-list .extended-list--color5 .extended-list__row:nth-child(odd) {
    background-color: #ccc; }
  .extended-list .extended-list--color6 .extended-list__row:nth-child(odd) {
    background-color: #FFF; }
  .extended-list.image__left {
    display: block; }
    .extended-list.image__left .spot-block.spot {
      padding: 1em 0;
      border-bottom: 1px solid #eee; }
    .extended-list.image__left .spot-block__heading {
      color: #000; }
    @media (min-width: 769px) {
      .extended-list.image__left .spot-block__flex {
        flex-flow: row nowrap; }
      .extended-list.image__left .spot-block__image {
        flex: 0 0 25%;
        margin: 0 1em 0 0; }
      .extended-list.image__left .story__page__thumbnails__item {
        display: flex; }
        .extended-list.image__left .story__page__thumbnails__item__img__wrapper {
          flex: 0 0 25%;
          margin: 0 1em 1em 0; } }
  .extended-list__filters {
    position: relative;
    display: inline-block;
    width: auto; }
    .extended-list__filters.form__select__wrapper {
      margin-bottom: 1.5em; }
    .extended-list__filters .form__select {
      width: auto;
      padding-right: 2.5em; }
    .extended-list__filters:after {
      right: .5em; }

.footer {
  font-size: 1em;
  margin-top: 4em;
  padding: 2em 1em;
  border-left: 1em solid #f00;
  background: linear-gradient(to right, white, #d9d9d9);
  overflow: hidden;
  z-index: 2; }
  .footer__settings > div > div {
    padding: 0; }
  .footer__nav {
    column-count: 2; }
    .footer__nav a {
      text-decoration: none;
      text-transform: uppercase;
      display: block;
      margin: .5em 0; }
      .footer__nav a:first-of-type {
        column-break-after: always;
        -moz-column-break-after: always;
        -webkit-column-break-after: always; }
  .footer__copyright--desktop {
    font-weight: 600;
    display: none;
    margin: 3em 0 0 0; }
  .footer__copyright--mobile {
    display: block;
    margin: 0;
    width: 100%;
    padding: 0 2em; }
  .footer .countryselector__url {
    display: none;
    font-size: 0.875em;
    margin: 1em 0 0 0; }
    .footer .countryselector__url > .footer__url {
      margin-right: 1em; }
    .footer .countryselector__url span {
      margin-left: 0.5em;
      vertical-align: middle;
      text-transform: capitalize; }
    @media (min-width: 769px) {
      .footer .countryselector__url {
        display: inline-block; } }
  .footer__social-wrap {
    margin: 1em 0 0 0;
    border-top: 1px solid #aaa;
    padding-top: 1em; }
  .footer__social__icon {
    width: 2em;
    height: 2em;
    display: inline-block;
    vertical-align: middle; }
  .footer__social__label {
    display: inline-block;
    width: 50%; }
  @media (max-width: 768px) {
    .footer__social__text {
      column-break-after: always;
      -moz-column-break-after: always;
      -webkit-column-break-after: always;
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px; }
    .footer__social a {
      display: inline-block; } }
  @media (min-width: 769px) {
    .footer__content {
      display: flex; }
    .footer__copyright--desktop {
      display: block; }
    .footer__copyright--mobile {
      display: none; }
    .footer__nav {
      flex: 1 1 70%;
      column-count: 1; }
      .footer__nav a {
        display: inline; }
        .footer__nav a::before {
          content: "|";
          margin: 0 0.5em; }
        .footer__nav a:first-of-type::before {
          display: none; }
    .footer__social-wrap {
      margin: 0;
      border-top: none;
      padding: 0 0 0 4em;
      border-left: 1px solid #aaa;
      white-space: nowrap; }
    .footer__social__icon {
      position: relative;
      top: -0.1em;
      margin: 0 0 0 .5em; }
      .footer__social__icon use {
        pointer-events: none; }
    .footer__social__label {
      display: inline; }
    .footer__social__text {
      display: inline; }
    .footer__url + span {
      white-space: normal !important; } }

.gallery {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden; }
  .gallery input[name="gallery-radio"],
  .gallery input[name="gallery__thumbnails__nav__toggle"] {
    position: fixed;
    left: -99999px; }
  .gallery__wrapper {
    position: relative; }
  @media (min-width: 769px) {
    .gallery__focus__content--caption {
      position: absolute; }
    .gallery__wrapper:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 56.25%; }
    .gallery__wrapper > .gallery__focus {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; } }
  .gallery__focus {
    position: relative;
    white-space: nowrap;
    transition: all .5s;
    font-size: 0; }
    .gallery__focus--right, .gallery__focus--left {
      position: absolute;
      width: 3em;
      height: 3em;
      top: 5em;
      z-index: 1;
      background: rgba(255, 255, 255, 0.4); }
      @media (min-width: 769px) {
        .gallery__focus--right, .gallery__focus--left {
          display: block;
          top: 50%;
          width: 4em;
          height: 4em;
          margin-top: -2.5em; } }
      .gallery__focus--right:after, .gallery__focus--left:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 50%;
        width: 1em;
        height: 1em;
        margin-right: -0.4em;
        margin-top: -.5em;
        border: 2px solid red;
        border-style: solid;
        border-color: #f00 #f00 transparent transparent;
        transform-origin: 50% 50%; }
    .gallery__focus--right {
      right: 0; }
      .gallery__focus--right:after {
        transform: rotate(45deg); }
    .gallery__focus--left {
      left: 0; }
      .gallery__focus--left:after {
        transform: rotate(225deg); }
    .gallery__focus__content {
      display: inline-block;
      position: relative;
      width: 100%;
      height: 100%;
      font-size: 1rem;
      white-space: normal;
      vertical-align: top; }
      .gallery__focus__content--img--wrapper {
        position: relative;
        overflow: hidden;
        height: 100%; }
        @media (min-width: 769px) {
          .gallery__focus__content--img--wrapper {
            padding: 0; } }
        .gallery__focus__content--img--wrapper img {
          position: relative;
          width: 100%;
          height: 100%;
          vertical-align: top; }
          @media (min-width: 769px) {
            .gallery__focus__content--img--wrapper img {
              position: absolute;
              top: 50%;
              left: 50%;
              min-width: 100%;
              min-height: 100%;
              width: auto;
              height: auto;
              vertical-align: top; } }
      .gallery__focus__content--img {
        display: inline-block; }
      .gallery__focus__content--caption {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 .5em;
        background: rgba(255, 255, 255, 0.5); }
        @media (min-width: 769px) {
          .gallery__focus__content--caption {
            position: absolute;
            padding: 1em;
            pointer-events: none; } }
        .gallery__focus__content--caption--headline {
          font-size: 1.3em;
          margin: 0.5em 0; }
          .video__block__wrapper .gallery__focus__content--caption--headline {
            margin: 0 0 .5em 0; }
        .gallery__focus__content--caption--text {
          margin: 0;
          white-space: normal; }
      .gallery__focus__content .video__block__wrapper {
        width: 100%; }
    .gallery__focus__keep__ratio {
      position: relative; }
      .gallery__focus__keep__ratio:after {
        content: '';
        display: block;
        padding-top: 56.25%;
        width: 100%; }
      .gallery__focus__keep__ratio > .video-js,
      .gallery__focus__keep__ratio > .gallery__focus__content--img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      @media (min-width: 769px) {
        .gallery__focus__keep__ratio {
          width: 100%;
          height: 100%; }
          .gallery__focus__keep__ratio:after {
            display: none; } }
  .gallery__thumbnails {
    position: relative;
    padding: 1em;
    background: #f8f8f8; }
    @media (min-width: 769px) {
      .gallery__thumbnails {
        padding: 2em 4em; } }
    .gallery__thumbnails .gallery__thumbnails__item__caption--video--info {
      display: block;
      position: absolute;
      top: 0;
      transform: translateY(-100%);
      padding: .5em; }
      .gallery__thumbnails .gallery__thumbnails__item__caption--video--info span {
        bottom: 0;
        background: #000;
        color: #fff;
        display: inline-block;
        position: relative;
        padding: 0 .5em 0 2em;
        margin-bottom: 09px; }
        .gallery__thumbnails .gallery__thumbnails__item__caption--video--info span:before {
          content: '►';
          background: #fff;
          color: #000;
          position: absolute;
          left: 0;
          padding: 0 .2em; }
    .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--right,
    .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--left {
      position: absolute;
      top: 30%;
      transform-origin: 50% 50%;
      margin: 0 1.5em;
      width: 1em;
      height: 1em;
      border-width: 2px;
      border-style: solid;
      border-color: #000 #000 transparent transparent; }
      @media (min-width: 769px) {
        .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--right,
        .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--left {
          top: 50%; } }
    .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--right {
      right: -1em;
      transform: translateY(-50%) rotate(45deg); }
    .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--left {
      left: -1em;
      transform: translateY(-50%) rotate(-135deg); }
    @media (min-width: 769px) {
      .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--right,
      .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--left {
        margin: 0 1.5em;
        width: 2em;
        height: 2em; }
      .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--right {
        right: 0; }
      .gallery__thumbnails__nav__wrapper .gallery__thumbnails__nav__arrow--left {
        left: 0; } }
    .gallery__thumbnails__content__wrapper {
      white-space: nowrap;
      overflow: hidden;
      font-size: 0; }
    .gallery__thumbnails__content {
      transition: all .5s; }
      .gallery__thumbnails__content--item {
        width: 50%;
        font-size: 1rem;
        display: inline-block;
        cursor: pointer;
        white-space: normal;
        vertical-align: top;
        padding: .5em; }
        @media (min-width: 768px) {
          .gallery__thumbnails__content--item {
            width: 33.3333%; } }
        @media (min-width: 1024px) {
          .gallery__thumbnails__content--item {
            width: 25%; } }
        .gallery__thumbnails__content--item--img--wrapper {
          display: block;
          width: 100%;
          overflow: hidden;
          border: 3px solid transparent;
          position: relative; }
          .gallery__thumbnails__content--item--img--wrapper:before {
            content: '';
            display: block;
            width: 100%;
            padding-top: 56.25%; }
          .gallery__thumbnails__content--item--img--wrapper img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border: none;
            vertical-align: top; }
        .gallery__thumbnails__content--item--caption {
          display: block;
          position: relative;
          margin: .5em 0; }
  .gallery #gallery--1:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--1'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--1:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(0%); }
  .gallery #gallery--2:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--2'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--2:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-100%); }
  .gallery #gallery--3:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--3'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--3:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-200%); }
  .gallery #gallery--4:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--4'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--4:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-300%); }
  .gallery #gallery--5:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--5'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--5:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-400%); }
  .gallery #gallery--6:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--6'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--6:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-500%); }
  .gallery #gallery--7:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--7'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--7:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-600%); }
  .gallery #gallery--8:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--8'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--8:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-700%); }
  .gallery #gallery--9:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--9'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--9:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-800%); }
  .gallery #gallery--10:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--10'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--10:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-900%); }
  .gallery #gallery--11:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--11'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--11:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1000%); }
  .gallery #gallery--12:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--12'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--12:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1100%); }
  .gallery #gallery--13:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--13'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--13:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1200%); }
  .gallery #gallery--14:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--14'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--14:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1300%); }
  .gallery #gallery--15:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--15'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--15:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1400%); }
  .gallery #gallery--16:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--16'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--16:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1500%); }
  .gallery #gallery--17:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--17'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--17:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1600%); }
  .gallery #gallery--18:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--18'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--18:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1700%); }
  .gallery #gallery--19:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--19'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--19:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1800%); }
  .gallery #gallery--20:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--20'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--20:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-1900%); }
  .gallery #gallery--21:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--21'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--21:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2000%); }
  .gallery #gallery--22:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--22'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--22:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2100%); }
  .gallery #gallery--23:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--23'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--23:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2200%); }
  .gallery #gallery--24:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--24'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--24:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2300%); }
  .gallery #gallery--25:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--25'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--25:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2400%); }
  .gallery #gallery--26:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--26'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--26:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2500%); }
  .gallery #gallery--27:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--27'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--27:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2600%); }
  .gallery #gallery--28:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--28'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--28:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2700%); }
  .gallery #gallery--29:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--29'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--29:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2800%); }
  .gallery #gallery--30:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--30'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--30:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-2900%); }
  .gallery #gallery--31:checked ~ .gallery__thumbnails .gallery__thumbnails__content label[for='gallery--31'] .gallery__thumbnails__content--item--img--wrapper {
    border: 3px solid #f00; }
  .gallery #gallery--31:checked ~ .gallery__wrapper .gallery__focus {
    transform: translateX(-3000%); }

.hero-spot {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 240px; }
  @media (min-width: 640px) {
    .hero-spot {
      flex-direction: row;
      align-items: flex-end;
      justify-content: flex-end; } }
  .hero-spot > a[data-action="External"]::after {
    display: none; }
  .hero-spot--background {
    background-size: cover;
    position: relative;
    min-height: 240px;
    width: 100%;
    height: 100%;
    flex: 0 1 100%; }
    @media (min-width: 640px) {
      .hero-spot--background {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        height: 100%;
        width: 100%; } }
  .hero-spot--left {
    justify-content: flex-start; }
  .hero-spot__content {
    z-index: 0;
    position: relative;
    padding: 1em;
    flex: 0 1 100%; }
    @media (min-width: 640px) {
      .hero-spot__content {
        margin: 20px 0 20px 20px; } }
    @media (min-width: 769px) {
      .hero-spot__content {
        margin-bottom: 2em; } }
    @media (min-width: 769px) {
      .hero-spot__content {
        flex: 0 1 60%; } }
    @media (min-width: 1024px) {
      .hero-spot__content {
        flex: 0 1 40%; } }
    .hero-spot__content h2 {
      font-weight: 100;
      color: #000;
      font-size: 1.2em; }
      @media (min-width: 769px) {
        .hero-spot__content h2 {
          font-size: 1.5em; } }
    .hero-spot__content__text p {
      margin: 0;
      overflow: hidden;
      font-size: 18px; }
      @media (min-width: 640px) {
        .hero-spot__content__text p {
          font-size: 14px; } }
      @media (min-width: 769px) {
        .hero-spot__content__text p {
          margin-bottom: 1em;
          font-size: 15px; } }
      @media (min-width: 1024px) {
        .hero-spot__content__text p {
          font-size: 16px; } }
      @media (min-width: 1280px) {
        .hero-spot__content__text p {
          font-size: 17px; } }
      @media (min-width: 1600px) {
        .hero-spot__content__text p {
          font-size: 18px; } }
    .hero-spot__content__text p.download--link a {
      font-weight: bold; }
    .hero-spot__content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: .8;
      z-index: -1;
      background-color: lightgrey; }
      @media (min-width: 640px) {
        .hero-spot__content::before {
          background-color: #fff; } }
    .hero-spot__content__header {
      color: #000; }
    .hero-spot__content__link {
      text-transform: uppercase;
      display: inline;
      text-align: left;
      font-weight: bold; }
      .hero-spot__content__link::after {
        /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
        content: "";
        background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
        background-size: contain;
        width: .7em;
        height: .7em;
        display: inline-block;
        vertical-align: baseline;
        margin-left: .35em; }
      @media (min-width: 640px) {
        .hero-spot__content__link {
          display: block;
          text-align: right; } }
    @media (min-width: 640px) {
      .hero-spot__content--left {
        margin: 20px 20px 20px 0; } }
    @media (min-width: 769px) {
      .hero-spot__content--left {
        margin: 20px 20px 60px 0; } }
  @media (min-width: 640px) {
    .hero-spot {
      min-height: 395px;
      height: auto; } }
  @media (min-width: 1024px) {
    .hero-spot {
      height: 395px;
      max-height: 395px; } }

.icon-block {
  height: 100%; }
  .icon-block__wrapper-link:hover {
    color: #000; }
    .icon-block__wrapper-link:hover .icon-block__link {
      color: #f00;
      min-height: 2em; }
  .icon-block__heading {
    font-size: 1.125em;
    margin: .5em 0;
    font-weight: 600; }
  .icon-block__flex {
    display: flex;
    flex-flow: column nowrap; }
  .icon-block__image-wrapper {
    flex: none;
    margin: 0 1em 0 0; }
    @media (min-width: 640px) {
      .icon-block__image-wrapper {
        flex: 0 1 75%; } }
    .icon-block__image-wrapper img {
      width: 100%; }
  .icon-block__text {
    text-align: center;
    /*min-height: 3em;*/
    padding: 0 1em; }
  .icon-block__text-wrapper {
    flex: none;
    padding-bottom: 1em; }
    @media (min-width: 640px) {
      .icon-block__text-wrapper {
        flex: 0 1 auto; } }
    .icon-block__text-wrapper p:last-of-type {
      display: inline; }
  .icon-block--top .icon-block__text-wrapper {
    padding-top: .5em; }
  .icon-block--top .icon-block__heading {
    font-size: 1.125em; }
  @media (min-width: 640px) {
    .icon-block--top .icon-block__image-wrapper {
      flex: 0 1 50%; }
    .icon-block--top .icon-block__text-wrapper {
      flex: 0 1 50%; }
      .grid-1-1 .icon-block--top .icon-block__text-wrapper {
        padding-top: 0; } }
  .icon-block__text a {
    color: #999;
    text-decoration: underline;
    font-size: .9em; }
  .icon-block__image {
    position: relative;
    width: 100%;
    display: inline-block; }
    .icon-block__image:after {
      content: '';
      display: block; }
    .icon-block__image img {
      position: relative;
      display: block;
      width: auto;
      /*width: 80px;*/
      /*height: 80px;*/
      min-height: 100px;
      margin: 1em auto;
      vertical-align: middle; }
  .icon-block__link::after {
    /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
    content: "";
    background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
    background-size: contain;
    width: .7em;
    height: .7em;
    display: inline-block;
    vertical-align: baseline;
    margin-left: .35em; }
  @media (min-width: 640px) {
    .icon-block .grid-1-2 .icon-block__flex {
      flex-direction: column; }
    .icon-block .grid-1-2 .icon-block__image-wrapper, .icon-block .grid-1-4 .icon-block__image-wrapper, .icon-block .grid-1-3 .icon-block__image-wrapper,
    .icon-block .grid-3-4 .grid-2-3 .icon-block__image-wrapper,
    .icon-block .grid-3-4 .grid-2-4 .icon-block__image-wrapper,
    .icon-block .grid-3-4 .grid-3-4 .icon-block__image-wrapper {
      flex: none; }
    .icon-block__image-wrapper {
      display: inline-block;
      position: relative;
      width: 100%; }
      .icon-block__image-wrapper:after {
        content: '';
        display: block; }
      .icon-block__image-wrapper img {
        position: relative;
        margin: 2em auto;
        width: 80px;
        height: 80px;
        /*object-fit: cover;*/ }
    .icon-block .grid-1-2 .icon-block__text-wrapper {
      flex: 0 1 auto; }
    .icon-block .grid-1-3 .icon-block__flex {
      flex-direction: column; }
    .icon-block .grid-1-3 .icon-block__text-wrapper {
      flex: 0 1 auto; }
    .icon-block .grid-1-4 .icon-block__flex {
      flex-direction: column; }
    .icon-block .grid-1-4 .icon-block__text-wrapper {
      flex: 0 1 auto; }
    .icon-block .grid-1-1 > .icon-block .icon-block__flex, .icon-block .grid-1-1.iconblock .icon-block__flex {
      flex-flow: row nowrap; }
      .icon-block .grid-1-1 > .icon-block .icon-block__flex .icon-block__image, .icon-block .grid-1-1.iconblock .icon-block__flex .icon-block__image {
        width: 35%;
        margin-right: 1em; }
      .icon-block .grid-1-1 > .icon-block .icon-block__flex .icon-block__heading, .icon-block .grid-1-1.iconblock .icon-block__flex .icon-block__heading {
        margin: 0; } }
  .icon-block .menu__panel__feature .icon-block__flex {
    display: block; }
  .icon-block .menu__panel__feature .icon-block__image-wrapper {
    flex: 0 1 100%;
    height: 170px; }
  .icon-block .menu__panel__feature .icon-block__text-wrapper {
    flex: 0 1 100%;
    margin: 0; }
  .icon-block .icon-block.icon-block--color1 .icon-block__heading {
    color: #000; }
  .icon-block .icon-block.icon-block--color2 .icon-block__heading {
    color: #e10; }
  .icon-block .icon-block.icon-block--color3 .icon-block__heading {
    color: #999; }
  .icon-block .icon-block.icon-block--color4 .icon-block__heading {
    color: #f6f6f6; }
  .icon-block .icon-block.icon-block--color5 .icon-block__heading {
    color: #ccc; }
  .icon-block .icon-block.icon-block--color6 .icon-block__heading {
    color: #FFF; }
  .icon-block .icon-block.icon-block--link-bold .icon-block__link,
  .icon-block .menu__panel__link {
    font-weight: bold; }
  .icon-block .icon-block.icon-block--link-uppercase .icon-block__link,
  .icon-block .menu__panel__link {
    text-transform: uppercase; }

.news__header__info {
  width: 100%;
  font-size: 0.8em;
  margin-bottom: 1em; }
  .news__header__info--divider {
    display: inline-block; }
    .news__header__info--divider:nth-child(n+2):before {
      content: "|";
      padding: 0 .5em; }
  .news__header__info__link {
    color: #aaa;
    text-decoration: underline; }

.news__img__wrapper {
  width: 100%;
  margin-bottom: .5em; }
  .news__img__wrapper img {
    width: 100%; }

.news__rss {
  float: right;
  width: 2em;
  height: 2em;
  margin-left: 1em;
  fill: #ccc;
  transition: all .2s; }
  .news__rss:hover {
    color: #fff;
    fill: red; }
  .news__rss-icon {
    width: 100%;
    height: 100%;
    pointer-events: none; }

.newsitempage h1 {
  font-size: 1.5em; }

.news-list__content__item {
  position: relative;
  padding: 1em; }
  .news-list__content__item:nth-child(odd) {
    background: #f6f6f6; }
  .news-list__content__item:nth-child(even) {
    background: #fff; }
  .news-list__content__item--actions {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%); }
    @media (min-width: 769px) {
      .news-list__content__item--actions {
        transform: translateY(0); } }
    .news-list__content__item--actions > span {
      display: inline-block;
      vertical-align: top; }
    .news-list__content__item--actions .circle-icon {
      pointer-events: none; }
  .news-list__content__item--date {
    text-transform: uppercase; }
  .news-list__content__item--body {
    display: block;
    width: 85%; }
    .news-list__content__item--body::after {
      /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
      content: "";
      background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
      background-size: contain;
      width: .7em;
      height: .7em;
      display: inline-block;
      vertical-align: baseline;
      margin-left: .35em; }
    .news-list__content__item--body::before {
      content: "";
      display: block; }

.news-list__load__more {
  text-align: center; }
  .news-list__load__more__button a:hover {
    color: inherit; }

.news-list__title {
  font-size: 1.4em; }

.news-list__wrapper {
  border: none;
  width: 100%;
  margin: 1em 0;
  border-collapse: collapse; }

.news-list .hide-on-desktop-inline {
  display: inline-block; }
  @media (min-width: 769px) {
    .news-list .hide-on-desktop-inline {
      display: none; } }

@media (min-width: 769px) {
  .news-list {
    /* Small version of news-list, inside 1/3 or 1/4 grid */ }
    .news-list__content {
      display: table;
      width: 100%; }
    .news-list__content__item {
      padding: 0;
      display: table-row;
      width: 100%; }
      .news-list__content__item--body, .news-list__content__item--actions, .news-list__content__item--date {
        display: table-cell;
        padding: 1em;
        vertical-align: middle; }
      .news-list__content__item--actions {
        text-align: right;
        position: static;
        width: 20%; }
      .news-list__content__item--body {
        width: 55% !important; }
      .news-list__content__item--date {
        width: 25%; }
    .contentpage .grid-1-3 .news-list__content,
    .contentpage .grid-1-4 .news-list__content {
      display: block; }
    .contentpage .grid-1-3 .news-list__content__item,
    .contentpage .grid-1-4 .news-list__content__item {
      font-size: 0.875em;
      display: block; }
      .contentpage .grid-1-3 .news-list__content__item--actions,
      .contentpage .grid-1-4 .news-list__content__item--actions {
        display: none; }
      .contentpage .grid-1-3 .news-list__content__item--body,
      .contentpage .grid-1-4 .news-list__content__item--body {
        display: inline-block;
        width: 100%;
        padding: 0 1em 0.5em 1em; }
      .contentpage .grid-1-3 .news-list__content__item--date,
      .contentpage .grid-1-4 .news-list__content__item--date {
        display: inline-block;
        width: 100%;
        padding: 0.5em 1em 0 1em; } }

.notification {
  position: relative;
  clear: both;
  width: 100%;
  padding: 0.75em 2.5%;
  text-align: left;
  border-color: #CCCCCC;
  border-style: solid;
  border-width: 0 0 1px 0;
  background-color: #EFEFEF; }
  .notification__close {
    width: 2em;
    height: 2em;
    position: absolute;
    top: 50%;
    right: 1rem;
    stroke-width: 5;
    fill: #777;
    color: white;
    transition: all .2s;
    transform: translateY(-50%);
    cursor: default; }
    @media (hover: hover) {
      .notification__close:hover {
        color: white;
        fill: #f00; } }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .notification__close:hover {
        color: white;
        fill: #f00; } }
    @supports (-moz-appearance: none) and (display: flex) {
      .notification__close:hover {
        color: white;
        fill: #f00; } }
    .notification__close-icon {
      width: 100%;
      height: 100%;
      pointer-events: none; }
  .notification__inner {
    max-width: 90%; }
  @media (min-width: 769px) {
    .notification {
      text-align: center; } }

/* Announcement Banner */
.richtext {
  margin: 0; }
  .richtext > a {
    text-decoration: underline; }
  .richtext > ul {
    list-style: none; }
    .richtext > ul li {
      position: relative;
      padding-left: 1em;
      margin: .5em 0; }
      .richtext > ul li:before {
        content: '';
        width: 0.3em;
        height: 0.3em;
        background: #f00;
        display: block;
        top: .5em;
        left: 0;
        position: absolute;
        border-radius: 50%; }
  .richtext > img {
    max-width: 100%;
    height: auto;
    width: auto; }
  .richtext--custom {
    padding: 1.25em 2em; }
    .richtext--custom .countryselector__url {
      text-transform: uppercase;
      display: inline-block;
      background: #FFF;
      border: 1px solid #f00;
      padding: 1em 2em;
      clear: both;
      text-decoration: none; }
    .richtext--custom ul li a {
      font-weight: bold; }
      .richtext--custom ul li a .red-text {
        margin-left: .35em; }
    .richtext--custom p a {
      font-weight: bold; }

.rss-icon {
  float: right;
  width: 2em;
  height: 2em;
  margin-left: 1em;
  fill: #ccc;
  transition: all .2s; }

.search {
  display: none;
  width: 20em;
  margin-left: auto; }
  @media (min-width: 769px) {
    .search {
      display: block; } }
  .search__fieldset {
    position: relative;
    float: right;
    justify-content: flex-end;
    margin: .5em 0;
    padding: 0;
    border: 0;
    border-radius: 0.5em;
    background: transparent; }
    @media (min-width: 1024px) {
      .search__fieldset {
        max-width: 80%; } }
  .search__input {
    font-size: 1em;
    margin-left: 0.5em;
    padding: 0.5em 0;
    vertical-align: middle;
    border-style: solid;
    border-color: #CCCCCC;
    border-width: 0 0 1px 0;
    border-radius: 0;
    outline: 0;
    flex: 1 0 3em;
    -webkit-appearance: none; }
    .search__input:valid::-ms-clear, .search__input:valid::-webkit-search-cancel-button {
      cursor: pointer; }
    @media (min-width: 1024px) {
      .search__input {
        max-width: 80%; } }
  .search__mobile {
    position: absolute;
    top: rem;
    left: 0;
    display: none;
    width: 100%;
    background: #ddd;
    border-bottom: 1px solid #aaa;
    padding: 1em;
    color: #fff; }
    .search__mobile .search__input {
      max-width: none;
      width: calc(100% - 1em);
      padding: 1em;
      border: 1px solid #aaa; }
    @media (min-width: 769px) {
      .search__mobile {
        display: none; } }
  .search__submit {
    position: relative;
    top: 0.5rem;
    border: 0;
    background: none; }
  .search__submit__image {
    width: 2em;
    height: 2em;
    vertical-align: bottom;
    fill: #777; }
  .search__toggle {
    position: absolute;
    top: 0;
    right: 4rem;
    height: 4rem;
    padding: 1em;
    z-index: 500;
    transition: all .5s ease;
    display: flex;
    align-items: center; }
    .state:checked + .search__toggle {
      background: #ddd; }
      .state:checked + .search__toggle + .search__mobile {
        display: block; }
    .search__toggle__icon {
      width: 2em;
      height: 2em; }
    @media (min-width: 769px) {
      .search__toggle {
        display: none; } }

.search-results__result {
  padding-top: 35px;
  display: block; }
  @media (min-width: 640px) {
    .search-results__result {
      display: flex; } }
  .search-results__result .url {
    color: #999;
    text-decoration: underline; }
  .search-results__result__img {
    position: relative;
    flex: 1 0 25%;
    margin-right: 1em; }
    .search-results__result__img:after {
      content: '';
      display: block;
      padding-bottom: 56.25%; }
    .search-results__result__img img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .search-results__result__content {
    padding-top: 10px; }
    @media (min-width: 640px) {
      .search-results__result__content {
        padding-top: 0; } }
    .search-results__result__content__headline {
      margin-bottom: 0;
      text-decoration: underline; }
      .search-results__result__content__headline > a[data-action="External"]::after {
        display: none; }

.search-results__text {
  margin: 20px 0; }

.search-results__options, .search-results__result-text {
  padding-top: 1em; }

.search-results__result-text {
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 1em;
  border-bottom: 2px solid #999; }

.search-results__text .keyword,
.search-results__text .help {
  color: #999;
  font-weight: bold; }

.search-results__pagination {
  text-align: center; }
  .search-results__pagination__page {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 1.2em;
    padding: .4em; }
    .search-results__pagination__page [rel="prev"],
    .search-results__pagination__page [rel="next"] {
      color: #f00;
      display: inline-block;
      vertical-align: baseline;
      width: 0.7em;
      height: 0.7em;
      border-top: 2px solid #f00;
      border-right: 2px solid #f00; }
    .search-results__pagination__page [rel="prev"] {
      -webkit-transform: rotate(225deg);
      transform: rotate(225deg); }
    .search-results__pagination__page [rel="next"] {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .search-results__pagination__page:hover {
      color: #f00; }
    .search-results__pagination__page--current {
      padding: .2em .4em;
      background: #ccc; }

.search-results .validationRequired .form__required {
  display: inline; }

.search-results .search {
  width: 100%;
  padding-top: 10px;
  display: block; }
  .search-results .search .icon {
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    background-image: url("/Themes/Shared/ui/svg/search.svg"); }
  .search-results .search__fieldset {
    float: none;
    width: 100%;
    display: flex;
    justify-content: flex-start; }
    @media (min-width: 640px) {
      .search-results .search__fieldset {
        width: 50%; } }
  .search-results .search__input {
    padding: 0 0.5em;
    flex: 1; }
    @media (min-width: 640px) {
      .search-results .search__input {
        min-width: 35%; } }
  .search-results .search__submit {
    top: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    margin: 0 0 0 1em;
    border-bottom: 2px solid transparent; }
    .search-results .search__submit::after {
      /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
      content: "";
      background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
      background-size: contain;
      width: .7em;
      height: .7em;
      display: inline-block;
      vertical-align: baseline;
      margin-left: .35em; }
    @media (hover: hover) {
      .search-results .search__submit:hover {
        color: #e10; } }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .search-results .search__submit:hover {
        color: #e10; } }
    @supports (-moz-appearance: none) and (display: flex) {
      .search-results .search__submit:hover {
        color: #e10; } }
    .search-results .search__submit__image {
      width: 1.2em;
      height: 1.2em; }
  .search-results .search .keyword {
    color: #f00; }

.simple-list__flex {
  padding-top: 1em; }
  .simple-list__flex-row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: column nowrap; }
    @media (min-width: 640px) {
      .simple-list__flex-row {
        flex-flow: row nowrap; } }

.simple-list__image {
  width: 100%;
  display: inline-block;
  position: relative; }
  @media (min-width: 640px) {
    .simple-list__image {
      width: 50%;
      margin-right: 1em; } }
  @media (min-width: 1024px) {
    .simple-list__image {
      width: 40%;
      margin-right: 1em; } }
  .simple-list__image:after {
    content: '';
    padding-bottom: 56.25%;
    display: block; }
  .simple-list__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    object-fit: cover; }

.simple-list__heading {
  font-weight: 600;
  margin: 0; }

.simple-list__text-wrapper {
  flex: auto;
  padding-top: 1em; }
  @media (min-width: 640px) {
    .simple-list__text-wrapper {
      padding-top: 0; } }
  .simple-list__text-wrapper .download--link:after {
    margin-left: .5em; }

.simple-list__list {
  list-style: none; }

.simple-list__link--anchor::after {
  /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
  content: "";
  background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
  background-size: contain;
  width: .7em;
  height: .7em;
  display: inline-block;
  vertical-align: baseline;
  margin-left: .35em; }

.simple-list .grid-1-4 .simple-list__flex-row {
  flex-flow: column nowrap; }

.simple-list .grid-1-4 .simple-list__image {
  width: 100%; }

.simple-list__item {
  list-style: none;
  line-height: 1.5em; }

.simple-list__link--pdf::after {
  content: '';
  background: url(/Themes/Shared/ui/svg/download-icon.svg) no-repeat;
  background-size: cover;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: bottom;
  margin-left: .5em; }

.simple-list__link--pdf:hover::after {
  background-image: url(/Themes/Shared/ui/svg/download-icon--red.svg); }

.simple-list__read-more {
  padding-top: 1em;
  text-transform: uppercase;
  font-weight: bold;
  display: block; }
  .simple-list__read-more::after {
    /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
    content: "";
    background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
    background-size: contain;
    width: .7em;
    height: .7em;
    display: inline-block;
    vertical-align: baseline;
    margin-left: .35em; }

.simple-list .simple-list.simple-list--color1 .simple-list__heading {
  color: #000; }

.simple-list .simple-list.simple-list--color2 .simple-list__heading {
  color: #e10; }

.simple-list .simple-list.simple-list--color3 .simple-list__heading {
  color: #999; }

.simple-list .simple-list.simple-list--color4 .simple-list__heading {
  color: #f6f6f6; }

.simple-list .simple-list.simple-list--color5 .simple-list__heading {
  color: #ccc; }

.simple-list .simple-list.simple-list--color6 .simple-list__heading {
  color: #FFF; }

.social-sharing {
  position: relative;
  padding: 0.25em 0 0 0;
  display: flex;
  align-items: center;
  margin-left: auto;
  white-space: nowrap;
  /*flex: 0 0 15em;*/
  justify-content: flex-end; }
  .social-sharing__icons .icon {
    display: inline-block;
    margin-left: 0.25em; }
  .social-sharing__icons svg.circle-icon use {
    pointer-events: none; }
  .social-sharing__overlay__bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s linear;
    visibility: hidden; }
  .social-sharing__overlay .circle-icon {
    width: 50px;
    height: 50px; }
  .social-sharing__overlay__content {
    display: none;
    font-size: 1rem;
    position: fixed;
    z-index: -1;
    top: 40%;
    left: 5%;
    width: 100%;
    min-width: 65%;
    max-width: 90%;
    max-height: 90%;
    transition: opacity .3s linear,-webkit-transform .3s ease-in;
    transition: transform .3s ease-in,opacity .3s linear;
    transition: transform .3s ease-in,opacity .3s linear,-webkit-transform .3s ease-in;
    transition-delay: .1s;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background: #fff;
    background-clip: padding-box;
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.3); }
    @media only screen and (max-width: 767px) and (min-width: 480px) {
      .social-sharing__overlay__content {
        max-width: 76%;
        left: 12%;
        min-width: 0; } }
    @media (min-width: 768px) {
      .social-sharing__overlay__content {
        max-width: 480px;
        min-width: 0; } }
    @media only screen and (max-width: 799px) and (min-width: 768px) {
      .social-sharing__overlay__content {
        left: 21%; } }
    @media only screen and (max-width: 991px) and (min-width: 800px) {
      .social-sharing__overlay__content {
        left: 25%; } }
    @media only screen and (max-width: 1399px) and (min-width: 992px) {
      .social-sharing__overlay__content {
        left: 30%; } }
    @media only screen and (max-width: 1799px) and (min-width: 1400px) {
      .social-sharing__overlay__content {
        left: 33%; } }
    @media (min-width: 1800px) {
      .social-sharing__overlay__content {
        left: 35%; } }
    .social-sharing__overlay__content .icon {
      margin: 0 1em 2em 0; }
    .social-sharing__overlay__content .social-sharing__icons {
      display: block;
      margin: 3em 0 1em 0; }
    .social-sharing__overlay__content > label {
      width: 2em;
      height: 2em;
      position: absolute;
      top: 1em;
      right: 1em;
      stroke-width: 5;
      fill: #777;
      color: white;
      transition: all .2s; }
      @media (hover: hover) {
        .social-sharing__overlay__content > label:hover {
          color: white;
          fill: #f00; } }
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .social-sharing__overlay__content > label:hover {
          color: white;
          fill: #f00; } }
      @supports (-moz-appearance: none) and (display: flex) {
        .social-sharing__overlay__content > label:hover {
          color: white;
          fill: #f00; } }
  .social-sharing__overlay__toggle {
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .social-sharing__overlay .state:checked + .social-sharing__overlay__bg {
    z-index: 9000;
    opacity: 1;
    visibility: visible; }
    .social-sharing__overlay .state:checked + .social-sharing__overlay__bg + .social-sharing__overlay__content {
      z-index: 9001;
      opacity: 1;
      visibility: visible; }
  .social-sharing__overlay__text {
    font-size: 0.875em;
    margin: 0 0.5em 0 0; }
  .social-sharing__overlay .circle-icon {
    width: 50px;
    height: 50px; }
  @media (min-width: 640px) {
    .social-sharing__overlay {
      padding: 0; } }
  @media (min-width: 769px) {
    .social-sharing__overlay {
      margin-left: auto; }
      .social-sharing__overlay__icons, .social-sharing__overlay__text {
        display: inline-block; } }

.spot-block__wrapper-link:hover {
  color: #000; }
  .spot-block__wrapper-link:hover .spot-block__link {
    color: #f00; }

.spot-block__heading {
  font-size: 1.125em;
  margin: .5em 0;
  font-weight: 600; }

.spot-block__flex {
  display: flex;
  flex-flow: column nowrap; }

.spot-block__image-wrapper {
  flex: none;
  margin: 0 1em 0 0; }
  @media (min-width: 640px) {
    .spot-block__image-wrapper {
      flex: 0 1 75%; } }
  .spot-block__image-wrapper img {
    width: 100%; }

.spot-block__text-wrapper {
  flex: none; }
  @media (min-width: 640px) {
    .spot-block__text-wrapper {
      flex: 0 1 auto; } }
  .spot-block__text-wrapper p:last-of-type {
    display: inline; }

.spot-block--top .spot-block__text-wrapper {
  padding-top: .5em; }

.spot-block--top .spot-block__heading {
  font-size: 1.125em; }

@media (min-width: 640px) {
  .spot-block--top .spot-block__image-wrapper {
    flex: 0 1 50%; }
  .spot-block--top .spot-block__text-wrapper {
    flex: 0 1 50%; }
    .grid-1-1 .spot-block--top .spot-block__text-wrapper {
      padding-top: 0; } }

.spot-block__text a {
  color: #999;
  text-decoration: underline;
  font-size: .9em; }

.spot-block__image {
  position: relative;
  width: 100%;
  display: inline-block; }
  .spot-block__image:after {
    content: '';
    display: block;
    padding-bottom: 56.25%; }
  .spot-block__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    vertical-align: middle; }

.spot-block__link::after {
  /*
        content: " ";
        color: $color;
        display: inline-block;
        transform: rotate(45deg);
        vertical-align: baseline;
		width: .6em;
		height: .6em;
		transform-origin: 75% 75%;
        border-top: 2px solid $color;
        border-right: 2px solid $color;
        */
  content: "";
  background: url(/Themes/Shared/ui/svg/arrow__right.svg) no-repeat;
  background-size: contain;
  width: .7em;
  height: .7em;
  display: inline-block;
  vertical-align: baseline;
  margin-left: .35em; }

@media (min-width: 640px) {
  .spot-block .grid-1-2 .spot-block__flex {
    flex-direction: column; }
  .spot-block .grid-1-2 .spot-block__image-wrapper, .spot-block .grid-1-4 .spot-block__image-wrapper, .spot-block .grid-1-3 .spot-block__image-wrapper,
  .spot-block .grid-3-4 .grid-2-3 .spot-block__image-wrapper,
  .spot-block .grid-3-4 .grid-2-4 .spot-block__image-wrapper,
  .spot-block .grid-3-4 .grid-3-4 .spot-block__image-wrapper {
    flex: none; }
  .spot-block__image-wrapper {
    display: inline-block;
    position: relative;
    width: 100%; }
    .spot-block__image-wrapper:after {
      content: '';
      display: block;
      padding-bottom: 56.25%; }
    .spot-block__image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .spot-block .grid-1-2 .spot-block__text-wrapper {
    flex: 0 1 auto; }
  .spot-block .grid-1-3 .spot-block__flex {
    flex-direction: column; }
  .spot-block .grid-1-3 .spot-block__text-wrapper {
    flex: 0 1 auto; }
  .spot-block .grid-1-4 .spot-block__flex {
    flex-direction: column; }
  .spot-block .grid-1-4 .spot-block__text-wrapper {
    flex: 0 1 auto; }
  .spot-block .grid-1-1 > .spot-block .spot-block__flex, .spot-block .grid-1-1.spotblock .spot-block__flex {
    flex-flow: row nowrap; }
    .spot-block .grid-1-1 > .spot-block .spot-block__flex .spot-block__image, .spot-block .grid-1-1.spotblock .spot-block__flex .spot-block__image {
      width: 35%;
      margin-right: 1em; }
    .spot-block .grid-1-1 > .spot-block .spot-block__flex .spot-block__heading, .spot-block .grid-1-1.spotblock .spot-block__flex .spot-block__heading {
      margin: 0; } }

.spot-block .menu__panel__feature .spot-block__flex {
  display: block; }

.spot-block .menu__panel__feature .spot-block__image-wrapper {
  flex: 0 1 100%;
  height: 170px; }

.spot-block .menu__panel__feature .spot-block__text-wrapper {
  flex: 0 1 100%;
  margin: 0; }

.spot-block .spot-block.spot-block--color1 .spot-block__heading {
  color: #000; }

.spot-block .spot-block.spot-block--color2 .spot-block__heading {
  color: #e10; }

.spot-block .spot-block.spot-block--color3 .spot-block__heading {
  color: #999; }

.spot-block .spot-block.spot-block--color4 .spot-block__heading {
  color: #f6f6f6; }

.spot-block .spot-block.spot-block--color5 .spot-block__heading {
  color: #ccc; }

.spot-block .spot-block.spot-block--color6 .spot-block__heading {
  color: #FFF; }

.spot-block .spot-block.spot-block--link-bold .spot-block__link,
.spot-block .spot-block--link-bold,
.spot-block .menu__panel__link {
  font-weight: bold; }

.spot-block .spot-block.spot-block--link-uppercase .spot-block__link,
.spot-block .menu__panel__link {
  text-transform: uppercase; }

.story__page {
  width: 100%; }
  .story__page > h1 {
    font-size: 2em; }
  .story__page > h2 {
    margin-bottom: 0; }
  .story__page__img__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; }
    .story__page__img__wrapper img {
      width: 100%; }
  .story__page__content {
    padding: .5em 0; }
  .story__page__share {
    position: absolute;
    display: inline-block;
    bottom: 0;
    right: 0;
    z-index: 100;
    padding: .5em; }
    .story__page__share .circle-icon {
      pointer-events: none;
      display: block; }
  .story__page__thumbnails__wrapper {
    padding-bottom: 2em; }
    @media (min-width: 769px) {
      .story__page__thumbnails__wrapper > .grid-1-3:nth-child(3n+2):last-child,
      .story__page__thumbnails__wrapper .grid-1-1 ~ .grid-1-3:nth-child(3n+3):last-child {
        width: 65.8333333%; }
        .story__page__thumbnails__wrapper > .grid-1-3:nth-child(3n+2):last-child .story__page__thumbnails__item,
        .story__page__thumbnails__wrapper .grid-1-1 ~ .grid-1-3:nth-child(3n+3):last-child .story__page__thumbnails__item {
          width: 47.75%; } }
    @media (min-width: 1024px) {
      .story__page__thumbnails__wrapper .grid-1-1 {
        padding-top: 0; } }
    .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--content {
      padding-right: 2em; }
    .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--text {
      padding-right: 2em; }
    @media (min-width: 769px) {
      .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption {
        /* This was removed because of a rendering error on Our Stories-page */
        /*
                        position: absolute;
						bottom: 0;
						left: 0;
						right: 0;
                        */ }
        .story__page__thumbnails__wrapper .grid-1-1 .story__page__thumbnails__item__caption--content {
          background: rgba(255, 255, 255, 0.5);
          padding: .5em;
          padding-right: 2em; } }
    @media (min-width: 1024px) {
      .story__page__thumbnails__wrapper .grid-1-2 {
        padding-top: 0; } }
  .story__page__thumbnails__item {
    position: relative;
    margin-bottom: 2em; }
    @media (min-width: 769px) {
      .story__page__thumbnails__item {
        margin-bottom: 0; } }
    .story__page__thumbnails__item__img__wrapper {
      position: relative;
      overflow: hidden; }
      .story__page__thumbnails__item__img__wrapper:before {
        content: '';
        display: block;
        width: 100%;
        padding-top: 56.25%; }
      .story__page__thumbnails__item__img__wrapper img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        height: auto;
        border: none; }
      @media (min-width: 769px) {
        .story__page__thumbnails__item__img__wrapper {
          height: 100%;
          display: block;
          flex-direction: column; } }
    .story__page__thumbnails__item__wrapper {
      display: block; }
      .story__page__thumbnails__item__wrapper:hover .story__page__thumbnails__item__caption--title, .story__page__thumbnails__item__wrapper:hover .story__page__thumbnails__item__caption--text {
        color: #000; }
      .story__page__thumbnails__item__wrapper:hover .story__page__thumbnails__item__caption--calltoaction {
        color: #f00; }
    .story__page__thumbnails__item .share--button {
      pointer-events: none;
      width: 3em;
      padding: 0.5em;
      height: 3em; }
      .story__page__thumbnails__item .share--button--white {
        fill: #ddd;
        color: #fff; }
    .story__page__thumbnails__item__caption {
      position: relative;
      padding: 0; }
      .story__page__thumbnails__item__caption--content {
        padding: .5em 0; }
      .story__page__thumbnails__item__caption--headline {
        font-size: 1.3em;
        margin: 0; }
      .story__page__thumbnails__item__caption--text {
        margin-bottom: 0;
        /*font-size: .8em;*/
        font-size: 15px;
        padding-right: 2em; }
        .story__page__thumbnails__item__caption--text:after {
          transform: rotate(-45deg); }
        .story__page__thumbnails__item__caption--text > a {
          text-decoration: underline;
          color: #666; }
      .story__page__thumbnails__item__caption--calltoaction {
        font-weight: bold;
        text-transform: uppercase; }
        .story__page__thumbnails__item__caption--calltoaction:after {
          transform: rotate(-45deg); }
      .story__page__thumbnails__item__caption--title {
        font-weight: 600;
        font-size: 1.2em;
        margin: 0; }
  .story__page .load__more__button {
    display: block;
    background: none;
    margin: 0 auto;
    text-align: center;
    outline: none;
    border: none;
    font-size: 1em; }

.tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; }
  .tabs .state {
    position: absolute;
    opacity: 0; }
  .tabs .epi-wrapper > div:first-child {
    width: 100%; }
  .tabs .contentpage .tabs {
    padding-top: 1rem; }
  .tabs .state {
    display: none; }
  .tabs .extended-list__cell__actions {
    display: none; }
  .tabs__label {
    text-transform: uppercase;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    display: block;
    cursor: pointer;
    /* centering tab titles */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: .5em; }
    .tabs--3 .tabs__label {
      width: 33%; }
      @media (min-width: 769px) {
        .tabs--3 .tabs__label {
          width: 32%; } }
    .tabs--2 .tabs__label {
      width: 49.5%; }
      @media (min-width: 769px) {
        .tabs--2 .tabs__label {
          width: 48%; } }
    .tabs .state:checked + .tabs__label {
      background-color: #e10;
      color: #fff;
      border-top: 1px solid #e10;
      border-right: 1px solid #e10;
      border-left: 1px solid #e10; }
      .tabs .state:checked + .tabs__label {
        position: relative; }
      .tabs .state:checked + .tabs__label::after {
        content: " ";
        color: #f00;
        display: inline-block;
        transform: rotate(45deg);
        width: 1em;
        height: 1em;
        border-bottom: 2px solid #f00;
        border-right: 2px solid #f00;
        bottom: -8px;
        position: absolute;
        left: calc(50% - .4em);
        background-color: #e10; }
    .tabs__label--headline {
      justify-content: flex-start; }
    .tabs__label__headline {
      display: block;
      overflow: hidden;
      font-size: 2em; }
      @media (min-width: 769px) {
        .tabs__label__headline {
          font-size: 3em; } }
  .tabs__panel {
    display: none;
    border-top: 2px solid #e10;
    width: 100%;
    padding: 1.5em 1em 1em; }
    .tabs__panel .news-list__content__item {
      padding: 0; }
  .tabs .state:nth-of-type(1):checked ~ .tabs__panel:nth-of-type(1),
  .tabs .state:nth-of-type(2):checked ~ .tabs__panel:nth-of-type(2),
  .tabs .state:nth-of-type(3):checked ~ .tabs__panel:nth-of-type(3) {
    display: block; }
  .tabs .tabs__panel.tabs__panel--color1 {
    background-color: #000; }
  .tabs .tabs__panel.tabs__panel--color2 {
    background-color: #e10; }
  .tabs .tabs__panel.tabs__panel--color3 {
    background-color: #999; }
  .tabs .tabs__panel.tabs__panel--color4 {
    background-color: #f6f6f6; }
  .tabs .tabs__panel.tabs__panel--color5 {
    background-color: #ccc; }
  .tabs .tabs__panel.tabs__panel--color6 {
    background-color: #FFF; }

.totop {
  display: inline-block;
  font-size: 0.75em;
  height: 100%;
  padding: 1em 2em;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  background-color: rgba(119, 119, 119, 0.75);
  transition: .2s all; }
  .totop::after {
    content: " ";
    margin-left: 0.5em;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.4em 0.8em 0.4em;
    border-color: transparent transparent #FFF transparent; }
  .totop__wrapper {
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 5rem;
    z-index: 100;
    transition: all 1s ease; }
    @media (min-width: 769px) {
      .totop__wrapper {
        margin-top: auto; } }
  .totop__inner {
    max-width: 1600px;
    margin: 0 auto;
    text-align: right;
    text-transform: uppercase; }
  @media (hover: hover) {
    .totop:hover {
      background-color: #e10; } }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .totop:hover {
      background-color: #e10; } }
  @supports (-moz-appearance: none) and (display: flex) {
    .totop:hover {
      background-color: #e10; } }

.twitter__quote__block {
  width: 100%;
  padding: 1.3em 1em;
  border: 1px solid #ccc;
  font-size: 1em;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  position: relative; }
  .twitter__quote__block__icon {
    font-weight: bold;
    font-style: normal;
    display: block;
    margin-top: 1em;
    text-transform: uppercase;
    text-align: center; }
    .twitter__quote__block__icon .icon__text {
      margin: 0;
      width: 1.5em;
      height: 1.5em;
      vertical-align: bottom; }
    .twitter__quote__block__icon:after {
      content: attr(data-text); }
  @media (min-width: 640px) {
    .twitter__quote__block {
      width: 50%; } }

.twitter__quote:hover {
  color: inherit; }
  .twitter__quote:hover .twitter__quote__block__icon {
    color: #f00; }

