@charset "UTF-8";
/**
 * Foundation for Sites
 * Version 6.7.5
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-open {
  overflow: visible;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}

.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}

.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}

.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}

.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}

.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  visibility: visible;
}

.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}

.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */
/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Player
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
[data-media-player] {
  width: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
  contain: style;
  box-sizing: border-box;
  user-select: none;
}

[data-media-player] * {
  box-sizing: border-box;
}

:where([data-media-player][data-view-type=video]) {
  aspect-ratio: 16/9;
}

[data-media-player]:focus,
[data-media-player]:focus-visible {
  outline: none;
}

[data-media-player][data-view-type=video][data-started]:not([data-controls]) {
  pointer-events: auto;
  cursor: none;
}

[data-media-player] slot {
  display: contents;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Provider
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
[data-media-provider] {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  border-radius: inherit;
  width: 100%;
  aspect-ratio: inherit;
  overflow: hidden;
}

[data-media-player]:not([data-view-type=audio]) [data-media-provider],
[data-media-player][data-fullscreen] [data-media-provider] {
  height: 100%;
}

[data-media-player][data-view-type=audio] [data-media-provider] {
  display: contents;
  background-color: unset;
}

[data-media-provider] audio {
  width: 100%;
}

:where(video:not([width]):not([height]), iframe:not([width]):not([height])) {
  width: 100%;
  aspect-ratio: 16/9;
}

:where([data-media-provider] video),
:where([data-media-provider] iframe) {
  aspect-ratio: inherit;
  display: inline-block;
  height: auto;
  object-fit: contain;
  touch-action: manipulation;
  border-radius: inherit;
  width: 100%;
}

[data-media-provider] iframe {
  height: 100%;
}

[data-media-player][data-view-type=audio] video,
[data-media-player][data-view-type=audio] iframe {
  display: none;
}

[data-media-player][data-fullscreen] video {
  height: 100%;
}

[data-media-provider] iframe:not([src]) {
  display: none;
}

iframe.vds-youtube[data-no-controls] {
  height: 1000%;
}

.vds-blocker {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  pointer-events: auto;
  border-radius: inherit;
  z-index: 1;
}

[data-ended] .vds-blocker {
  background-color: black;
}

.vds-icon:focus {
  outline: none;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Google Cast
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.vds-google-cast {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #dedede;
  font-family: sans-serif;
  font-weight: 500;
}

.vds-google-cast svg {
  --size: max(18%, 40px);
  width: var(--size);
  height: var(--size);
  margin-bottom: 8px;
}

.vds-google-cast-info {
  font-size: calc(var(--media-height) / 100 * 6);
}

.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  pointer-events: none;
  max-width: 100%;
  min-width: 200px;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  border-radius: inherit;
  z-index: 1;
}

[data-media-player][data-layout=plyr]:not([data-fullscreen]) {
  border-radius: var(--plyr-border-radius, 10px);
}

.plyr button,
.plyr [role=button] {
  font: inherit;
  line-height: inherit;
  width: auto;
  pointer-events: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr {
  box-sizing: border-box;
}

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

.plyr a,
.plyr button,
.plyr [role=button],
.plyr input,
.plyr [role=slider],
.plyr label {
  touch-action: manipulation;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Badge
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__badge {
  background: var(--plyr-badge-background, hsl(216, 15%, 34%));
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Captions
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__caption div {
  display: inline;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Controls
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 4px);
  contain: layout style;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}

.plyr :focus {
  outline: 0;
}

.plyr *:focus-visible,
.plyr *[data-focus] {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, hsl(198, 100%, 50%)));
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after,
a.plyr__control::before {
  display: none;
}

.plyr__control[aria-pressed=false] .icon--pressed,
.plyr__control[aria-pressed=true] .icon--not-pressed,
.plyr__control[aria-pressed=false] .label--pressed,
.plyr__control[aria-pressed=true] .label--not-pressed {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
  pointer-events: auto;
}

.plyr__controls .plyr__progress__container {
  flex: 1 1 0%;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}

.plyr__controls:empty {
  display: none;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Menu
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu [aria-disabled=true],
.plyr__menu [role=menu][aria-hidden=true] {
  display: none !important;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  --media-menu-x-offset: 3px;
  --media-menu-y-offset: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-menu-radius, 8px);
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-base, 15px);
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7 - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}

.plyr__menu__container > div > div {
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5) calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--forward:focus-visible::after,
.plyr__menu__container .plyr__control--forward[data-focus]::after,
.plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--back::before {
  background: var(--plyr-menu-back-border-color, hsl(216, 15%, 88%));
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back:focus-visible::after,
.plyr__menu__container .plyr__control--back[data-focus]::after,
.plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before,
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, hsl(198, 100%, 50%)));
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio]:focus-visible::before,
.plyr__menu__container .plyr__control[role=menuitemradio][data-focus]::before,
.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: calc((var(--plyr-control-spacing, 10px) * 0.7 - 2px) * -1);
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}

.plyr__menu__container .plyr__control[data-open] .plyr__menu__value {
  display: none;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Sliders
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr .plyr__slider {
  --value: var(--slider-fill);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  contain: layout style;
  color: var(--plyr-range-fill-background, var(--plyr-color-main, hsl(198, 100%, 50%)));
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  min-width: 0;
  pointer-events: auto;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
  /** Prevent thumb flowing out of slider. */
  margin: 0 calc(var(--plyr-range-thumb-height, 13px) / 2);
}

.plyr .plyr__slider__track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
  width: 100%;
  z-index: 1;
}

.plyr .plyr__slider__thumb {
  position: absolute;
  top: 50%;
  left: var(--value);
  will-change: left;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  -webkit-transition: all 0.2s ease;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  transform: translate(-50%, -50%);
  width: var(--plyr-range-thumb-height, 13px);
  -webkit-appearance: none;
  appearance: none;
  z-index: 2;
}

.plyr .plyr__slider:focus {
  outline: 0;
}

.plyr .plyr__slider:focus-visible .plyr__slider__track,
.plyr .plyr__slider[data-focus] .plyr__slider__track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, hsl(198, 100%, 50%)));
  outline-offset: 2px;
}

.plyr__volume {
  align-items: center;
  display: flex;
  position: relative;
  flex: 1 1 0%;
  max-width: 128px;
}

.plyr__volume .plyr__slider {
  max-width: 90px;
  min-width: 60px;
  position: relative;
  z-index: 2;
}

.plyr__volume + .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px));
}

.plyr__progress .plyr__tooltip {
  left: var(--slider-pointer);
  max-width: 120px;
  overflow-wrap: break-word;
}

.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress .plyr__slider {
  position: relative;
  z-index: 2;
}

[data-live] .plyr__progress .plyr__slider {
  color: var(--plyr-progress-live-color, white);
}

[data-live-edge] .plyr__progress .plyr__slider {
  color: var(--plyr-progress-live-edge-color, var(--plyr-color-main, hsl(198, 100%, 50%)));
}

.plyr__slider__buffer {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.plyr--loading .plyr__slider__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__slider__buffer {
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__slider__buffer {
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__progress__marker {
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__progress__marker-label {
  color: #fff;
  font-size: var(--plyr-font-size-progress-marker, var(--plyr-font-size-small, 13px));
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Poster
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__poster {
  background-color: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster,
.plyr__poster[data-remotion-poster][data-visible] {
  opacity: 1;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Time
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  border-radius: var(--plyr-time-radius, 5px);
  pointer-events: auto;
}

.plyr__time:focus {
  outline: none;
}

.plyr__time:focus-visible {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, hsl(198, 100%, 50%)));
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Tooltip
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__tooltip {
  background: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control:focus-visible .plyr__tooltip,
.plyr__tooltip--visible,
.plyr__slider[data-active] .plyr__tooltip {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  transform: translate(0, 0) scale(1);
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Audio Controls
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr--audio {
  display: block;
  width: 100%;
}

.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, hsl(216, 15%, 34%));
  padding: var(--plyr-control-spacing, 10px);
  border: var(--plyr-audio-border, 1px solid #edecec);
}

.plyr--audio .plyr__control:focus-visible,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[role=button][aria-expanded=true] {
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, hsl(198, 100%, 50%)));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr.plyr--audio .plyr__slider__track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr.plyr--audio .plyr__slider:active .plyr__slider__thumb,
.plyr.plyr--audio .plyr__slider[data-dragging] .plyr__slider__thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__slider__buffer {
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Video Controls
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr--video .plyr__controls {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control:focus-visible,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[data-hocus],
.plyr--video .plyr__control[role=button][aria-expanded=true] {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, hsl(198, 100%, 50%)));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, hsl(198, 100%, 50%)));
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:hover,
.plyr__control--overlaid:focus,
.plyr__control--overlaid[data-hocus] {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr.plyr--video .plyr__slider__track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr.plyr--video .plyr__slider:active .plyr__slider__thumb,
.plyr.plyr--video .plyr__slider[data-dragging] .plyr__slider__thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__slider__buffer {
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Fullscreen
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr.plyr--fullscreen-active {
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr.plyr--fullscreen-active .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr.plyr--fullscreen-active .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr.plyr--fullscreen-active.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr.plyr--fullscreen-active .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Preview
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__slider__preview {
  background-color: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-menu-radius, 8px);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  transform: scale(0.8);
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__slider__preview[data-visible] {
  opacity: 1;
  transform: scale(1);
}

.plyr__slider__preview::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__slider__preview__thumbnail {
  --aspect-ratio: calc(var(--plyr-thumbnail-aspect-ratio, 16 / 9));
  --min-width: var(--plyr-thumbnail-min-width, 140px);
  --max-width: var(--plyr-thumbnail-max-width, 180px);
  background: hsl(216, 15%, 79%);
  border-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  overflow: hidden;
  position: relative;
  display: block;
  width: var(--thumbnail-width);
  height: var(--thumbnail-height);
  contain: strict;
  z-index: 0;
  min-width: var(--min-width);
  min-height: var(--plyr-thumbnail-min-height, calc(var(--min-width) / var(--aspect-ratio)));
  max-width: var(--max-width);
  max-height: var(--plyr-thumbnail-max-height, calc(var(--max-width) / var(--aspect-ratio)));
}

.plyr__slider__preview__thumbnail img,
.plyr__slider__preview__thumbnail::after {
  max-height: none;
  max-width: none;
  object-fit: contain;
  will-change: width, height, transform;
}

.plyr__slider__preview__thumbnail::after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__slider__preview__time-container {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.plyr__slider__preview__time {
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Preview Scrubbing
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  left: 0;
  margin: auto;
  opacity: 0;
  contain: strict;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: var(--thumbnail-width);
  height: var(--thumbnail-height);
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
}

[data-seeking] .plyr__preview-scrubbing {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  max-height: none;
  max-width: none;
  object-fit: contain;
  will-change: width, height, transform;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Gesture
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__gesture {
  contain: content;
  display: block;
  height: 100%;
  inset: 0;
  opacity: 0;
  pointer-events: none !important;
  position: absolute;
  visibility: hidden;
  width: 100%;
  z-index: 0;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Live Button
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr__live-button {
  background-color: unset !important;
  margin-left: calc(var(--plyr-control-spacing, 10px) * 1.5) !important;
}

.plyr__live-button[data-focus] {
  outline-offset: -5px;
}

.plyr__live-button[data-edge] {
  cursor: unset;
}

.plyr__live-button__text {
  background-color: var(--plyr-live-button-bg, #8a8a8a);
  border-radius: var(--plyr-live-button-border-radius, 2px);
  color: var(--plyr-live-button-color, #161616);
  font-family: var(--plyr-font-family, sans-serif);
  font-size: var(--plyr-font-size-live-button, 12px);
  font-weight: var(--plyr-font-weight-live-button, 600);
  letter-spacing: var(--plyr-live-button-letter-spacing, 1.5px);
  padding: var(--plyr-live-button-padding, 1px 4px);
  transition: color 0.3s ease;
}

.plyr__live-button[data-edge] .plyr__live-button__text {
  background-color: var(--plyr-live-button-edge-bg, #dc2626);
  color: var(--plyr-live-button-edge-color, #f5f5f5);
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Utils
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden],
.plyr [role][aria-hidden=true] {
  display: none !important;
}

/*
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Keyframes
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: local("Roboto"), url("/fonts/Roboto/roboto-400-regular.woff2") format("woff2"), url("/fonts/Roboto/roboto-400-regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: auto;
  src: local("Roboto Italic"), url("/fonts/Roboto/roboto-400-italic.woff2") format("woff2"), url("/fonts/Roboto/roboto-400-italic.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  src: local("Roboto Light Italic"), url("/fonts/Roboto/roboto-300-italic.woff2") format("woff2"), url("/fonts/Roboto/roboto-300-italic.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Roboto Bold"), url("/fonts/Roboto/roboto-700.woff2") format("woff2"), url("/fonts/Roboto/roboto-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Trade Gothic";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/TradeGothic/TradeGothic-BoldCondTwenty.woff2") format("woff2"), url("/fonts/TradeGothic/TradeGothic-BoldCondTwenty.woff") format("woff");
  font-display: swap;
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none;
}

[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&smart=20.0625em&medium=48em&large=62em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 1.125rem;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.7142857143rem;
  margin: 0 0 0.8888888889rem;
  padding: 0.6349206349rem;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #fff;
  box-shadow: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #008ccc;
  background-color: #fff;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

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

input[type=search] {
  box-sizing: border-box;
}

::placeholder {
  color: #81b0d2;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 0.8888888889rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.4444444444rem;
  margin-right: 0.8888888889rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.4444444444rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.8888888889rem;
  font-weight: normal;
  line-height: 1.8;
  color: #000;
}
label.middle {
  margin: 0 0 0.8888888889rem;
  line-height: 1.5;
  padding: 0.5rem 0;
}

.help-text {
  margin-top: -0.4444444444rem;
  font-size: 0.7222222222rem;
  font-style: italic;
  color: #000;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 0.8888888889rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #000;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

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

legend {
  max-width: 100%;
  margin-bottom: 0.4444444444rem;
}

.fieldset {
  margin: 1rem 0;
  padding: 1.1111111111rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1666666667rem;
  padding: 0 0.1666666667rem;
}

select {
  height: 2.7142857143rem;
  margin: 0 0 0.8888888889rem;
  padding: 0.6349206349rem;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-origin: content-box;
  background-position: right -0.8888888889rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.3333333333rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #008ccc;
  background-color: #fff;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: rgb(249.9, 237, 235);
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.4444444444rem;
  margin-bottom: 0.8888888889rem;
  font-size: 0.6666666667rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #cacaca;
}

h1, .h1 {
  font-size: 1.5555555556rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 2.1111111111rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.5555555556rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.5555555556rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.5555555556rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 1.5555555556rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 48em) {
  h1, .h1 {
    font-size: 1.8333333333rem;
  }
  h2, .h2 {
    font-size: 2.4444444444rem;
  }
  h3, .h3 {
    font-size: 1.8333333333rem;
  }
  h4, .h4 {
    font-size: 1.8333333333rem;
  }
  h5, .h5 {
    font-size: 1.8333333333rem;
  }
  h6, .h6 {
    font-size: 1.8333333333rem;
  }
}
a {
  line-height: inherit;
  color: #008ccc;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: rgb(0, 120.4, 175.44);
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 66.6666666667rem;
  height: 0;
  margin: 1.1111111111rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #81b0d2;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 1rem 0;
  border-left: none;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #008ccc;
}

abbr, abbr[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.1111111111rem 0.2222222222rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #000;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 1.40625rem;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.cite-block, cite {
  display: block;
  color: #8a8a8a;
  font-size: 0.7222222222rem;
}
.cite-block:before, cite:before {
  content: "— ";
}

.code-inline, code {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.1111111111rem 0.2777777778rem 0.0555555556rem;
}

.code-block {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 62em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    print-color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.grid-container {
  padding-right: 0.5555555556rem;
  padding-left: 0.5555555556rem;
  max-width: 66.6666666667rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-container {
    padding-right: 0.8333333333rem;
    padding-left: 0.8333333333rem;
  }
}
.grid-container.fluid {
  padding-right: 0.5555555556rem;
  padding-left: 0.5555555556rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-container.fluid {
    padding-right: 0.8333333333rem;
    padding-left: 0.8333333333rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

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

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

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

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

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

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

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

@media print, screen and (min-width: 48em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

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

.grid-margin-x {
  margin-left: -0.5555555556rem;
  margin-right: -0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x {
    margin-left: -0.8333333333rem;
    margin-right: -0.8333333333rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.1111111111rem);
  margin-left: 0.5555555556rem;
  margin-right: 0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.6666666667rem);
    margin-left: 0.8333333333rem;
    margin-right: 0.8333333333rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.1111111111rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.1111111111rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.1111111111rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.1111111111rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.1111111111rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.1111111111rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.1111111111rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.1111111111rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.1111111111rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.1111111111rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.1111111111rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.1111111111rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.6666666667rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.6666666667rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.6666666667rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.6666666667rem);
  }
}
@media print, screen and (min-width: 62em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.6666666667rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.6666666667rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.6666666667rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.6666666667rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.5555555556rem;
  margin-left: -0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.8333333333rem;
    margin-left: -0.8333333333rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.5555555556rem;
  margin-left: -0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.8333333333rem;
    margin-left: -0.8333333333rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.5555555556rem;
  padding-left: 0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-x > .cell {
    padding-right: 0.8333333333rem;
    padding-left: 0.8333333333rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 48em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 62em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.1111111111rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.1111111111rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.1111111111rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.1111111111rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.1111111111rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.1111111111rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.1111111111rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.1111111111rem);
}

@media print, screen and (min-width: 48em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.6666666667rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.6666666667rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.6666666667rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.6666666667rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.6666666667rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.6666666667rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.6666666667rem);
  }
}
@media print, screen and (min-width: 62em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.6666666667rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.6666666667rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.6666666667rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.6666666667rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 1.6666666667rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.6666666667rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 48em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 48em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 48em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 48em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 62em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 62em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 62em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

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

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

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1.1111111111rem / 2);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1.1111111111rem / 2);
}

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

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

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1.1111111111rem / 2);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1.1111111111rem / 2);
}

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

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

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1.1111111111rem / 2);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1.1111111111rem / 2);
}

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

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

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1.1111111111rem / 2);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1.1111111111rem / 2);
}

@media print, screen and (min-width: 48em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.6666666667rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1.6666666667rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1.6666666667rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.6666666667rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1.6666666667rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1.6666666667rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.6666666667rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1.6666666667rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1.6666666667rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.6666666667rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1.6666666667rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1.6666666667rem / 2);
  }
}
@media print, screen and (min-width: 62em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.6666666667rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1.6666666667rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1.6666666667rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.6666666667rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1.6666666667rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1.6666666667rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.6666666667rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1.6666666667rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1.6666666667rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.6666666667rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1.6666666667rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1.6666666667rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 62em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.5555555556rem;
  margin-bottom: -0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.8333333333rem;
    margin-bottom: -0.8333333333rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.5555555556rem;
  padding-bottom: 0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-y > .cell {
    padding-top: 0.8333333333rem;
    padding-bottom: 0.8333333333rem;
  }
}

.grid-margin-y {
  margin-top: -0.5555555556rem;
  margin-bottom: -0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y {
    margin-top: -0.8333333333rem;
    margin-bottom: -0.8333333333rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.1111111111rem);
  margin-top: 0.5555555556rem;
  margin-bottom: 0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.6666666667rem);
    margin-top: 0.8333333333rem;
    margin-bottom: 0.8333333333rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.1111111111rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.1111111111rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.1111111111rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.1111111111rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.6666666667rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.6666666667rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.6666666667rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.6666666667rem);
  }
}
@media print, screen and (min-width: 62em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.6666666667rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.6666666667rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.6666666667rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.6666666667rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 48em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 62em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 62em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.5555555556rem;
  margin-bottom: -0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y {
    margin-top: -0.8333333333rem;
    margin-bottom: -0.8333333333rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.1111111111rem);
  margin-top: 0.5555555556rem;
  margin-bottom: 0.5555555556rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.6666666667rem);
    margin-top: 0.8333333333rem;
    margin-bottom: 0.8333333333rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.1111111111rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.1111111111rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.1111111111rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.1111111111rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.1111111111rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.1111111111rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.6666666667rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.6666666667rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.6666666667rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.6666666667rem);
  }
}
@media print, screen and (min-width: 62em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.6666666667rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.6666666667rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.6666666667rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.6666666667rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.6666666667rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.6666666667rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.1111111111rem);
}
@media print, screen and (min-width: 48em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.6666666667rem);
  }
}
@media print, screen and (min-width: 62em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.6666666667rem);
  }
}

@media print, screen and (min-width: 48em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.6666666667rem);
  }
}
@media print, screen and (min-width: 62em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.6666666667rem);
  }
}
.close-button {
  position: absolute;
  z-index: 10;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #000;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button.medium, .close-button {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: none;
  background-color: #fff;
}

caption {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
  font-weight: bold;
}

thead {
  background: #fff;
  color: #008ccc;
}

tfoot {
  background: rgb(242.25, 242.25, 242.25);
  color: #000;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
  font-weight: bold;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
}

tbody tr {
  border-bottom: none;
  background-color: #fff;
}

table.striped tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: rgb(242.25, 242.25, 242.25);
}

@media print, screen and (max-width: 61.99875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
table.hover tfoot tr:hover {
  background-color: rgb(237.15, 237.15, 237.15);
}
table.hover tbody tr:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
table.hover.striped tr:nth-of-type(even):hover {
  background-color: rgb(237.15, 237.15, 237.15);
}

.table-scroll {
  overflow-x: auto;
}

.breadcrumbs {
  margin: -4rem 0 1rem;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.8rem;
  color: #008ccc;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.375rem;
  opacity: 1;
  content: "›";
  color: #008ccc;
}
.breadcrumbs a {
  color: #008ccc;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fff;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0555555556rem;
  border-radius: 0;
  font-size: 0.7777777778rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 48em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1666666667rem 0.5555555556rem;
  border-radius: 0;
  color: #008ccc;
}
.pagination a:hover,
.pagination button:hover {
  background: transparent;
}
.pagination .current {
  padding: 0.1666666667rem 0.5555555556rem;
  background: #008ccc;
  color: #fff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1666666667rem 0.5555555556rem;
  color: #cacaca;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1666666667rem 0.5555555556rem;
  content: "…";
  color: #000;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #000;
  font-size: 80%;
  color: #fff;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-top-width: 0;
  border-color: transparent transparent #000;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-color: #000 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #000;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-left-width: 0;
  border-color: transparent #000 transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
  position: absolute;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fff;
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(0, 0, 0, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #cacaca;
}
.orbit-bullets button:hover {
  background-color: #8a8a8a;
}
.orbit-bullets button.is-active {
  background-color: #8a8a8a;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 0.8888888889rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
  text-align: left;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
  text-align: left;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 48em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 62em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a, .menu.nested.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #008ccc;
  color: #0a0a0a;
}
.menu .active > a {
  background: #008ccc;
  color: #0a0a0a;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #008ccc transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #008ccc transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #008ccc transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #008ccc;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #008ccc transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #008ccc;
}
@media print, screen and (min-width: 48em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #008ccc transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #008ccc transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #008ccc;
  }
}
@media print, screen and (min-width: 62em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #008ccc transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #008ccc transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #008ccc;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fff;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #008ccc transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #008ccc;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(0, 0, 0, 0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fff;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 48em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 48em) {
  .reveal {
    width: 600px;
    max-width: 66.6666666667rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 48em) {
  .reveal.tiny {
    width: 30%;
    max-width: 66.6666666667rem;
  }
}
@media print, screen and (min-width: 48em) {
  .reveal.small {
    width: 50%;
    max-width: 66.6666666667rem;
  }
}
@media print, screen and (min-width: 48em) {
  .reveal.large {
    width: 90%;
    max-width: 66.6666666667rem;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media print, screen and (max-width: 20.06125em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.title-bar {
  padding: 0.5rem;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px;
}

.title-bar-right {
  text-align: right;
}

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

.top-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 48em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media print, screen and (max-width: 61.99875em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.top-bar-title {
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

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

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 48em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 62em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 48em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 62em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 20.06125em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 20.0625em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 47.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 48em) and (max-width: 61.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 47.99875em), screen and (min-width: 62em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 62em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 61.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 62em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 61.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-ccw-1turn;
}
@keyframes spin-ccw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

body {
  font-size: inherit !important;
}

address {
  /* Fix voor styling die je vanuit AntD.css krijgt */
  margin-bottom: unset !important;
}

h1 {
  letter-spacing: -0.05rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  line-height: 1;
}

.grid-container h1,
.grid-container h2,
.grid-container h3,
.grid-container h4,
.grid-container h5,
.grid-container h6 {
  /* Fix voor styling die je vanuit AntD.css krijgt */
  color: inherit;
}
.grid-container h2 {
  color: #008ccc;
  margin: 2rem 0 1rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container h2 {
    margin: 3rem 0 1.75rem;
  }
}
.grid-container .highlight {
  color: #ff6d00;
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  margin: 0.25rem 0 0.75rem;
  line-height: 1.2;
}
article h2 {
  margin: 0.25rem auto 1.5rem;
  text-align: center;
  position: relative;
}
article p {
  margin: 0.25rem 0 1.5rem;
}
@media print, screen and (min-width: 48em) {
  article p {
    font-size: 1.125rem;
  }
}
article ul,
article ol {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 48em) {
  article ul,
  article ol {
    font-size: 1.125rem;
  }
}
article ul li,
article ol li {
  margin-bottom: 0.675rem;
}
article ul ul,
article ul ol,
article ol ul,
article ol ol {
  margin-bottom: 0;
}
article blockquote {
  font-style: italic;
  line-height: normal;
  font-weight: 300;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 48em) {
  article blockquote {
    font-size: 1.75rem;
  }
}
article blockquote:before, article blockquote:after {
  display: inline-block;
}
article blockquote:before {
  content: "“";
  margin-right: 0;
}
article blockquote:after {
  content: "”";
  margin-left: 0;
}
article figcaption {
  color: #81b0d2;
  text-align: right;
  margin: 0.5rem 0 2rem;
}

sub,
sup {
  color: #ff6d00;
  font-weight: 700;
}

.t-header-h2--large {
  font-size: 2.25rem;
}
@media print, screen and (min-width: 48em) {
  .t-header-h2--large {
    font-size: 3.75rem;
  }
}

.t-paragraph--large, .t-paragraph--large > p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 48em) {
  .t-paragraph--large, .t-paragraph--large > p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.grid-container.grid-container-wide {
  max-width: 90rem;
}
@media screen and (min-width: 75em) {
  .grid-container.grid-container-wide:not(.full) > .grid-padding-x-wide .cell {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }
}
.grid-container.grid-image-macro {
  padding: 0;
}

.body-overflow {
  overflow: hidden;
}

.float-center {
  text-align: center;
}

.show-for-x-large {
  display: none;
}
@media screen and (min-width: 75em) {
  .show-for-x-large {
    display: inline-block;
  }
}

.show-for-xx-large {
  display: none;
}
@media screen and (min-width: 90em) {
  .show-for-xx-large {
    display: inline-block;
  }
}

.grid-container--dark {
  background-color: #041e42;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container--dark {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}
@media print, screen and (min-width: 62em) {
  .grid-container--dark {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.is-before-footer,
.is-before-footer-channel {
  margin-bottom: 0 !important;
}
@media print, screen and (min-width: 62em) {
  .is-before-footer,
  .is-before-footer-channel {
    padding-bottom: 5.75rem;
    margin-bottom: -4rem !important;
  }
  .is-before-footer.is-before-footer-channel,
  .is-before-footer-channel.is-before-footer-channel {
    padding-bottom: 4rem;
  }
}

body {
  height: auto !important;
}

.intro-text {
  margin-bottom: 2rem;
}
.intro-text p {
  margin-bottom: 0;
}

.content-column, .content-two-columns-small {
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .content-column, .content-two-columns-small {
    max-width: 48rem;
  }
}

@media print, screen and (min-width: 48em) {
  .content-two-columns-small {
    display: flex;
    column-gap: 1rem;
  }
}

@media print, screen and (min-width: 48em) {
  .content-two-columns {
    display: flex;
    column-gap: 1.875rem;
  }
}
@media print, screen and (min-width: 62em) {
  .content-two-columns {
    display: flex;
    column-gap: 3.75rem;
  }
}

.content-flex, .text-content {
  flex: 1;
}

.text-content small em {
  display: block;
  margin: 0 0 2rem;
}
.text-content a {
  text-decoration: underline;
}

.l-content-page .o-button {
  margin: 0;
}

.responsive-embed {
  margin-bottom: 1.75rem;
}

.youtube-disabled {
  background-color: #f5f5f5;
  text-align: center;
  padding: 1rem;
}
.youtube-disabled .image-container {
  height: 45vw;
  max-height: 440px;
  position: relative;
}
.youtube-disabled .image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.youtube-disabled .image-container:hover .play-button {
  opacity: 0.8;
}
.youtube-disabled .image-container .play-button {
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 39%;
  left: 45%;
  opacity: 0;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 40px solid white;
}
@media print, screen and (min-width: 62em) {
  .youtube-disabled .image-container .play-button {
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 70px solid white;
  }
}
.youtube-disabled p {
  margin: 1rem 0 0rem 0;
}

.o-time {
  color: #81b0d2;
  font-weight: 400;
  margin-bottom: 0.325em;
}
@media print, screen and (min-width: 48em) {
  .o-time {
    margin-bottom: 0.375rem;
  }
}
.o-time--article {
  display: block;
}

.o-content-type {
  color: #81b0d2;
}

.o-button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-image: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  height: 2.5rem;
  padding: 0 2rem;
  line-height: 2.5;
  min-width: 160px;
  width: auto;
  position: relative;
  overflow: hidden;
  outline: 0;
  margin: 1rem 0 2rem;
  font-weight: 700;
  transition: ease-in 0.1s;
  text-decoration: none !important;
}
.o-button:hover:after, .o-button:active:after, .o-button:focus:after {
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  opacity: 0;
}
.o-button-primary {
  color: #fff;
  background-color: #008ccc;
}
.o-button-primary:after {
  background-color: #008ccc;
}
.o-button-primary:hover, .o-button-primary:active, .o-button-primary:focus {
  color: #fff;
  background-color: rgb(0, 87.5, 127.5);
}
.o-button-secondary {
  color: #fff;
  background-color: #ff6d00;
}
.o-button-secondary:after {
  background-color: #ff6d00;
}
.o-button-secondary:hover, .o-button-secondary:active, .o-button-secondary:focus {
  color: #fff;
  background-color: rgb(178.5, 76.3, 0);
}
.o-button-invert {
  color: #008ccc;
  background-color: #fff;
}
.o-button-invert:after {
  background-color: rgb(216.75, 216.75, 216.75);
}
.o-button-outline {
  color: #fff;
  background-color: transparent;
  box-shadow: inset 0px 0px 0px 1px rgb(255, 255, 255);
}
.o-button-outline:after {
  background-color: #fff;
}
.o-button-outline:hover, .o-button-outline:active, .o-button-outline:focus {
  color: #008ccc;
  background-color: #fff;
}
.o-button-outline-primary {
  color: #008ccc;
  background-color: #fff;
  box-shadow: inset 0px 0px 0px 1px #008ccc;
}
.o-button-outline-primary:after {
  background-color: #008ccc;
}
.o-button-outline-primary:hover, .o-button-outline-primary:active, .o-button-outline-primary:focus {
  color: #008ccc;
  background-color: #fff;
}
.o-button.faux-button {
  margin-bottom: 0;
}
.o-button-mobile-full-width {
  width: 100%;
}
@media print, screen and (min-width: 48em) {
  .o-button-mobile-full-width {
    min-width: 160px;
    width: auto;
  }
}

.o-button-link {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1.5rem;
  line-height: 2.5;
  margin: 0 0 1.5rem;
  text-decoration: underline;
}
@media print, screen and (min-width: 62em) {
  .o-button-link {
    margin: 1rem 0 2rem;
  }
}

.o-icon {
  width: 3.3rem;
  height: 3.3rem;
  margin-right: 0.55rem;
  background-size: 2.2rem;
  background-position: center;
  background-repeat: no-repeat;
}
.o-icon--sharing {
  width: 2.1rem;
  height: 2.2rem;
  margin-right: 0;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}
.o-icon--npo1 {
  background-image: url("../img/NPO_1_logo.svg");
}
.o-icon--npo2 {
  background-image: url("../img/NPO_2_logo.svg");
}
.o-icon--npo3 {
  background-image: url("../img/NPO_3_logo.svg");
}
.o-icon--npozapp {
  background-image: url("../img/NPO_ZAPP_ELIN_logo.png");
}
.o-icon--radio1 {
  background-image: url("../img/NPO_Radio_1_logo.svg");
}
.o-icon--radio2 {
  background-image: url("../img/NPO_Radio_2_logo.svg");
}
.o-icon--radio4 {
  background-image: url("../img/NPO_Radio_4_logo.svg");
}
.o-icon--3fm {
  background-image: url("../img/NPO_3FM_logo.png");
}
.o-icon--radio5 {
  background-image: url("../img/NPO_Radio_5_logo.svg");
}
.o-icon--funx {
  background-image: url("../img/NPO_FunX_logo.png");
}
.o-icon--start {
  background-image: url("../img/NPO_Start_logo.png");
}
.o-icon--facebook {
  background-image: url("../img/Facebook-icoon.svg");
}
.o-icon--facebook--sharing {
  margin-left: -7px;
  width: 1.4rem;
}
.o-icon--twitter {
  background-image: url("../img/X-icoon.svg");
}
.o-icon--linkedin {
  background-image: url("../img/LinkedIn-icoon.svg");
}
.o-icon--mail {
  background-image: url("../img/Mail-icoon.svg");
}

.o-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.o-list--check li {
  line-height: 2.5;
  position: relative;
}
.o-list--check li:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0.6rem;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("../img/checkmark.svg");
  background-repeat: no-repeat;
  background-size: 1.75rem;
  margin-right: 1rem;
}
.o-list--check-inverted li:before {
  background-image: url("../img/checkmark-inverted.svg");
}

.l-content-page ul,
.l-content-page ol {
  margin: 0;
  list-style: none !important;
  padding: 0.5rem 0 2rem 0.5rem;
}
.l-content-page ul ul,
.l-content-page ul ol,
.l-content-page ol ul,
.l-content-page ol ol {
  padding-top: 0.75rem;
  padding-bottom: 0;
}
.l-content-page ul li {
  padding-left: 1.5rem;
  position: relative;
}
.l-content-page ul li:before {
  color: #008ccc;
  content: "●";
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  position: absolute;
  top: 0.1375rem;
  left: 0;
}
@media print, screen and (min-width: 48em) {
  .l-content-page ul li:before {
    top: 0.2175rem;
  }
}
.l-content-page ul[style*="list-style-type: circle;"] li:before {
  content: "○";
}
.l-content-page ul[style*="list-style-type: square;"] li:before {
  content: "■";
  font-size: 0.8rem;
}
.l-content-page ol {
  counter-reset: section;
}
.l-content-page ol li {
  padding-left: 1.5rem;
  position: relative;
}
.l-content-page ol li:before {
  color: #008ccc;
  font-weight: 700;
  counter-increment: section;
  content: counter(section, decimal) " ";
  font-size: 0.75rem;
  margin-right: 0.5rem;
  position: absolute;
  top: 0.275rem;
  left: 0.1rem;
}
@media print, screen and (min-width: 48em) {
  .l-content-page ol li:before {
    top: 0.375rem;
  }
}
.l-content-page ol[style*="list-style-type: lower-alpha;"] li:before {
  content: counter(section, lower-alpha) " ";
}
.l-content-page ol[style*="list-style-type: lower-greek;"] li:before {
  content: counter(section, lower-greek) " ";
}
.l-content-page ol[style*="list-style-type: lower-roman;"] li:before {
  content: counter(section, lower-roman) " ";
}
.l-content-page ol[style*="list-style-type: upper-alpha;"] li:before {
  content: counter(section, upper-alpha) " ";
}
.l-content-page ol[style*="list-style-type: upper-roman;"] li:before {
  content: counter(section, upper-roman) " ";
}
.l-content-page ol ol li:before {
  top: 0.3rem;
  left: -0.4rem;
}
@media print, screen and (min-width: 48em) {
  .l-content-page ol ol li:before {
    top: 0.4125rem;
  }
}

.o-breadcrumbs-list {
  padding: 1rem 0 0;
}
@media print, screen and (min-width: 48em) {
  .o-breadcrumbs-list {
    padding: 1rem 0;
    font-size: 0.9rem;
    margin-top: 4rem;
    display: flex;
    white-space: nowrap;
    width: 46%;
  }
}
@media print, screen and (min-width: 62em) {
  .o-breadcrumbs-list {
    margin: 0 0 2rem;
    height: 72px;
  }
}
.o-breadcrumbs-list li {
  text-transform: none;
  line-height: 2.5;
}
@media print, screen and (min-width: 62em) {
  .o-breadcrumbs-list li:last-child {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}
.o-breadcrumbs-list span {
  color: #008ccc;
  font-weight: 700;
}

.c-header--index + .grid-container nav .breadcrumbs {
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 48em) {
  .c-header--index + .grid-container nav .breadcrumbs {
    margin-top: 0;
  }
}

.o-nav-search {
  position: relative;
  width: 100%;
  z-index: 3;
  top: 10px;
}
@media print, screen and (min-width: 62em) {
  .o-nav-search {
    top: 0;
  }
}
.o-nav-search--form {
  position: relative;
}
.o-nav-search--input {
  border-color: #fff;
  padding-right: 2.5rem;
  font-size: 0.8rem;
  height: 42px;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 48em) {
  .o-nav-search--input {
    font-size: 0.9rem;
  }
}
.o-nav-search--input:focus {
  border-color: #fff;
}
.o-nav-search--icon {
  width: 30px;
  height: 30px;
  position: absolute;
  background: url(../img/search-icon-inverted.svg) no-repeat center;
  cursor: pointer;
  display: block;
  top: 6px;
  right: 12px;
}

.c-main-nav--block .o-nav-search--input {
  border-color: #81b0d2;
}

#startSearchLarge.activated {
  visibility: hidden;
}

.o-searchbox--results-counter {
  color: #81b0d2;
  display: block;
}
@media print, screen and (min-width: 48em) {
  .o-searchbox--results-counter {
    margin-bottom: 1rem;
  }
}

@supports (-ms-ime-align: auto) {
  .o-nav-search {
    background-color: transparent !important;
  }
  .c-main-nav .o-nav-search--input {
    border: 1px solid #81b0d2;
  }
  .o-nav-search #iconClose:before, .o-nav-search #iconClose:after {
    background-color: #008ccc !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .o-nav-search {
    background-color: transparent !important;
  }
  .c-main-nav .o-nav-search--input {
    border: 1px solid #81b0d2;
  }
  .o-nav-search #iconClose:before, .o-nav-search #iconClose:after {
    background-color: #008ccc !important;
  }
}
#vragenai-app.vragenai-app .vragenai-app__run-list {
  padding-bottom: 0;
}
#vragenai-app.vragenai-app .vragenai-search-results {
  margin: 0;
}
#vragenai-app.vragenai-app .vragenai-search-results__items {
  gap: 0;
}
#vragenai-app.vragenai-app .vragenai-search-results__action,
#vragenai-app.vragenai-app .vragenai-questions__item-action,
#vragenai-app.vragenai-app .vragenai-run-source__action,
#vragenai-app.vragenai-app .vragenai-question-form,
#vragenai-app.vragenai-app .vragenai-base-button,
#vragenai-app.vragenai-app .vragenai-icon-button__action,
#vragenai-app.vragenai-app .vragenai-disclaimer {
  border-radius: 0;
}
#vragenai-app.vragenai-app h2 {
  margin: 0;
}

.choices .choices__inner {
  border: 1px solid #81b0d2;
  padding: 8px 6px 4px 10px;
  min-height: 49px;
  background-image: url(../img/caret-select.svg);
  background-origin: content-box;
  background-position: right;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-color: #fff;
}
.choices .choices__inner .choices__input {
  display: none;
}
.choices .choices__inner .choices__list--multiple {
  display: inline-block;
  margin-right: 10px;
}
.choices .choices__inner .choices__list--multiple .choices__item {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  padding: 0px 7px;
  background-color: #008ccc;
  border: 1px solid #008ccc;
  border-radius: 0;
}
.choices .choices__inner .choices__list--multiple .choices__item .choices__button {
  background-size: 9px;
  border-left: none;
}
.choices .choices__inner .choices__list--multiple .placeholder {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}
.choices .choices__list--dropdown .choices__item {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 0px 10px;
}
.choices .choices__list--dropdown .choices__item.is-highlighted {
  background-color: #008ccc;
  color: white;
}

select[id^=cases-] {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

#top-of-site-pixel-anchor {
  position: relative;
  width: 1px;
  height: 1px;
  top: -80px;
}

.c-main-nav {
  z-index: 3;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0 !important;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  }
}
.c-main-nav.fixed {
  position: relative;
  background: none;
}
.c-main-nav.solid {
  background-color: #000;
  height: 100%;
}
.c-main-nav .grid-container-wide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 90rem;
  height: 65px;
  transition: all 0.1s ease-in-out;
  align-items: center;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .grid-container-wide {
    flex-wrap: nowrap;
  }
}
.c-main-nav--logo {
  z-index: 3;
  margin-top: 7px;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav--logo {
    margin-top: 2px;
  }
}
.c-main-nav .ster-logo svg {
  fill: #fff;
  height: 60px;
  padding: 0.2rem;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .ster-logo svg {
    padding: 0;
    height: 52px;
  }
}
.c-main-nav a {
  color: #fff;
}
.c-main-nav a:hover, .c-main-nav a:active, .c-main-nav a:focus {
  color: #fff;
}
.c-main-nav .vertical.large-horizontal.menu > li {
  z-index: 2;
}
.c-main-nav .vertical.large-horizontal.menu > li .menu.vertical.submenu.is-accordion-submenu {
  padding-bottom: 1.75rem;
}
.c-main-nav .vertical.large-horizontal.menu > li > a {
  z-index: 2;
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .vertical.large-horizontal.menu > li > a {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    padding-left: 0.5rem;
  }
}
@media screen and (min-width: 75em) {
  .c-main-nav .vertical.large-horizontal.menu > li > a {
    font-size: 1.275rem;
    padding-left: 1rem;
  }
}
.c-main-nav .vertical.large-horizontal.menu > li > a:after {
  border: none;
  background-image: url("..//img/footer-nav-caret.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  right: 1rem;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .vertical.large-horizontal.menu > li > a:after {
    right: 0.375rem;
  }
}
.c-main-nav .vertical.large-horizontal.menu > li .is-submenu-item a {
  padding: 1rem;
  font-size: 0.9rem;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .vertical.large-horizontal.menu > li .is-submenu-item a {
    padding: 0.675rem 1rem;
  }
}
.c-main-nav .vertical.large-horizontal.menu > li.is-active > a {
  color: #fff;
}
.c-main-nav .vertical.large-horizontal.menu > li.is-active > a:after {
  transform: rotate(180deg);
}
.c-main-nav .vertical.large-horizontal.menu > li.icon-list-item {
  padding: 1.5rem 1rem 0.5rem;
  border-top: 1px solid #cacaca;
}
.c-main-nav .vertical.large-horizontal.menu > li.icon-list-item:last-child {
  padding-top: 0.5rem;
  border: none;
  padding-bottom: 6rem;
}
.c-main-nav .vertical.large-horizontal.menu > li.icon-list-item > a {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-indent: 0;
  text-transform: capitalize;
  font-size: 1rem;
  height: 36px;
  width: 100%;
  padding-left: 3rem;
  background-position: 3px 6px;
}
.c-main-nav .vertical.large-horizontal.menu > li.icon-list-item > a.calendar-icon {
  background-position-x: 10px;
}
.c-main-nav .vertical.large-horizontal.menu > li.icon-list-item .is-submenu-item a {
  padding-left: 0;
}
.c-main-nav .is-dropdown-submenu {
  z-index: 1;
  min-width: 180px;
  width: 100%;
  border: none;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 5rem 0 1rem;
  top: -30px !important;
}
.c-main-nav .is-dropdown-submenu a {
  line-height: 1.5;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .is-dropdown-submenu a:hover, .c-main-nav .is-dropdown-submenu a:active, .c-main-nav .is-dropdown-submenu a:focus {
    text-decoration: underline;
  }
}
.c-main-nav .top-bar-left {
  position: fixed;
  top: -100vh;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100vh;
  transition: all 0.25s ease-in-out;
}
.c-main-nav .top-bar-left .large-horizontal.dropdown li {
  position: relative;
}
.c-main-nav .top-bar-left .large-horizontal.dropdown li.no-children:hover a {
  background-color: rgba(0, 0, 0, 0.75);
  margin-top: -1rem;
  padding-top: 1.7rem;
}
.c-main-nav .top-bar-left.bar-is-open {
  top: 120px;
  overflow: hidden;
}
.c-main-nav .top-bar-left.bar-is-open:before {
  background-color: #000;
}
.c-main-nav .top-bar-left.bar-is-open .large-horizontal.accordion-menu {
  -webkit-overflow-scrolling: touch;
  display: block;
  position: absolute;
  top: 40px;
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  opacity: 1;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .top-bar-left {
    padding: 0;
    background-color: transparent;
    width: auto;
    height: auto;
    position: relative;
    top: 0;
    left: auto;
  }
}
.c-main-nav .top-bar-left:before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 120px;
  z-index: 3;
  transition: none;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .top-bar-left:before {
    display: none;
  }
}
.c-main-nav .top-bar-left .large-horizontal.accordion-menu {
  transition: all 0.25s ease-in-out;
  height: 0;
  opacity: 0;
}
.c-main-nav .top-bar-left .large-horizontal.accordion-menu li.show-for-mobile {
  display: inline-block;
}
.c-main-nav .top-bar-right {
  font-weight: 700;
  font-size: 0.8rem;
  top: 0.675rem;
  right: 0.5rem;
  height: 100%;
  display: flex;
  flex: 1;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .top-bar-right {
    max-width: 500px;
  }
}
.c-main-nav .top-bar-right > .menu {
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .top-bar-right > .menu > li {
    padding-bottom: 1.75rem;
    padding-top: 1.35rem;
  }
}
.c-main-nav .top-bar-right > .menu > li > a {
  position: relative;
  z-index: 1;
}
.c-main-nav .top-bar-right > .menu .is-active > a {
  color: #fff;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .top-bar-right {
    position: relative;
    top: auto;
    right: auto;
  }
  .c-main-nav .top-bar-right li {
    margin-left: 0.5rem;
  }
}
.c-main-nav .menu-icon {
  margin-right: 12px;
  margin-top: 5px;
}
.c-main-nav .menu-icon:after {
  display: none;
}
.c-main-nav .menu-icon.inactive-for-search {
  visibility: hidden;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .menu-icon.inactive-for-search {
    visibility: initial;
  }
}
.c-main-nav .menu-icon.menu-is-open .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.c-main-nav .menu-icon.menu-is-open .line:nth-child(2) {
  transform: rotate(45deg);
}
.c-main-nav .menu-icon.menu-is-open .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.c-main-nav .line {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 3px auto 6px;
  transition: all 0.2s ease-in-out;
}
.c-main-nav .calendar-icon,
.c-main-nav .shopping-icon {
  display: inline-block;
  background-repeat: no-repeat;
  text-indent: -999em;
  width: 28px;
  height: 28px;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .calendar-icon,
  .c-main-nav .shopping-icon {
    height: 24px;
    font-weight: 700;
    background-size: 19px;
    line-height: 4px;
  }
}
@media screen and (min-width: 90em) {
  .c-main-nav .calendar-icon,
  .c-main-nav .shopping-icon {
    width: auto;
    text-indent: 0;
  }
}
.c-main-nav .calendar-icon {
  background-image: url("../img/icon-calendar.svg");
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .calendar-icon {
    padding-left: 1.75rem !important;
    background-position: 0 2px;
  }
}
.c-main-nav .shopping-icon {
  background-image: url("../img/shopping-icon.svg");
  background-size: 37px;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav .shopping-icon {
    padding-left: 2.5rem !important;
    background-position: 0 1px;
  }
}
@media print, screen and (min-width: 62em) {
  .c-main-nav--block {
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.22);
  }
}
.c-main-nav--block.solid {
  background: #fff;
}
.c-main-nav--block .grid-container-wide {
  height: 74px;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav--block .grid-container-wide {
    height: 72px;
  }
}
.c-main-nav--block .ster-logo svg {
  fill: #008ccc;
}
.c-main-nav--block .line {
  background-color: #008ccc;
}
.c-main-nav--block .top-bar-right > .menu .is-active > a {
  color: #008ccc;
}
.c-main-nav--block .search-icon {
  color: #008ccc;
  background-image: url("../img/search-icon-inverted.svg");
}
.c-main-nav--block .shopping-icon {
  background-image: url("../img/shopping-icon-inverted.svg");
}
.c-main-nav--block .calendar-icon {
  background-image: url("../img/icon-calendar-inverted.svg");
}
.c-main-nav--block a {
  color: #008ccc !important;
}
.c-main-nav--block a:hover, .c-main-nav--block a:active, .c-main-nav--block a:focus {
  color: #008ccc;
}
.c-main-nav--block .top-bar-left {
  background-color: #fff;
}
@media print, screen and (min-width: 62em) {
  .c-main-nav--block .top-bar-left {
    background-color: transparent;
  }
}
.c-main-nav--block .top-bar-left.bar-is-open {
  top: 74px;
}
.c-main-nav--block .top-bar-left.bar-is-open:before {
  background: #fff;
  box-shadow: none;
}
.c-main-nav--block .top-bar-left:before {
  height: 120px;
  background: #fff;
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.22);
}
.c-main-nav--block .is-dropdown-submenu {
  background-color: #fff;
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.22);
  padding: 0 0 1rem;
  top: 54px !important;
}
.c-main-nav--block .vertical.large-horizontal.menu > li a:after {
  background-image: url("..//img/footer-nav-caret-orange.svg");
}
.c-main-nav--block .vertical.large-horizontal.menu > li.is-active > a {
  color: #008ccc;
}
.c-main-nav--block .vertical.large-horizontal.menu > li.no-children:hover a {
  background-color: inherit;
}

@media print, screen and (min-width: 62em) {
  .c-main-nav li.is-current-category:after {
    content: "";
    display: block;
    height: 2px;
    width: 24px;
    background-color: #fff;
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    margin-left: -17px;
    z-index: 2;
  }
  .c-main-nav--block li.is-current-category:after {
    background-color: #008ccc;
  }
}
#CybotCookiebotDialog label {
  display: inline;
}
#CybotCookiebotDialog h1,
#CybotCookiebotDialog h2,
#CybotCookiebotDialog h3,
#CybotCookiebotDialog h4,
#CybotCookiebotDialog h5,
#CybotCookiebotDialog h6 {
  text-transform: none;
}

/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
  display: none;
}

/* Branding on the Privacy trigger */
#CookiebotWidget #CookiebotWidget-widgetContent .CookiebotWidget-body .CookiebotWidget-main-logo {
  display: none;
}

#cookieSiteBlock {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2147483630;
}

.c-header {
  position: relative;
  margin-top: -65px;
}
.c-header--link {
  display: block;
  overflow: hidden;
}
.c-header--image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-header--title, .c-header--subtitle {
  position: absolute;
  color: #fff;
}
.c-header .c-header--title {
  text-transform: uppercase;
  background-color: rgba(0, 140, 204, 0.8);
  padding: 0 0.625rem;
  width: 100%;
  left: 0;
}
@media print, screen and (min-width: 48em) {
  .c-header .c-header--title {
    min-width: 50%;
    width: auto;
    max-width: 77%;
    left: 0;
  }
}
@media print, screen and (min-width: 62em) {
  .c-header .c-header--title {
    display: flex;
    justify-content: space-evenly;
    padding: 0.5rem 0.625rem;
  }
}
.c-header .c-header--title h1,
.c-header .c-header--title h2 {
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  margin: 0.5rem 0;
  letter-spacing: -0.1rem;
  display: inline-block;
  float: right;
  text-align: left;
  font-size: 2.7rem;
  width: 100%;
  line-height: 1;
}
@media print, screen and (min-width: 48em) {
  .c-header .c-header--title h1,
  .c-header .c-header--title h2 {
    font-size: 3.15rem;
    max-width: 59rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-header .c-header--title h1,
  .c-header .c-header--title h2 {
    font-size: 3.6rem;
    width: auto;
  }
}
@media screen and (min-width: 75em) {
  .c-header .c-header--title h1,
  .c-header .c-header--title h2 {
    font-size: 4.5rem;
  }
}
.c-header .c-header--subtitle {
  background-color: #ff6d00;
  z-index: 1;
  padding: 0 1rem;
  width: 90%;
  max-width: 320px;
  right: 0;
  display: flex;
  align-items: center;
  min-height: 60px;
}
@media print, screen and (min-width: 48em) {
  .c-header .c-header--subtitle {
    width: 50%;
    max-width: 50%;
  }
}
@media print, screen and (min-width: 62em) {
  .c-header .c-header--subtitle {
    padding: 0.575rem 1rem;
  }
}
.c-header .c-header--subtitle h1,
.c-header .c-header--subtitle h2 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.125;
  text-transform: none;
  padding-left: 0;
  letter-spacing: 0px;
}
@media print, screen and (min-width: 48em) {
  .c-header .c-header--subtitle h1,
  .c-header .c-header--subtitle h2 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 75em) {
  .c-header .c-header--subtitle h1,
  .c-header .c-header--subtitle h2 {
    font-size: 1.5rem;
  }
}
.c-header--hero .c-header--link {
  height: 25rem;
}
@media print, screen and (min-width: 48em) {
  .c-header--hero .c-header--link {
    height: 30rem;
  }
}
.c-header--hero .c-header--link:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 8.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
}
.c-header--hero .c-header--title {
  bottom: 8.5rem;
}
.c-header--hero .c-header--subtitle {
  top: 16.5rem;
}
@media print, screen and (min-width: 48em) {
  .c-header--hero .c-header--subtitle {
    top: 21.5rem;
  }
}
.c-header--content {
  margin-bottom: 8rem;
}
@media print, screen and (min-width: 48em) {
  .c-header--content {
    margin-bottom: 0;
  }
}
.c-header--content .c-header--link {
  height: 17rem;
}
@media print, screen and (min-width: 48em) {
  .c-header--content .c-header--link {
    height: 25rem;
  }
}
.c-header--content .c-header--title {
  bottom: 0;
}
@media print, screen and (max-width: 61.99875em) {
  .c-header--content .c-header--subtitle h2 {
    font-size: 1rem;
  }
}
.c-header--index {
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 48em) {
  .c-header--index {
    margin-bottom: 0;
  }
}
.c-header--index .c-header--link {
  height: 16.75rem;
}
@media print, screen and (min-width: 48em) {
  .c-header--index .c-header--link {
    height: 17.225rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-header--index .c-header--link {
    height: 16.25rem;
  }
}
@media screen and (min-width: 75em) {
  .c-header--index .c-header--link {
    height: 20.875rem;
  }
}
.c-header--index .c-header--title {
  bottom: 0;
}

.c-channel-bar {
  position: absolute;
  bottom: 0;
  height: 4.4rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: stretch;
  overflow: hidden;
  overflow-x: auto;
}
.c-channel-bar > .grid-container {
  height: 4.4rem;
}
.c-channel-bar > .grid-container > div {
  height: 4.4rem;
}
.c-channel-bar--list {
  min-width: 890px;
  height: 4.4rem;
  margin: 0;
  display: flex;
  list-style: none;
  justify-content: space-between;
}
.c-channel-bar--list li {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.c-channel-bar--label {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  padding-right: 0.5rem;
}
.c-channel-bar a {
  flex-grow: 1;
  align-self: center;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}
.c-channel-bar--icon {
  transition: all 0.2s;
  height: 40px;
  width: auto;
  position: absolute;
  top: 25%;
}
.c-channel-bar--icon:hover, .c-channel-bar--icon:active, .c-channel-bar--icon:focus {
  top: 17.5%;
  height: 50px;
}

.c-toptask {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 0.375rem;
}
.c-toptask--body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.c-toptask--body figure {
  position: relative;
  margin: 0.275rem 0 0.225rem;
  overflow: hidden;
  height: 180px;
}
@media print, screen and (min-width: 48em) {
  .c-toptask--body figure {
    height: 300px;
  }
}
@media print, screen and (min-width: 62em) {
  .c-toptask--body figure {
    height: 320px;
  }
}
@media screen and (min-width: 75em) {
  .c-toptask--body figure {
    height: 350px;
  }
}
.c-toptask--body figure.figcaption-top figcaption {
  top: 0;
  bottom: auto;
}
.c-toptask--body figure.figcaption-bottom figcaption {
  bottom: 0;
  top: auto;
}
.c-toptask--body figcaption {
  display: flex;
  align-items: center;
  position: absolute;
  background-color: rgba(0, 140, 204, 0.8);
  height: 60px;
  width: 100%;
  padding: 0 0.8rem;
  transition: all 0.3s;
}
@media print, screen and (min-width: 48em) {
  .c-toptask--body figcaption {
    height: 88px;
  }
}
@media print, screen and (min-width: 62em) {
  .c-toptask--body figcaption {
    height: 64px;
  }
}
.c-toptask--body figcaption.centered {
  justify-content: center;
}
.c-toptask--body picture img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  transition: all 0.3s;
}
@media print, screen and (min-width: 48em) {
  .c-toptask--body picture img {
    height: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .c-toptask--body picture {
    margin-bottom: 1.375rem;
  }
}
.c-toptask--body h4 {
  text-transform: uppercase;
  color: #fff;
  margin: 0.375rem 0 0 0;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  box-orient: vertical;
}
@media print, screen and (min-width: 48em) {
  .c-toptask--body h4 {
    font-size: 1.5rem;
  }
}
.c-toptask--body:hover img, .c-toptask--body:active img, .c-toptask--body:focus img {
  transform: scale(1.1);
}
.c-toptask--body:hover h4, .c-toptask--body:active h4, .c-toptask--body:focus h4 {
  text-decoration: underline;
}
.c-toptask--body:hover figcaption, .c-toptask--body:active figcaption, .c-toptask--body:focus figcaption {
  background-color: rgba(0, 140, 204, 0.9);
}
.c-toptask p {
  flex-grow: 20;
  margin: 0.5rem 0 0;
  padding: 0 0.8rem;
}
@media screen and (min-width: 75em) {
  .c-toptask p {
    padding: 0 1.8rem;
  }
}
.c-toptask--footer {
  display: flex;
  justify-content: center;
}
.c-toptask--footer .o-button {
  padding: 0 1rem;
}

@media print, screen and (min-width: 48em) {
  .c-toptasks:hover .c-toptask:not(:hover) {
    opacity: 0.7;
  }
}
.c-article-excerpt {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 0.375rem;
}
.c-article-excerpt--body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.c-article-excerpt--body h4 {
  font-family: Roboto;
  flex-grow: 1;
  font-weight: 700;
  color: #000;
  text-transform: none;
  font-size: 1.375rem;
  line-height: 1.875rem;
}
@media print, screen and (min-width: 62em) {
  .c-article-excerpt--body h4 {
    font-size: 1.675rem;
    line-height: 2.25rem;
  }
}
.c-article-excerpt--body picture {
  margin: 0.275rem 0 0.225rem;
  overflow: hidden;
  height: 200px;
}
.c-article-excerpt--body picture img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  transition: all 0.3s;
}
.c-article-excerpt--body picture:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media print, screen and (min-width: 48em) {
  .c-article-excerpt--body picture img {
    height: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .c-article-excerpt--body picture {
    margin-bottom: 1.375rem;
  }
}

.c-highlight {
  margin: 1rem 0 3rem;
}
.c-highlight > .grid-container {
  padding: 0;
  height: auto;
}
.c-highlight .grid-x {
  overflow: hidden;
}
.c-highlight--image-link {
  position: relative;
  display: flex;
  margin: 0 !important;
}
@media print, screen and (min-width: 48em) {
  .c-highlight--image-link {
    margin-right: 0.625rem !important;
  }
}
@media print, screen and (min-width: 62em) {
  .c-highlight--image-link {
    margin-right: 0.9375rem !important;
  }
}
.c-highlight picture {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .c-highlight picture {
    position: absolute;
  }
}
.c-highlight img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  transition: all 0.3s;
}
.c-highlight img:hover {
  transform: scale(1.05);
}
@media print, screen and (min-width: 48em) {
  .c-highlight img {
    height: 100%;
  }
}
.c-highlight--excerpt {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .c-highlight--excerpt {
    min-height: 32rem;
    width: 48% !important;
  }
}
@media print, screen and (min-width: 62em) {
  .c-highlight--excerpt {
    padding-left: 0.9375rem;
    max-width: 44rem;
  }
  .c-highlight--excerpt.contentWidth {
    max-width: 24.9rem;
  }
  .c-highlight--excerpt.introWidth {
    max-width: 33.5rem;
  }
}
.c-highlight h3 {
  font-size: 2rem;
  line-height: 1;
  margin: 1.5rem 0 1rem;
}
@media print, screen and (min-width: 48em) {
  .c-highlight h3 {
    font-size: 2.275rem;
    margin: 4rem 0 1rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-highlight h3 {
    font-size: 3.275rem;
    margin: 4rem 0 1rem;
  }
}
@media screen and (min-width: 75em) {
  .c-highlight h3 {
    font-size: 3.875rem;
    margin: 4rem 0 1rem;
  }
}
.c-highlight h3 span {
  display: block;
  color: #008ccc;
}
.c-highlight--default, .c-highlight--dark, .c-highlight--striking {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
.c-highlight--default {
  background-color: #041e42;
}
.c-highlight--dark {
  background-color: #000;
}
.c-highlight--striking {
  background-color: #008ccc;
}
.c-highlight--striking h3 span {
  color: #000;
}
.c-highlight--striking a:not(.o-button),
.c-highlight--striking a:hover:not(.o-button) {
  color: white;
  text-decoration: underline;
}
.c-highlight--light {
  background-color: transparent;
}
@media print, screen and (min-width: 48em) {
  .c-highlight--reversed .grid-x {
    justify-content: flex-end;
  }
}
@media print, screen and (min-width: 48em) {
  .c-highlight--reversed .c-highlight--image-link {
    order: 2;
    margin-right: 0 !important;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 62em) {
  .c-highlight--reversed .c-highlight--image-link {
    margin-right: 0 !important;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 48em) {
  .c-highlight--reversed .c-highlight--excerpt {
    order: 1;
  }
}
@media print, screen and (min-width: 62em) {
  .c-highlight--reversed .c-highlight--excerpt {
    padding-right: 1.875rem;
  }
}
.c-highlight .c-highlight--excerpt {
  padding-bottom: 1rem;
}
@media print, screen and (min-width: 48em) {
  .c-highlight .c-highlight--excerpt {
    padding-bottom: 4rem;
  }
}
.c-highlight .c-highlight--excerpt .o-button {
  margin-bottom: 1rem;
}

.orbit .orbit-controls .orbit-previous:hover,
.orbit .orbit-controls .orbit-next:hover {
  cursor: pointer;
}
.orbit .orbit-controls .orbit-previous:focus:not(:hover),
.orbit .orbit-controls .orbit-next:focus:not(:hover) {
  background-color: inherit;
}
.orbit .orbit-bullets {
  margin-top: -2rem;
}
.orbit .orbit-bullets button {
  background-color: #81b0d2;
  border-radius: 0;
}
.orbit .orbit-bullets button.is-active {
  background-color: #008ccc;
}
@media print, screen and (max-width: 61.99875em) {
  .orbit .c-highlight--excerpt {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.c-customer-cases-container h2 {
  color: #ff6d00;
}

.c-customer-case {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  background-color: #041e42;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 48em) {
  .c-customer-case {
    margin-top: 0.375rem;
  }
}
.c-customer-case--link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.c-customer-case--link:hover img, .c-customer-case--link:active img, .c-customer-case--link:focus img {
  transform: scale(1.1);
}
.c-customer-case--image {
  overflow: hidden;
}
.c-customer-case--image img {
  transition: all 0.3s;
}
.c-customer-case--content {
  flex-grow: 20;
  display: flex;
  flex-direction: column;
  margin: 1rem;
}
@media print, screen and (min-width: 62em) {
  .c-customer-case--content {
    min-height: 13rem;
    margin: 1rem 1.8rem 1.8rem 1.8rem;
  }
}
.c-customer-case--content h4 {
  color: white;
}
.c-customer-case--content h5 {
  font-size: 24px;
  color: white;
}
.c-customer-case--content .o-button {
  align-items: center;
  margin-bottom: 0;
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-product-table {
  padding-left: 0;
  padding-right: 0;
}
@media print, screen and (min-width: 48em) {
  .c-product-table {
    padding-right: 0.83333rem;
    padding-left: 0.83333rem;
  }
}
.c-product-table--column {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 48em) {
  .c-product-table--column {
    border-left: 0.83333rem solid transparent;
    border-right: 0.83333rem solid transparent;
  }
}
@media print, screen and (min-width: 48em) {
  .c-product-table--column:first-child {
    border-left: none;
  }
}
@media print, screen and (min-width: 48em) {
  .c-product-table--column:last-child {
    border-right: none;
  }
}
.c-product-table--intro h3 {
  background-color: #008ccc;
  color: #fff;
  margin: 0;
  padding: 1.75rem 0 1.375rem;
}
@media print, screen and (min-width: 48em) {
  .c-product-table--intro h3 {
    font-size: 1.275rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-product-table--intro h3 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 75em) {
  .c-product-table--intro h3 {
    font-size: 1.85rem;
  }
}
.c-product-table--intro h3 sup {
  color: inherit;
  font-size: 2rem;
  top: 0.15rem;
  left: -0.375rem;
}
@media print, screen and (min-width: 48em) {
  .c-product-table--intro h3 sup {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-product-table--intro h3 sup {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 75em) {
  .c-product-table--intro h3 sup {
    font-size: 2rem;
  }
}
.c-product-table--header {
  background-color: rgba(4, 30, 66, 0.6);
  height: 12rem;
  text-align: center;
  background-size: cover;
  background-blend-mode: darken;
  background-position: center;
}
@media print, screen and (min-width: 62em) {
  .c-product-table--header {
    height: 15rem;
    background-size: 440px;
  }
}
.c-product-table--header img {
  width: 80px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 62em) {
  .c-product-table--header img {
    width: 28%;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.c-product-table--body {
  background-color: #008ccc;
  flex-grow: 2;
}
.c-product-table--body.product-campaign {
  background-color: white;
  padding: 1rem 1rem 0rem 1rem;
  text-align: left;
}
@media print, screen and (min-width: 62em) {
  .c-product-table--body.product-campaign {
    text-align: center;
  }
}
.c-product-table--footer {
  padding: 1rem;
  text-align: center;
}
@media print, screen and (min-width: 48em) {
  .c-product-table--footer {
    padding: 1rem 0;
  }
}
@media print, screen and (min-width: 48em) {
  .c-product-table--footer .o-button {
    padding: 0 1rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-product-table--footer .o-button {
    padding: 0 2rem;
  }
}
.c-product-table h2 {
  margin: 0;
  color: #fff;
  font-size: 3rem;
}
.c-product-table--list {
  list-style: none;
  margin: 0;
  padding: 0.8rem;
}
@media print, screen and (min-width: 48em) {
  .c-product-table--list {
    padding: 0;
  }
}
@media print, screen and (min-width: 62em) {
  .c-product-table--list {
    padding: 0.6rem;
  }
}
@media screen and (min-width: 75em) {
  .c-product-table--list {
    padding: 1rem;
  }
}
.c-product-table--list a {
  display: block;
  position: relative;
  padding: 0.8rem;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  line-height: 1.5;
}
.c-product-table--list a:hover {
  padding-left: 1.25rem;
}
.c-product-table--list a:hover:after {
  right: 0.25rem;
}
@media print, screen and (min-width: 48em) {
  .c-product-table--list a {
    padding-right: 2.5rem;
  }
}
@media screen and (min-width: 75em) {
  .c-product-table--list a {
    padding: 1rem;
    font-size: 1.25rem;
  }
}
.c-product-table--list a:after {
  display: block;
  position: absolute;
  width: 12px;
  height: 28px;
  content: "";
  right: 1rem;
  top: 50%;
  margin-top: -14px;
  background-image: url("../img/caret-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.25s ease-in-out;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-product-table--header {
    position: relative;
  }
  .c-product-table--header:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(1.6685714286, 12.5142857143, 27.5314285714, 0.5);
  }
  .c-product-table--header img,
  .c-product-table--header h2 {
    position: relative;
    z-index: 1;
  }
}
@supports (-ms-ime-align: auto) {
  .c-product-table--header {
    position: relative;
  }
  .c-product-table--header:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(1.6685714286, 12.5142857143, 27.5314285714, 0.5);
  }
  .c-product-table--header img,
  .c-product-table--header h2 {
    position: relative;
    z-index: 1;
  }
}
.c-staff-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.975rem;
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .c-staff-card {
    margin-bottom: 1.95rem;
  }
}
.c-staff-card:hover img {
  transform: scale(1.05);
}
.c-staff-card img {
  object-fit: cover;
  object-position: 0% 0%;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.c-staff-card h3 {
  margin: 0;
  display: block;
  width: 100%;
  padding: 0.75rem 2.5rem 0.675rem 1rem;
  position: relative;
  bottom: 0;
  color: #fff;
  background-color: rgba(0, 140, 204, 0.8);
}
.c-staff-card h3 small {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: none;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: normal;
  line-height: 1;
}
.c-staff-card--info {
  background-color: white;
  padding: 1rem;
  display: none;
}
.c-staff-card h4 {
  color: #008ccc;
  font-size: 1.75rem;
  margin: 0.5rem 0 -0.25rem;
}
.c-staff-card strong {
  text-transform: lowercase;
  line-height: 1.25;
}
.c-staff-card address {
  padding: 0.25rem 0 0.5rem;
  font-style: normal;
}
.c-staff-card address a {
  font-size: 0.9rem;
  color: #000;
  display: block;
}
.c-staff-card address a:hover {
  text-decoration: underline;
}
.c-staff-card .o-button {
  min-width: auto;
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media print, screen and (max-width: 61.99875em) {
  .c-staff-card .o-button {
    margin: 0;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}
.c-staff-card--default {
  overflow: hidden;
}
.c-staff-card--default .c-staff-card--picture img {
  height: 240px;
}
.c-staff-card--default .c-staff-card--picture h3 {
  background-image: url("../img/caret-up-white.svg");
  background-repeat: no-repeat;
  background-position: 93% 47%;
  background-size: 24px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  position: absolute;
}
.c-staff-card--default .c-staff-card--picture h3:hover {
  background-position: 93% 44%;
}
.c-staff-card--default h4 {
  padding-right: 2rem;
}
@media print, screen and (min-width: 62em) {
  .c-staff-card--default h4 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 75em) {
  .c-staff-card--default h4 {
    font-size: 1.75rem;
  }
}
.c-staff-card--default strong {
  height: 48px;
  display: block;
}
.c-staff-card--default .c-staff-card--info {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -240px;
  left: 0;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.c-staff-card--default .c-staff-card--info:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 1.375rem;
  right: 1rem;
  background-image: url("../img/caret-down-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.c-staff-card--default .c-staff-card--info.card-is-open {
  max-height: 240px;
  bottom: 0;
}
.c-staff-card--wide {
  margin-bottom: 0;
}
@media print, screen and (min-width: 48em) {
  .c-staff-card--wide {
    flex-direction: row;
  }
}
.c-staff-card--wide.floating {
  padding: 2rem 0;
}
.c-staff-card--wide.floating .c-staff-card--info {
  background-color: #f5f5f5;
}
.c-staff-card--wide .c-staff-card--info {
  display: block;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 48em) {
  .c-staff-card--wide .c-staff-card--info {
    width: 50%;
    height: 208px;
  }
}
@media print, screen and (min-width: 62em) {
  .c-staff-card--wide .c-staff-card--info {
    padding-left: 3rem;
    padding-right: 3rem;
    height: 230px;
  }
}
@media screen and (min-width: 75em) {
  .c-staff-card--wide .c-staff-card--info {
    padding-left: 4rem;
    padding-right: 4rem;
    height: 230px;
  }
}
.c-staff-card--wide .c-staff-card--header {
  width: 100%;
  background-color: #008ccc;
}
.c-staff-card--wide .c-staff-card--header h3 {
  width: 100%;
  font-size: 1.4rem;
  margin-left: auto;
  text-align: center;
}
@media print, screen and (min-width: 48em) {
  .c-staff-card--wide .c-staff-card--header {
    width: 50%;
    height: 208px;
    display: flex;
    align-items: center;
  }
  .c-staff-card--wide .c-staff-card--header h3 {
    font-size: 2rem;
    text-align: right;
  }
}
@media print, screen and (min-width: 62em) {
  .c-staff-card--wide .c-staff-card--header {
    height: 230px;
  }
  .c-staff-card--wide .c-staff-card--header h3 {
    width: 60%;
    font-size: 3.25rem;
  }
}
.c-staff-card--wide address {
  padding: 0.75rem 0 0;
  white-space: normal;
}
@media print, screen and (min-width: 62em) {
  .c-staff-card--wide address {
    width: 120%;
  }
}
.c-staff-card--wide address a {
  display: block;
}
@media print, screen and (min-width: 48em) {
  .c-staff-card--wide address a {
    display: inline-block;
  }
  .c-staff-card--wide address a:after {
    display: inline-block;
    content: "•";
    margin-left: 0.25rem;
    color: #ff6d00;
  }
  .c-staff-card--wide address a:last-child:after {
    display: none;
  }
}
@media print, screen and (min-width: 62em) {
  .c-staff-card--wide address a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .c-staff-card--wide address a {
    padding-top: 1.15rem;
  }
}
@media print, screen and (min-width: 48em) {
  .c-staff-card--wide .c-staff-card--info {
    white-space: nowrap;
    font-size: 0.8rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-staff-card--wide .c-staff-card--info {
    font-size: 1rem;
  }
}
.c-staff-card--wide h4 {
  margin-top: 0.675rem;
}
@media print, screen and (min-width: 62em) {
  .c-staff-card--wide h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 47.99875em) {
  .c-staff-card.overlay-is-open--cmb .c-staff-card--info {
    height: 340px;
  }
}
@media print, screen and (min-width: 48em) and (max-width: 61.99875em) {
  .c-staff-card.overlay-is-open--cmb .c-staff-card--picture {
    width: 35%;
  }
  .c-staff-card.overlay-is-open--cmb .c-staff-card--info {
    width: 65%;
  }
}
@media print, screen and (min-width: 62em) {
  .c-staff-card.overlay-is-open--cmb .c-staff-card--info {
    min-width: 500px;
  }
}

.cm-overlay {
  position: absolute;
  background-color: #041e42;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 1rem;
  bottom: -100%;
}
@media print, screen and (min-width: 62em) {
  .cm-overlay {
    padding-left: 1rem;
    padding-right: 1.5rem;
  }
}
.cm-overlay.overlay-is-open {
  bottom: 0;
}
.cm-overlay .form-error {
  margin-bottom: 0;
}
.cm-overlay .loadingSubmit {
  width: auto;
  height: auto;
}
.cm-overlay .label {
  width: 35%;
}
@media print, screen and (min-width: 48em) {
  .cm-overlay .label {
    width: 21%;
  }
}
.cm-overlay .input {
  width: 65%;
}
@media print, screen and (min-width: 48em) {
  .cm-overlay .input {
    width: 27.5%;
  }
  .cm-overlay .input:not(:last-of-type) {
    margin-right: 3%;
  }
}

.cm-form label {
  white-space: normal;
  color: #fff;
  line-height: 1.5;
}
.cm-form .o-button.cancel-button {
  box-shadow: none;
  font-size: 90%;
  font-weight: 400;
  width: 47%;
  color: #81b0d2;
}
.cm-form .o-button.cancel-button:hover {
  color: #fff;
  background-color: transparent;
}
.cm-form .o-button.submit-button {
  width: 47%;
}
@media print, screen and (max-width: 61.99875em) {
  .cm-form .o-button.submit-button {
    float: right;
  }
}

.delivery-message {
  color: #fff;
  white-space: normal;
}
.delivery-message p .o-button.init-state-button {
  float: left;
}

.grid-container--dark.is-before-footer {
  margin-top: 2rem;
}
.grid-container--dark.is-before-footer .c-staff-card {
  margin: 1rem 0;
}
@media print, screen and (min-width: 48em) {
  .grid-container--dark.is-before-footer .c-staff-card {
    margin: 2rem 0;
  }
}
@media print, screen and (min-width: 62em) {
  .grid-container--dark.is-before-footer .c-staff-card {
    margin: 3rem 0;
  }
}

@media screen and (-ms-high-contrast: active) and (min-width: 75em), (-ms-high-contrast: none) and (min-width: 75em) {
  .c-staff-card--wide .c-staff-card--info {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.pop-up-staff-card {
  z-index: 1;
  width: 235px;
  position: absolute;
  right: 0rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.22);
}
.pop-up-staff-card .floating {
  padding: 0;
}
.pop-up-staff-card .padding {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
  margin-bottom: 0.4rem;
}
.pop-up-staff-card.hide-staff-card {
  transition: all 0.5s ease-in-out;
}
.pop-up-staff-card.staff-card-top {
  min-width: 208px;
}
.pop-up-staff-card.staff-card-bottom {
  position: fixed;
  bottom: 0;
  display: none;
  min-width: 208px;
  z-index: 2;
}
.pop-up-staff-card.staff-card-bottom .cm-response:after {
  transform: rotate(180deg);
}
.pop-up-staff-card .cm-response {
  cursor: pointer;
  padding: 0.6rem 0.8rem 0.6rem 1.2rem;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.pop-up-staff-card .cm-response,
.pop-up-staff-card .cm-response h3 {
  white-space: nowrap;
  font-size: 1.6rem;
  height: 50px;
}
.pop-up-staff-card .cm-response:after {
  content: "";
  display: block;
  border: none;
  background-image: url(../img/footer-nav-caret-orange.svg);
  filter: brightness(0) invert(1);
  background-repeat: no-repeat;
  background-position: right;
  width: 24px;
  background-size: 24px;
}
@media print, screen and (max-width: 89.99875em) {
  .pop-up-staff-card.full-staff-card {
    display: none;
  }
  .pop-up-staff-card.staff-card-bottom {
    display: initial;
  }
}
.pop-up-staff-card .c-staff-card {
  overflow: hidden;
  background-color: #f5f5f5;
}
.pop-up-staff-card .c-staff-card--bottom {
  overflow: unset;
}
.pop-up-staff-card .c-staff-card--wide {
  flex-direction: column;
}
.pop-up-staff-card .c-staff-card--wide h4 {
  font-size: 1.2rem;
  margin: 1rem 0 0.1rem 0;
  text-align: left;
}
.pop-up-staff-card .c-staff-card--wide span {
  line-height: normal;
  height: 37px;
}
.pop-up-staff-card .c-staff-card .cm-overlay {
  padding: 0.5rem 0.6rem;
}
.pop-up-staff-card .c-staff-card .cm-overlay .title h4 {
  color: #fff;
  margin: 1.1rem 0 0.1rem 0rem;
}
.pop-up-staff-card .c-staff-card .cm-overlay .title span {
  color: #fff;
  padding-bottom: 2.75rem;
  margin: 0rem 0 0.1rem 0rem;
}
.pop-up-staff-card .c-staff-card .cm-overlay .o-button {
  margin: 0;
}
.pop-up-staff-card .c-staff-card .cm-overlay .loadingSubmit {
  width: 30px;
  height: auto;
}
.pop-up-staff-card .c-staff-card .cm-overlay h4 {
  margin-left: 0;
  margin-bottom: 0.5rem;
}
.pop-up-staff-card .c-staff-card .c-staff-card--buttons {
  margin-bottom: 0.2rem;
  margin-top: 0.4rem;
}
.pop-up-staff-card .c-staff-card .c-staff-card--buttons .o-button {
  margin: 0.5rem auto;
}
@media print, screen and (max-width: 61.99875em) {
  .pop-up-staff-card .c-staff-card form label,
  .pop-up-staff-card .c-staff-card form input,
  .pop-up-staff-card .c-staff-card form button {
    font-size: 0.8rem;
  }
}
.pop-up-staff-card .c-staff-card.overlay-is-open--cmb {
  height: 425px;
}
.pop-up-staff-card .c-staff-card.overlay-is-open--cmb .cm-overlay {
  height: 425px;
}
@media print, screen and (min-width: 48em) {
  .pop-up-staff-card .c-staff-card.overlay-is-open--cmb {
    width: 380px;
    margin-left: -145px;
  }
}

.c-content-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.c-content-card--picture {
  overflow: hidden;
  height: 214px;
}
.c-content-card img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.c-content-card--body {
  flex-grow: 2;
  color: #000;
  padding: 1.5rem 1rem 0;
  transition: all 0.3s;
}
@media print, screen and (min-width: 48em) {
  .c-content-card--body {
    padding: 1.5rem;
  }
}
.c-content-card h3 {
  position: relative;
  padding-right: 2rem;
  transition: all 0.3s;
}
.c-content-card h3:after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 28px;
  background: url("../img/caret-right-blue.svg") no-repeat;
  top: 0.005rem;
  right: 0;
  transition: all 0.3s;
}
.c-content-card p {
  transition: all 0.3s;
}
.c-content-card:hover img, .c-content-card:active img, .c-content-card:focus img {
  transform: scale(1.05);
}
.c-content-card:hover h3:after, .c-content-card:active h3:after, .c-content-card:focus h3:after {
  right: -0.5rem;
}
.c-content-card:hover figcaption, .c-content-card:active figcaption, .c-content-card:focus figcaption {
  background-color: rgba(0, 140, 204, 0.9);
  transform: scale(1.05);
  bottom: -4px;
}
.c-content-card figure {
  position: relative;
}
.c-content-card figcaption {
  display: flex;
  align-items: center;
  position: absolute;
  background-color: rgba(0, 140, 204, 0.8);
  height: 55px;
  width: 100%;
  bottom: 0;
  padding: 0 0.8rem;
  transition: all 0.3s;
}
.c-content-card figcaption .o-icon {
  background-size: 2rem;
  margin-top: -0.4rem;
}
.c-content-card figcaption .o-icon + .o-icon {
  margin-left: -1rem;
}
.c-content-card h4 {
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1;
}
@media print, screen and (min-width: 48em) {
  .c-content-card h4 {
    font-size: 1.4rem;
  }
}

.c-content-card--dark .c-content-card--body {
  background-color: #041e42;
  color: #fff;
}
.c-content-card--dark .c-content-card--picture {
  background-color: #041e42;
}
.c-content-card--dark h3:after {
  background: url("../img/caret-right.svg") no-repeat;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-content-card img {
    width: 110% !important;
    max-width: 110% !important;
    height: auto;
  }
}
.o-image-button {
  margin-bottom: 2rem;
}
.o-image-button--figure {
  position: relative;
}
.o-image-button--picture {
  display: block;
  overflow: hidden;
  height: 12rem;
}
@media screen and (min-width: 20.0625em) {
  .o-image-button--picture {
    height: 14rem;
  }
}
@media print, screen and (min-width: 48em) {
  .o-image-button--picture {
    height: 16rem;
  }
}
@media print, screen and (min-width: 62em) {
  .o-image-button--picture {
    height: 20rem;
  }
}
.o-image-button--image {
  object-fit: cover;
  width: auto;
  min-width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.o-image-button--figcaption {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: rgba(0, 140, 204, 0.8);
  display: block;
}
.o-image-button--figcaption:after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 28px;
  background: url("../img/caret-right.svg") no-repeat center;
  top: 50%;
  margin-top: -14px;
  right: 1rem;
  transition: all 0.2s;
}
.o-image-button h4 {
  color: #fff;
  margin: 0;
  padding: 1rem 2.5rem 0.65rem 1rem;
}
.o-image-button:hover img {
  transform: scale(1.05);
}
.o-image-button:hover figcaption:after {
  right: 0.5rem;
}

.c-testimonial {
  padding-bottom: 2rem;
}
.c-testimonial--quote {
  padding: 0 1rem 0 0;
  margin-bottom: 0.5rem;
}
.c-testimonial--footer {
  padding: 1rem 0 1rem 1em;
  border-left: 1px solid #81b0d2;
}
@media print, screen and (min-width: 48em) {
  .c-testimonial--footer {
    padding: 0 0 0 2rem;
  }
}
.c-testimonial--footer h4 {
  color: #008ccc;
  margin-top: 0.5rem;
}

.c-callout {
  color: #fff;
  padding: 1.875rem 1.25rem;
  margin-bottom: 2rem;
}
.c-callout a {
  color: #fff;
  text-decoration: underline;
}
.c-callout ul {
  padding-bottom: 0.5rem;
}
.c-callout--default {
  background-color: #008ccc;
}
.c-callout--default ul li:before {
  color: #fff;
}
.c-callout--support {
  background-color: #041e42;
}
.c-callout--highlight {
  background-color: #ff6d00;
}
.c-callout--highlight ul li:before {
  color: #fff;
}

.c-filter--button {
  font-weight: normal;
  text-align: left;
  width: 100%;
  padding-left: 1rem;
  margin: 0 0 1rem;
}
.c-filter--button .icon-filter {
  display: inline-block;
  padding-left: 1.75rem;
  background: url("../img/filter-icon.svg") no-repeat left;
  background-size: 18px;
}

.c-filter--form {
  padding-bottom: 1rem;
}
.c-filter--form .label-content {
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.c-filter--form select,
.c-filter--form input {
  color: #000;
  border-color: #81b0d2;
}
.c-filter--form select {
  background-image: url("../img/caret-select.svg");
}
.c-filter--form .default-label {
  position: relative;
}
.c-filter--form .search-icon {
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  bottom: 0.65rem;
  right: 0.5rem;
  background-image: url("../img/search-icon-light.svg");
  background-size: 28px;
  cursor: pointer;
}
.c-filter--overlay {
  padding-top: 3rem;
}

.close-button.c-filter--button {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  line-height: normal;
  font-size: 1rem;
}
.close-button.c-filter--button span:last-child {
  display: block;
  font-size: 2.375rem;
  position: absolute;
  top: 0.275rem;
  right: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-weight: 300;
}

.close-button.submit-filter {
  line-height: normal;
  font-size: 1rem;
  right: auto;
  top: auto;
  float: right;
  margin-top: 0;
}

.clear-filter {
  float: right;
  font-size: 1rem;
}

.grid-module {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 48em) {
  .grid-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1auto 1auto 1auto;
    grid-template-areas: "lt-one lt-two" "lt-one lt-three" "lt-one lt-four";
    gap: 0 1.875rem;
  }
}

.lt-one {
  order: 2;
}
@media print, screen and (min-width: 48em) {
  .lt-one {
    order: 1;
    grid-area: lt-one;
  }
}

.lt-two {
  order: 1;
}
@media print, screen and (min-width: 48em) {
  .lt-two {
    order: 2;
    grid-area: lt-two;
    justify-items: flex-start;
  }
}

.lt-three {
  display: none;
}
@media print, screen and (min-width: 48em) {
  .lt-three {
    order: 3;
    display: flex;
    grid-area: lt-three;
  }
}

.lt-four {
  order: 4;
}
@media print, screen and (min-width: 48em) {
  .lt-four {
    grid-area: lt-four;
    display: flex;
    align-items: flex-end;
  }
}

@media all and (-ms-high-contrast: none) {
  .grid-module {
    display: -ms-grid;
    -ms-grid-columns: 1fr 1fr;
    -ms-grid-rows: initial;
  }
  .lt-one {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .lt-two {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .lt-three {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .lt-four {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
.c-extended-excerpt {
  margin-bottom: 3rem;
}
.c-extended-excerpt:hover img, .c-extended-excerpt:active img, .c-extended-excerpt:focus img {
  transform: scale(1.05);
}
.c-extended-excerpt picture {
  overflow: hidden;
  margin-top: 0.75rem;
}
.c-extended-excerpt picture img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  transition: all 0.3s;
}
@media print, screen and (min-width: 48em) {
  .c-extended-excerpt picture {
    margin-top: 0;
  }
  .c-extended-excerpt picture img {
    height: 300px;
  }
}
.c-extended-excerpt h3 {
  font-family: Roboto;
  text-transform: none;
  font-weight: 700;
  color: #000;
  line-height: 1.125;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 48em) {
  .c-extended-excerpt h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
}
.c-extended-excerpt p {
  color: #000;
  margin-top: 0.5rem;
}
@media print, screen and (min-width: 48em) {
  .c-extended-excerpt--footer .faux-button {
    margin-top: 0;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-extended-excerpt picture {
    display: inline-block;
    margin-right: 0.975rem;
    height: 300px;
  }
  .c-extended-excerpt picture img {
    width: 110% !important;
    max-width: 110% !important;
    height: auto;
  }
  .c-extended-excerpt--header, .c-extended-excerpt--body, .c-extended-excerpt--footer {
    margin-left: 0.975rem;
  }
}
.c-pagination .disabled {
  display: none !important;
}
.c-pagination .pagination-previous .o-button,
.c-pagination .pagination-next .o-button {
  min-width: 100px;
  background-repeat: no-repeat;
  background-size: 6px auto;
  transition: all 0.1s ease-in-out;
  line-height: 38px;
}
.c-pagination .pagination-previous .o-button:before, .c-pagination .pagination-previous .o-button:after,
.c-pagination .pagination-next .o-button:before,
.c-pagination .pagination-next .o-button:after {
  display: none;
}
.c-pagination .pagination-previous {
  float: left;
}
.c-pagination .pagination-previous .o-button {
  padding-left: 2rem;
  padding-right: 1rem;
  text-align: right;
  background-image: url("../img/caret-left-blue.svg");
  background-position: 16% center;
}
.c-pagination .pagination-previous .o-button:hover {
  background-position-x: 12%;
}
.c-pagination .pagination-next {
  float: right;
}
.c-pagination .pagination-next .o-button {
  padding-left: 1rem;
  padding-right: 2rem;
  text-align: left;
  background-image: url("../img/caret-right-blue.svg");
  background-position: 84% center;
}
.c-pagination .pagination-next .o-button:hover {
  background-position-x: 88%;
}

.checkbox-custom,
.radio-custom {
  opacity: 0;
  position: absolute;
  top: 0;
}

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 !important;
  cursor: pointer;
  text-indent: 0 !important;
}

.checkbox-custom-label,
.radio-custom-label {
  position: relative;
  padding: 0.25rem 0.5rem;
}
.checkbox-custom-label.no-padding,
.radio-custom-label.no-padding {
  padding: 0 !important;
}

.checkbox-custom + .checkbox-custom-label:before,
.radio-custom + .radio-custom-label:before {
  content: "";
  background: #fff;
  border: 1px solid #008ccc;
  display: inline-block;
  position: relative;
  top: -2px;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
  background-image: url("../img/checkmark.svg");
  background-size: 18px;
  background-position: center;
}

.radio-custom + .radio-custom-label:before {
  border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
  background: #008ccc;
  box-shadow: inset 0px 0px 0px 2px #fff;
}

.checkbox-custom:focus + .checkbox-custom-label,
.radio-custom:focus + .radio-custom-label {
  outline: none;
}

.radio-checkbox-container {
  position: relative;
  display: inline-block;
  padding: 1rem 0 0.5rem;
}
@media print, screen and (min-width: 62em) {
  .radio-checkbox-container {
    padding-top: 0;
  }
}

.checkbox-custom-label.is-invalid-label,
.radio-custom-label.is-invalid-label {
  background-color: #cc4b37;
}

.honingpot {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.umbraco-forms-ster .umbraco-forms-page .o-button {
  border: 0;
}
.umbraco-forms-ster .umbraco-forms-page h4 {
  color: #008ccc;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.umbraco-forms-ster .umbraco-forms-page .progress-bar {
  width: 100%;
  height: 24px;
  border: 1px solid #008ccc;
  margin-bottom: 2rem;
}
.umbraco-forms-ster .umbraco-forms-page .progress-bar--content {
  background-color: #008ccc;
  height: 22px;
}
.umbraco-forms-ster .umbraco-forms-page .field-validation-error {
  color: #cc4b37 !important;
  font-size: 0.9rem;
}
@media print, screen and (min-width: 48em) {
  .umbraco-forms-ster .umbraco-forms-page .c-highlight {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 0;
  }
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date {
  display: flex;
}
@media print, screen and (max-width: 61.99875em) {
  .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date {
    flex-wrap: wrap;
  }
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-label {
  display: flex;
  width: 20rem;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-label legend, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-label legend, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-label legend, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-label legend, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-label legend, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-label legend, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-label legend, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-label legend {
  margin-right: 10px;
  font-weight: normal;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper {
  width: 100%;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper textarea {
  height: 150px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper textarea, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper input,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper select,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper textarea {
  border: 1px solid #008ccc;
  padding: 0.6rem;
  max-width: none !important;
  width: 100%;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper input::file-selector-button, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input::file-selector-button, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper input::file-selector-button, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper input::file-selector-button, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper input::file-selector-button, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper input::file-selector-button, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper input::file-selector-button, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper input::file-selector-button {
  background-color: #ff6d00;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper input::file-selector-button:hover, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper input::file-selector-button:hover, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper input::file-selector-button:hover, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper input::file-selector-button:hover, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper input::file-selector-button:hover, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper input::file-selector-button:hover, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper input::file-selector-button:hover, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper input::file-selector-button:hover {
  background-color: rgb(204, 87.2, 0);
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-field-wrapper select, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper select, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-field-wrapper select, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-field-wrapper select, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-field-wrapper select, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-field-wrapper select, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper select, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper select {
  background-position: right 0 center;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-field-wrapper input {
  width: auto;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.shortanswer .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.longanswer .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dropdown .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.fileupload .umbraco-forms-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.date .umbraco-forms-label {
  align-items: center;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent {
  margin-top: 10px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .checkbox-custom {
  position: relative;
  float: right;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .checkbox-custom-label {
  padding: 0;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .umbraco-forms-label {
  margin-top: 1rem;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .field-validation-error {
  margin-left: 25px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.multiplechoice .checkboxlist {
  padding-left: 0;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.multiplechoice .checkboxlist .checkbox-custom {
  position: relative;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.multiplechoice .checkboxlist .checkbox-custom-label {
  padding: 0;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.multiplechoice .checkboxlist + .field-validation-error {
  clear: both;
  display: block;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice {
  margin-top: 0.5rem;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-label {
  margin-top: 0.6rem;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .umbraco-forms-label:not(.umbraco-forms-hidden) + .umbraco-forms-field-wrapper .radiobuttonlist {
  padding-left: 0px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .radiobuttonlist {
  width: 100%;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .radiobuttonlist .radio-custom {
  position: relative;
  float: right;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .radiobuttonlist .radio-custom-label {
  padding: 0;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .checkbox-custom-label,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .radio-custom-label, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .checkbox-custom-label,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .radio-custom-label {
  display: block;
  margin-left: 30px !important;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .checkbox-custom-label:before,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .radio-custom-label:before, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .checkbox-custom-label:before,
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .radio-custom-label:before {
  float: left;
  margin-left: -30px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .checkbox-custom-label:before, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .checkbox-custom-label:before {
  margin-top: 20px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.singlechoice .radio-custom-label:before, .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field.dataconsent .radio-custom-label:before {
  margin-top: 7px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field .c-highlight--excerpt {
  min-height: auto;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field .has-tip {
  border-bottom: none;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field .has-tip svg {
  margin-top: -6px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field select.input-validation-error {
  background-color: #fbe3e4;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-navigation > div {
  display: flex;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-navigation > div .next {
  margin-left: 5px;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-navigation > div .primary {
  margin-left: auto;
}
.umbraco-forms-ster .umbraco-forms-page .umbraco-forms-navigation > div .primary.loading {
  background-image: url("/img/loading.svg");
  background-repeat: no-repeat;
  padding-left: 45px;
}

.umbraco-forms-submitmessage {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 62em) {
  .c-contact-button .c-contact-me {
    padding-bottom: 0;
    margin-bottom: 3rem;
  }
}
.c-contact-button .title-contact {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.c-contact-me.hide-close-button .c-contact-me-close {
  display: none;
}

.c-contact-me {
  color: #fff;
  background-color: #041e42;
  padding: 2.25rem 0 0.75rem;
}
@media print, screen and (min-width: 62em) {
  .c-contact-me {
    padding-bottom: 5.75rem;
    margin-bottom: -4rem;
  }
}
.c-contact-me--form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media print, screen and (min-width: 62em) {
  .c-contact-me--form {
    width: 58%;
  }
}
.c-contact-me .c-contact-me-title {
  display: flex;
  justify-content: space-between;
}
.c-contact-me .c-contact-me-close {
  z-index: 1;
  font-weight: 600;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 0.5;
}
.c-contact-me .c-contact-me-close:after {
  content: "×";
  color: #008ccc;
}
.c-contact-me .c-contact-me-close:hover:after {
  color: #005880;
}
.c-contact-me h3 {
  margin-right: auto;
}
.c-contact-me h3 span {
  color: #ff6d00;
}
.c-contact-me small {
  font-size: 0.9rem;
}
@media print, screen and (min-width: 62em) {
  .c-contact-me small {
    align-self: flex-end;
    margin-bottom: 1.25rem;
  }
}
.c-contact-me label {
  color: #fff;
}
.c-contact-me div {
  color: #fff;
}
.c-contact-me div.default-label {
  width: 100%;
  order: 2;
}
@media print, screen and (min-width: 48em) {
  .c-contact-me div.default-label {
    width: 30rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-contact-me div.default-label {
    order: 1;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .c-contact-me div.default-label .label-content {
    margin-bottom: 1rem;
    width: 14rem;
  }
}
.c-contact-me fieldset {
  order: 2;
}
@media print, screen and (min-width: 62em) {
  .c-contact-me fieldset {
    align-self: flex-end;
    order: 1;
  }
}
.c-contact-me button {
  order: 2;
}
@media print, screen and (min-width: 62em) {
  .c-contact-me button {
    align-self: flex-end;
    order: 1;
  }
}
.c-contact-me input.is-invalid-input {
  margin-bottom: 0;
}

.c-contact-me .error-wrapper,
.c-contact-details .error-wrapper {
  flex-grow: 2;
}
.c-contact-me .form-error,
.c-contact-details .form-error {
  line-height: 40px;
  background-color: #cc4b37;
  padding-left: 0.75rem;
  color: #fff;
  margin: 0 0 1rem;
}

@media print, screen and (min-width: 48em) {
  .c-contact-details {
    max-width: 48rem;
  }
}
@media screen and (max-width: 47.99875em) {
  .c-contact-details {
    margin: 0 1rem;
  }
}
.c-contact-details #address {
  margin: 20px 0 10px;
}
.c-contact-details p + .o-button {
  margin-top: 0;
}
.c-contact-details #loading {
  margin-top: -4px;
}
.c-contact-details input,
.c-contact-details textarea {
  border-color: #81b0d2;
  margin: 0;
}
.c-contact-details a {
  text-decoration: underline;
}
.c-contact-details .checkbox-custom-label {
  padding-left: 0;
}
.c-contact-details #formDetailsContact iframe {
  max-width: 100%;
}
.c-contact-details #formDetailsContact .o-button {
  margin-left: auto;
  display: block;
}

.c-footer {
  overflow: hidden;
}
@media (max-width: 1023px) {
  .c-footer--grid-container {
    padding: 0 !important;
  }
}
.c-footer h4 {
  margin: 1.125rem 0;
}
@media print, screen and (min-width: 62em) {
  .c-footer h4 {
    text-align: right;
    line-height: 1.2;
    position: absolute;
    display: block;
    right: 4rem;
    width: 100px;
    margin: 0;
  }
}
.c-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-footer--left-grid-container {
  background-color: #008ccc;
  position: relative;
}
.c-footer--left-grid-container:before {
  display: block;
  position: absolute;
  background-color: #008ccc;
  height: 100%;
  width: 99rem;
  content: "";
  top: 0;
  left: -99rem;
}
@media print, screen and (min-width: 62em) {
  .c-footer--right-grid-container {
    display: flex;
    flex-direction: column;
  }
}
.c-footer--contact {
  background-color: #008ccc;
  padding: 1rem 0.625rem 1.5rem;
  color: #fff;
  position: relative;
}
@media print, screen and (min-width: 62em) {
  .c-footer--contact {
    padding-top: 3.8rem;
  }
  .c-footer--contact:before {
    display: block;
    position: absolute;
    background-color: #008ccc;
    height: 100%;
    width: 99rem;
    content: "";
    top: 0;
    left: -99rem;
  }
}
@media (min-width: 1024px) {
  .c-footer--contact {
    padding-left: 0;
  }
}
.c-footer--contact li {
  padding-bottom: 1.3125rem;
}
.c-footer--contact strong {
  font-weight: 900;
  display: block;
}
.c-footer--contact-link {
  color: #fff;
  text-decoration: underline;
}
.c-footer--contact-link:hover, .c-footer--contact-link:active, .c-footer--contact-link:focus {
  color: #fff;
  text-decoration: underline;
}
.c-footer--contact-socials {
  display: inline-block;
  color: #fff;
  padding: 1rem 1rem 0rem 0;
  margin-right: 0.5rem;
}
.c-footer--contact img {
  width: 1.85rem;
}
.c-footer--nav {
  padding: 1rem 0.625rem 1.5rem;
  background-color: #000;
  font-size: 0.875rem;
  position: relative;
}
@media print, screen and (min-width: 62em) {
  .c-footer--nav {
    flex-grow: 1;
    margin-top: 4rem;
  }
  .c-footer--nav:after {
    display: block;
    position: absolute;
    background-color: #000;
    height: 100%;
    width: 99rem;
    content: "";
    top: 0;
    right: -99rem;
  }
}
.c-footer--nav a {
  color: #fff;
  line-height: 1.5;
}
.c-footer--nav a:hover, .c-footer--nav a:active, .c-footer--nav a:focus {
  color: #fff;
}
.c-footer--nav-list.vertical.large-horizontal.menu {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 62em) {
  .c-footer--nav-list.vertical.large-horizontal.menu {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.c-footer--nav-list.vertical.large-horizontal.menu > li > a {
  font-weight: 900;
  font-size: 1rem;
}
.c-footer--nav-list.vertical.large-horizontal.menu > li > a:after {
  border: none;
  background-image: url("../img/footer-nav-caret.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  left: 0;
  right: auto;
}
@media print, screen and (min-width: 62em) {
  .c-footer--nav-list.vertical.large-horizontal.menu > li > a:after {
    display: none;
  }
}
.c-footer--nav .dropdown .is-dropdown-submenu a {
  padding: 0.5rem 1rem;
}
.c-footer--nav .is-dropdown-submenu-parent {
  width: 33%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 75em) {
  .c-footer--nav .is-dropdown-submenu-parent {
    width: 25%;
  }
}
.c-footer--nav .accordion-menu li.show-for-mobile {
  display: inline-block;
}
.c-footer--nav .accordion-menu .is-accordion-submenu a {
  padding-left: 0.125rem;
}
@media print, screen and (min-width: 62em) {
  .c-footer--nav .menu.nested {
    margin-left: 0;
  }
}
.c-footer--nav .menu.nested a:hover {
  text-decoration: underline;
}
.c-footer--nav .menu.vertical.nested.submenu.is-dropdown-submenu.first-sub {
  display: block;
  background-color: transparent;
  border: none;
  min-width: auto;
  position: relative;
  z-index: auto;
  top: 0;
}
.c-footer--nav .is-dropdown-submenu-parent.opens-right.is-active > a {
  color: #fff;
}
.c-footer--email {
  position: relative;
  background-color: #ff6d00;
  padding: 1.5rem 0.625rem 1.5rem;
  color: #fff;
}
@media print, screen and (min-width: 62em) {
  .c-footer--email {
    padding-left: 1.625rem;
  }
  .c-footer--email:after {
    display: block;
    position: absolute;
    background-color: #ff6d00;
    height: 100%;
    width: 99rem;
    content: "";
    top: 0;
    right: -99rem;
  }
}
.c-footer--email .error-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c-footer--email-form {
  display: flex;
  flex-direction: column;
}
.c-footer--email div {
  position: relative;
  display: flex;
  transition: max-height 1s;
  max-height: 800px;
  flex-direction: column;
  font-size: inherit;
}
.c-footer--email div label {
  color: #fff;
  line-height: 45px;
  font-size: inherit;
}
.c-footer--email div.hidden {
  max-height: 0;
  font-size: 0;
}
.c-footer--email div.hidden label {
  font-size: 0;
}
@media print, screen and (min-width: 48em) {
  .c-footer--email div {
    flex-grow: 1;
    flex-direction: row;
  }
}
.c-footer--email div .label-content {
  width: 20rem;
}
.c-footer--email input {
  border: none;
  height: 45px;
}
@media print, screen and (min-width: 48em) {
  .c-footer--email input {
    width: auto;
    flex-grow: 2;
  }
}
.c-footer--email input:focus {
  box-shadow: 0px 6px 15px -15px rgb(0, 0, 0);
  border: none;
}
.c-footer--email input.is-invalid-input {
  margin-bottom: 0;
}
.c-footer--email button.o-button {
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  min-width: auto;
  align-self: flex-end;
}
@media print, screen and (min-width: 48em) {
  .c-footer--email button.o-button {
    margin: 0 1rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-footer--email button.o-button {
    margin-right: 0;
  }
}
.c-footer--email .form-error {
  line-height: 40px;
  background-color: #cc4b37;
  padding-left: 0.75rem;
  color: #fff;
  margin: 0 0 1rem;
}
.c-footer--email .disclaimer .content {
  width: 100%;
  line-height: 1.8;
  margin-bottom: 1rem;
  display: block;
  font-size: 70%;
}
.c-footer--email .disclaimer .content a {
  color: white;
  text-decoration: underline;
}
.c-footer--email .disclaimer .label-content {
  width: 0;
}
@media print, screen and (min-width: 48em) {
  .c-footer--email .disclaimer .label-content {
    width: 20rem;
  }
}
.c-footer--bottom {
  padding: 1.125rem 0 0.6rem 0 !important;
  background-color: #000;
  width: 100%;
}
@media print, screen and (min-width: 48em) {
  .c-footer--bottom {
    float: left;
  }
}
.c-footer--bottom-logo {
  fill: #fff;
  width: 140px;
  padding: 0.4rem 0;
}
@media print, screen and (min-width: 48em) {
  .c-footer--bottom-logo {
    text-align: center;
  }
}
@media print, screen and (min-width: 62em) {
  .c-footer--bottom-logo {
    text-align: left;
  }
}
.c-footer--bottom-list {
  font-size: 0.875rem;
  line-height: 2.75;
}
@media print, screen and (min-width: 48em) {
  .c-footer--bottom-list {
    text-align: center;
    line-height: 5.5;
  }
}
@media print, screen and (min-width: 62em) {
  .c-footer--bottom-list {
    text-align: left;
  }
}
@media print, screen and (min-width: 48em) {
  .c-footer--bottom-list li {
    display: inline-block;
  }
}
.c-footer--bottom-list li:before, .c-footer--bottom-list li:after {
  content: "•";
  font-family: "Arial", san-serif;
  color: #ff6d00;
  display: inline-block;
  padding: 0 0.125rem;
}
@media print, screen and (min-width: 48em) {
  .c-footer--bottom-list li:before {
    display: none;
  }
}
.c-footer--bottom-list li:after {
  display: none;
}
@media print, screen and (min-width: 48em) {
  .c-footer--bottom-list li:after {
    display: inline-block;
  }
}
.c-footer--bottom-list li:last-child:after {
  display: none;
}
.c-footer--bottom-list a {
  color: #fff;
}
.c-footer--bottom-list a:hover, .c-footer--bottom-list a:active, .c-footer--bottom-list a:focus {
  color: #fff;
  text-decoration: underline;
}

.c-channel-block {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 0.375rem;
}
@media print, screen and (min-width: 48em) {
  .c-channel-block {
    margin-bottom: 0.925rem;
  }
}
.c-channel-block--container {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 48em) {
  .c-channel-block--container {
    margin-bottom: 1.25rem;
  }
}
.c-channel-block--body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.c-channel-block--body figure {
  position: relative;
  margin: 0.275rem 0 0.225rem;
  overflow: hidden;
  height: 180px;
}
@media print, screen and (min-width: 48em) {
  .c-channel-block--body figure {
    height: 300px;
  }
}
@media print, screen and (min-width: 62em) {
  .c-channel-block--body figure {
    height: 320px;
  }
}
@media screen and (min-width: 75em) {
  .c-channel-block--body figure {
    height: 350px;
  }
}
.c-channel-block--body figcaption {
  display: flex;
  align-items: center;
  position: absolute;
  background-color: rgba(4, 30, 66, 0.8);
  height: 60px;
  width: 100%;
  bottom: 0;
  padding: 0 0.8rem;
  transition: all 0.3s;
}
@media print, screen and (min-width: 48em) {
  .c-channel-block--body figcaption {
    height: 80px;
  }
}
.c-channel-block--body figcaption h4 {
  width: 100%;
}
.c-channel-block--body figcaption span {
  display: flex;
}
.c-channel-block--body picture img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  transition: all 0.3s;
}
@media print, screen and (min-width: 48em) {
  .c-channel-block--body picture img {
    height: 100%;
  }
}
@media print, screen and (min-width: 62em) {
  .c-channel-block--body picture {
    margin-bottom: 1.375rem;
  }
}
.c-channel-block--body h4 {
  color: #fff;
  margin: 0.375rem 0 0 0;
}
@media print, screen and (min-width: 48em) {
  .c-channel-block--body h4 {
    font-size: 1.5rem;
  }
}
.c-channel-block:hover img, .c-channel-block:active img, .c-channel-block:focus img {
  transform: scale(1.04);
}
.c-channel-block:hover figcaption, .c-channel-block:active figcaption, .c-channel-block:focus figcaption {
  background-color: rgba(4, 30, 66, 0.9);
}
.c-channel-block .o-icon {
  margin: 0;
  background-size: auto 1.875rem;
  background-position: right;
}

.c-channel-intro {
  background-color: #000;
  padding-top: 9rem;
  margin-top: -9rem;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.c-channel-intro--text {
  padding: 1rem 0;
}
.c-channel-intro--program {
  background-color: #041e42;
}
.c-channel-intro--indice {
  text-align: center;
  padding: 5rem 0 2.5rem;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 4.75rem;
}
.c-channel-intro--indice h4 {
  color: #ff6d00;
  font-size: 1.375rem;
}
@media print, screen and (min-width: 48em) {
  .c-channel-intro--indice h4 {
    font-size: 1.675rem;
  }
}
.c-channel-intro--indice strong,
.c-channel-intro--indice small {
  display: block;
}
.c-channel-intro--indice strong {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.375rem;
}
@media print, screen and (min-width: 62em) {
  .c-channel-intro--indice strong {
    font-size: 1.55rem;
  }
}
.c-channel-intro--indice strong small {
  font-size: 1rem;
  line-height: 1.375;
}
.c-channel-intro--indice.indice-light {
  margin-top: 1rem;
}
.c-channel-intro--indice.indice-light h4 {
  color: #008ccc;
}

.c-macro-indices {
  color: #008ccc;
}
.c-macro-indices--cell {
  position: relative;
}
.c-macro-indices--cell-combined {
  margin: 0.5rem 1rem 0.7rem 0;
  border: 1px solid #81b0d2;
}
.c-macro-indices--cell-combined:last-of-type {
  margin-right: 0;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--cell-combined {
    margin-left: 1.5rem;
    margin-right: 0;
  }
}
.c-macro-indices--cell-header {
  background-color: #041e42;
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  border-right: none;
  padding: 0.5rem 1rem;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--cell-header {
    font-size: 1.25rem;
  }
}
.c-macro-indices--cell-header-combined {
  border: 0;
}
.c-macro-indices--cell.current .c-macro-indices--cell-header {
  background-color: #008ccc;
}
.c-macro-indices--cell.current .c-macro-indices--cell-body {
  color: #ff6d00;
}
.c-macro-indices--cell-body {
  padding: 0 1rem;
  border-bottom: 1px solid #81b0d2;
  border-left: 1px solid #81b0d2;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.c-macro-indices--cell-body-combined {
  border: 0;
  padding: 0;
  margin-bottom: 0;
}
.c-macro-indices--cell-body-combined .cell {
  padding: 1rem 0.5rem 0.5rem;
}
.c-macro-indices--cell-body-combined .cell:first-of-type {
  border-bottom: 1px solid #81b0d2;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--cell-body-combined .cell:first-of-type {
    border-right: 1px solid #81b0d2;
    border-bottom: 0;
  }
}
.c-macro-indices--cell-body-sub {
  margin-top: 0.5rem;
  color: #008ccc;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--cell-body {
    margin-bottom: 2rem;
  }
  .c-macro-indices--cell-body-combined {
    margin-bottom: 0;
  }
}
.c-macro-indices--cell-body span {
  display: block;
  font-size: 1.125rem;
  line-height: 52px;
  margin: 0 auto;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--cell-body span {
    font-size: 1rem;
  }
}
.c-macro-indices--cell-body strong {
  line-height: 56px;
}
.c-macro-indices--starred {
  float: right;
  font-size: 0.9rem;
  margin-top: -0.3rem;
  margin-left: -0.3rem;
  margin-right: 0.2rem;
}
.c-macro-indices--note {
  flex-basis: 100%;
  font-size: 0.9rem;
  text-align: left;
  margin-left: 0.5rem;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--note {
    margin-left: 15%;
  }
}
.c-macro-indices--market-month-index {
  margin-bottom: 1rem;
}
.c-macro-indices--market-index .c-macro-indices--cell:nth-child(3n) > div {
  border-right: 1px solid #81b0d2;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--market-index .c-macro-indices--cell:nth-child(3n) > div {
    border-right: none;
  }
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--market-index .c-macro-indices--cell:nth-child(6n) > div {
    border-right: 1px solid #81b0d2;
  }
}
.c-macro-indices--age-index .c-macro-indices--cell:nth-child(3n) > div {
  border-right: 1px solid #81b0d2;
}
@media print, screen and (min-width: 48em) {
  .c-macro-indices--age-index .c-macro-indices--cell:nth-child(3n) > div {
    border-right: none;
  }
}
.c-macro-indices--age-index .c-macro-indices--cell:last-child .c-macro-indices--cell-header,
.c-macro-indices--age-index .c-macro-indices--cell:last-child .c-macro-indices--cell-body {
  border-right: 1px solid #81b0d2;
}
.c-macro-indices--target-group-index {
  margin-bottom: 2rem;
}
.c-macro-indices--target-group-index .c-macro-indices--cell:nth-child(2n) {
  border-right: 1px solid #81b0d2;
}
.c-macro-indices--target-group-index .c-macro-indices--cell-body {
  margin: 0;
}

h4.c-macro-indices--heading {
  margin-top: 3rem;
  font-size: 1.5rem;
}
h4.c-macro-indices--heading span {
  color: #008ccc;
}

h4.c-macro-indices--heading-combined {
  font-size: 1.5rem;
  color: #000;
  text-align: left;
}
@media print, screen and (min-width: 48em) {
  h4.c-macro-indices--heading-combined {
    width: 11%;
  }
}

.c-table-macro-indices {
  color: #008ccc;
}
.c-table-macro-indices th:nth-child(1),
.c-table-macro-indices td:nth-child(1) {
  width: 34%;
}
.c-table-macro-indices th:nth-child(2), .c-table-macro-indices th:nth-child(3), .c-table-macro-indices th:nth-child(4),
.c-table-macro-indices td:nth-child(2),
.c-table-macro-indices td:nth-child(3),
.c-table-macro-indices td:nth-child(4) {
  width: 22%;
}
.c-table-macro-indices-top-left-border {
  border: none !important;
}
.c-table-macro-indices-index {
  font-weight: bold;
  border: 1px solid #008ccc;
  font-size: 1rem;
  color: black;
}
.c-table-macro-indices-body {
  border: 1px solid #008ccc;
  font-size: 1rem;
}
.c-table-macro-indices-body.current {
  color: #ff6d00;
}
.c-table-macro-indices-header {
  border: none !important;
  background-color: #041e42;
}
.c-table-macro-indices-header.current {
  background-color: #008ccc;
}
.c-table-macro-indices-header span {
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-left: 0.5rem;
  font-size: 1.25rem;
}

.c-table-macro-indices-title {
  display: flex;
  vertical-align: middle;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.c-table-macro-indices-title img {
  height: 33px;
  margin-right: 1rem;
}
.c-table-macro-indices-title h4 {
  margin: 0;
  color: #008ccc;
  line-height: 1.4;
}
@media print, screen and (min-width: 48em) {
  .c-table-macro-indices-title h4 {
    line-height: 1.2;
  }
}

.floating_anchor {
  position: absolute;
  margin-top: -80px;
}

.content-column table, .content-two-columns-small table {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  white-space: nowrap;
}
@media print, screen and (min-width: 48em) {
  .content-column table, .content-two-columns-small table {
    white-space: normal;
  }
}
.content-column table th, .content-two-columns-small table th {
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  padding-top: 0.75rem;
}
.content-column table th, .content-two-columns-small table th,
.content-column table td,
.content-two-columns-small table td {
  border: 1px solid #81b0d2;
}
.content-column table th.no-border, .content-two-columns-small table th.no-border,
.content-column table td.no-border,
.content-two-columns-small table td.no-border {
  border: none;
}
.content-column table h4, .content-two-columns-small table h4 {
  color: #008ccc;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}
.content-column table span.index, .content-two-columns-small table span.index {
  display: block;
  width: 56px;
  height: 56px;
  text-align: center;
  color: #008ccc;
  border-radius: 100%;
  border: 2px solid #008ccc;
  font-size: 1.125rem;
  line-height: 52px;
  margin: 0 auto;
}
@media print, screen and (min-width: 48em) {
  .content-column table span.index, .content-two-columns-small table span.index {
    font-size: 1.25rem;
  }
}
.content-column table ul, .content-two-columns-small table ul {
  padding-bottom: 0.5rem;
  line-height: 1.4;
}
.content-column table ul li, .content-two-columns-small table ul li {
  font-size: 1rem;
  padding-left: 0.875rem;
}
.content-column table ul li:before, .content-two-columns-small table ul li:before {
  content: "•";
  color: #000;
}
.content-column table ol, .content-two-columns-small table ol {
  padding-bottom: 0.5rem;
  line-height: 1.4;
  counter-reset: table-section;
}
.content-column table ol li, .content-two-columns-small table ol li {
  font-size: 1rem;
  padding-left: 0.875rem;
}
.content-column table ol li:before, .content-two-columns-small table ol li:before {
  top: 0.175rem;
  left: 0;
  counter-increment: table-section;
  content: counters(table-section, ".") " ";
}

/*
@media ( max-width: 767px ) {

  .content-column table {

    th, td {
      &:first-child {
        background-color: white;
        display: flex;
        position: absolute;
        height: inherit;
        width: 150px;
        white-space: normal;
        z-index: 99;
      }
      &:nth-child(2) {

        border-left: 150px solid $ster-main-color;
      }
    }


    td {
      &:first-child {
        height: 148px;
      }
    }




  }







}





 */
.ster-ribbon {
  position: fixed;
  top: 30px;
  left: -46px;
  color: #fff;
  font-weight: bold;
  transform: rotate(-45deg);
  width: 200px;
  text-align: center;
  padding: 10px;
  z-index: 9999;
  box-shadow: 0 0 10px #888888;
  text-transform: uppercase;
}
.ster-ribbon.development {
  background-color: #041e42;
}
.ster-ribbon.acceptance {
  background-color: #ff6d00;
}
.ster-ribbon.test {
  background-color: #81b0d2;
}

.umbraco-preview-badge {
  background: #ff6d00 !important;
  position: fixed !important;
}
.umbraco-preview-badge__header {
  background: #ff6d00;
}

.c-share--header {
  color: #008ccc;
  font-size: 17px;
}

.grid-container--c-newsletter .content-column, .grid-container--c-newsletter .content-two-columns-small {
  background-color: #f4f7fb;
  width: 100%;
  padding: 0.5rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container--c-newsletter .content-column, .grid-container--c-newsletter .content-two-columns-small {
    width: 48rem;
    padding: 0 2rem;
  }
}
.grid-container--c-newsletter .content-column .header-content, .grid-container--c-newsletter .content-two-columns-small .header-content {
  font-weight: bold;
  display: block;
  margin: 1rem 0;
}

.c-newsletter {
  margin: 1rem 0 3rem;
  padding: 0 !important;
  width: 100%;
}
.c-newsletter--striking {
  background-color: #041e42;
}
.c-newsletter .content-column, .c-newsletter .content-two-columns-small {
  padding: 1rem 0 2.5rem 0;
  margin-bottom: 0;
}
.c-newsletter .content-column .o-button-primary, .c-newsletter .content-two-columns-small .o-button-primary {
  margin-top: 1.9rem;
  height: 2.7rem;
  margin-left: -0.3rem;
  max-width: 11.5rem;
}
.c-newsletter .c-emailinput {
  margin: 0 auto;
}
.c-newsletter h2 {
  margin: 0;
  padding: 0;
}
.c-newsletter .h2-white {
  color: #fff;
}

.content-column .c-emailinput, .content-two-columns-small .c-emailinput {
  background: #fff;
}
.content-column .c-emailinput, .content-two-columns-small .c-emailinput, .content-column.c-emailinput, .c-emailinput.content-two-columns-small {
  padding: 2rem 0.5rem;
  max-width: 41rem;
}
@media print, screen and (min-width: 48em) {
  .content-column .c-emailinput, .content-two-columns-small .c-emailinput, .content-column.c-emailinput, .c-emailinput.content-two-columns-small {
    padding: 2rem;
  }
}
.content-column .c-emailinput .header-content, .content-two-columns-small .c-emailinput .header-content, .content-column.c-emailinput .header-content, .c-emailinput.content-two-columns-small .header-content {
  margin-top: 0;
}
.content-column .c-emailinput .c-footer--email-form, .content-two-columns-small .c-emailinput .c-footer--email-form, .content-column.c-emailinput .c-footer--email-form, .c-emailinput.content-two-columns-small .c-footer--email-form {
  margin-top: 1rem;
}
.content-column .c-emailinput .c-footer--email-form div, .content-two-columns-small .c-emailinput .c-footer--email-form div, .content-column.c-emailinput .c-footer--email-form div, .c-emailinput.content-two-columns-small .c-footer--email-form div {
  display: flex;
  transition: max-height 1s;
  max-height: 800px;
  font-size: inherit;
  flex-direction: column;
}
@media print, screen and (min-width: 48em) {
  .content-column .c-emailinput .c-footer--email-form div, .content-two-columns-small .c-emailinput .c-footer--email-form div, .content-column.c-emailinput .c-footer--email-form div, .c-emailinput.content-two-columns-small .c-footer--email-form div {
    flex-direction: row;
  }
}
.content-column .c-emailinput .c-footer--email-form div.hidden, .content-two-columns-small .c-emailinput .c-footer--email-form div.hidden, .content-column.c-emailinput .c-footer--email-form div.hidden, .c-emailinput.content-two-columns-small .c-footer--email-form div.hidden {
  max-height: 0;
  font-size: 0;
}
.content-column .c-emailinput .c-footer--email-form div.hidden label, .content-two-columns-small .c-emailinput .c-footer--email-form div.hidden label, .content-column.c-emailinput .c-footer--email-form div.hidden label, .c-emailinput.content-two-columns-small .c-footer--email-form div.hidden label {
  font-size: 0;
}
.content-column .c-emailinput .c-footer--email-form div .label-content, .content-two-columns-small .c-emailinput .c-footer--email-form div .label-content, .content-column.c-emailinput .c-footer--email-form div .label-content, .c-emailinput.content-two-columns-small .c-footer--email-form div .label-content {
  line-height: 45px;
  width: 14rem;
}
.content-column .c-emailinput .c-footer--email-form div .error-wrapper, .content-two-columns-small .c-emailinput .c-footer--email-form div .error-wrapper, .content-column.c-emailinput .c-footer--email-form div .error-wrapper, .c-emailinput.content-two-columns-small .c-footer--email-form div .error-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.content-column .c-emailinput .c-footer--email-form div .error-wrapper input, .content-two-columns-small .c-emailinput .c-footer--email-form div .error-wrapper input, .content-column.c-emailinput .c-footer--email-form div .error-wrapper input, .c-emailinput.content-two-columns-small .c-footer--email-form div .error-wrapper input {
  border: 1px solid #008ccc;
}
.content-column .c-emailinput .c-footer--email-form div .error-wrapper input.is-invalid-input, .content-two-columns-small .c-emailinput .c-footer--email-form div .error-wrapper input.is-invalid-input, .content-column.c-emailinput .c-footer--email-form div .error-wrapper input.is-invalid-input, .c-emailinput.content-two-columns-small .c-footer--email-form div .error-wrapper input.is-invalid-input {
  margin-bottom: 0;
}
.content-column .c-emailinput .c-footer--email-form div .content, .content-two-columns-small .c-emailinput .c-footer--email-form div .content, .content-column.c-emailinput .c-footer--email-form div .content, .c-emailinput.content-two-columns-small .c-footer--email-form div .content {
  line-height: 1.8;
  width: 100%;
  margin-bottom: 1rem;
  display: block;
  font-size: 70%;
}
.content-column .c-emailinput .c-footer--email-form .o-button, .content-two-columns-small .c-emailinput .c-footer--email-form .o-button, .content-column.c-emailinput .c-footer--email-form .o-button, .c-emailinput.content-two-columns-small .c-footer--email-form .o-button {
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: 0;
}
.content-column .c-emailinput .c-footer--email-form .form-error, .content-two-columns-small .c-emailinput .c-footer--email-form .form-error, .content-column.c-emailinput .c-footer--email-form .form-error, .c-emailinput.content-two-columns-small .c-footer--email-form .form-error {
  line-height: 40px;
  background-color: #cc4b37;
  padding-left: 0.75rem;
  color: #fff;
  margin: 0 0 1rem;
}

.c-document-request {
  padding: 2.25rem 0 0.75rem;
  margin-bottom: 3rem;
}
.c-document-request--light {
  color: #041e42;
  background-color: #fff;
}
.c-document-request--light label {
  color: #041e42;
}
.c-document-request--light input {
  border-color: #008ccc;
}
.c-document-request--light h1,
.c-document-request--light h2,
.c-document-request--light h3,
.c-document-request--light h4,
.c-document-request--light h5,
.c-document-request--light h6 {
  color: #008ccc;
}
.c-document-request--default {
  color: #fff;
  background-color: #041e42;
}
.c-document-request--default label {
  color: #fff;
}
.c-document-request--form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-document-request small {
  font-size: 0.9rem;
}
@media print, screen and (min-width: 62em) {
  .c-document-request small {
    align-self: flex-end;
    margin-bottom: 1.25rem;
  }
}
.c-document-request div {
  z-index: 1;
}
.c-document-request div.default-label {
  width: 100%;
  order: 2;
}
@media print, screen and (min-width: 48em) {
  .c-document-request div.default-label .error-wrapper {
    width: 30rem;
  }
}
@media print, screen and (min-width: 62em) {
  .c-document-request div.default-label {
    order: 1;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .c-document-request div.default-label .label-content {
    margin-bottom: 1rem;
    width: 14rem;
  }
}
.c-document-request fieldset {
  order: 2;
}
@media print, screen and (min-width: 62em) {
  .c-document-request fieldset {
    align-self: flex-end;
    order: 1;
  }
}
.c-document-request button {
  order: 2;
  margin-top: 1rem !important;
}
@media print, screen and (min-width: 62em) {
  .c-document-request button {
    align-self: flex-end;
    order: 1;
  }
}
.c-document-request input.is-invalid-input {
  margin-bottom: 0;
}
.c-document-request .error-wrapper {
  flex-grow: 2;
  position: relative;
}
.c-document-request .form-error {
  line-height: 40px;
  background-color: #cc4b37;
  padding-left: 0.75rem;
  color: #fff;
  margin: 0 0 1rem;
}
.c-document-request .content {
  margin-top: 1rem;
}
.c-document-request .content span {
  padding: 0 0.5rem;
  display: inline-block;
}
.c-document-request [type=checkbox] {
  vertical-align: top;
  margin-top: 0.4rem;
}
.c-document-request .radio-custom-label.is-invalid-label {
  padding-left: 70px;
  left: -60px;
  z-index: 0;
}
.c-document-request .loading {
  position: absolute;
  top: 0;
  right: 0;
}

.autocomplete {
  background: white;
  z-index: 1000;
  overflow: auto;
  box-sizing: border-box;
  border: 1px solid #008ccc;
  font-size: 0.88rem;
}

.autocomplete > div {
  padding: 8px 12px;
  border-bottom: 1px solid #e6e6e6;
}

.autocomplete .group {
  background: #eee;
}

.autocomplete > div:hover:not(.group),
.autocomplete > div.selected {
  background: #008ccc;
  color: white;
  cursor: pointer;
}

.c-contact-card {
  height: 100%;
}
.c-contact-card .card {
  height: 100%;
  background-color: #fff;
  display: flex;
}
.c-contact-card .card .card-left {
  background-color: #008ccc;
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-contact-card .card .card-left .arrow {
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #fff;
}
.c-contact-card .card .card-right {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #81b0d2;
  border-left: none;
}
.c-contact-card .card .card-right .author-label {
  margin-bottom: 0.5rem;
  color: #041e42;
  font-style: italic;
}
.c-contact-card .card .card-right .name {
  font-size: 38px;
  margin: 0;
}
.c-contact-card .card .card-right .position {
  font-weight: bold;
  margin: 0 0 15px;
}
.c-contact-card .card .card-right .contact {
  margin-top: auto;
}
.c-contact-card .card .card-right .contact .contact-option {
  display: flex;
}
.c-contact-card .card .card-right .contact .contact-option a {
  color: #000;
  margin: 4px 0;
  text-decoration: none;
}
.c-contact-card .card .card-right .contact .contact-option a:hover {
  text-decoration: underline;
}
.c-contact-card .card .card-right .contact .contact-option img {
  position: absolute;
  width: 30px;
  margin-left: -65px;
  filter: brightness(0) invert(1);
}
.c-contact-card .card .card-right .contact .contact-option img.mail-icon {
  margin-top: 4px;
}
.c-contact-card .card .card-right .contact .contact-option img:hover {
  filter: brightness(0);
  cursor: pointer;
}
.c-contact-card .card .card-right .contact .contact-option a:hover + a {
  text-decoration: underline;
}
.c-contact-card .card .card-right .contact .contact-option:has(> a:hover) img {
  filter: brightness(0);
}

.contact-card-overview {
  margin-bottom: 2rem;
}

p + #portal-lite .app-container {
  margin-top: 1rem;
}

.portal-lite {
  margin-bottom: 2rem;
}
.portal-lite > .grid-container {
  padding: 0;
}
.portal-lite--image {
  overflow: hidden;
}
.portal-lite--image img {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.portal-lite--body {
  display: flex;
  flex-direction: column;
  padding: 0.625rem;
}
@media screen and (min-width: 75em) {
  .portal-lite--body {
    flex-direction: row;
  }
}
@media print, screen and (min-width: 48em) {
  .portal-lite--body {
    padding: 1rem;
  }
}
.portal-lite--body--excerpt {
  margin-right: 1rem;
}
@media screen and (min-width: 75em) {
  .portal-lite--body--excerpt {
    width: 58%;
  }
}
.portal-lite--body--excerpt h2 {
  margin-top: 0 !important;
  color: #fff !important;
}
.portal-lite--body--excerpt h2 span {
  color: #fff !important;
}
.portal-lite--body--excerpt--above {
  padding: 1rem 0.625rem 0 0.625rem;
}
.portal-lite--body--portal-lite {
  padding-bottom: 1rem;
}
@media print, screen and (min-width: 48em) {
  .portal-lite--body--portal-lite {
    min-width: 480px;
  }
}
@media screen and (min-width: 75em) {
  .portal-lite--body--portal-lite {
    width: 42%;
    border: solid 1px white;
    padding: 0 1rem 1rem 1rem;
  }
}
.portal-lite .c-highlight picture {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 75em) {
  .portal-lite .c-highlight picture {
    position: relative;
  }
}

#compare .app-container > .row {
  max-width: 50rem;
}
#compare .app-container h2 {
  margin-top: 0rem;
}
#compare .app-container .input[type=text] {
  height: auto;
}

.c-main-usps {
  color: #6884b1;
  font-weight: bold;
  padding-top: 8px;
  font-size: 0.9rem;
  z-index: 4;
  position: relative;
  background: linear-gradient(0deg, rgb(0, 0, 0) 90%, rgb(0, 0, 0) 100%);
}
@media print, screen and (min-width: 62em) {
  .c-main-usps {
    display: flex;
    justify-content: space-evenly;
  }
  .c-main-usps:after {
    content: none;
  }
}
.c-main-usps .usp {
  display: flex;
  justify-content: center;
}
.c-main-usps .usp svg {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-right: 6px;
}
.c-main-usps .usp svg .checkmark1 {
  stroke: #6884b1;
}
.c-main-usps .usp.orbit-slide {
  text-align: center;
}
.c-main-usps .usp.orbit-slide.is-active {
  display: block;
}
.c-main-usps .usp.orbit-slide svg {
  margin-top: 0px;
  height: 14px;
}
.c-main-usps .orbit-container {
  z-index: 4;
  background-color: black;
}

.c-main-usps-gradiant:after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 70%);
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 120px;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}

.faq {
  background-color: rgba(230, 230, 230, 0.5);
  padding-bottom: 1.5rem;
  padding-top: 4px;
  margin-bottom: 1.25rem;
}
@media print, screen and (min-width: 48em) {
  .faq {
    margin-bottom: 2rem;
    padding-bottom: 3rem;
  }
}
.faq .faq-item {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .faq .faq-item {
    max-width: 48rem;
  }
}
.faq .faq-item:not(:last-child) details {
  border-bottom: 1px solid #e6e6e6;
}
.faq .faq-item details {
  padding: 1rem;
}
.faq .faq-item details summary {
  list-style: none;
  font-size: 18px;
  font-weight: bold;
}
.faq .faq-item details summary:hover {
  cursor: pointer;
}
.faq .faq-item details summary::before {
  content: "►";
  color: #008ccc;
  margin-right: 0.5em;
}
.faq .faq-item details[open] summary::before {
  content: "▼";
}
.faq .faq-item details[open] {
  margin-bottom: 0.5rem;
  background-color: white;
}
@media print, screen and (min-width: 48em) {
  .faq .faq-item details[open] {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
.faq .faq-item details[open] summary {
  margin-bottom: 8px;
}
.faq .faq-item details p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.plyr {
  --plyr-color-main: white;
  --plyr-video-control-background-hover: rgba(0, 0, 0, 0.5);
}
.plyr.plyr--audio {
  --plyr-color-main: rgba(0, 0, 0, 0.75);
}

div[data-media-player],
media-player {
  --plyr-border-radius: 0;
}
div[data-media-player][data-fullscreen] media-poster,
media-player[data-fullscreen] media-poster {
  display: none;
}

.m-gouden-loeki {
  background-color: #000;
  margin-bottom: -4rem;
  padding-bottom: 5rem;
}
.m-gouden-loeki h2,
.m-gouden-loeki h3,
.m-gouden-loeki h4,
.m-gouden-loeki h5,
.m-gouden-loeki h6,
.m-gouden-loeki ol {
  color: #fff;
}
.m-gouden-loeki .c-staff-card--info {
  color: #000;
}
.m-gouden-loeki .c-staff-card--info h4 {
  color: #008ccc;
}
.m-gouden-loeki .c-staff-card--info strong {
  color: #000;
}
.m-gouden-loeki ol.vote-top3 {
  color: rgb(86.6184210526, 65.7105263158, 26.8815789474);
  font-family: "Trade Gothic", "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
}
.m-gouden-loeki .c-header--title {
  background: rgb(145, 110, 45);
  background: -moz-linear-gradient(90deg, rgb(145, 110, 45) 0%, rgb(215, 175, 90) 100%);
  background: -webkit-linear-gradient(90deg, rgb(145, 110, 45) 0%, rgb(215, 175, 90) 100%);
  background: linear-gradient(90deg, rgb(145, 110, 45) 0%, rgb(215, 175, 90) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#916e2d", endColorstr="#d7af5a", GradientType=1);
}
.m-gouden-loeki .c-header--subtitle {
  background-color: #fff;
}
.m-gouden-loeki .c-header--subtitle h1 {
  color: #000;
}
@media (max-width: 380px) {
  .m-gouden-loeki .c-header--subtitle {
    max-width: 250px;
  }
}
.m-gouden-loeki .c-gouden-loeki--menu {
  position: relative;
  margin-bottom: 3rem;
}
.m-gouden-loeki .c-gouden-loeki--menu #toggleGoudenLoekiMenu {
  margin-top: 0.75rem;
  margin-right: 0.5rem;
  display: inline-block;
  width: auto;
  height: auto;
  float: right;
  position: absolute;
  left: 1rem;
  top: -4.5rem;
}
@media print, screen and (min-width: 48em) {
  .m-gouden-loeki .c-gouden-loeki--menu #toggleGoudenLoekiMenu {
    display: none;
  }
}
.m-gouden-loeki .c-gouden-loeki--menu #toggleGoudenLoekiMenu.menu-is-open .menu-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.m-gouden-loeki .c-gouden-loeki--menu #toggleGoudenLoekiMenu.menu-is-open .menu-line:nth-child(2) {
  transform: rotate(45deg);
}
.m-gouden-loeki .c-gouden-loeki--menu #toggleGoudenLoekiMenu.menu-is-open .menu-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.m-gouden-loeki .c-gouden-loeki--menu .menu-line {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 3px auto 6px;
  transition: all 0.2s ease-in-out;
}
.m-gouden-loeki .c-gouden-loeki--menu a {
  color: #d7af5a;
}
.m-gouden-loeki .c-gouden-loeki--menu a:hover {
  color: #fff;
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist {
  display: none;
  z-index: 2;
}
@media print, screen and (min-width: 48em) {
  .m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist {
    display: flex !important;
  }
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after,
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist > li.is-dropdown-submenu-parent > a::after {
  border: none;
  background-image: url("../img/caret-down-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  top: auto;
  right: auto;
  display: inline-block;
  margin-top: 0.25rem;
  margin-left: 0.5rem;
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist li.is-active > a {
  color: #fff;
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist li.is-current-category > a {
  color: #fff;
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist .is-accordion-submenu a,
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist .is-dropdown-submenu a {
  color: #fff;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.75rem 1rem 1.25rem;
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist .is-accordion-submenu a:hover,
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist .is-dropdown-submenu a:hover {
  text-decoration: underline;
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist .is-accordion-submenu {
  padding-left: 0.5rem;
}
.m-gouden-loeki .c-gouden-loeki--menu .gouden-loeki-menulist .is-dropdown-submenu {
  padding-top: 1rem;
  border: none;
  background-color: rgba(0, 0, 0, 0.9);
}
.m-gouden-loeki .c-gouden-loeki--quarters {
  color: #fff;
  background-size: 0 0;
  min-height: 900px;
}
@media print, screen and (min-width: 48em) {
  .m-gouden-loeki .c-gouden-loeki--quarters {
    background-size: 30%;
    background-image: initial;
    background-repeat: no-repeat;
    background-position: 50% 450px;
  }
}
@media print, screen and (min-width: 62em) {
  .m-gouden-loeki .c-gouden-loeki--quarters {
    background-size: auto;
    background-position: 50% 400px;
  }
}
.m-gouden-loeki .c-gouden-loeki--video-container {
  background-color: #916e2d;
}
.m-gouden-loeki .c-gouden-loeki--video-container.empty {
  visibility: hidden;
}
.m-gouden-loeki .c-gouden-loeki--body {
  color: #fff;
}
.m-gouden-loeki .c-gouden-loeki--body .history-list h3,
.m-gouden-loeki .c-gouden-loeki--body .history-list ol {
  color: #d7af5a;
}
.m-gouden-loeki .c-gouden-loeki--body .gouden-loeki-social li a img {
  margin-right: 8px;
  margin-bottom: 10px;
}
.m-gouden-loeki .c-gouden-loeki--body .gouden-loeki-social li a span {
  color: #d7af5a;
}
.m-gouden-loeki .c-gouden-loeki--body .gouden-loeki-social li a:hover span {
  color: #fff;
}
.m-gouden-loeki .plyr .plyr__control--overlaid {
  border-radius: 0;
}

.c-gouden-loeki--menu .menu {
  justify-content: center;
  font-weight: 700;
}
.c-gouden-loeki--body ol {
  padding: 0 1rem 2rem 0;
}
.c-gouden-loeki--video-container {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media print, screen and (min-width: 48em) {
  .c-gouden-loeki--video-container {
    margin-bottom: 1.875rem;
  }
}
.c-gouden-loeki--video-box media-pip-button {
  display: none;
}
.c-gouden-loeki--video-box media-caption-button {
  display: none;
}
.c-gouden-loeki--video-box media-airplay-button {
  display: none;
}
.c-gouden-loeki--video-box .responsive-embed {
  margin-bottom: 0;
}
.c-gouden-loeki--video-box video {
  cursor: pointer;
}
.c-gouden-loeki--video-box .media-player-buffering-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.c-gouden-loeki--video-box .media-player-buffering-spinner {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  height: 96px;
}
.c-gouden-loeki--video-box .media-player-buffering-spinner [data-part=track] {
  color: #f5f5f5;
  opacity: 0.25;
}
.c-gouden-loeki--video-box .media-player-buffering-spinner [data-part=track-fill] {
  color: var(--media-brand, #f5f5f5);
  opacity: 0.75;
}
.c-gouden-loeki--video-box media-player[data-buffering] .media-player-buffering-spinner {
  opacity: 1;
  animation: media-buffering-spin 1s linear infinite;
}
@keyframes media-buffering-spin {
  to {
    transform: rotate(360deg);
  }
}
.c-gouden-loeki--video-meta {
  padding: 1rem 1rem 0 1rem;
  flex-grow: 2;
}

.m-gouden-loeki .c-header--content {
  margin-bottom: 5rem;
}
@media print, screen and (min-width: 48em) {
  .m-gouden-loeki .c-header--content {
    margin-bottom: 7rem;
  }
}

.backdrop,
.vote-dialog-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.remind-next-year {
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  display: block;
  cursor: pointer;
}
.remind-next-year input[type=checkbox] {
  cursor: pointer;
  position: absolute;
  top: 2px;
  left: 0px;
  height: 20px;
  width: 20px;
  accent-color: #916e2d;
}

.disclaimer {
  font-size: 0.7rem;
  margin-top: 1rem;
  text-align: center;
}

.m-gouden-loeki .umbraco-forms-ster .umbraco-forms-page label {
  color: white;
}
.m-gouden-loeki .umbraco-forms-ster .umbraco-forms-page .umbraco-forms-field .umbraco-forms-field-wrapper input {
  border-color: #916e2d;
}
.m-gouden-loeki .umbraco-forms-ster .umbraco-forms-page h4 {
  color: #d7af5a;
}
.m-gouden-loeki .umbraco-forms-ster .umbraco-forms-page .checkbox-custom + .checkbox-custom-label:before {
  border-color: #916e2d;
}
.m-gouden-loeki .umbraco-forms-ster .umbraco-forms-page .o-button-secondary {
  background-color: #916e2d;
}
.m-gouden-loeki .umbraco-forms-ster .umbraco-forms-page .o-button-secondary:hover {
  background-color: rgb(106.0789473684, 80.4736842105, 32.9210526316);
}
/*# sourceMappingURL=app.css.map */
