/*

    Utility OpenType v0.1.4
    Simple, CSS utility classes for advanced typographic features.
    http://utility-opentype.kennethormandy.com

*/
.liga {
  -ms-font-feature-settings: "liga";
  font-variant-ligatures: common-ligatures;
}

@supports not (font-variant-ligatures: common-ligatures) {
  .liga {
    font-feature-settings: "liga", "liga", "clig";
  }
}

.dlig {
  -ms-font-feature-settings: "dlig";
  font-variant-ligatures: discretionary-ligatures;
}

@supports not (font-variant-ligatures: discretionary-ligatures) {
  .dlig {
    font-feature-settings: "dlig", "dlig";
  }
}

.smcp {
  text-transform: uppercase;
  -ms-font-feature-settings: "lnum", "smcp", "c2sc" 0;
}

@supports not (font-variant-caps: small-caps) {
  .smcp {
    text-transform: inherit;
    font-feature-settings: "onum", "smcp", "c2sc" 0;
  }
}

@supports (font-variant-caps: small-caps) {
  .smcp {
    text-transform: inherit;
    font-feature-settings: "c2sc";
    font-variant-caps: small-caps;
  }
}

.c2sc {
  text-transform: uppercase;
  font-variant-caps: all-small-caps;
  -ms-font-feature-settings: "smcp" 0, "c2sc";
}

@supports (font-variant-caps: all-small-caps) or (font-feature-settings: "c2sc") {
  .c2sc {
    text-transform: lowercase;
  }
}

@supports not (font-variant-caps: all-small-caps) {
  .c2sc {
    font-feature-settings: "onum", "smcp" 0, "c2sc", "smcp", "c2sc";
  }
}

.c2sc.smcp,
.caps {
  text-transform: uppercase;
  -ms-font-feature-settings: "smcp", "c2sc";
  font-variant-caps: all-small-caps;
}

@supports (font-feature-settings: "smcp", "c2sc") {
  @supports not (font-variant-caps: all-small-caps) {
    .c2sc.smcp,
    .caps {
      text-transform: inherit;
      font-feature-settings: "smcp", "c2sc", "smcp", "c2sc";
    }
  }
}

@supports not (font-variant-caps: small-caps) {
  @supports not (font-variant-numeric: oldstyle-nums) {
    .smcp.onum {
      font-feature-settings: "onum", "smcp" 1;
    }
  }
}

@supports not (font-variant-caps: all-small-caps) {
  @supports not (font-variant-numeric: oldstyle-nums) {
    .c2sc.onum,
    .caps.onum {
      text-transform: lowercase;
      font-feature-settings: "onum", "smcp" 1;
    }
  }
}

.case {
  font-feature-settings: "case";
}

.titl {
  -ms-font-feature-settings: "titl";
  font-variant-caps: titling-caps;
}

@supports not (font-variant-caps: titling-caps) {
  .titl {
    font-feature-settings: "titl", "titl";
  }
}

.calt {
  -ms-font-feature-settings: "calt";
  font-variant-ligatures: contextual;
}

@supports not (font-variant-ligatures: contextual) {
  .calt {
    font-feature-settings: "calt", "calt";
  }
}

.hist {
  -ms-font-feature-settings: "hist";
  font-variant-alternates: historical-forms;
}

@supports not (font-variant-alternates: historical-forms) {
  .hist {
    font-feature-settings: "hist";
  }
}

.swsh,
.swsh-1 {
  font-feature-settings: "swsh";
}

.swsh-2 {
  font-feature-settings: "swsh" 2;
}

.swsh-3 {
  font-feature-settings: "swsh" 3;
}

.salt,
.salt-1 {
  font-feature-settings: "salt";
}

.salt-2 {
  font-feature-settings: "salt" 2;
}

.salt-3 {
  font-feature-settings: "salt" 3;
}

.ss01 {
  font-feature-settings: "ss01";
}

.ss02 {
  font-feature-settings: "ss02";
}

.ss03 {
  font-feature-settings: "ss03";
}

.ss04 {
  font-feature-settings: "ss04";
}

.ss05 {
  font-feature-settings: "ss05";
}

.ss06 {
  font-feature-settings: "ss06";
}

.ss07 {
  font-feature-settings: "ss07";
}

.ss08 {
  font-feature-settings: "ss08";
}

.ss09 {
  font-feature-settings: "ss09";
}

.ss10 {
  font-feature-settings: "ss10";
}

.ss11 {
  font-feature-settings: "ss11";
}

.ss12 {
  font-feature-settings: "ss12";
}

.ss13 {
  font-feature-settings: "ss13";
}

.ss14 {
  font-feature-settings: "ss14";
}

.ss15 {
  font-feature-settings: "ss15";
}

.ss16 {
  font-feature-settings: "ss16";
}

.ss17 {
  font-feature-settings: "ss17";
}

.ss18 {
  font-feature-settings: "ss18";
}

.ss19 {
  font-feature-settings: "ss19";
}

.ss20 {
  font-feature-settings: "ss20";
}

.frac {
  -ms-font-feature-settings: "frac";
  font-variant-numeric: diagonal-fractions;
}

@supports not (font-variant-numeric: diagonal-fractions) {
  .frac {
    font-feature-settings: "frac", "frac";
  }
}

.afrc {
  -ms-font-feature-settings: "afrc";
  font-variant-numeric: stacked-fractions;
}

@supports not (font-variant-numeric: stacked-fractions) {
  .afrc {
    font-feature-settings: "afrc", "afrc";
  }
}

.ordn {
  -ms-font-feature-settings: "ordn";
  font-variant-numeric: ordinal;
}

@supports not (font-variant-numeric: ordinal) {
  .ordn {
    font-feature-settings: "ordn", "ordn";
  }
}

.sups {
  font-variant-position: super;
}

@supports not (font-variant-position: sup) {
  .sups {
    font-feature-settings: "sups", "sups";
  }
  @supports (font-feature-settings: "sups") {
    .sups {
      font-size: 1em;
      vertical-align: baseline;
    }
  }
  @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
    .sups {
      vertical-align: super;
    }
  }
}

.subs,
.sinf {
  font-size: inherit;
  font-variant-position: sub;
}

@supports not (font-variant-position: sub) {
  .subs,
  .sinf {
    font-feature-settings: "subs", "subs";
  }
  @supports (font-feature-settings: "subs") {
    .subs,
    .sinf {
      font-size: 1em;
      vertical-align: baseline;
    }
  }
  @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
    .subs,
    .sinf {
      vertical-align: sub;
      font-size: smaller;
    }
  }
}

@supports (font-feature-settings: "sinf") {
  .sinf {
    font-variant-position: normal;
    font-feature-settings: "sinf", "subs" off, "sups" off;
    vertical-align: baseline;
  }
}

@supports (overflow: -webkit-marquee) and (justify-content: inherit) {
  .sinf {
    vertical-align: sub;
    font-size: smaller;
  }
}

.lnum {
  font-variant-numeric: lining-nums;
}

@supports not (font-variant-numeric: lining-nums) {
  .lnum {
    font-feature-settings: "lnum", "onum" 0, "lnum";
  }
}

.onum {
  font-variant-numeric: oldstyle-nums;
}

@supports not (font-variant-numeric: oldstyle-nums) {
  .onum {
    font-feature-settings: "lnum" 0, "onum", "onum";
  }
}

.pnum {
  font-variant-numeric: proportional-nums;
}

@supports not (font-variant-numeric: proportional-nums) {
  .pnum {
    font-feature-settings: "pnum", "tnum" 0, "pnum";
  }
}

.tnum {
  font-variant-numeric: tabular-nums;
}

@supports not (font-variant-numeric: tabular-nums) {
  .tnum {
    font-feature-settings: "pnum" 0, "tnum", "tnum";
  }
}

.lnum.pnum {
  -ms-font-feature-settings: "lnum", "onum" 0, "pnum", "tnum" 0;
}

@supports not (font-feature-settings: "onum" inherit) {
  .lnum.pnum {
    font-feature-settings: "lnum", "onum" 0, "pnum", "tnum" 0;
  }
}

.lnum.tnum {
  -ms-font-feature-settings: "lnum", "onum" 0, "pnum" 0, "tnum";
}

@supports not (font-feature-settings: "onum" inherit) {
  .lnum.tnum {
    font-feature-settings: "lnum", "onum" 0, "pnum" 0, "tnum";
  }
}

.onum.pnum {
  -ms-font-feature-settings: "lnum" 0, "onum", "pnum", "tnum" 0;
}

@supports not (font-feature-settings: "onum" inherit) {
  .onum.pnum {
    font-feature-settings: "lnum" 0, "onum", "pnum", "tnum" 0;
  }
}

.onum.tnum {
  -ms-font-feature-settings: "lnum" 0, "onum", "pnum" 0, "tnum";
}

@supports not (font-feature-settings: "onum" inherit) {
  .onum.tnum {
    font-feature-settings: "lnum" 0, "onum", "pnum" 0, "tnum";
  }
}

.onum.zero {
  -ms-font-feature-settings: "onum", "zero";
}

@supports not (font-feature-settings: "onum" inherit) {
  .onum.zero {
    font-feature-settings: "onum", "zero";
  }
}

.onum.tnum.zero {
  -ms-font-feature-settings: "onum", "zero", "tnum";
}

@supports not (font-feature-settings: "onum" inherit) {
  .onum.tnum.zero {
    font-feature-settings: "onum", "zero", "tnum";
  }
}

.onum.pnum.zero {
  -ms-font-feature-settings: "onum", "zero", "pnum";
}

@supports not (font-feature-settings: "onum" inherit) {
  .onum.pnum.zero {
    font-feature-settings: "onum", "zero", "pnum";
  }
}

.lnum.zero {
  -ms-font-feature-settings: "lnum", "zero";
}

@supports not (font-feature-settings: "onum" inherit) {
  .lnum.zero {
    font-feature-settings: "lnum", "zero";
  }
}

.lnum.tnum.zero {
  -ms-font-feature-settings: "lnum", "zero", "tnum";
}

@supports not (font-feature-settings: "onum" inherit) {
  .lnum.tnum.zero {
    font-feature-settings: "lnum", "zero", "tnum";
  }
}

.lnum.pnum.zero {
  -ms-font-feature-settings: "lnum", "zero", "pnum";
}

@supports not (font-feature-settings: "onum" inherit) {
  .lnum.pnum.zero {
    font-feature-settings: "lnum", "zero", "pnum";
  }
}

.zero {
  font-variant-numeric: slashed-zero;
}

@supports not (font-variant-numeric: slashed-zero) {
  .zero {
    font-feature-settings: "zero", "zero";
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .smcp {
    text-transform: lowercase;
  }
  .c2sc {
    text-transform: lowercase;
  }
  .c2sc.smcp,
  .caps {
    text-transform: lowercase;
  }
}

@font-face {
  font-family: 'Fredoka';
  src: url("../../fonts/Fredoka-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fredoka';
  src: url("../../fonts/Fredoka-Medium.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

html {
  height: 100%;
  margin: 0;
  font-size: 18px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: Fredoka, Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  height: 100%;
  margin: 0;
}

body {
  color: #4e7989;
  background-color: white;
}

body.t-primary-inverse, .t-primary-inverse body {
  color: white;
  background-color: #80A5B3;
}

body.t-secondary-inverse, .t-secondary-inverse body {
  color: white;
  background-color: #4e7989;
}

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

* + * {
  margin-top: 1em;
}

[hidden]:first-child + *,
.u-hidden:first-child + * {
  margin-top: 0;
}

*:focus {
  outline: none;
}

*:focus {
  box-shadow: 0 0 0 2px rgba(78, 121, 137, 0.5);
}

.t-primary-inverse:focus, .t-primary-inverse *:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.t-secondary-inverse:focus, .t-secondary-inverse *:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.animate {
  animation-fill-mode: both;
  animation-play-state: paused;
}

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

.animate__alternate {
  animation-direction: alternate;
}

.animate.is-running {
  animation-play-state: running;
}

.animate.is-reverse {
  animation-direction: reverse;
}

.animate.is-disabled {
  animation-name: none !important;
}

.a-spin {
  animation-name: animate-1;
  animation-duration: 1s;
  animation-timing-function: linear;
}

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

@media (prefers-reduced-motion) {
  .a-spin {
    animation: none !important;
  }
}

.a-fade {
  animation-name: animate-2;
  animation-duration: 1s;
  animation-timing-function: linear;
}

@keyframes animate-2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.a-fade-slide {
  animation-name: animate-3;
  animation-duration: 1s;
  animation-timing-function: ease;
}

@keyframes animate-3 {
  from {
    transform: translateY(10vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion) {
  .a-fade-slide {
    animation: none !important;
  }
}

.a-bounce {
  animation-name: animate-4;
  animation-duration: 1s;
  animation-timing-function: none;
}

@keyframes animate-4 {
  from,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@media (prefers-reduced-motion) {
  .a-bounce {
    animation: none !important;
  }
}

.d-animate-scroll {
  width: 100px;
  height: 100px;
  background-color: blue;
  animation-fill-mode: both;
  animation-play-state: paused;
  animation-name: animate-5;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

@keyframes animate-5 {
  50% {
    transform: rotate(-90deg);
    background-color: red;
  }
  100% {
    transform: rotate(180deg);
    background-color: green;
  }
}

@media (prefers-reduced-motion) {
  .d-animate-scroll {
    animation: none !important;
  }
}

.d-animate-custom {
  position: fixed;
  top: 2em;
  right: auto;
  bottom: auto;
  left: 50%;
  margin: 0;
  width: 100px;
  height: 100px;
  opacity: 0.5;
  background-color: red;
  transform: translate(-50%, 0) scale(1);
  animation-fill-mode: both;
  animation-play-state: paused;
  animation-name: animate-6;
  animation-duration: 1s;
  animation-timing-function: linear;
}

@keyframes animate-6 {
  from {
    top: 50%;
    background-color: blue;
    transform: translate(-50%, -50%) scale(2);
  }
}

@media (prefers-reduced-motion) {
  .d-animate-custom {
    animation: none !important;
  }
}

audio {
  display: inline-block;
  vertical-align: middle;
}

.audio {
  border-radius: calc(1.02778em + 2px);
}

.audio_content, .audio_info {
  display: block;
  width: 100%;
  border-radius: inherit;
}

.audio_info {
  margin-top: 0;
  padding: 1em;
  text-align: center;
}

.audio_info {
  background-color: #dce4e7;
}

.audio_info.t-primary-inverse, .t-primary-inverse .audio_info {
  background-color: #7395a1;
}

.audio_info.t-secondary-inverse, .t-secondary-inverse .audio_info {
  background-color: #466d7b;
}

.block {
  position: relative;
  padding: calc(3.26px + 18.48*(100vw - 326px)/761*1) calc(4.89px + 27.72*(100vw - 326px)/761*1);
  border-radius: calc(1.02778em + 2px);
}

@media screen and (max-width: 325px) {
  .block {
    padding: 3.26px 4.89px;
  }
}

@media screen and (min-width: 1087px) {
  .block {
    padding: 21.74px 32.61px;
  }
}

.block {
  color: #4e7989;
  background-color: white;
}

.block.t-primary-inverse, .t-primary-inverse .block {
  color: white;
  background-color: #80A5B3;
}

.block.t-secondary-inverse, .t-secondary-inverse .block {
  color: white;
  background-color: #4e7989;
}

.block__page {
  margin-top: 0;
  border-radius: 0;
  padding-top: 3.88888889rem;
  padding-bottom: 3.88888889rem;
  padding-left: 4vw;
  padding-right: 4vw;
}

@media print {
  .block__page {
    padding-top: initial;
    padding-bottom: initial;
  }
}

@media screen and (min-width: 1522px) {
  .block__page {
    padding-left: calc(50vw - 700px);
    padding-right: calc(50vw - 700px);
  }
}

@media print {
  .block__page {
    padding-left: initial;
    padding-right: initial;
  }
}

.block__flush {
  padding: 0;
}

.block__close {
  border: 2px solid;
}

.block__close {
  border-color: #e6e6e6;
}

.block__close.t-primary-inverse, .t-primary-inverse .block__close {
  border-color: #6d8c98;
}

.block__close.t-secondary-inverse, .t-secondary-inverse .block__close {
  border-color: #426774;
}

.block__clear {
  background-color: transparent;
}

.block__clear.t-primary-inverse, .t-primary-inverse .block__clear {
  background-color: transparent;
}

.block__clear.t-secondary-inverse, .t-secondary-inverse .block__clear {
  background-color: transparent;
}

.block__overlay {
  background-color: rgba(255, 255, 255, 0.75);
}

.block__overlay.t-primary-inverse, .t-primary-inverse .block__overlay {
  background-color: rgba(128, 165, 179, 0.75);
}

.block__overlay.t-secondary-inverse, .t-secondary-inverse .block__overlay {
  background-color: rgba(78, 121, 137, 0.75);
}

.block__sharp {
  border-radius: 0;
}

.block__plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-image: none;
}

.block__plain {
  border-color: transparent;
  background-color: transparent;
}

.block__plain.t-primary-inverse, .t-primary-inverse .block__plain {
  border-color: transparent;
  background-color: transparent;
}

.block__plain.t-secondary-inverse, .t-secondary-inverse .block__plain {
  border-color: transparent;
  background-color: transparent;
}

.block__fill {
  background-color: #dce4e7;
}

.block__fill.t-primary-inverse, .t-primary-inverse .block__fill {
  background-color: #7395a1;
}

.block__fill.t-secondary-inverse, .t-secondary-inverse .block__fill {
  background-color: #466d7b;
}

@media print {
  .block {
    padding: 0;
  }
}

.box {
  display: inline-block;
  width: calc(2.05556em + 4px);
  min-height: calc(2.05556em + 4px);
  margin: 0;
  padding: 0.27777778em 0;
  border-radius: calc(1.02778em + 2px);
  font-size: inherit;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

.box::after {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-overflow-scrolling: touch;
}

.box, .box:link, .box:visited {
  border: 2px solid;
}

.box, .box:link, .box:visited {
  border-color: currentColor;
  background-color: white;
  color: #4e7989;
}

.t-primary-inverse.box, .t-primary-inverse.box:link, .t-primary-inverse.box:visited, .t-primary-inverse .box, .t-primary-inverse .box:link, .t-primary-inverse .box:visited {
  border-color: currentColor;
  background-color: #80A5B3;
  color: white;
}

.t-secondary-inverse.box, .t-secondary-inverse.box:link, .t-secondary-inverse.box:visited, .t-secondary-inverse .box, .t-secondary-inverse .box:link, .t-secondary-inverse .box:visited {
  border-color: currentColor;
  background-color: #4e7989;
  color: white;
}

.box__open, .box__open:link, .box__open:visited {
  border-color: transparent;
}

.t-primary-inverse.box__open, .t-primary-inverse.box__open:link, .t-primary-inverse.box__open:visited, .t-primary-inverse .box__open, .t-primary-inverse .box__open:link, .t-primary-inverse .box__open:visited {
  border-color: transparent;
}

.t-secondary-inverse.box__open, .t-secondary-inverse.box__open:link, .t-secondary-inverse.box__open:visited, .t-secondary-inverse .box__open, .t-secondary-inverse .box__open:link, .t-secondary-inverse .box__open:visited {
  border-color: transparent;
}

.box__clear, .box__clear:link, .box__clear:visited, .box__clear:hover, .box__clear:focus, .box__clear:active {
  background-image: none;
}

.box__clear, .box__clear:link, .box__clear:visited, .box__clear:hover, .box__clear:focus, .box__clear:active {
  background-color: transparent;
}

.t-primary-inverse.box__clear, .t-primary-inverse.box__clear:link, .t-primary-inverse.box__clear:visited, .t-primary-inverse.box__clear:hover, .t-primary-inverse.box__clear:focus, .t-primary-inverse.box__clear:active, .t-primary-inverse .box__clear, .t-primary-inverse .box__clear:link, .t-primary-inverse .box__clear:visited, .t-primary-inverse .box__clear:hover, .t-primary-inverse .box__clear:focus, .t-primary-inverse .box__clear:active {
  background-color: transparent;
}

.t-secondary-inverse.box__clear, .t-secondary-inverse.box__clear:link, .t-secondary-inverse.box__clear:visited, .t-secondary-inverse.box__clear:hover, .t-secondary-inverse.box__clear:focus, .t-secondary-inverse.box__clear:active, .t-secondary-inverse .box__clear, .t-secondary-inverse .box__clear:link, .t-secondary-inverse .box__clear:visited, .t-secondary-inverse .box__clear:hover, .t-secondary-inverse .box__clear:focus, .t-secondary-inverse .box__clear:active {
  background-color: transparent;
}

.box__inverse, .box__inverse:link, .box__inverse:visited {
  background-color: #4e7989;
  border-color: transparent;
  color: white;
}

.t-primary-inverse.box__inverse, .t-primary-inverse.box__inverse:link, .t-primary-inverse.box__inverse:visited, .t-primary-inverse .box__inverse, .t-primary-inverse .box__inverse:link, .t-primary-inverse .box__inverse:visited {
  background-color: white;
  border-color: transparent;
  color: #80A5B3;
}

.t-secondary-inverse.box__inverse, .t-secondary-inverse.box__inverse:link, .t-secondary-inverse.box__inverse:visited, .t-secondary-inverse .box__inverse, .t-secondary-inverse .box__inverse:link, .t-secondary-inverse .box__inverse:visited {
  background-color: white;
  border-color: transparent;
  color: #4e7989;
}

.box__sharp {
  border-radius: 0;
}

.box__plain {
  min-height: 0;
  padding: 0;
  border-radius: 0;
}

.box__plain, .box__plain:link, .box__plain:visited, .box__plain:hover, .box__plain:focus, .box__plain:active {
  border: 0;
  background-image: none;
}

.box__plain, .box__plain:link, .box__plain:visited, .box__plain:hover, .box__plain:focus, .box__plain:active {
  border-color: transparent;
  background-color: transparent;
}

.t-primary-inverse.box__plain, .t-primary-inverse.box__plain:link, .t-primary-inverse.box__plain:visited, .t-primary-inverse.box__plain:hover, .t-primary-inverse.box__plain:focus, .t-primary-inverse.box__plain:active, .t-primary-inverse .box__plain, .t-primary-inverse .box__plain:link, .t-primary-inverse .box__plain:visited, .t-primary-inverse .box__plain:hover, .t-primary-inverse .box__plain:focus, .t-primary-inverse .box__plain:active {
  border-color: transparent;
  background-color: transparent;
}

.t-secondary-inverse.box__plain, .t-secondary-inverse.box__plain:link, .t-secondary-inverse.box__plain:visited, .t-secondary-inverse.box__plain:hover, .t-secondary-inverse.box__plain:focus, .t-secondary-inverse.box__plain:active, .t-secondary-inverse .box__plain, .t-secondary-inverse .box__plain:link, .t-secondary-inverse .box__plain:visited, .t-secondary-inverse .box__plain:hover, .t-secondary-inverse .box__plain:focus, .t-secondary-inverse .box__plain:active {
  border-color: transparent;
  background-color: transparent;
}

.box__input, .box__input:link, .box__input:visited {
  border-color: #cccccc;
  background-color: white;
}

.t-primary-inverse.box__input, .t-primary-inverse.box__input:link, .t-primary-inverse.box__input:visited, .t-primary-inverse .box__input, .t-primary-inverse .box__input:link, .t-primary-inverse .box__input:visited {
  border-color: #66848f;
  background-color: #80A5B3;
}

.t-secondary-inverse.box__input, .t-secondary-inverse.box__input:link, .t-secondary-inverse.box__input:visited, .t-secondary-inverse .box__input, .t-secondary-inverse .box__input:link, .t-secondary-inverse .box__input:visited {
  border-color: #3e616e;
  background-color: #4e7989;
}

.box__circle {
  width: calc(2.05556em + 4px);
  padding-right: 0;
  padding-left: 0;
  border-radius: 99999px;
}

.btn {
  display: inline-block;
  width: auto;
  min-height: calc(2.05556em + 4px);
  margin: 0;
  padding: 0.28527778em 1.11111111em 0.27027778em 1.11111111em;
  transition: color 0.25s ease, border 0.25s ease, background 0.25s ease;
  border-radius: calc(1.02778em + 2px);
  background-position: 0 -2px;
  background-size: 110%;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: baseline;
  -webkit-appearance: none;
}

.btn::after {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-overflow-scrolling: touch;
}

.btn, .btn:link, .btn:visited {
  border: 2px solid;
}

.btn, .btn:link, .btn:visited {
  border-color: currentColor;
  background-color: white;
  color: #4e7989;
}

.t-primary-inverse.btn, .t-primary-inverse.btn:link, .t-primary-inverse.btn:visited, .t-primary-inverse .btn, .t-primary-inverse .btn:link, .t-primary-inverse .btn:visited {
  border-color: currentColor;
  background-color: #80A5B3;
  color: white;
}

.t-secondary-inverse.btn, .t-secondary-inverse.btn:link, .t-secondary-inverse.btn:visited, .t-secondary-inverse .btn, .t-secondary-inverse .btn:link, .t-secondary-inverse .btn:visited {
  border-color: currentColor;
  background-color: #4e7989;
  color: white;
}

.btn:hover {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}

.btn:active, .btn.is-active {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.btn[disabled], .btn.is-disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn.is-active .btn_inactive {
  display: none;
}

.btn:not(.is-active) .btn_active {
  display: none;
}

.btn__open, .btn__open:link, .btn__open:visited {
  border-color: transparent;
}

.t-primary-inverse.btn__open, .t-primary-inverse.btn__open:link, .t-primary-inverse.btn__open:visited, .t-primary-inverse .btn__open, .t-primary-inverse .btn__open:link, .t-primary-inverse .btn__open:visited {
  border-color: transparent;
}

.t-secondary-inverse.btn__open, .t-secondary-inverse.btn__open:link, .t-secondary-inverse.btn__open:visited, .t-secondary-inverse .btn__open, .t-secondary-inverse .btn__open:link, .t-secondary-inverse .btn__open:visited {
  border-color: transparent;
}

.btn__clear, .btn__clear:link, .btn__clear:visited, .btn__clear:hover, .btn__clear:focus, .btn__clear:active {
  background-image: none;
}

.btn__clear, .btn__clear:link, .btn__clear:visited, .btn__clear:hover, .btn__clear:focus, .btn__clear:active {
  background-color: transparent;
}

.t-primary-inverse.btn__clear, .t-primary-inverse.btn__clear:link, .t-primary-inverse.btn__clear:visited, .t-primary-inverse.btn__clear:hover, .t-primary-inverse.btn__clear:focus, .t-primary-inverse.btn__clear:active, .t-primary-inverse .btn__clear, .t-primary-inverse .btn__clear:link, .t-primary-inverse .btn__clear:visited, .t-primary-inverse .btn__clear:hover, .t-primary-inverse .btn__clear:focus, .t-primary-inverse .btn__clear:active {
  background-color: transparent;
}

.t-secondary-inverse.btn__clear, .t-secondary-inverse.btn__clear:link, .t-secondary-inverse.btn__clear:visited, .t-secondary-inverse.btn__clear:hover, .t-secondary-inverse.btn__clear:focus, .t-secondary-inverse.btn__clear:active, .t-secondary-inverse .btn__clear, .t-secondary-inverse .btn__clear:link, .t-secondary-inverse .btn__clear:visited, .t-secondary-inverse .btn__clear:hover, .t-secondary-inverse .btn__clear:focus, .t-secondary-inverse .btn__clear:active {
  background-color: transparent;
}

.btn__inverse, .btn__inverse:link, .btn__inverse:visited {
  background-color: #4e7989;
  border-color: transparent;
  color: white;
}

.t-primary-inverse.btn__inverse, .t-primary-inverse.btn__inverse:link, .t-primary-inverse.btn__inverse:visited, .t-primary-inverse .btn__inverse, .t-primary-inverse .btn__inverse:link, .t-primary-inverse .btn__inverse:visited {
  background-color: white;
  border-color: transparent;
  color: #80A5B3;
}

.t-secondary-inverse.btn__inverse, .t-secondary-inverse.btn__inverse:link, .t-secondary-inverse.btn__inverse:visited, .t-secondary-inverse .btn__inverse, .t-secondary-inverse .btn__inverse:link, .t-secondary-inverse .btn__inverse:visited {
  background-color: white;
  border-color: transparent;
  color: #4e7989;
}

.btn__sharp {
  border-radius: 0;
}

.btn__plain {
  min-height: 0;
  padding: 0;
  border-radius: 0;
}

.btn__plain, .btn__plain:link, .btn__plain:visited, .btn__plain:hover, .btn__plain:focus, .btn__plain:active {
  border: 0;
  background-image: none;
  color: inherit;
}

.btn__plain, .btn__plain:link, .btn__plain:visited, .btn__plain:hover, .btn__plain:focus, .btn__plain:active {
  border-color: transparent;
  background-color: transparent;
}

.t-primary-inverse.btn__plain, .t-primary-inverse.btn__plain:link, .t-primary-inverse.btn__plain:visited, .t-primary-inverse.btn__plain:hover, .t-primary-inverse.btn__plain:focus, .t-primary-inverse.btn__plain:active, .t-primary-inverse .btn__plain, .t-primary-inverse .btn__plain:link, .t-primary-inverse .btn__plain:visited, .t-primary-inverse .btn__plain:hover, .t-primary-inverse .btn__plain:focus, .t-primary-inverse .btn__plain:active {
  border-color: transparent;
  background-color: transparent;
}

.t-secondary-inverse.btn__plain, .t-secondary-inverse.btn__plain:link, .t-secondary-inverse.btn__plain:visited, .t-secondary-inverse.btn__plain:hover, .t-secondary-inverse.btn__plain:focus, .t-secondary-inverse.btn__plain:active, .t-secondary-inverse .btn__plain, .t-secondary-inverse .btn__plain:link, .t-secondary-inverse .btn__plain:visited, .t-secondary-inverse .btn__plain:hover, .t-secondary-inverse .btn__plain:focus, .t-secondary-inverse .btn__plain:active {
  border-color: transparent;
  background-color: transparent;
}

.btn__input, .btn__input:link, .btn__input:visited {
  border-color: #cccccc;
  background-color: white;
}

.t-primary-inverse.btn__input, .t-primary-inverse.btn__input:link, .t-primary-inverse.btn__input:visited, .t-primary-inverse .btn__input, .t-primary-inverse .btn__input:link, .t-primary-inverse .btn__input:visited {
  border-color: #66848f;
  background-color: #80A5B3;
}

.t-secondary-inverse.btn__input, .t-secondary-inverse.btn__input:link, .t-secondary-inverse.btn__input:visited, .t-secondary-inverse .btn__input, .t-secondary-inverse .btn__input:link, .t-secondary-inverse .btn__input:visited {
  border-color: #3e616e;
  background-color: #4e7989;
}

.btn__wide {
  width: 100%;
}

.btn__flush {
  padding: 0;
}

.btn__flush-x {
  padding-right: 0;
  padding-left: 0;
}

.btn__flush-y {
  padding-top: 0;
  padding-bottom: 0;
}

.btn__square {
  width: calc(2.05556em + 4px);
  padding-right: 0;
  padding-left: 0;
}

.btn__icon {
  padding: 0.27777778em;
}

.btn__circle {
  width: calc(2.05556em + 4px);
  padding-right: 0;
  padding-left: 0;
  border-radius: 99999px;
}

.btn-wrap {
  display: inline-block;
  margin: 0;
}

.card {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  border-radius: calc(1.02778em + 2px);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.card > * {
  display: block;
  flex-grow: 1;
  margin-top: 0;
  border-radius: 0;
}

.card > *:nth-child(1) {
  flex-basis: 23.33333333rem;
}

.card > *:nth-child(2) {
  flex-basis: 23.33333333rem;
}

.card__gap {
  margin-right: -1vw;
  margin-left: -1vw;
  margin-bottom: -2vw;
}

.card__gap > * {
  margin-right: 1vw;
  margin-left: 1vw;
  margin-bottom: 2vw;
}

.card.is-overlay {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.carousel_prev, .carousel_next {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: auto;
  transform: translate(0, -50%);
  padding: 1.5em;
}

.carousel_prev .graphic, .carousel_next .graphic {
  width: 1.5em;
}

.carousel_prev {
  left: -1.5em;
}

.carousel_next {
  right: -1.5em;
}

.carousel_dots {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 1.5em;
  left: 50%;
  transform: translate(-50%, 0);
}

.carousel.is-enabled .carousel_item {
  margin-top: 0;
  padding-right: 3em;
  padding-left: 3em;
  width: 100%;
}

.carousel.is-enabled:not([data-carousel-dots='false']) {
  border-bottom: solid transparent;
  border-bottom-width: 1.55555556em;
}

.carousel.is-enabled:not([data-carousel-dots='false']) .carousel_dots {
  bottom: -1.55555556em;
}

.carousel__flush .carousel_prev {
  left: 0;
}

.carousel__flush .carousel_next {
  right: 0;
}

.carousel__flush.is-enabled .flickity-slider > * {
  padding-right: 0;
  padding-left: 0;
}

.carousel__flush.is-enabled:not([data-carousel-dots='false']) {
  border-bottom: 0;
}

.carousel__flush.is-enabled:not([data-carousel-dots='false']) .carousel_dots {
  bottom: 1.5em;
}

@media screen and (max-width: 759px) {
  .carousel_prev, .carousel_next {
    display: none;
  }
  .carousel__pad.is-enabled .flickity-slider > * {
    padding-right: 0;
    padding-left: 0;
  }
}

.columns > * {
  break-inside: avoid;
}

.columns__gap {
  column-gap: 2vw;
}

.columns__width-xxxsmall {
  column-width: 7.77777778rem;
}

.columns__width-xxsmall {
  column-width: 15.55555556rem;
}

.columns__width-xsmall {
  column-width: 23.33333333rem;
}

.columns__width-small {
  column-width: 31.11111111rem;
}

.columns__width-medium {
  column-width: 38.88888889rem;
}

.columns__width-large {
  column-width: 46.66666667rem;
}

.columns__width-xlarge {
  column-width: 54.44444444rem;
}

.columns__width-xxlarge {
  column-width: 62.22222222rem;
}

.columns__width-xxxlarge {
  column-width: 70rem;
}

.content {
  padding-top: 3.88888889rem;
  padding-bottom: 3.88888889rem;
  padding-left: 4vw;
  padding-right: 4vw;
  margin: 0;
}

@media print {
  .content {
    padding-top: initial;
    padding-bottom: initial;
  }
}

@media screen and (min-width: 1522px) {
  .content {
    padding-left: calc(50vw - 700px);
    padding-right: calc(50vw - 700px);
  }
}

@media print {
  .content {
    padding-left: initial;
    padding-right: initial;
  }
}

.content__flush {
  padding: 0;
}

.sections-wrapper {
  color: #4e7989;
  background-color: white;
}

.sections-wrapper.t-primary-inverse, .t-primary-inverse .sections-wrapper {
  color: white;
  background-color: #80A5B3;
}

.sections-wrapper.t-secondary-inverse, .t-secondary-inverse .sections-wrapper {
  color: white;
  background-color: #4e7989;
}

.sections {
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.sections {
  color: #4e7989;
  background-color: white;
}

.sections.t-primary-inverse, .t-primary-inverse .sections {
  color: white;
  background-color: #80A5B3;
}

.sections.t-secondary-inverse, .t-secondary-inverse .sections {
  color: white;
  background-color: #4e7989;
}

.sections > * {
  flex-basis: 16.66666667rem;
  flex-grow: 1;
  margin-top: 0;
  border: 0 !important;
  padding: 3.88888889rem 1.94444444rem;
  text-align: center;
}

.sections .graphic {
  max-width: 13.88888889rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.sections p {
  font-size: calc(1.16667em + 0.11111*(100vw - 326px)/761*18);
}

@media screen and (max-width: 325px) {
  .sections p {
    font-size: 1.16666667em;
  }
}

@media screen and (min-width: 1087px) {
  .sections p {
    font-size: 1.27777778em;
  }
}

.sections-rainbow {
  background-color: #3690C0;
}

.sections-sunday {
  background-color: #996D91;
}

.sections-elephant {
  background-color: #627D96;
}

.sections-children {
  background-color: #8873A4;
}

.control {
  display: flex;
}

.control_left {
  margin-right: auto;
}

.control_right {
  margin-left: auto;
}

.control_center-x {
  margin-right: auto;
  margin-left: auto;
}

.control .control {
  margin-top: 0;
}

.control.control:not(.control__vertical) > [class^="input-"]:not(:first-child), .control.control:not(.control__vertical) > .btn:not(:first-child), .control.control:not(.control__vertical) > .box:not(:first-child),
.control.control:not(.control__vertical) > .x-popover:not(:first-child), .control.control:not(.control__vertical) > .x-tooltip:not(:first-child) {
  margin-left: 0.27777778em;
}

.control.control__vertical {
  flex-direction: column;
}

.control.control__vertical > [class^="input-"]:not(:first-child), .control.control__vertical > .btn:not(:first-child), .control.control__vertical > .box:not(:first-child),
.control.control__vertical > .x-popover:not(:first-child), .control.control__vertical > .x-tooltip:not(:first-child) {
  margin-top: 0.27777778em;
}

.control.control__flush > [class^="input-"]:focus, .control.control__flush > .btn:focus, .control.control__flush > .box:focus,
.control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus, .control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus, .control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus, .control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > [class^="input-"]:focus, .control.control__flush > .x-tooltip > [class^="input-"]:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .btn:focus, .control.control__flush > .x-tooltip > .btn:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus, .control.control__flush > .x-popover > .box:focus, .control.control__flush > .x-tooltip > .box:focus {
  position: relative;
  z-index: 1;
}

.control.control__flush:not(.control__vertical) > [class^="input-"]:not(:first-child), .control.control__flush:not(.control__vertical) > .btn:not(:first-child), .control.control__flush:not(.control__vertical) > .box:not(:first-child),
.control.control__flush:not(.control__vertical) > .x-popover:not(:first-child), .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) {
  margin-left: -2px;
}

.control.control__flush:not(.control__vertical) > [class^="input-"]:not(:first-child), .control.control__flush:not(.control__vertical) > .btn:not(:first-child), .control.control__flush:not(.control__vertical) > .box:not(:first-child),
.control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:first-child) > .box {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.control.control__flush:not(.control__vertical) > [class^="input-"]:not(:last-child), .control.control__flush:not(.control__vertical) > .btn:not(:last-child), .control.control__flush:not(.control__vertical) > .box:not(:last-child),
.control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__flush:not(.control__vertical) > .x-tooltip:not(:last-child) > .box {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.control.control__flush.control__vertical > [class^="input-"]:not(:first-child), .control.control__flush.control__vertical > .btn:not(:first-child), .control.control__flush.control__vertical > .box:not(:first-child),
.control.control__flush.control__vertical > .x-popover:not(:first-child), .control.control__flush.control__vertical > .x-tooltip:not(:first-child) {
  margin-top: -2px;
}

.control.control__flush.control__vertical > [class^="input-"]:not(:first-child), .control.control__flush.control__vertical > .btn:not(:first-child), .control.control__flush.control__vertical > .box:not(:first-child),
.control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:first-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:first-child) > .box {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.control.control__flush.control__vertical > [class^="input-"]:not(:last-child), .control.control__flush.control__vertical > .btn:not(:last-child), .control.control__flush.control__vertical > .box:not(:last-child),
.control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__flush.control__vertical > .x-popover:not(:last-child) > .box, .control.control__flush.control__vertical > .x-tooltip:not(:last-child) > .box {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.control.control__combine > [class^="input-"]:focus, .control.control__combine > .btn:focus, .control.control__combine > .box:focus,
.control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus, .control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus, .control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus, .control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > [class^="input-"]:focus, .control.control__combine > .x-tooltip > [class^="input-"]:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .btn:focus, .control.control__combine > .x-tooltip > .btn:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus, .control.control__combine > .x-popover > .box:focus, .control.control__combine > .x-tooltip > .box:focus {
  position: relative;
  z-index: 1;
}

.control.control__combine:not(.control__vertical) > [class^="input-"]:not(:first-child), .control.control__combine:not(.control__vertical) > .btn:not(:first-child), .control.control__combine:not(.control__vertical) > .box:not(:first-child),
.control.control__combine:not(.control__vertical) > .x-popover:not(:first-child), .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) {
  margin-left: 0;
}

.control.control__combine:not(.control__vertical) > [class^="input-"]:not(:first-child), .control.control__combine:not(.control__vertical) > .btn:not(:first-child), .control.control__combine:not(.control__vertical) > .box:not(:first-child),
.control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:first-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:first-child) > .box {
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.control.control__combine:not(.control__vertical) > [class^="input-"]:not(:last-child), .control.control__combine:not(.control__vertical) > .btn:not(:last-child), .control.control__combine:not(.control__vertical) > .box:not(:last-child),
.control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .btn, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-popover:not(:last-child) > .box, .control.control__combine:not(.control__vertical) > .x-tooltip:not(:last-child) > .box {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.control.control__combine.control__vertical > [class^="input-"]:not(:first-child), .control.control__combine.control__vertical > .btn:not(:first-child), .control.control__combine.control__vertical > .box:not(:first-child),
.control.control__combine.control__vertical > .x-popover:not(:first-child), .control.control__combine.control__vertical > .x-tooltip:not(:first-child) {
  margin-top: 0;
}

.control.control__combine.control__vertical > [class^="input-"]:not(:first-child), .control.control__combine.control__vertical > .btn:not(:first-child), .control.control__combine.control__vertical > .box:not(:first-child),
.control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:first-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:first-child) > .box {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.control.control__combine.control__vertical > [class^="input-"]:not(:last-child), .control.control__combine.control__vertical > .btn:not(:last-child), .control.control__combine.control__vertical > .box:not(:last-child),
.control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > [class^="input-"], .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .btn, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box, .control.control__combine.control__vertical > .x-popover:not(:last-child) > .box, .control.control__combine.control__vertical > .x-tooltip:not(:last-child) > .box {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.x-equal::after {
  display: none;
  content: 'true';
}

.d-equal {
  padding: 1em;
}

.d-equal {
  background-color: #dce4e7;
}

.d-equal.t-primary-inverse, .t-primary-inverse .d-equal {
  background-color: #7395a1;
}

.d-equal.t-secondary-inverse, .t-secondary-inverse .d-equal {
  background-color: #466d7b;
}

.fader:not(.is-enabled) > *:first-child {
  z-index: 1;
}

.fader.is-enabled > * {
  transition: opacity 1s ease-in;
  opacity: 0;
}

.fader.is-enabled > *.is-active {
  opacity: 1;
  z-index: 1;
  transition-timing-function: ease-in-out;
}

.figure_caption {
  display: block;
  margin-top: 0.27777778em;
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
}

@media screen and (max-width: 325px) {
  .figure_caption {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  .figure_caption {
    font-size: 0.77777778em;
  }
}

.figure_caption {
  color: #95afb8;
}

.figure_caption.t-primary-inverse, .t-primary-inverse .figure_caption {
  color: rgba(255, 255, 255, 0.6);
}

.figure_caption.t-secondary-inverse, .t-secondary-inverse .figure_caption {
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  padding-top: 3.88888889rem;
  padding-bottom: 3.88888889rem;
  border-left-width: 4vw;
  border-right-width: 4vw;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin: 0;
  border-style: solid;
  border-color: transparent;
  margin-right: -1vw;
  margin-left: -1vw;
  margin-bottom: -2vw;
}

@media print {
  .footer {
    padding-top: initial;
    padding-bottom: initial;
  }
}

@media screen and (min-width: 1522px) {
  .footer {
    border-left-width: calc(50vw - 700px);
    border-right-width: calc(50vw - 700px);
  }
}

@media print {
  .footer {
    border-left-width: initial;
    border-right-width: initial;
  }
}

.footer {
  color: #4e7989;
  background-color: white;
}

.footer.t-primary-inverse, .t-primary-inverse .footer {
  color: white;
  background-color: #80A5B3;
}

.footer.t-secondary-inverse, .t-secondary-inverse .footer {
  color: white;
  background-color: #4e7989;
}

.footer > * {
  margin-right: 1vw;
  margin-left: 1vw;
  margin-bottom: 2vw;
}

.footer > * {
  flex-basis: 15.55555556rem;
  flex-grow: 1;
  margin-top: 0;
}

.footer > * * + * {
  margin-top: 1em;
}

.footer > *:last-child {
  flex-grow: 1.5;
}

.footer a:link,.footer a:visited, .footer a:link:link, .footer a:link:visited, .footer a:visited:link, .footer a:visited:visited {
  border-bottom: 0;
  text-decoration: none;
}

@media screen and (min-width: 955px) {
  .footer > *:last-child {
    justify-content: flex-end;
    text-align: right;
  }
}

form {
  padding: 0;
}

fieldset {
  border: 0;
  padding: 0;
}

legend {
  display: none;
}

datalist {
  display: none;
}

.form-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-right: -1vw;
  margin-left: -1vw;
  margin-bottom: -0.25em;
}

.form-item > * {
  margin-right: 1vw;
  margin-left: 1vw;
  margin-bottom: 0.25em;
}

.form-item + .form-item {
  margin-top: 0.77777778em;
}

.form-item_label {
  display: block;
  flex-basis: 15.55555556rem;
}

.form-item_label {
  color: black;
}

.form-item_label.t-primary-inverse, .t-primary-inverse .form-item_label {
  color: white;
}

.form-item_label.t-secondary-inverse, .t-secondary-inverse .form-item_label {
  color: white;
}

.form-item_content {
  flex-basis: 15.55555556rem;
  flex-grow: 1;
  margin-top: 0;
}

.form-item_info {
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
  margin-top: 0.38888889em;
}

@media screen and (max-width: 325px) {
  .form-item_info {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  .form-item_info {
    font-size: 0.77777778em;
  }
}

.form-item_info + .form-item_info {
  margin-top: 0;
}

.form-item.is-optional .form-item_label::after {
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
  content: ' (optional)';
}

@media screen and (max-width: 325px) {
  .form-item.is-optional .form-item_label::after {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  .form-item.is-optional .form-item_label::after {
    font-size: 0.77777778em;
  }
}

.form-item.is-optional .form-item_label::after {
  color: #95afb8;
}

.is-optional.form-item.t-primary-inverse .form-item_label::after, .t-primary-inverse .form-item.is-optional .form-item_label::after {
  color: rgba(255, 255, 255, 0.6);
}

.is-optional.form-item.t-secondary-inverse .form-item_label::after, .t-secondary-inverse .form-item.is-optional .form-item_label::after {
  color: rgba(255, 255, 255, 0.6);
}

.form-item.is-required .form-item_label::after {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  content: ' (required)';
  -webkit-overflow-scrolling: touch;
}

.form-item.is-error .form-item_label {
  color: #4e7989;
}

.form-item.is-error .input-text, .form-item.is-error .input-textarea, .form-item.is-error .input-select, .form-item.is-error .input-pseudo, .form-item.is-error .input-affix, .form-item.is-error .input-checkbox + label::before, .form-item.is-error .input-radio + label::before {
  border-color: #4e7989;
}

.form-item__wide {
  display: block;
}

.frame {
  position: relative;
}

.frame_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
}

.gallery > * {
  flex-basis: 16.66666667rem;
  flex-grow: 1;
  margin-top: 0;
}

.graphic {
  position: relative;
  display: block;
}

.graphic_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.graphic_text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-overflow-scrolling: touch;
}

.graphic__mono path[stroke],
.graphic__mono circle[stroke] {
  stroke: currentColor;
}

.graphic__mono path:not([fill='none']),
.graphic__mono circle:not([fill='none']) {
  fill: currentColor;
}

.graphic__icon-text {
  display: inline-block;
  width: 1.11111111em;
  margin-top: 0;
  vertical-align: -0.22222222em;
  box-sizing: content-box;
}

.graphic__icon-text::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 100%;
}

.graphic__icon-text .u-ratio {
  display: none;
}

.graphic__icon-medium {
  display: inline-block;
  width: 1.11111111rem;
  margin-top: 0;
  vertical-align: -0.22222222em;
  box-sizing: content-box;
}

.graphic__icon-medium::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 100%;
}

.graphic__icon-medium .u-ratio {
  display: none;
}

.graphic__icon-large {
  display: inline-block;
  width: 2.5rem;
  margin-top: 0;
  vertical-align: -0.22222222em;
  box-sizing: content-box;
}

.graphic__icon-large::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 100%;
}

.graphic__icon-large .u-ratio {
  display: none;
}

.graphic__icon-xlarge {
  display: inline-block;
  width: 3.33333333rem;
  margin-top: 0;
  vertical-align: -0.22222222em;
  box-sizing: content-box;
}

.graphic__icon-xlarge::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 100%;
}

.graphic__icon-xlarge .u-ratio {
  display: none;
}

.graphic__text-left {
  display: inline-block;
  margin-left: 0.22222222em;
}

.graphic__text-right {
  display: inline-block;
  margin-right: 0.22222222em;
}

.graphic__block {
  display: block;
}

.graphic__inline {
  display: inline-block;
}

.graphic-repo {
  display: none;
}

[class^='g-icon-'] path,
[class^='g-icon-'] circle,
[class*=' g-icon-'] path,
[class*=' g-icon-'] circle {
  transition-property: opacity, transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

.g-icon-menu path,
.g-icon-menu circle {
  transform-origin: center;
}

.g-icon-menu.is-active path:nth-of-type(1),
.g-icon-menu.is-active circle:nth-of-type(1),
.is-active > .g-icon-menu path:nth-of-type(1),
.is-active > .g-icon-menu circle:nth-of-type(1) {
  transform: rotate(45deg);
}

.g-icon-menu.is-active path:nth-of-type(2),
.g-icon-menu.is-active circle:nth-of-type(2),
.is-active > .g-icon-menu path:nth-of-type(2),
.is-active > .g-icon-menu circle:nth-of-type(2) {
  transform: rotate(-45deg);
}

.g-icon-menu.is-active path:nth-of-type(3), .g-icon-menu.is-active path:nth-of-type(4),
.g-icon-menu.is-active circle:nth-of-type(3),
.g-icon-menu.is-active circle:nth-of-type(4),
.is-active > .g-icon-menu path:nth-of-type(3),
.is-active > .g-icon-menu path:nth-of-type(4),
.is-active > .g-icon-menu circle:nth-of-type(3),
.is-active > .g-icon-menu circle:nth-of-type(4) {
  transform: scale(0);
  opacity: 0;
}

.g-icon-search path {
  transform-origin: center;
}

.g-icon-search.is-active path:nth-of-type(1),
.g-icon-search.is-active circle:nth-of-type(1),
.is-active > .g-icon-search path:nth-of-type(1),
.is-active > .g-icon-search circle:nth-of-type(1) {
  transform: rotate(45deg);
  opacity: 1;
}

.g-icon-search.is-active path:nth-of-type(2),
.g-icon-search.is-active circle:nth-of-type(2),
.is-active > .g-icon-search path:nth-of-type(2),
.is-active > .g-icon-search circle:nth-of-type(2) {
  transform: rotate(-45deg);
  opacity: 1;
}

.g-icon-search.is-active path:nth-of-type(3),
.g-icon-search.is-active circle:nth-of-type(3),
.is-active > .g-icon-search path:nth-of-type(3),
.is-active > .g-icon-search circle:nth-of-type(3) {
  transform: scale(0);
  opacity: 0;
}

.d-graphic-icon {
  overflow: hidden;
  text-align: left;
  text-indent: -99999px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  width: 5.55555556em;
  height: 5.09277778em;
  -webkit-overflow-scrolling: touch;
}

.d-graphic-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='91.67'%3E%3Cpath d='M87.5,50V91.67H0V12.5H50v8.33H8.33v62.5H79.17V50H87.5ZM100,0H54.22L71,16.67,42,46.13,53.74,57.91,82.81,28.45,100,45.83V0Z' fill='black'/%3E%3C/svg%3E");
}

.d-graphic-icon.t-primary-inverse, .t-primary-inverse .d-graphic-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='91.67'%3E%3Cpath d='M87.5,50V91.67H0V12.5H50v8.33H8.33v62.5H79.17V50H87.5ZM100,0H54.22L71,16.67,42,46.13,53.74,57.91,82.81,28.45,100,45.83V0Z' fill='white'/%3E%3C/svg%3E");
}

.d-graphic-icon.t-secondary-inverse, .t-secondary-inverse .d-graphic-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='91.67'%3E%3Cpath d='M87.5,50V91.67H0V12.5H50v8.33H8.33v62.5H79.17V50H87.5ZM100,0H54.22L71,16.67,42,46.13,53.74,57.91,82.81,28.45,100,45.83V0Z' fill='white'/%3E%3C/svg%3E");
}

.grid + *,
* + .grid {
  margin-top: 2.91666667rem;
}

.grid__bg > *:nth-child(1) {
  z-index: 1;
}

.grid__bg > *:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.grid__bg > *:nth-child(2) .image {
  margin-bottom: -3.88888889rem;
}

.grid__split {
  display: -ms-grid;
  display: grid;
  grid-gap: 2vw 2vw;
  -ms-grid-rows: auto 2vw auto;
  -ms-grid-columns: auto;
  grid-template: 'a' 'b' / auto;
}

.grid__split > * {
  margin-top: 0;
}

.grid__split > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: a;
}

.grid__split > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: b;
}

@media screen and (min-width: 933px) {
  .grid__split {
    -ms-grid-rows: auto;
    -ms-grid-columns: 23.33333333fr 2vw 23.33333333fr;
    grid-template: "a b"/23.33333333fr 23.33333333fr;
  }
  .grid__split.grid__bg > *:nth-child(2) .image {
    margin-left: -40%;
  }
  .grid__split > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid__split > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.grid__sidebar {
  display: -ms-grid;
  display: grid;
  grid-gap: 2vw 2vw;
  -ms-grid-rows: auto 2vw auto;
  -ms-grid-columns: auto;
  grid-template: 'a' 'b' / auto;
}

.grid__sidebar > * {
  margin-top: 0;
}

.grid__sidebar > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: a;
}

.grid__sidebar > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: b;
}

@media screen and (min-width: 933px) {
  .grid__sidebar > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid__sidebar > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media screen and (min-width: 933px) {
  .grid__sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 38.88888889fr 2vw 7.77777778fr;
    grid-template: "a b"/38.88888889fr 7.77777778fr;
  }
  .grid__sidebar > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid__sidebar > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .grid__sidebar > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .grid__sidebar > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.header {
  padding-top: 2.91666667rem;
  padding-bottom: 2.91666667rem;
  padding-left: 4vw;
  padding-right: 4vw;
  transition-property: transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin-top: 0;
  transform-origin: top;
  z-index: 500;
}

@media print {
  .header {
    padding-top: initial;
    padding-bottom: initial;
  }
}

@media screen and (min-width: 1522px) {
  .header {
    padding-left: calc(50vw - 700px);
    padding-right: calc(50vw - 700px);
  }
}

@media print {
  .header {
    padding-left: initial;
    padding-right: initial;
  }
}

@media (prefers-reduced-motion) {
  .header {
    transition: none !important;
  }
}

.header {
  color: #4e7989;
}

.header.t-primary-inverse, .t-primary-inverse .header {
  color: white;
}

.header.t-secondary-inverse, .t-secondary-inverse .header {
  color: white;
}

.header::before {
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  pointer-events: none;
}

@media (prefers-reduced-motion) {
  .header::before {
    transition: none !important;
  }
}

.header::before {
  background-color: white;
}

.header.t-primary-inverse::before, .t-primary-inverse .header::before {
  background-color: #80A5B3;
}

.header.t-secondary-inverse::before, .t-secondary-inverse .header::before {
  background-color: #4e7989;
}

.header_inner {
  transition-property: transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (prefers-reduced-motion) {
  .header_inner {
    transition: none !important;
  }
}

.header_inner > * {
  margin-top: 0;
}

.header_contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_contact > * {
  margin-top: 0;
}

.header_contact > *:not(:first-child) {
  margin-left: 0.5em;
}

.header_logo {
  transition-property: transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: calc(100% - 16vw);
  max-width: calc(150px*360/127);
  margin-top: 0;
  transform: translate(-50%, -50%) scale(0.33333333);
  z-index: 600;
}

@media (prefers-reduced-motion) {
  .header_logo {
    transition: none !important;
  }
}

.header_menu, .header_phone {
  font-weight: bold;
  text-transform: uppercase;
}

.is-header-anchor-gone .header {
  transform: scaleY(0.5);
}

.is-header-anchor-gone .header .header_inner {
  transform: scaleY(2);
}

.is-header-anchor-gone .header .header_logo,
.is-header-nav-active .header .header_logo {
  transform: translate(-50%, -50%) scale(0.26666667);
}

.header__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}

.header__overlay::before {
  opacity: 0;
}

.header__overlay .header_logo {
  transform: translate(-50%, 10vh);
}

.is-header-anchor-gone .header__overlay::before {
  opacity: 1;
}

.header-anchor {
  margin-top: 0;
}

.header-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  text-align: center;
  overflow: auto;
  z-index: 400;
  -webkit-overflow-scrolling: touch;
}

.header-nav {
  color: #4e7989;
  background-color: white;
}

.header-nav.t-primary-inverse, .t-primary-inverse .header-nav {
  color: white;
  background-color: #80A5B3;
}

.header-nav.t-secondary-inverse, .t-secondary-inverse .header-nav {
  color: white;
  background-color: #4e7989;
}

.header-spacer {
  padding-left: 4vw;
  padding-right: 4vw;
}

@media screen and (min-width: 1522px) {
  .header-spacer {
    padding-left: calc(50vw - 700px);
    padding-right: calc(50vw - 700px);
  }
}

@media print {
  .header-spacer {
    padding-left: initial;
    padding-right: initial;
  }
}

.header-spacer {
  background-color: white;
}

.header-spacer.t-primary-inverse, .t-primary-inverse .header-spacer {
  background-color: #80A5B3;
}

.header-spacer.t-secondary-inverse, .t-secondary-inverse .header-spacer {
  background-color: #4e7989;
}

.header-spacer::before {
  display: block;
  height: calc(150px + 3.88889rem + 10vh);
  content: '';
}

img,
svg {
  display: inline-block;
  vertical-align: baseline;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$='.svg'] {
    width: 100%;
    height: 100%;
  }
}

.image {
  border-radius: calc(1.02778em + 2px);
}

.image_content {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.image__frame {
  position: relative;
}

.image__frame .image_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image__circle {
  border-radius: 99999px;
}

.image__diamond {
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0% 50%);
}

.image__pentagon {
  -webkit-clip-path: polygon(50% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 40%);
  clip-path: polygon(50% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 40%);
}

.image__cover .image_content {
  font-family: "object-fit:cover";
  object-fit: cover;
}

.image__contain .image_content {
  font-family: "object-fit:contain";
  object-fit: contain;
}

.image__sharp {
  border-radius: 0;
}

.image__plain {
  border-radius: 0;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

::-webkit-search-decoration,
::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

::-ms-clear {
  display: none;
}

::-ms-expand {
  display: none;
}

input[type='date']::-webkit-inner-spin-button,
input[type='datetime-local']::-webkit-inner-spin-button,
input[type='time']::-webkit-inner-spin-button,
input[type='month']::-webkit-inner-spin-button,
input[type='week']::-webkit-inner-spin-button {
  display: none;
}

.input-text,
.input-textarea,
.input-select,
.input-pseudo,
.input-affix {
  display: inline-block;
  transition: color 0.25s ease, border 0.25s ease, background 0.25s ease;
  margin: 0;
  border: 2px solid;
  border-radius: calc(1.02778em + 2px);
  padding: 0.28527778em 0.55555556em 0.27027778em 0.55555556em;
  width: 100%;
  max-width: 100%;
  min-height: calc(2.05556em + 4px);
  vertical-align: baseline;
  text-align: left;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-text,
.input-textarea,
.input-select,
.input-pseudo,
.input-affix {
  border-color: #cccccc;
  background-color: white;
}

.input-text.t-primary-inverse, .input-textarea.t-primary-inverse, .input-select.t-primary-inverse, .input-pseudo.t-primary-inverse, .input-affix.t-primary-inverse, .t-primary-inverse .input-text, .t-primary-inverse .input-textarea, .t-primary-inverse .input-select, .t-primary-inverse .input-pseudo, .t-primary-inverse .input-affix {
  border-color: #66848f;
  background-color: #80A5B3;
}

.input-text.t-secondary-inverse, .input-textarea.t-secondary-inverse, .input-select.t-secondary-inverse, .input-pseudo.t-secondary-inverse, .input-affix.t-secondary-inverse, .t-secondary-inverse .input-text, .t-secondary-inverse .input-textarea, .t-secondary-inverse .input-select, .t-secondary-inverse .input-pseudo, .t-secondary-inverse .input-affix {
  border-color: #3e616e;
  background-color: #4e7989;
}

.input-text:-ms-input-placeholder, .input-textarea:-ms-input-placeholder, .input-select:-ms-input-placeholder, .input-pseudo:-ms-input-placeholder, .input-affix:-ms-input-placeholder {
  opacity: 1;
}

.input-text::-ms-input-placeholder, .input-textarea::-ms-input-placeholder, .input-select::-ms-input-placeholder, .input-pseudo::-ms-input-placeholder, .input-affix::-ms-input-placeholder {
  opacity: 1;
}

.input-text::placeholder,
.input-textarea::placeholder,
.input-select::placeholder,
.input-pseudo::placeholder,
.input-affix::placeholder {
  opacity: 1;
}

.input-text:-ms-input-placeholder, .input-textarea:-ms-input-placeholder, .input-select:-ms-input-placeholder, .input-pseudo:-ms-input-placeholder, .input-affix:-ms-input-placeholder {
  color: #b8c9d0;
}

.input-text::-ms-input-placeholder, .input-textarea::-ms-input-placeholder, .input-select::-ms-input-placeholder, .input-pseudo::-ms-input-placeholder, .input-affix::-ms-input-placeholder {
  color: #b8c9d0;
}

.input-text::placeholder,
.input-textarea::placeholder,
.input-select::placeholder,
.input-pseudo::placeholder,
.input-affix::placeholder {
  color: #b8c9d0;
}

.input-text:focus, .input-textarea:focus, .input-select:focus, .input-pseudo:focus, .input-affix:focus {
  border-color: #4e7989;
}

.input-text.t-primary-inverse:focus, .input-textarea.t-primary-inverse:focus, .input-select.t-primary-inverse:focus, .input-pseudo.t-primary-inverse:focus, .input-affix.t-primary-inverse:focus, .t-primary-inverse .input-text:focus, .t-primary-inverse .input-textarea:focus, .t-primary-inverse .input-select:focus, .t-primary-inverse .input-pseudo:focus, .t-primary-inverse .input-affix:focus {
  border-color: black;
}

.input-text.t-secondary-inverse:focus, .input-textarea.t-secondary-inverse:focus, .input-select.t-secondary-inverse:focus, .input-pseudo.t-secondary-inverse:focus, .input-affix.t-secondary-inverse:focus, .t-secondary-inverse .input-text:focus, .t-secondary-inverse .input-textarea:focus, .t-secondary-inverse .input-select:focus, .t-secondary-inverse .input-pseudo:focus, .t-secondary-inverse .input-affix:focus {
  border-color: black;
}

.input-text:focus:valid, .input-textarea:focus:valid, .input-select:focus:valid, .input-pseudo:focus:valid, .input-affix:focus:valid {
  border-color: #2ecc71;
}

.input-text:focus:invalid, .input-textarea:focus:invalid, .input-select:focus:invalid, .input-pseudo:focus:invalid, .input-affix:focus:invalid {
  border-color: #e74c3c;
}

.input-text[disabled], .input-text.is-disabled,
.input-textarea[disabled],
.input-textarea.is-disabled,
.input-select[disabled],
.input-select.is-disabled,
.input-pseudo[disabled],
.input-pseudo.is-disabled,
.input-affix[disabled],
.input-affix.is-disabled {
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-text[disabled], .input-text.is-disabled,
.input-textarea[disabled],
.input-textarea.is-disabled,
.input-select[disabled],
.input-select.is-disabled,
.input-pseudo[disabled],
.input-pseudo.is-disabled,
.input-affix[disabled],
.input-affix.is-disabled {
  color: #b8c9d0;
  background-color: #dce4e7;
}

.t-primary-inverse.input-text[disabled], .is-disabled.t-primary-inverse.input-text, .t-primary-inverse.input-textarea[disabled], .is-disabled.t-primary-inverse.input-textarea, .t-primary-inverse.input-select[disabled], .is-disabled.t-primary-inverse.input-select, .t-primary-inverse.input-pseudo[disabled], .is-disabled.t-primary-inverse.input-pseudo, .t-primary-inverse.input-affix[disabled], .is-disabled.t-primary-inverse.input-affix, .t-primary-inverse .input-text[disabled], .t-primary-inverse .input-text.is-disabled, .t-primary-inverse .input-textarea[disabled], .t-primary-inverse .input-textarea.is-disabled, .t-primary-inverse .input-select[disabled], .t-primary-inverse .input-select.is-disabled, .t-primary-inverse .input-pseudo[disabled], .t-primary-inverse .input-pseudo.is-disabled, .t-primary-inverse .input-affix[disabled], .t-primary-inverse .input-affix.is-disabled {
  background-color: #7395a1;
}

.t-secondary-inverse.input-text[disabled], .is-disabled.t-secondary-inverse.input-text, .t-secondary-inverse.input-textarea[disabled], .is-disabled.t-secondary-inverse.input-textarea, .t-secondary-inverse.input-select[disabled], .is-disabled.t-secondary-inverse.input-select, .t-secondary-inverse.input-pseudo[disabled], .is-disabled.t-secondary-inverse.input-pseudo, .t-secondary-inverse.input-affix[disabled], .is-disabled.t-secondary-inverse.input-affix, .t-secondary-inverse .input-text[disabled], .t-secondary-inverse .input-text.is-disabled, .t-secondary-inverse .input-textarea[disabled], .t-secondary-inverse .input-textarea.is-disabled, .t-secondary-inverse .input-select[disabled], .t-secondary-inverse .input-select.is-disabled, .t-secondary-inverse .input-pseudo[disabled], .t-secondary-inverse .input-pseudo.is-disabled, .t-secondary-inverse .input-affix[disabled], .t-secondary-inverse .input-affix.is-disabled {
  background-color: #466d7b;
}

.input-text[readonly], .input-text.is-readonly, .input-textarea[readonly], .input-textarea.is-readonly, .input-select[readonly], .input-select.is-readonly, .input-pseudo[readonly], .input-pseudo.is-readonly, .input-affix[readonly], .input-affix.is-readonly {
  background-color: #dce4e7;
}

.t-primary-inverse.input-text[readonly], .is-readonly.t-primary-inverse.input-text, .t-primary-inverse.input-textarea[readonly], .is-readonly.t-primary-inverse.input-textarea, .t-primary-inverse.input-select[readonly], .is-readonly.t-primary-inverse.input-select, .t-primary-inverse.input-pseudo[readonly], .is-readonly.t-primary-inverse.input-pseudo, .t-primary-inverse.input-affix[readonly], .is-readonly.t-primary-inverse.input-affix, .t-primary-inverse .input-text[readonly], .t-primary-inverse .input-text.is-readonly, .t-primary-inverse .input-textarea[readonly], .t-primary-inverse .input-textarea.is-readonly, .t-primary-inverse .input-select[readonly], .t-primary-inverse .input-select.is-readonly, .t-primary-inverse .input-pseudo[readonly], .t-primary-inverse .input-pseudo.is-readonly, .t-primary-inverse .input-affix[readonly], .t-primary-inverse .input-affix.is-readonly {
  background-color: #7395a1;
}

.t-secondary-inverse.input-text[readonly], .is-readonly.t-secondary-inverse.input-text, .t-secondary-inverse.input-textarea[readonly], .is-readonly.t-secondary-inverse.input-textarea, .t-secondary-inverse.input-select[readonly], .is-readonly.t-secondary-inverse.input-select, .t-secondary-inverse.input-pseudo[readonly], .is-readonly.t-secondary-inverse.input-pseudo, .t-secondary-inverse.input-affix[readonly], .is-readonly.t-secondary-inverse.input-affix, .t-secondary-inverse .input-text[readonly], .t-secondary-inverse .input-text.is-readonly, .t-secondary-inverse .input-textarea[readonly], .t-secondary-inverse .input-textarea.is-readonly, .t-secondary-inverse .input-select[readonly], .t-secondary-inverse .input-select.is-readonly, .t-secondary-inverse .input-pseudo[readonly], .t-secondary-inverse .input-pseudo.is-readonly, .t-secondary-inverse .input-affix[readonly], .t-secondary-inverse .input-affix.is-readonly {
  background-color: #466d7b;
}

.input-text__open, .input-textarea__open, .input-select__open, .input-pseudo__open, .input-affix__open {
  border-color: transparent;
}

.input-text__open.t-primary-inverse, .input-textarea__open.t-primary-inverse, .input-select__open.t-primary-inverse, .input-pseudo__open.t-primary-inverse, .input-affix__open.t-primary-inverse, .t-primary-inverse .input-text__open, .t-primary-inverse .input-textarea__open, .t-primary-inverse .input-select__open, .t-primary-inverse .input-pseudo__open, .t-primary-inverse .input-affix__open {
  border-color: transparent;
}

.input-text__open.t-secondary-inverse, .input-textarea__open.t-secondary-inverse, .input-select__open.t-secondary-inverse, .input-pseudo__open.t-secondary-inverse, .input-affix__open.t-secondary-inverse, .t-secondary-inverse .input-text__open, .t-secondary-inverse .input-textarea__open, .t-secondary-inverse .input-select__open, .t-secondary-inverse .input-pseudo__open, .t-secondary-inverse .input-affix__open {
  border-color: transparent;
}

.input-text__clear, .input-textarea__clear, .input-select__clear, .input-pseudo__clear, .input-affix__clear {
  background-color: transparent;
}

.input-text__clear.t-primary-inverse, .input-textarea__clear.t-primary-inverse, .input-select__clear.t-primary-inverse, .input-pseudo__clear.t-primary-inverse, .input-affix__clear.t-primary-inverse, .t-primary-inverse .input-text__clear, .t-primary-inverse .input-textarea__clear, .t-primary-inverse .input-select__clear, .t-primary-inverse .input-pseudo__clear, .t-primary-inverse .input-affix__clear {
  background-color: transparent;
}

.input-text__clear.t-secondary-inverse, .input-textarea__clear.t-secondary-inverse, .input-select__clear.t-secondary-inverse, .input-pseudo__clear.t-secondary-inverse, .input-affix__clear.t-secondary-inverse, .t-secondary-inverse .input-text__clear, .t-secondary-inverse .input-textarea__clear, .t-secondary-inverse .input-select__clear, .t-secondary-inverse .input-pseudo__clear, .t-secondary-inverse .input-affix__clear {
  background-color: transparent;
}

.input-text__inverse, .input-textarea__inverse, .input-select__inverse, .input-pseudo__inverse, .input-affix__inverse {
  background-color: #4e7989;
  border-color: transparent;
  color: white;
}

.input-text__inverse.t-primary-inverse, .input-textarea__inverse.t-primary-inverse, .input-select__inverse.t-primary-inverse, .input-pseudo__inverse.t-primary-inverse, .input-affix__inverse.t-primary-inverse, .t-primary-inverse .input-text__inverse, .t-primary-inverse .input-textarea__inverse, .t-primary-inverse .input-select__inverse, .t-primary-inverse .input-pseudo__inverse, .t-primary-inverse .input-affix__inverse {
  background-color: white;
  border-color: transparent;
  color: #80A5B3;
}

.input-text__inverse.t-secondary-inverse, .input-textarea__inverse.t-secondary-inverse, .input-select__inverse.t-secondary-inverse, .input-pseudo__inverse.t-secondary-inverse, .input-affix__inverse.t-secondary-inverse, .t-secondary-inverse .input-text__inverse, .t-secondary-inverse .input-textarea__inverse, .t-secondary-inverse .input-select__inverse, .t-secondary-inverse .input-pseudo__inverse, .t-secondary-inverse .input-affix__inverse {
  background-color: white;
  border-color: transparent;
  color: #4e7989;
}

.input-text__sharp,
.input-textarea__sharp,
.input-select__sharp,
.input-pseudo__sharp,
.input-affix__sharp {
  border-radius: 0;
}

.input-text__plain,
.input-textarea__plain,
.input-select__plain,
.input-pseudo__plain,
.input-affix__plain {
  border-radius: 0;
  padding: 0;
  min-height: 0;
}

.input-text__plain, .input-text__plain:focus,
.input-textarea__plain,
.input-textarea__plain:focus,
.input-select__plain,
.input-select__plain:focus,
.input-pseudo__plain,
.input-pseudo__plain:focus,
.input-affix__plain,
.input-affix__plain:focus {
  border: 0;
  background-image: none;
}

.input-text__plain, .input-text__plain:focus,
.input-textarea__plain,
.input-textarea__plain:focus,
.input-select__plain,
.input-select__plain:focus,
.input-pseudo__plain,
.input-pseudo__plain:focus,
.input-affix__plain,
.input-affix__plain:focus {
  border-color: transparent;
  background-color: transparent;
}

.t-primary-inverse.input-text__plain, .t-primary-inverse.input-text__plain:focus, .t-primary-inverse.input-textarea__plain, .t-primary-inverse.input-textarea__plain:focus, .t-primary-inverse.input-select__plain, .t-primary-inverse.input-select__plain:focus, .t-primary-inverse.input-pseudo__plain, .t-primary-inverse.input-pseudo__plain:focus, .t-primary-inverse.input-affix__plain, .t-primary-inverse.input-affix__plain:focus, .t-primary-inverse .input-text__plain, .t-primary-inverse .input-text__plain:focus, .t-primary-inverse .input-textarea__plain, .t-primary-inverse .input-textarea__plain:focus, .t-primary-inverse .input-select__plain, .t-primary-inverse .input-select__plain:focus, .t-primary-inverse .input-pseudo__plain, .t-primary-inverse .input-pseudo__plain:focus, .t-primary-inverse .input-affix__plain, .t-primary-inverse .input-affix__plain:focus {
  border-color: transparent;
  background-color: transparent;
}

.t-secondary-inverse.input-text__plain, .t-secondary-inverse.input-text__plain:focus, .t-secondary-inverse.input-textarea__plain, .t-secondary-inverse.input-textarea__plain:focus, .t-secondary-inverse.input-select__plain, .t-secondary-inverse.input-select__plain:focus, .t-secondary-inverse.input-pseudo__plain, .t-secondary-inverse.input-pseudo__plain:focus, .t-secondary-inverse.input-affix__plain, .t-secondary-inverse.input-affix__plain:focus, .t-secondary-inverse .input-text__plain, .t-secondary-inverse .input-text__plain:focus, .t-secondary-inverse .input-textarea__plain, .t-secondary-inverse .input-textarea__plain:focus, .t-secondary-inverse .input-select__plain, .t-secondary-inverse .input-select__plain:focus, .t-secondary-inverse .input-pseudo__plain, .t-secondary-inverse .input-pseudo__plain:focus, .t-secondary-inverse .input-affix__plain, .t-secondary-inverse .input-affix__plain:focus {
  border-color: transparent;
  background-color: transparent;
}

.input-text[size] {
  width: auto;
}

.input-textarea {
  height: 5em;
  vertical-align: middle;
  resize: vertical;
}

.input-textarea[rows] {
  height: auto;
}

.input-textarea[cols] {
  width: auto;
  resize: both;
}

.input-select {
  background-repeat: no-repeat;
  background-position: right 0.55555556em top 50%;
  background-size: contain;
  padding-right: 1.77777778em;
  width: auto;
}

.input-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='300'%3E%3Cpath d='M50,150l33.34-33.34L100,133.33l-50,50-50-50,16.66-16.66Z' fill='%234e7989'/%3E%3C/svg%3E");
}

.input-select.t-primary-inverse, .t-primary-inverse .input-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='300'%3E%3Cpath d='M50,150l33.34-33.34L100,133.33l-50,50-50-50,16.66-16.66Z' fill='white'/%3E%3C/svg%3E");
}

.input-select.t-secondary-inverse, .t-secondary-inverse .input-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='300'%3E%3Cpath d='M50,150l33.34-33.34L100,133.33l-50,50-50-50,16.66-16.66Z' fill='white'/%3E%3C/svg%3E");
}

.input-select optgroup {
  margin-top: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
}

.input-select optgroup {
  color: #95afb8;
}

.input-select.t-primary-inverse optgroup, .t-primary-inverse .input-select optgroup {
  color: rgba(255, 255, 255, 0.6);
}

.input-select.t-secondary-inverse optgroup, .t-secondary-inverse .input-select optgroup {
  color: rgba(255, 255, 255, 0.6);
}

.input-select option {
  margin-top: 0;
}

.input-select option {
  color: #4e7989;
}

.input-select.t-primary-inverse option, .t-primary-inverse .input-select option {
  color: white;
}

.input-select.t-secondary-inverse option, .t-secondary-inverse .input-select option {
  color: white;
}

.input-select__wide {
  width: 100%;
}

.input-affix {
  padding-right: 0.72222222em;
  padding-left: 0.72222222em;
  width: auto;
}

.input-affix {
  background-color: #dce4e7;
}

.input-affix.t-primary-inverse, .t-primary-inverse .input-affix {
  background-color: #7395a1;
}

.input-affix.t-secondary-inverse, .t-secondary-inverse .input-affix {
  background-color: #466d7b;
}

.input-affix__wide {
  width: 100%;
}

.input-checkbox,
.input-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-overflow-scrolling: touch;
}

.input-checkbox + label,
.input-radio + label {
  display: inline-block;
  margin: 0;
  padding-left: 1.66666667em;
}

.input-checkbox + label::before,
.input-radio + label::before {
  display: inline-block;
  transition: color 0.25s ease, border 0.25s ease, background 0.25s ease;
  margin-right: 0.38888889em;
  margin-left: -1.66666667em;
  border: 2px solid;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.27777778em;
  height: 1.27777778em;
  vertical-align: -0.22222222em;
  content: '';
}

.input-checkbox + label::before,
.input-radio + label::before {
  border-color: #cccccc;
}

.input-checkbox.t-primary-inverse + label::before, .input-radio.t-primary-inverse + label::before, .t-primary-inverse .input-checkbox + label::before, .t-primary-inverse .input-radio + label::before {
  border-color: #66848f;
}

.input-checkbox.t-secondary-inverse + label::before, .input-radio.t-secondary-inverse + label::before, .t-secondary-inverse .input-checkbox + label::before, .t-secondary-inverse .input-radio + label::before {
  border-color: #3e616e;
}

.input-checkbox:checked + label::before, .input-radio:checked + label::before {
  background-color: #4e7989;
  border-color: #4e7989;
}

.input-checkbox.t-primary-inverse:checked + label::before, .input-radio.t-primary-inverse:checked + label::before, .t-primary-inverse .input-checkbox:checked + label::before, .t-primary-inverse .input-radio:checked + label::before {
  background-color: white;
  border-color: white;
}

.input-checkbox.t-secondary-inverse:checked + label::before, .input-radio.t-secondary-inverse:checked + label::before, .t-secondary-inverse .input-checkbox:checked + label::before, .t-secondary-inverse .input-radio:checked + label::before {
  background-color: white;
  border-color: white;
}

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

.input-checkbox:focus + label::before,
.input-radio:focus + label::before {
  box-shadow: 0 0 0 2px rgba(78, 121, 137, 0.5);
}

.input-checkbox.t-primary-inverse:focus + label::before, .input-radio.t-primary-inverse:focus + label::before, .t-primary-inverse .input-checkbox:focus + label::before, .t-primary-inverse .input-radio:focus + label::before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.input-checkbox.t-secondary-inverse:focus + label::before, .input-radio.t-secondary-inverse:focus + label::before, .t-secondary-inverse .input-checkbox:focus + label::before, .t-secondary-inverse .input-radio:focus + label::before {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.input-checkbox:focus + label::before, .input-checkbox:active + label::before, .input-radio:focus + label::before, .input-radio:active + label::before {
  border-color: #4e7989;
}

.t-primary-inverse.input-checkbox:focus + label::before, .t-primary-inverse.input-checkbox:active + label::before, .t-primary-inverse.input-radio:focus + label::before, .t-primary-inverse.input-radio:active + label::before, .t-primary-inverse .input-checkbox:focus + label::before, .t-primary-inverse .input-checkbox:active + label::before, .t-primary-inverse .input-radio:focus + label::before, .t-primary-inverse .input-radio:active + label::before {
  border-color: black;
}

.t-secondary-inverse.input-checkbox:focus + label::before, .t-secondary-inverse.input-checkbox:active + label::before, .t-secondary-inverse.input-radio:focus + label::before, .t-secondary-inverse.input-radio:active + label::before, .t-secondary-inverse .input-checkbox:focus + label::before, .t-secondary-inverse .input-checkbox:active + label::before, .t-secondary-inverse .input-radio:focus + label::before, .t-secondary-inverse .input-radio:active + label::before {
  border-color: black;
}

.input-checkbox:active + label::before, .input-radio:active + label::before {
  background-color: #dce4e7;
}

.input-checkbox.t-primary-inverse:active + label::before, .input-radio.t-primary-inverse:active + label::before, .t-primary-inverse .input-checkbox:active + label::before, .t-primary-inverse .input-radio:active + label::before {
  background-color: #7395a1;
}

.input-checkbox.t-secondary-inverse:active + label::before, .input-radio.t-secondary-inverse:active + label::before, .t-secondary-inverse .input-checkbox:active + label::before, .t-secondary-inverse .input-radio:active + label::before {
  background-color: #466d7b;
}

.input-checkbox[disabled] + label::before,
.input-radio[disabled] + label::before {
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-checkbox[disabled] + label::before,
.input-radio[disabled] + label::before {
  background-color: #dce4e7;
}

.input-checkbox.t-primary-inverse[disabled] + label::before, .input-radio.t-primary-inverse[disabled] + label::before, .t-primary-inverse .input-checkbox[disabled] + label::before, .t-primary-inverse .input-radio[disabled] + label::before {
  background-color: #7395a1;
}

.input-checkbox.t-secondary-inverse[disabled] + label::before, .input-radio.t-secondary-inverse[disabled] + label::before, .t-secondary-inverse .input-checkbox[disabled] + label::before, .t-secondary-inverse .input-radio[disabled] + label::before {
  background-color: #466d7b;
}

.input-checkbox[disabled] + label::before,
.input-radio[disabled] + label::before {
  border-color: #cccccc;
}

.input-checkbox.t-primary-inverse[disabled] + label::before, .input-radio.t-primary-inverse[disabled] + label::before, .t-primary-inverse .input-checkbox[disabled] + label::before, .t-primary-inverse .input-radio[disabled] + label::before {
  border-color: #66848f;
}

.input-checkbox.t-secondary-inverse[disabled] + label::before, .input-radio.t-secondary-inverse[disabled] + label::before, .t-secondary-inverse .input-checkbox[disabled] + label::before, .t-secondary-inverse .input-radio[disabled] + label::before {
  border-color: #3e616e;
}

.input-checkbox + label::before {
  border-radius: calc(1.02778em + 2px);
  background-size: 75%;
}

.input-checkbox:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='79.17'%3E%3Cpath d='M84.52,0l-47,48.2-22-20.88L0,42.8,37.5,79.17,100,15.48Z' fill='white'/%3E%3C/svg%3E");
}

.input-checkbox.t-primary-inverse:checked + label::before, .t-primary-inverse .input-checkbox:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='79.17'%3E%3Cpath d='M84.52,0l-47,48.2-22-20.88L0,42.8,37.5,79.17,100,15.48Z' fill='%2380A5B3'/%3E%3C/svg%3E");
}

.input-checkbox.t-secondary-inverse:checked + label::before, .t-secondary-inverse .input-checkbox:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='79.17'%3E%3Cpath d='M84.52,0l-47,48.2-22-20.88L0,42.8,37.5,79.17,100,15.48Z' fill='%234e7989'/%3E%3C/svg%3E");
}

.input-checkbox[disabled]:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='79.17'%3E%3Cpath d='M84.52,0l-47,48.2-22-20.88L0,42.8,37.5,79.17,100,15.48Z' fill='%23b8c9d0'/%3E%3C/svg%3E");
}

.input-radio + label::before {
  border-radius: 50%;
  background-size: 45%;
}

.input-radio:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0,50A50,50,0,1,0,50,0,50,50,0,0,0,0,50' fill='white'/%3E%3C/svg%3E");
}

.input-radio.t-primary-inverse:checked + label::before, .t-primary-inverse .input-radio:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0,50A50,50,0,1,0,50,0,50,50,0,0,0,0,50' fill='%2380A5B3'/%3E%3C/svg%3E");
}

.input-radio.t-secondary-inverse:checked + label::before, .t-secondary-inverse .input-radio:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0,50A50,50,0,1,0,50,0,50,50,0,0,0,0,50' fill='%234e7989'/%3E%3C/svg%3E");
}

.input-radio[disabled]:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M0,50A50,50,0,1,0,50,0,50,50,0,0,0,0,50' fill='%23b8c9d0'/%3E%3C/svg%3E");
}

.input-file,
.input-color,
.input-range {
  vertical-align: middle;
}

.input-wrap {
  display: inline-block;
  margin: 0;
}

.lightbox-link::after {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-overflow-scrolling: touch;
}

a {
  transition: color 0.25s ease, border 0.25s ease;
}

a, a:link, a:visited {
  border-bottom: 2px solid;
  text-decoration: none;
}

a, a:link, a:visited {
  border-bottom-color: rgba(78, 121, 137, 0.25);
}

a.t-primary-inverse, a.t-primary-inverse:link, a.t-primary-inverse:visited, .t-primary-inverse a, .t-primary-inverse a:link, .t-primary-inverse a:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

a.t-secondary-inverse, a.t-secondary-inverse:link, a.t-secondary-inverse:visited, .t-secondary-inverse a, .t-secondary-inverse a:link, .t-secondary-inverse a:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

a:hover, a:focus, a:active {
  border-bottom-color: #4e7989;
}

a.t-primary-inverse:hover, a.t-primary-inverse:focus, a.t-primary-inverse:active, .t-primary-inverse a:hover, .t-primary-inverse a:focus, .t-primary-inverse a:active {
  border-bottom-color: white;
}

a.t-secondary-inverse:hover, a.t-secondary-inverse:focus, a.t-secondary-inverse:active, .t-secondary-inverse a:hover, .t-secondary-inverse a:focus, .t-secondary-inverse a:active {
  border-bottom-color: white;
}

a, a:link, a:visited {
  color: inherit;
}

.link-external::after {
  overflow: hidden;
  text-align: left;
  text-indent: -99999px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  width: 0.83333333em;
  height: 0.76391667em;
  content: '(external link)';
  vertical-align: middle;
  content: '';
  margin-top: -0.2em;
  margin-left: 0.33333333em;
  -webkit-overflow-scrolling: touch;
}

.link-external::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='91.67'%3E%3Cpath d='M87.5,50V91.67H0V12.5H50v8.33H8.33v62.5H79.17V50H87.5ZM100,0H54.22L71,16.67,42,46.13,53.74,57.91,82.81,28.45,100,45.83V0Z' fill='%234e7989'/%3E%3C/svg%3E");
}

.link-external.t-primary-inverse::after, .t-primary-inverse .link-external::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='91.67'%3E%3Cpath d='M87.5,50V91.67H0V12.5H50v8.33H8.33v62.5H79.17V50H87.5ZM100,0H54.22L71,16.67,42,46.13,53.74,57.91,82.81,28.45,100,45.83V0Z' fill='white'/%3E%3C/svg%3E");
}

.link-external.t-secondary-inverse::after, .t-secondary-inverse .link-external::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='91.67'%3E%3Cpath d='M87.5,50V91.67H0V12.5H50v8.33H8.33v62.5H79.17V50H87.5ZM100,0H54.22L71,16.67,42,46.13,53.74,57.91,82.81,28.45,100,45.83V0Z' fill='white'/%3E%3C/svg%3E");
}

.link-block {
  display: block;
}

.link-inline {
  display: inline;
}

.link-inline-block {
  display: inline-block;
  vertical-align: middle;
}

.link-block, .link-block:link, .link-block:visited,
.link-inline,
.link-inline:link,
.link-inline:visited,
.link-inline-block,
.link-inline-block:link,
.link-inline-block:visited {
  border-bottom: 0;
  text-decoration: none;
}

.link-block::after,
.link-inline::after,
.link-inline-block::after {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-overflow-scrolling: touch;
}

.link-block_link, .link-block_link:link, .link-block_link:visited,
.link-inline_link,
.link-inline_link:link,
.link-inline_link:visited,
.link-inline-block_link,
.link-inline-block_link:link,
.link-inline-block_link:visited {
  border-bottom: 2px solid;
  text-decoration: none;
}

.link-block_link, .link-block_link:link, .link-block_link:visited,
.link-inline_link,
.link-inline_link:link,
.link-inline_link:visited,
.link-inline-block_link,
.link-inline-block_link:link,
.link-inline-block_link:visited {
  border-bottom-color: rgba(78, 121, 137, 0.25);
}

.t-primary-inverse.link-block_link, .t-primary-inverse.link-block_link:link, .t-primary-inverse.link-block_link:visited, .t-primary-inverse.link-inline_link, .t-primary-inverse.link-inline_link:link, .t-primary-inverse.link-inline_link:visited, .t-primary-inverse.link-inline-block_link, .t-primary-inverse.link-inline-block_link:link, .t-primary-inverse.link-inline-block_link:visited, .t-primary-inverse .link-block_link, .t-primary-inverse .link-block_link:link, .t-primary-inverse .link-block_link:visited, .t-primary-inverse .link-inline_link, .t-primary-inverse .link-inline_link:link, .t-primary-inverse .link-inline_link:visited, .t-primary-inverse .link-inline-block_link, .t-primary-inverse .link-inline-block_link:link, .t-primary-inverse .link-inline-block_link:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.t-secondary-inverse.link-block_link, .t-secondary-inverse.link-block_link:link, .t-secondary-inverse.link-block_link:visited, .t-secondary-inverse.link-inline_link, .t-secondary-inverse.link-inline_link:link, .t-secondary-inverse.link-inline_link:visited, .t-secondary-inverse.link-inline-block_link, .t-secondary-inverse.link-inline-block_link:link, .t-secondary-inverse.link-inline-block_link:visited, .t-secondary-inverse .link-block_link, .t-secondary-inverse .link-block_link:link, .t-secondary-inverse .link-block_link:visited, .t-secondary-inverse .link-inline_link, .t-secondary-inverse .link-inline_link:link, .t-secondary-inverse .link-inline_link:visited, .t-secondary-inverse .link-inline-block_link, .t-secondary-inverse .link-inline-block_link:link, .t-secondary-inverse .link-inline-block_link:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.link-block_link:hover, .link-block_link:focus, .link-block_link:active, .link-inline_link:hover, .link-inline_link:focus, .link-inline_link:active, .link-inline-block_link:hover, .link-inline-block_link:focus, .link-inline-block_link:active {
  border-bottom-color: #4e7989;
}

.t-primary-inverse.link-block_link:hover, .t-primary-inverse.link-block_link:focus, .t-primary-inverse.link-block_link:active, .t-primary-inverse.link-inline_link:hover, .t-primary-inverse.link-inline_link:focus, .t-primary-inverse.link-inline_link:active, .t-primary-inverse.link-inline-block_link:hover, .t-primary-inverse.link-inline-block_link:focus, .t-primary-inverse.link-inline-block_link:active, .t-primary-inverse .link-block_link:hover, .t-primary-inverse .link-block_link:focus, .t-primary-inverse .link-block_link:active, .t-primary-inverse .link-inline_link:hover, .t-primary-inverse .link-inline_link:focus, .t-primary-inverse .link-inline_link:active, .t-primary-inverse .link-inline-block_link:hover, .t-primary-inverse .link-inline-block_link:focus, .t-primary-inverse .link-inline-block_link:active {
  border-bottom-color: white;
}

.t-secondary-inverse.link-block_link:hover, .t-secondary-inverse.link-block_link:focus, .t-secondary-inverse.link-block_link:active, .t-secondary-inverse.link-inline_link:hover, .t-secondary-inverse.link-inline_link:focus, .t-secondary-inverse.link-inline_link:active, .t-secondary-inverse.link-inline-block_link:hover, .t-secondary-inverse.link-inline-block_link:focus, .t-secondary-inverse.link-inline-block_link:active, .t-secondary-inverse .link-block_link:hover, .t-secondary-inverse .link-block_link:focus, .t-secondary-inverse .link-block_link:active, .t-secondary-inverse .link-inline_link:hover, .t-secondary-inverse .link-inline_link:focus, .t-secondary-inverse .link-inline_link:active, .t-secondary-inverse .link-inline-block_link:hover, .t-secondary-inverse .link-inline-block_link:focus, .t-secondary-inverse .link-inline-block_link:active {
  border-bottom-color: white;
}

.link-area {
  position: relative;
}

.link-area::before {
  position: absolute;
  top: -1em;
  right: -1em;
  bottom: -1em;
  left: -1em;
  content: '';
}

ul,
ol {
  padding: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0;
}

li {
  margin: 0 0 0 1.5em;
}

ul:not[type] {
  list-style: disc;
}

ul:not[type] ul:not[type] {
  list-style: circle;
}

ul:not[type] ul:not[type] ul:not[type] {
  list-style: square;
}

ol:not[type] {
  list-style: decimal;
}

ol:not[type] ol:not[type] {
  list-style: lower-alpha;
}

ol:not[type] ol:not[type] ol:not[type] {
  list-style: lower-roman;
}

dd + dt {
  margin-top: 0.5em;
}

dd {
  margin-top: 0;
}

dd {
  color: #4e7989;
}

dd.t-primary-inverse, .t-primary-inverse dd {
  color: black;
}

dd.t-secondary-inverse, .t-secondary-inverse dd {
  color: black;
}

.list-pairs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
}

.list-pairs > * {
  margin-top: 0;
}

.list-pairs > *:nth-child(even) {
  margin-left: 1em;
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: -0.5em;
  margin-left: -0.5em;
  margin-bottom: -1em;
}

.logo-list > * {
  margin-right: 0.5em;
  margin-left: 0.5em;
  margin-bottom: 1em;
}

.logo-list > * {
  margin-top: 0;
}

.map {
  position: relative;
  border-radius: calc(1.02778em + 2px);
}

.map::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 43.28703704%;
  height: 10.08230453em;
}

.map_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.map_content * + * {
  margin-top: 0;
}

.nav {
  padding-left: 0;
}

.nav > * {
  margin-left: 0;
  list-style-image: none;
  list-style-type: none;
}

.nav_i {
  margin-top: 0;
}

.nav_label {
  display: block;
}

.nav_label, .nav_label:link, .nav_label:visited {
  border-bottom: 0;
  text-decoration: none;
}

.nav_label:focus, .nav_label:hover {
  color: #4e7989;
}

.t-primary-inverse.nav_label:focus, .t-primary-inverse.nav_label:hover, .t-primary-inverse .nav_label:focus, .t-primary-inverse .nav_label:hover {
  color: black;
}

.t-secondary-inverse.nav_label:focus, .t-secondary-inverse.nav_label:hover, .t-secondary-inverse .nav_label:focus, .t-secondary-inverse .nav_label:hover {
  color: black;
}

.nav_label:active, .nav_label.is-active, .nav_label.is-active-path {
  color: #4e7989;
}

.t-primary-inverse.nav_label:active, .is-active.t-primary-inverse.nav_label, .is-active-path.t-primary-inverse.nav_label, .t-primary-inverse .nav_label:active, .t-primary-inverse .nav_label.is-active, .t-primary-inverse .nav_label.is-active-path {
  color: black;
}

.t-secondary-inverse.nav_label:active, .is-active.t-secondary-inverse.nav_label, .is-active-path.t-secondary-inverse.nav_label, .t-secondary-inverse .nav_label:active, .t-secondary-inverse .nav_label.is-active, .t-secondary-inverse .nav_label.is-active-path {
  color: black;
}

.nav_label.is-active {
  font-weight: bold;
}

.nav_label.is-active::after {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  content: '(current page)';
  -webkit-overflow-scrolling: touch;
}

.nav_label.is-active-path::after {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  content: '(parent page)';
  -webkit-overflow-scrolling: touch;
}

.nav .nav {
  margin-left: 1em;
}

.nav__divided .nav_i {
  border-top: 2px solid;
}

.nav__divided .nav_i {
  border-color: #e6e6e6;
}

.nav__divided.t-primary-inverse .nav_i, .t-primary-inverse .nav__divided .nav_i {
  border-color: #6d8c98;
}

.nav__divided.t-secondary-inverse .nav_i, .t-secondary-inverse .nav__divided .nav_i {
  border-color: #426774;
}

.nav__divided .nav_i:first-child {
  border-top: 0;
}

.nav__divided .nav_label {
  padding: 0.27777778em 0;
}

.nav__dots {
  display: flex;
  flex-wrap: wrap;
}

.nav__dots .nav_i {
  margin-top: 0;
}

.nav__dots .nav_i:not(:first-child) {
  margin-left: 0.5em;
}

.nav__dots .nav_label {
  overflow: hidden;
  text-align: left;
  text-indent: -99999px;
  white-space: nowrap;
  position: relative;
  width: 0.55555556em;
  height: 0.55555556em;
  transition: background 0.25s ease;
  border-radius: 100%;
  cursor: pointer;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
}

.nav__dots .nav_label {
  background-color: rgba(78, 121, 137, 0.25);
}

.nav__dots.t-primary-inverse .nav_label, .t-primary-inverse .nav__dots .nav_label {
  background-color: rgba(255, 255, 255, 0.25);
}

.nav__dots.t-secondary-inverse .nav_label, .t-secondary-inverse .nav__dots .nav_label {
  background-color: rgba(255, 255, 255, 0.25);
}

.nav__dots .nav_label::before {
  position: absolute;
  top: -0.5em;
  left: -0.25em;
  width: 1.05555556em;
  height: 1.55555556em;
  content: '';
}

.nav__dots .nav_label:focus, .nav__dots .nav_label:hover {
  background-color: #4e7989;
}

.t-primary-inverse.nav__dots .nav_label:focus, .t-primary-inverse.nav__dots .nav_label:hover, .t-primary-inverse .nav__dots .nav_label:focus, .t-primary-inverse .nav__dots .nav_label:hover {
  background-color: black;
}

.t-secondary-inverse.nav__dots .nav_label:focus, .t-secondary-inverse.nav__dots .nav_label:hover, .t-secondary-inverse .nav__dots .nav_label:focus, .t-secondary-inverse .nav__dots .nav_label:hover {
  background-color: black;
}

.nav__dots .nav_label:active, .nav__dots .nav_label.is-active {
  background-color: #4e7989;
}

.t-primary-inverse.nav__dots .nav_label:active, .t-primary-inverse.nav__dots .nav_label.is-active, .t-primary-inverse .nav__dots .nav_label:active, .t-primary-inverse .nav__dots .nav_label.is-active {
  background-color: white;
}

.t-secondary-inverse.nav__dots .nav_label:active, .t-secondary-inverse.nav__dots .nav_label.is-active, .t-secondary-inverse .nav__dots .nav_label:active, .t-secondary-inverse .nav__dots .nav_label.is-active {
  background-color: white;
}

.nav__local .nav_label.is-active::after {
  content: '(current item)';
}

.nav__local .nav_label.is-active-path::after {
  content: '(parent item)';
}

.nav__horizontal {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75em;
  margin-left: -0.75em;
  margin-bottom: 0;
}

.nav__horizontal > * {
  margin-right: 0.75em;
  margin-left: 0.75em;
  margin-bottom: 0;
}

.nav__horizontal .nav_i {
  width: auto;
}

.nav__tabs {
  border: 0 solid;
}

.nav__tabs {
  border-color: #cccccc;
}

.nav__tabs.t-primary-inverse, .t-primary-inverse .nav__tabs {
  border-color: #66848f;
}

.nav__tabs.t-secondary-inverse, .t-secondary-inverse .nav__tabs {
  border-color: #3e616e;
}

.nav__tabs .nav_label {
  padding: 0.27777778em 0.61111111em;
  border: 2px solid;
}

.nav__tabs .nav_label {
  background-color: white;
  border-color: #e6e6e6;
}

.nav__tabs.t-primary-inverse .nav_label, .t-primary-inverse .nav__tabs .nav_label {
  background-color: #80A5B3;
  border-color: #6d8c98;
}

.nav__tabs.t-secondary-inverse .nav_label, .t-secondary-inverse .nav__tabs .nav_label {
  background-color: #4e7989;
  border-color: #426774;
}

.nav__tabs .nav_label.is-active, .nav__tabs .nav_label.is-active-path {
  position: relative;
}

.nav__tabs .nav_label.is-active, .nav__tabs .nav_label.is-active-path {
  border-color: #cccccc;
}

.t-primary-inverse.nav__tabs .nav_label.is-active, .t-primary-inverse.nav__tabs .nav_label.is-active-path, .t-primary-inverse .nav__tabs .nav_label.is-active, .t-primary-inverse .nav__tabs .nav_label.is-active-path {
  border-color: #66848f;
}

.t-secondary-inverse.nav__tabs .nav_label.is-active, .t-secondary-inverse.nav__tabs .nav_label.is-active-path, .t-secondary-inverse .nav__tabs .nav_label.is-active, .t-secondary-inverse .nav__tabs .nav_label.is-active-path {
  border-color: #3e616e;
}

.nav__tabs .nav_label.is-active::before, .nav__tabs .nav_label.is-active-path::before {
  position: absolute;
  content: '';
}

.nav__tabs .nav_label.is-active::before, .nav__tabs .nav_label.is-active-path::before {
  background-color: white;
}

.t-primary-inverse.nav__tabs .nav_label.is-active::before, .t-primary-inverse.nav__tabs .nav_label.is-active-path::before, .t-primary-inverse .nav__tabs .nav_label.is-active::before, .t-primary-inverse .nav__tabs .nav_label.is-active-path::before {
  background-color: #80A5B3;
}

.t-secondary-inverse.nav__tabs .nav_label.is-active::before, .t-secondary-inverse.nav__tabs .nav_label.is-active-path::before, .t-secondary-inverse .nav__tabs .nav_label.is-active::before, .t-secondary-inverse .nav__tabs .nav_label.is-active-path::before {
  background-color: #4e7989;
}

.nav__tabs:not(.nav__horizontal) {
  border-right-width: 2px;
}

.nav__tabs:not(.nav__horizontal) .nav_i {
  margin-top: 0.27777778em;
}

.nav__tabs:not(.nav__horizontal) .nav_i:first-child {
  margin-top: 0;
}

.nav__tabs:not(.nav__horizontal) .nav_label {
  border-right-width: 0;
  border-radius: calc(1.02778em + 2px) 0 0 calc(1.02778em + 2px);
}

.nav__tabs:not(.nav__horizontal) .nav_label.is-active::before, .nav__tabs:not(.nav__horizontal) .nav_label.is-active-path::before {
  top: 0;
  left: 100%;
  width: 2px;
  height: 100%;
}

.nav__tabs.nav__horizontal {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  border-bottom-width: 2px;
}

.nav__tabs.nav__horizontal > * {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.nav__tabs.nav__horizontal .nav_i {
  margin-left: 0.25em;
}

.nav__tabs.nav__horizontal .nav_i:first-child {
  margin-left: 0;
}

.nav__tabs.nav__horizontal .nav_label {
  border-bottom-width: 0;
  border-radius: calc(1.02778em + 2px) calc(1.02778em + 2px) 0 0;
}

.nav__tabs.nav__horizontal .nav_label.is-active::before, .nav__tabs.nav__horizontal .nav_label.is-active-path::before {
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
}

.nav__header .nav_label {
  font-size: calc(1.33333em + 0.22222*(100vw - 326px)/761*18);
  padding: 0.11111111em 0;
}

@media screen and (max-width: 325px) {
  .nav__header .nav_label {
    font-size: 1.33333333em;
  }
}

@media screen and (min-width: 1087px) {
  .nav__header .nav_label {
    font-size: 1.55555556em;
  }
}

.nav .opener {
  margin-top: 0;
}

.notice {
  transition: opacity 0.5s ease-in-out;
  border-radius: calc(1.02778em + 2px);
  padding: 0.77777778em 1em;
}

.notice.is-hidden {
  opacity: 0;
}

.notice {
  background-color: #4e7989;
}

.notice.t-primary-inverse, .t-primary-inverse .notice {
  background-color: white;
}

.notice.t-secondary-inverse, .t-secondary-inverse .notice {
  background-color: white;
}

.notice, .notice *, .notice *:link, .notice *:visited {
  color: white;
}

.t-primary-inverse.notice, .t-primary-inverse.notice *, .t-primary-inverse.notice *:link, .t-primary-inverse.notice *:visited, .t-primary-inverse .notice, .t-primary-inverse .notice *, .t-primary-inverse .notice *:link, .t-primary-inverse .notice *:visited {
  color: #80A5B3;
}

.t-secondary-inverse.notice, .t-secondary-inverse.notice *, .t-secondary-inverse.notice *:link, .t-secondary-inverse.notice *:visited, .t-secondary-inverse .notice, .t-secondary-inverse .notice *, .t-secondary-inverse .notice *:link, .t-secondary-inverse .notice *:visited {
  color: #4e7989;
}

.notice__black {
  background-color: rgba(0, 0, 0, 0.9);
}

.notice__black.t-primary-inverse, .t-primary-inverse .notice__black {
  background-color: rgba(0, 0, 0, 0.9);
}

.notice__black.t-secondary-inverse, .t-secondary-inverse .notice__black {
  background-color: rgba(0, 0, 0, 0.9);
}

.notice__black, .notice__black *, .notice__black *:link, .notice__black *:visited {
  color: white;
}

.t-primary-inverse.notice__black, .t-primary-inverse.notice__black *, .t-primary-inverse.notice__black *:link, .t-primary-inverse.notice__black *:visited, .t-primary-inverse .notice__black, .t-primary-inverse .notice__black *, .t-primary-inverse .notice__black *:link, .t-primary-inverse .notice__black *:visited {
  color: white;
}

.t-secondary-inverse.notice__black, .t-secondary-inverse.notice__black *, .t-secondary-inverse.notice__black *:link, .t-secondary-inverse.notice__black *:visited, .t-secondary-inverse .notice__black, .t-secondary-inverse .notice__black *, .t-secondary-inverse .notice__black *:link, .t-secondary-inverse .notice__black *:visited {
  color: white;
}

.notice__fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 700;
  border-radius: 0;
  text-align: center;
}

@media screen and (min-width: 400px) {
  .notice__fixed {
    right: auto;
    border-radius: 0 calc(1.02778em + 2px) 0 0;
    width: 16.66666667rem;
    text-align: left;
  }
}

.opener::after {
  display: none;
  content: 'true';
}

.opener__static.is-static:not(:target) {
  display: none;
}

.opener__height.is-enabled {
  transition-property: margin, border-width, padding, height;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion) {
  .opener__height.is-enabled {
    transition: none !important;
  }
}

.opener__height.is-enabled:not(.is-active) {
  margin-top: 0;
  margin-bottom: 0;
  border-top-width: 0;
  border-bottom-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
}

.opener__height.is-enabled.is-complete {
  overflow: visible;
}

.opener__opacity.is-enabled {
  transition-property: opacity, transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

.opener__opacity.is-enabled:not(.is-active) {
  opacity: 0;
}

.opener__slide.is-enabled {
  transition-property: opacity, transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

@media (prefers-reduced-motion) {
  .opener__slide.is-enabled {
    transition: none !important;
  }
}

.opener__slide.is-enabled:not(.is-active) {
  transform: translate(-100%, 0);
}

.opener-link {
  cursor: pointer;
}

.overlay {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  margin: 0;
  z-index: 1000;
}

.overlay {
  color: #4e7989;
}

.overlay.t-primary-inverse, .t-primary-inverse .overlay {
  color: white;
}

.overlay.t-secondary-inverse, .t-secondary-inverse .overlay {
  color: white;
}

.overlay:not(.is-enabled) .overlay_header, .overlay:not(.is-enabled) .overlay_footer, .overlay:not(.is-enabled) .overlay_arrow, .overlay:not(.is-enabled) .overlay_close, .overlay:not(.is-enabled) .overlay_loading, .overlay:not(.is-enabled) .overlay_background {
  opacity: 0;
}

.overlay:not(.is-loaded) .overlay_content, .overlay:not(.is-loaded) .overlay_footer {
  opacity: 0;
}

.overlay.is-loaded .overlay_loading {
  display: none;
}

.overlay:not(.overlay__arrows) .overlay_arrow {
  display: none;
}

.overlay > * + * {
  margin-top: 0.97222222rem;
}

.overlay_header, .overlay_content, .overlay_footer {
  z-index: 1001;
}

.overlay_arrow, .overlay_close, .overlay_close-content, .overlay_loading {
  z-index: 1002;
}

.overlay_header, .overlay_footer, .overlay_arrow, .overlay_close, .overlay_loading, .overlay_background {
  transition: opacity 0.5s ease;
}

.overlay_header, .overlay_footer {
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 3.88888889rem;
  margin-top: 0;
}

@media screen and (max-width: 325px) {
  .overlay_header, .overlay_footer {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  .overlay_header, .overlay_footer {
    font-size: 0.77777778em;
  }
}

.overlay_header:empty::before, .overlay_footer:empty::before {
  content: '\00a0';
}

.overlay_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin-top: 0;
  margin-right: 4vw;
  margin-left: 4vw;
}

.overlay_content > * {
  width: 100%;
}

.overlay_arrow, .overlay_close {
  position: absolute;
  margin: 0;
}

.overlay_arrow {
  bottom: 0;
}

.overlay_close {
  top: 0;
  right: 0;
}

.overlay_prev {
  left: 0;
}

.overlay_next {
  right: 0;
}

.overlay_loading {
  animation-name: animate-7;
  animation-duration: 0.25s;
  animation-timing-function: ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4em;
  height: 4em;
  margin-top: -2em;
  margin-left: -2em;
  border: 2px solid currentColor;
  border-radius: 50%;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animate-7 {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

.overlay_background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overlay_background {
  background-color: rgba(255, 255, 255, 0.9);
}

.overlay_background.t-primary-inverse, .t-primary-inverse .overlay_background {
  background-color: rgba(128, 165, 179, 0.9);
}

.overlay_background.t-secondary-inverse, .t-secondary-inverse .overlay_background {
  background-color: rgba(78, 121, 137, 0.9);
}

.overlay__page .overlay_content {
  margin-left: 4vw;
  margin-right: 4vw;
}

@media screen and (min-width: 1522px) {
  .overlay__page .overlay_content {
    margin-left: calc(50vw - 700px);
    margin-right: calc(50vw - 700px);
  }
}

@media print {
  .overlay__page .overlay_content {
    margin-left: initial;
    margin-right: initial;
  }
}

@media screen and (min-width: 760px) {
  .overlay_arrow {
    top: 50%;
    transform: translate(0, -50%);
  }
}

.t-overlay-fade {
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

.t-overlay-fade:not(.is-running) {
  opacity: 0;
}

.t-overlay-fade.is-running {
  opacity: 1;
}

.page {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
}

.page > * {
  flex-shrink: 0;
}

.page > *.content {
  flex-grow: 1;
}

@media print {
  .page {
    display: block;
    min-height: none;
  }
}

.page-skip {
  position: fixed;
  top: 0.5em;
  left: 0.5em;
  transition: opacity 0.25s ease;
  z-index: 800;
}

.page-skip:not(:focus) {
  opacity: 0;
  pointer-events: none;
}

.page-top {
  position: fixed;
  right: 0.5em;
  bottom: 0.5em;
  transition: opacity 0.25s ease;
  z-index: 900;
}

.page-top:not(.is-enabled) {
  opacity: 0;
  pointer-events: none;
}

.x-parallax {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.popover {
  margin: 0.27777778em 0;
  border: 2px solid;
  border-radius: calc(1.02778em + 2px);
  padding: 0.27777778em 1.11111111em;
  white-space: nowrap;
}

.popover {
  background-color: white;
  border-color: currentColor;
}

.popover.t-primary-inverse, .t-primary-inverse .popover {
  background-color: #80A5B3;
  border-color: currentColor;
}

.popover.t-secondary-inverse, .t-secondary-inverse .popover {
  background-color: #4e7989;
  border-color: currentColor;
}

.x-popover {
  display: inline-block;
  position: relative;
  margin: 0;
}

.x-popover > .popover {
  position: absolute;
  z-index: 200;
}

.x-popover > .popover__top-left, .x-popover > .popover__top-right {
  top: auto;
  bottom: 100%;
}

.x-popover > .popover__top-right, .x-popover > .popover__bottom-right {
  right: 0;
  left: auto;
}

.x-popover > .popover__bottom-left, .x-popover > .popover__bottom-right {
  top: 100%;
  bottom: auto;
}

.x-popover > .popover__top-left, .x-popover > .popover__bottom-left {
  right: auto;
  left: 0;
}

.x-popover::before, .x-popover::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 0.25em;
  content: '';
}

.x-popover::before {
  bottom: 100%;
}

.x-popover::after {
  top: 100%;
}

.quote_cite {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
}

.quote__block {
  padding: calc(3.26px + 18.48*(100vw - 326px)/761*1) calc(4.89px + 27.72*(100vw - 326px)/761*1);
  border-radius: calc(1.02778em + 2px);
}

@media screen and (max-width: 325px) {
  .quote__block {
    padding: 3.26px 4.89px;
  }
}

@media screen and (min-width: 1087px) {
  .quote__block {
    padding: 21.74px 32.61px;
  }
}

.quote__block {
  color: #4e7989;
  background-color: #dce4e7;
}

.quote__block.t-primary-inverse, .t-primary-inverse .quote__block {
  color: white;
  background-color: #7395a1;
}

.quote__block.t-secondary-inverse, .t-secondary-inverse .quote__block {
  color: white;
  background-color: #466d7b;
}

body > div [style^='visibility'] {
  width: 100% !important;
}

.row,
.col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.row + *,
* + .row,
.col + *,
* +
.col {
  margin-top: 2.91666667rem;
}

.row > *, .row::before, .row::after,
.col > *,
.col::before,
.col::after {
  margin-top: 0;
}

.row__gap,
.col__gap {
  margin-right: -1vw;
  margin-left: -1vw;
  margin-bottom: -2vw;
}

.row__gap > *, .row__gap::before, .row__gap::after,
.col__gap > *,
.col__gap::before,
.col__gap::after {
  margin-right: 1vw;
  margin-left: 1vw;
  margin-bottom: 2vw;
}

.row__space,
.col__space {
  justify-content: space-around;
  justify-content: space-evenly;
}

.row__pack::before, .row__pack::after,
.col__pack::before,
.col__pack::after {
  order: 99999;
  margin-bottom: 0;
  content: '';
}

.row__pack > *:empty,
.col__pack > *:empty {
  margin-bottom: 0;
}

.row__equal,
.col__equal {
  align-items: stretch;
}

.row__stretch > *, .row__stretch::before, .row__stretch::after,
.col__stretch > *,
.col__stretch::before,
.col__stretch::after {
  flex-grow: 1;
}

.row__width-xxxsmall > *, .row__width-xxxsmall::before, .row__width-xxxsmall::after,
.col__width-xxxsmall > *,
.col__width-xxxsmall::before,
.col__width-xxxsmall::after {
  flex-basis: 7.77777778rem;
}

.row__width-xxsmall > *, .row__width-xxsmall::before, .row__width-xxsmall::after,
.col__width-xxsmall > *,
.col__width-xxsmall::before,
.col__width-xxsmall::after {
  flex-basis: 15.55555556rem;
}

.row__width-xsmall > *, .row__width-xsmall::before, .row__width-xsmall::after,
.col__width-xsmall > *,
.col__width-xsmall::before,
.col__width-xsmall::after {
  flex-basis: 23.33333333rem;
}

.row__width-small > *, .row__width-small::before, .row__width-small::after,
.col__width-small > *,
.col__width-small::before,
.col__width-small::after {
  flex-basis: 31.11111111rem;
}

.row__width-medium > *, .row__width-medium::before, .row__width-medium::after,
.col__width-medium > *,
.col__width-medium::before,
.col__width-medium::after {
  flex-basis: 38.88888889rem;
}

.row__width-large > *, .row__width-large::before, .row__width-large::after,
.col__width-large > *,
.col__width-large::before,
.col__width-large::after {
  flex-basis: 46.66666667rem;
}

.row__width-xlarge > *, .row__width-xlarge::before, .row__width-xlarge::after,
.col__width-xlarge > *,
.col__width-xlarge::before,
.col__width-xlarge::after {
  flex-basis: 54.44444444rem;
}

.row__width-xxlarge > *, .row__width-xxlarge::before, .row__width-xxlarge::after,
.col__width-xxlarge > *,
.col__width-xxlarge::before,
.col__width-xxlarge::after {
  flex-basis: 62.22222222rem;
}

.row__width-xxxlarge > *, .row__width-xxxlarge::before, .row__width-xxxlarge::after,
.col__width-xxxlarge > *,
.col__width-xxxlarge::before,
.col__width-xxxlarge::after {
  flex-basis: 70rem;
}

.row_width-xxxsmall,
.col_width-xxxsmall {
  flex-basis: 7.77777778rem;
}

.row_width-xxsmall,
.col_width-xxsmall {
  flex-basis: 15.55555556rem;
}

.row_width-xsmall,
.col_width-xsmall {
  flex-basis: 23.33333333rem;
}

.row_width-small,
.col_width-small {
  flex-basis: 31.11111111rem;
}

.row_width-medium,
.col_width-medium {
  flex-basis: 38.88888889rem;
}

.row_width-large,
.col_width-large {
  flex-basis: 46.66666667rem;
}

.row_width-xlarge,
.col_width-xlarge {
  flex-basis: 54.44444444rem;
}

.row_width-xxlarge,
.col_width-xxlarge {
  flex-basis: 62.22222222rem;
}

.row_width-xxxlarge,
.col_width-xxxlarge {
  flex-basis: 70rem;
}

.row {
  flex-direction: row;
}

.row_left {
  margin-right: auto;
}

.row_right {
  margin-left: auto;
}

.row_center {
  margin-right: auto;
  margin-left: auto;
}

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

.row__center-y {
  align-items: center;
}

.row__center-x {
  justify-content: center;
}

.col {
  flex-direction: column;
}

.col_top {
  margin-bottom: auto;
}

.col_bottom {
  margin-top: auto;
}

.col_center {
  margin-top: auto;
  margin-bottom: auto;
}

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

.col__center-y {
  justify-content: center;
}

.col__center-x {
  align-items: center;
}

hr,
.rule {
  border: 0;
  border-top: 2px solid;
}

hr,
.rule {
  border-top-color: #e6e6e6;
}

hr.t-primary-inverse, .rule.t-primary-inverse, .t-primary-inverse hr, .t-primary-inverse .rule {
  border-top-color: #6d8c98;
}

hr.t-secondary-inverse, .rule.t-secondary-inverse, .t-secondary-inverse hr, .t-secondary-inverse .rule {
  border-top-color: #426774;
}

* + hr, * +
.rule {
  margin: 2em 0;
}

.screen {
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: calc(1.02778em + 2px);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.screen::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 56.25%;
}

.screen_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin-top: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.screen_video video {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}

.screen_video video:not(.is-loaded) {
  display: none;
}

.screen__sharp {
  border-radius: 0;
}

.screen__plain {
  border-radius: 0;
}

.c-social-email:not([class*='__inverse']) {
  color: #000000 !important;
}

.c-social-email[class*='__inverse'] {
  background-color: #000000 !important;
}

.c-social-share:not([class*='__inverse']) {
  color: #000000 !important;
}

.c-social-share[class*='__inverse'] {
  background-color: #000000 !important;
}

.c-social-facebook:not([class*='__inverse']) {
  color: #3b5998 !important;
}

.c-social-facebook[class*='__inverse'] {
  background-color: #3b5998 !important;
}

.c-social-google-plus:not([class*='__inverse']) {
  color: #dd4b39 !important;
}

.c-social-google-plus[class*='__inverse'] {
  background-color: #dd4b39 !important;
}

.c-social-instagram:not([class*='__inverse']) {
  color: #c32aa3 !important;
}

.c-social-instagram[class*='__inverse'] {
  background-color: #c32aa3 !important;
}

.c-social-linkedin:not([class*='__inverse']) {
  color: #007bb5 !important;
}

.c-social-linkedin[class*='__inverse'] {
  background-color: #007bb5 !important;
}

.c-social-pinterest:not([class*='__inverse']) {
  color: #cb2027 !important;
}

.c-social-pinterest[class*='__inverse'] {
  background-color: #cb2027 !important;
}

.c-social-twitter:not([class*='__inverse']) {
  color: #55acee !important;
}

.c-social-twitter[class*='__inverse'] {
  background-color: #55acee !important;
}

.c-social-youtube:not([class*='__inverse']) {
  color: #bb0000 !important;
}

.c-social-youtube[class*='__inverse'] {
  background-color: #bb0000 !important;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.25em;
  margin-left: -0.25em;
  margin-bottom: -0.5em;
  justify-content: inherit;
}

.social-links > * {
  margin-right: 0.25em;
  margin-left: 0.25em;
  margin-bottom: 0.5em;
}

.social-links > * {
  margin-top: 0;
}

.social-shares {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.25em;
  margin-left: -0.25em;
  margin-bottom: -0.5em;
  justify-content: inherit;
}

.social-shares > * {
  margin-right: 0.25em;
  margin-left: 0.25em;
  margin-bottom: 0.5em;
}

.social-shares > * {
  margin-top: 0;
}

.social-feed {
  padding-left: 0;
}

.social-feed > * {
  margin-left: 0;
  list-style-image: none;
  list-style-type: none;
}

.social-feed > * {
  border-color: #e6e6e6;
}

.social-feed.t-primary-inverse > *, .t-primary-inverse .social-feed > * {
  border-color: #6d8c98;
}

.social-feed.t-secondary-inverse > *, .t-secondary-inverse .social-feed > * {
  border-color: #426774;
}

.social-feed > *:not(:first-child) {
  margin-top: 0.77777778em;
  border-top-width: 2px;
  border-top-style: solid;
  padding-top: 0.77777778em;
}

.social-feed * + * {
  margin-top: 0;
}

.social-feed_text {
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
}

@media screen and (max-width: 325px) {
  .social-feed_text {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  .social-feed_text {
    font-size: 0.77777778em;
  }
}

.social-feed_text .link-external::after {
  display: none;
}

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

.social-post * + * {
  margin-top: 0.5em;
}

.social-post_link, .social-post_link:link, .social-post_link:visited {
  border-bottom: 0;
  text-decoration: none;
}

.social-post_link::after {
  display: none;
}

.stack {
  position: relative;
}

.stack > * {
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.stack_base {
  position: relative;
}

.stack_top {
  top: 0;
  bottom: auto;
}

.stack_right {
  right: 0;
  left: auto;
}

.stack_bottom {
  bottom: 0;
  top: auto;
}

.stack_left {
  left: 0;
  right: auto;
}

.stack_center-x {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.stack_center-y {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.stack_center {
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translate(-50%, -50%);
}

.d-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

table {
  border: 2px solid;
  border-radius: calc(1.02778em + 2px);
  width: 100%;
  border-spacing: 0;
}

table {
  border-color: #cccccc;
}

table.t-primary-inverse, .t-primary-inverse table {
  border-color: #66848f;
}

table.t-secondary-inverse, .t-secondary-inverse table {
  border-color: #3e616e;
}

table tr:first-child th,
table tr:first-child td {
  border-top: 0;
}

table th,
table td {
  border-top: 2px solid;
  border-left: 2px solid;
  padding: 0.38888889em 0.61111111em;
  vertical-align: top;
}

table th,
table td {
  border-color: #e6e6e6;
}

table.t-primary-inverse th, table.t-primary-inverse td, .t-primary-inverse table th, .t-primary-inverse table td {
  border-color: #6d8c98;
}

table.t-secondary-inverse th, table.t-secondary-inverse td, .t-secondary-inverse table th, .t-secondary-inverse table td {
  border-color: #426774;
}

table th:first-child,
table td:first-child {
  border-left: 0;
}

table th {
  text-align: left;
  font-weight: bold;
}

table th {
  color: black;
}

table.t-primary-inverse th, .t-primary-inverse table th {
  color: white;
}

table.t-secondary-inverse th, .t-secondary-inverse table th {
  color: white;
}

table thead th,
table thead td {
  white-space: nowrap;
}

table thead tr:last-child th,
table thead tr:last-child td {
  border-bottom: 2px solid;
}

table thead tr:last-child th,
table thead tr:last-child td {
  border-bottom-color: #cccccc;
}

table.t-primary-inverse thead tr:last-child th, table.t-primary-inverse thead tr:last-child td, .t-primary-inverse table thead tr:last-child th, .t-primary-inverse table thead tr:last-child td {
  border-bottom-color: #66848f;
}

table.t-secondary-inverse thead tr:last-child th, table.t-secondary-inverse thead tr:last-child td, .t-secondary-inverse table thead tr:last-child th, .t-secondary-inverse table thead tr:last-child td {
  border-bottom-color: #3e616e;
}

table tbody th,
table tbody td {
  transition: background-color 0.25s ease;
}

table tbody tr:hover th, table tbody tr:hover td {
  background-color: #dce4e7;
}

table.t-primary-inverse tbody tr:hover th, table.t-primary-inverse tbody tr:hover td, .t-primary-inverse table tbody tr:hover th, .t-primary-inverse table tbody tr:hover td {
  background-color: #7395a1;
}

table.t-secondary-inverse tbody tr:hover th, table.t-secondary-inverse tbody tr:hover td, .t-secondary-inverse table tbody tr:hover th, .t-secondary-inverse table tbody tr:hover td {
  background-color: #466d7b;
}

table tfoot tr:first-child th,
table tfoot tr:first-child td {
  border-top: 2px solid;
}

table tfoot tr:first-child th,
table tfoot tr:first-child td {
  border-top-color: #cccccc;
}

table.t-primary-inverse tfoot tr:first-child th, table.t-primary-inverse tfoot tr:first-child td, .t-primary-inverse table tfoot tr:first-child th, .t-primary-inverse table tfoot tr:first-child td {
  border-top-color: #66848f;
}

table.t-secondary-inverse tfoot tr:first-child th, table.t-secondary-inverse tfoot tr:first-child td, .t-secondary-inverse table tfoot tr:first-child th, .t-secondary-inverse table tfoot tr:first-child td {
  border-top-color: #3e616e;
}

table caption {
  margin-top: 0.77777778em;
  caption-side: bottom;
  text-align: right;
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
  font-style: oblique;
}

@media screen and (max-width: 325px) {
  table caption {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  table caption {
    font-size: 0.77777778em;
  }
}

@media screen and (max-width: 759px) {
  .table-stack.is-enabled {
    display: block;
    border: 0;
  }
  .table-stack.is-enabled th,
  .table-stack.is-enabled td {
    display: block;
    margin-top: 0;
    border: 0;
    text-align: left !important;
  }
  .table-stack.is-enabled tr {
    display: block;
    margin-top: 0;
    border: 2px solid;
    border-top: 0;
  }
  .table-stack.is-enabled tr {
    border-color: #cccccc;
  }
  .is-enabled.table-stack.t-primary-inverse tr, .t-primary-inverse .table-stack.is-enabled tr {
    border-color: #66848f;
  }
  .is-enabled.table-stack.t-secondary-inverse tr, .t-secondary-inverse .table-stack.is-enabled tr {
    border-color: #3e616e;
  }
  .table-stack.is-enabled tr:first-child th,
  .table-stack.is-enabled tr:first-child td {
    border-top: 2px solid;
  }
  .table-stack.is-enabled tr:first-child th,
  .table-stack.is-enabled tr:first-child td {
    border-top-color: #e6e6e6;
  }
  .is-enabled.t-primary-inverse.table-stack tr:first-child th, .is-enabled.t-primary-inverse.table-stack tr:first-child td, .t-primary-inverse .table-stack.is-enabled tr:first-child th, .t-primary-inverse .table-stack.is-enabled tr:first-child td {
    border-top-color: #6d8c98;
  }
  .is-enabled.t-secondary-inverse.table-stack tr:first-child th, .is-enabled.t-secondary-inverse.table-stack tr:first-child td, .t-secondary-inverse .table-stack.is-enabled tr:first-child th, .t-secondary-inverse .table-stack.is-enabled tr:first-child td {
    border-top-color: #426774;
  }
  .table-stack.is-enabled thead {
    display: none;
  }
  .table-stack.is-enabled tbody {
    border-top: 2px solid;
  }
  .table-stack.is-enabled tbody {
    border-top-color: #cccccc;
  }
  .is-enabled.table-stack.t-primary-inverse tbody, .t-primary-inverse .table-stack.is-enabled tbody {
    border-top-color: #66848f;
  }
  .is-enabled.table-stack.t-secondary-inverse tbody, .t-secondary-inverse .table-stack.is-enabled tbody {
    border-top-color: #3e616e;
  }
  .table-stack.is-enabled tbody,
  .table-stack.is-enabled tfoot {
    display: block;
    margin-top: 0;
  }
  .table-stack.is-enabled tbody th,
  .table-stack.is-enabled tbody td,
  .table-stack.is-enabled tfoot th,
  .table-stack.is-enabled tfoot td {
    border-top: 2px solid;
    padding-left: 7.83333em;
  }
  .table-stack.is-enabled tbody th,
  .table-stack.is-enabled tbody td,
  .table-stack.is-enabled tfoot th,
  .table-stack.is-enabled tfoot td {
    border-top-color: #e6e6e6;
  }
  .is-enabled.t-primary-inverse.table-stack tbody th, .is-enabled.t-primary-inverse.table-stack tbody td, .is-enabled.t-primary-inverse.table-stack tfoot th, .is-enabled.t-primary-inverse.table-stack tfoot td, .t-primary-inverse .table-stack.is-enabled tbody th, .t-primary-inverse .table-stack.is-enabled tbody td, .t-primary-inverse .table-stack.is-enabled tfoot th, .t-primary-inverse .table-stack.is-enabled tfoot td {
    border-top-color: #6d8c98;
  }
  .is-enabled.t-secondary-inverse.table-stack tbody th, .is-enabled.t-secondary-inverse.table-stack tbody td, .is-enabled.t-secondary-inverse.table-stack tfoot th, .is-enabled.t-secondary-inverse.table-stack tfoot td, .t-secondary-inverse .table-stack.is-enabled tbody th, .t-secondary-inverse .table-stack.is-enabled tbody td, .t-secondary-inverse .table-stack.is-enabled tfoot th, .t-secondary-inverse .table-stack.is-enabled tfoot td {
    border-top-color: #426774;
  }
  .table-stack.is-enabled tbody th::before,
  .table-stack.is-enabled tbody td::before,
  .table-stack.is-enabled tfoot th::before,
  .table-stack.is-enabled tfoot td::before {
    display: inline-block;
    margin-left: -7.22222222em;
    padding-right: 0.61111111em;
    width: 7.22222222em;
    font-weight: bold;
    content: attr(data-table-header);
  }
  .table-stack.is-enabled tbody th::before,
  .table-stack.is-enabled tbody td::before,
  .table-stack.is-enabled tfoot th::before,
  .table-stack.is-enabled tfoot td::before {
    color: black;
  }
  .is-enabled.t-primary-inverse.table-stack tbody th::before, .is-enabled.t-primary-inverse.table-stack tbody td::before, .is-enabled.t-primary-inverse.table-stack tfoot th::before, .is-enabled.t-primary-inverse.table-stack tfoot td::before, .t-primary-inverse .table-stack.is-enabled tbody th::before, .t-primary-inverse .table-stack.is-enabled tbody td::before, .t-primary-inverse .table-stack.is-enabled tfoot th::before, .t-primary-inverse .table-stack.is-enabled tfoot td::before {
    color: white;
  }
  .is-enabled.t-secondary-inverse.table-stack tbody th::before, .is-enabled.t-secondary-inverse.table-stack tbody td::before, .is-enabled.t-secondary-inverse.table-stack tfoot th::before, .is-enabled.t-secondary-inverse.table-stack tfoot td::before, .t-secondary-inverse .table-stack.is-enabled tbody th::before, .t-secondary-inverse .table-stack.is-enabled tbody td::before, .t-secondary-inverse .table-stack.is-enabled tfoot th::before, .t-secondary-inverse .table-stack.is-enabled tfoot td::before {
    color: white;
  }
  .table-stack.is-enabled tbody th:first-child,
  .table-stack.is-enabled tbody td:first-child,
  .table-stack.is-enabled tfoot th:first-child,
  .table-stack.is-enabled tfoot td:first-child {
    border-top: 0;
  }
  .table-stack.is-enabled tfoot tr:first-child {
    border-top: 0;
  }
  .table-stack.is-enabled tfoot tr:first-child th,
  .table-stack.is-enabled tfoot tr:first-child td {
    border-top: 2px solid;
  }
  .table-stack.is-enabled tfoot tr:first-child th,
  .table-stack.is-enabled tfoot tr:first-child td {
    border-top-color: #e6e6e6;
  }
  .is-enabled.t-primary-inverse.table-stack tfoot tr:first-child th, .is-enabled.t-primary-inverse.table-stack tfoot tr:first-child td, .t-primary-inverse .table-stack.is-enabled tfoot tr:first-child th, .t-primary-inverse .table-stack.is-enabled tfoot tr:first-child td {
    border-top-color: #6d8c98;
  }
  .is-enabled.t-secondary-inverse.table-stack tfoot tr:first-child th, .is-enabled.t-secondary-inverse.table-stack tfoot tr:first-child td, .t-secondary-inverse .table-stack.is-enabled tfoot tr:first-child th, .t-secondary-inverse .table-stack.is-enabled tfoot tr:first-child td {
    border-top-color: #426774;
  }
  .table-stack.is-enabled tfoot tr:first-child th:first-child,
  .table-stack.is-enabled tfoot tr:first-child td:first-child {
    border-top: 0;
  }
  .table-stack.is-enabled caption {
    display: block;
  }
}

@media screen and (max-width: 759px) {
  .table-scroll-outer {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.heading, .heading-1, h1, .heading-2, h2, .heading-3, h3, .heading-4, h4, .heading-5, h5, .heading-6, h6, .heading-main {
  font-family: Fredoka, Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.5;
}

.heading, .heading-1, h1, .heading-2, h2, .heading-3, h3, .heading-4, h4, .heading-5, h5, .heading-6, h6, .heading-main {
  color: black;
}

.heading.t-primary-inverse, .t-primary-inverse.heading-1, h1.t-primary-inverse, .t-primary-inverse.heading-2, h2.t-primary-inverse, .t-primary-inverse.heading-3, h3.t-primary-inverse, .t-primary-inverse.heading-4, h4.t-primary-inverse, .t-primary-inverse.heading-5, h5.t-primary-inverse, .t-primary-inverse.heading-6, h6.t-primary-inverse, .t-primary-inverse.heading-main, .t-primary-inverse .heading, .t-primary-inverse .heading-1, .t-primary-inverse h1, .t-primary-inverse .heading-2, .t-primary-inverse h2, .t-primary-inverse .heading-3, .t-primary-inverse h3, .t-primary-inverse .heading-4, .t-primary-inverse h4, .t-primary-inverse .heading-5, .t-primary-inverse h5, .t-primary-inverse .heading-6, .t-primary-inverse h6, .t-primary-inverse .heading-main {
  color: white;
}

.heading.t-secondary-inverse, .t-secondary-inverse.heading-1, h1.t-secondary-inverse, .t-secondary-inverse.heading-2, h2.t-secondary-inverse, .t-secondary-inverse.heading-3, h3.t-secondary-inverse, .t-secondary-inverse.heading-4, h4.t-secondary-inverse, .t-secondary-inverse.heading-5, h5.t-secondary-inverse, .t-secondary-inverse.heading-6, h6.t-secondary-inverse, .t-secondary-inverse.heading-main, .t-secondary-inverse .heading, .t-secondary-inverse .heading-1, .t-secondary-inverse h1, .t-secondary-inverse .heading-2, .t-secondary-inverse h2, .t-secondary-inverse .heading-3, .t-secondary-inverse h3, .t-secondary-inverse .heading-4, .t-secondary-inverse h4, .t-secondary-inverse .heading-5, .t-secondary-inverse h5, .t-secondary-inverse .heading-6, .t-secondary-inverse h6, .t-secondary-inverse .heading-main {
  color: white;
}

.heading-1, h1 {
  font-size: calc(2em + 1.05556*(100vw - 326px)/761*18);
  line-height: 1.27777778;
}

@media screen and (max-width: 325px) {
  .heading-1, h1 {
    font-size: 2em;
  }
}

@media screen and (min-width: 1087px) {
  .heading-1, h1 {
    font-size: 3.05555556em;
  }
}

.heading-2, h2 {
  font-size: calc(1.72222em + 0.72222*(100vw - 326px)/761*18);
  line-height: 1.27777778;
}

@media screen and (max-width: 325px) {
  .heading-2, h2 {
    font-size: 1.72222222em;
  }
}

@media screen and (min-width: 1087px) {
  .heading-2, h2 {
    font-size: 2.44444444em;
  }
}

.graphic + .heading-2, .graphic + h2 {
  margin-top: 0.5em;
}

.heading-3, h3 {
  font-size: calc(1.5em + 0.44444*(100vw - 326px)/761*18);
  line-height: 1.27777778;
}

@media screen and (max-width: 325px) {
  .heading-3, h3 {
    font-size: 1.5em;
  }
}

@media screen and (min-width: 1087px) {
  .heading-3, h3 {
    font-size: 1.94444444em;
  }
}

.heading-4, h4 {
  font-size: calc(1.33333em + 0.22222*(100vw - 326px)/761*18);
  line-height: 1.27777778;
}

@media screen and (max-width: 325px) {
  .heading-4, h4 {
    font-size: 1.33333333em;
  }
}

@media screen and (min-width: 1087px) {
  .heading-4, h4 {
    font-size: 1.55555556em;
  }
}

.heading-5, h5 {
  font-size: calc(1.16667em + 0.11111*(100vw - 326px)/761*18);
  line-height: 1.27777778;
}

@media screen and (max-width: 325px) {
  .heading-5, h5 {
    font-size: 1.16666667em;
  }
}

@media screen and (min-width: 1087px) {
  .heading-5, h5 {
    font-size: 1.27777778em;
  }
}

.heading-6, h6 {
  font-size: 1em;
}

@media screen and (max-width: 325px) {
  .heading-6, h6 {
    font-size: 1em;
  }
}

@media screen and (min-width: 1087px) {
  .heading-6, h6 {
    font-size: 1em;
  }
}

.heading-main {
  font-size: calc(2.33333em + 1.5*(100vw - 326px)/761*18);
  line-height: 1.27777778;
  text-transform: uppercase;
}

@media screen and (max-width: 325px) {
  .heading-main {
    font-size: 2.33333333em;
  }
}

@media screen and (min-width: 1087px) {
  .heading-main {
    font-size: 3.83333333em;
  }
}

.heading-main + * {
  margin-top: 0;
}

.para, .para-1, .para-1-alt, .para-2, .para-3, p {
  widows: 3;
  orphans: 3;
}

.para-1 {
  font-size: calc(1.16667em + 0.11111*(100vw - 326px)/761*18);
  line-height: 1.27777778;
}

@media screen and (max-width: 325px) {
  .para-1 {
    font-size: 1.16666667em;
  }
}

@media screen and (min-width: 1087px) {
  .para-1 {
    font-size: 1.27777778em;
  }
}

.para-1 {
  color: black;
}

.para-1.t-primary-inverse, .t-primary-inverse .para-1 {
  color: white;
}

.para-1.t-secondary-inverse, .t-secondary-inverse .para-1 {
  color: white;
}

* + .para-1 {
  margin-top: 0.5em;
}

.para-1-alt {
  font-size: calc(1.16667em + 0.11111*(100vw - 326px)/761*18);
  line-height: 1.27777778;
}

@media screen and (max-width: 325px) {
  .para-1-alt {
    font-size: 1.16666667em;
  }
}

@media screen and (min-width: 1087px) {
  .para-1-alt {
    font-size: 1.27777778em;
  }
}

* + .para-1-alt {
  margin-top: 0.5em;
}

.para-2 {
  color: black;
}

.para-2.t-primary-inverse, .t-primary-inverse .para-2 {
  color: white;
}

.para-2.t-secondary-inverse, .t-secondary-inverse .para-2 {
  color: white;
}

.para-3 {
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
}

@media screen and (max-width: 325px) {
  .para-3 {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  .para-3 {
    font-size: 0.77777778em;
  }
}

* + .para-3 {
  margin-top: 0.5em;
}

pre {
  font-family: monaco, Consolas, "Lucida Console", monospace;
  font-weight: normal;
  line-height: 1;
  width: 100%;
  padding: 1em;
  font-size: inherit;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  -moz-tab-size: 4;
  tab-size: 4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

pre {
  background-color: #dce4e7;
}

pre.t-primary-inverse, .t-primary-inverse pre {
  background-color: #7395a1;
}

pre.t-secondary-inverse, .t-secondary-inverse pre {
  background-color: #466d7b;
}

blockquote {
  border-left: 2px solid;
  padding: 0 1em;
  font-style: oblique;
}

blockquote {
  border-left-color: #e6e6e6;
}

blockquote.t-primary-inverse, .t-primary-inverse blockquote {
  border-left-color: #6d8c98;
}

blockquote.t-secondary-inverse, .t-secondary-inverse blockquote {
  border-left-color: #426774;
}

em,
i {
  font-style: italic;
}

strong,
b {
  font-weight: bold;
}

mark {
  padding: 0 0.22222222em;
}

mark {
  background-color: #dce4e7;
}

mark.t-primary-inverse, .t-primary-inverse mark {
  background-color: #7395a1;
}

mark.t-secondary-inverse, .t-secondary-inverse mark {
  background-color: #466d7b;
}

small {
  font-size: inherit;
}

small {
  color: #95afb8;
}

small.t-primary-inverse, .t-primary-inverse small {
  color: rgba(255, 255, 255, 0.6);
}

small.t-secondary-inverse, .t-secondary-inverse small {
  color: rgba(255, 255, 255, 0.6);
}

del,
strike {
  text-decoration: line-through;
}

ins, ins:link, ins:visited,
u,
u:link,
u:visited {
  border-bottom: 2px solid;
  text-decoration: none;
}

ins, ins:link, ins:visited,
u,
u:link,
u:visited {
  border-bottom-color: rgba(78, 121, 137, 0.25);
}

ins.t-primary-inverse, ins.t-primary-inverse:link, ins.t-primary-inverse:visited, u.t-primary-inverse, u.t-primary-inverse:link, u.t-primary-inverse:visited, .t-primary-inverse ins, .t-primary-inverse ins:link, .t-primary-inverse ins:visited, .t-primary-inverse u, .t-primary-inverse u:link, .t-primary-inverse u:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

ins.t-secondary-inverse, ins.t-secondary-inverse:link, ins.t-secondary-inverse:visited, u.t-secondary-inverse, u.t-secondary-inverse:link, u.t-secondary-inverse:visited, .t-secondary-inverse ins, .t-secondary-inverse ins:link, .t-secondary-inverse ins:visited, .t-secondary-inverse u, .t-secondary-inverse u:link, .t-secondary-inverse u:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

ins:hover, ins:focus, ins:active, u:hover, u:focus, u:active {
  border-bottom-color: #4e7989;
}

ins.t-primary-inverse:hover, ins.t-primary-inverse:focus, ins.t-primary-inverse:active, u.t-primary-inverse:hover, u.t-primary-inverse:focus, u.t-primary-inverse:active, .t-primary-inverse ins:hover, .t-primary-inverse ins:focus, .t-primary-inverse ins:active, .t-primary-inverse u:hover, .t-primary-inverse u:focus, .t-primary-inverse u:active {
  border-bottom-color: white;
}

ins.t-secondary-inverse:hover, ins.t-secondary-inverse:focus, ins.t-secondary-inverse:active, u.t-secondary-inverse:hover, u.t-secondary-inverse:focus, u.t-secondary-inverse:active, .t-secondary-inverse ins:hover, .t-secondary-inverse ins:focus, .t-secondary-inverse ins:active, .t-secondary-inverse u:hover, .t-secondary-inverse u:focus, .t-secondary-inverse u:active {
  border-bottom-color: white;
}

q {
  quotes: '\201C' '\201D' '\2018' '\2019';
}

q::before {
  content: open-quote;
}

q::after {
  content: close-quote;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

abbr {
  border-bottom: 2px dotted;
  cursor: help;
}

code {
  font-family: monaco, Consolas, "Lucida Console", monospace;
  font-weight: normal;
  line-height: 1;
  font-size: inherit;
}

pre code {
  padding: 0;
}

br {
  margin-top: 0 !important;
}

.note {
  color: #95afb8;
}

.note.t-primary-inverse, .t-primary-inverse .note {
  color: rgba(255, 255, 255, 0.6);
}

.note.t-secondary-inverse, .t-secondary-inverse .note {
  color: rgba(255, 255, 255, 0.6);
}

.error {
  color: #4e7989;
}

.d-theme {
  border: 1px solid;
  border-radius: calc(1.02778em + 2px);
  padding: 1em;
}

.d-theme.t-default, .t-default .d-theme {
  color: #4e7989;
  background-color: white;
  border-color: #e6e6e6;
  background-image: repeating-linear-gradient(-45deg, white, white 25px, #f2f2f2 25px, #f2f2f2 50px);
}

.d-theme.t-default-inverse, .t-default-inverse .d-theme {
  color: white;
  background-color: black;
  border-color: black;
  background-image: repeating-linear-gradient(-45deg, black, black 25px, black 25px, black 50px);
}

.d-theme.t-primary, .t-primary .d-theme {
  background-color: white;
  border-color: #e6e6e6;
  background-image: repeating-linear-gradient(-45deg, white, white 25px, #f2f2f2 25px, #f2f2f2 50px);
}

.d-theme.t-primary-inverse, .t-primary-inverse .d-theme {
  color: white;
  background-color: #80A5B3;
  border-color: #7395a1;
  background-image: repeating-linear-gradient(-45deg, #80A5B3, #80A5B3 25px, #7a9daa 25px, #7a9daa 50px);
}

.d-theme.t-secondary, .t-secondary .d-theme {
  background-color: white;
  border-color: #e6e6e6;
  background-image: repeating-linear-gradient(-45deg, white, white 25px, #f2f2f2 25px, #f2f2f2 50px);
}

.d-theme.t-secondary-inverse, .t-secondary-inverse .d-theme {
  color: white;
  background-color: #4e7989;
  border-color: #466d7b;
  background-image: repeating-linear-gradient(-45deg, #4e7989, #4e7989 25px, #4a7382 25px, #4a7382 50px);
}

.d-theme > * {
  vertical-align: middle;
}

.d-theme-values {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5em;
  margin-left: -0.5em;
  margin-bottom: -1em;
}

.d-theme-values > * {
  margin-right: 0.5em;
  margin-left: 0.5em;
  margin-bottom: 1em;
}

.d-theme-values > * {
  margin-top: 0;
  flex-grow: 1;
  flex-basis: 150px;
}

.d-theme-value {
  border-radius: calc(1.02778em + 2px);
}

.d-theme-value__background.t-default, .t-default .d-theme-value__background {
  color: white;
}

.d-theme-value__background.t-default .d-theme-label, .t-default .d-theme-value__background .d-theme-label {
  color: black;
}

.d-theme-value__foreground.t-default, .t-default .d-theme-value__foreground {
  color: #4e7989;
}

.d-theme-value__foreground.t-default .d-theme-label, .t-default .d-theme-value__foreground .d-theme-label {
  color: white;
}

.d-theme-value__major.t-default, .t-default .d-theme-value__major {
  color: black;
}

.d-theme-value__major.t-default .d-theme-label, .t-default .d-theme-value__major .d-theme-label {
  color: white;
}

.d-theme-value__minor.t-default, .t-default .d-theme-value__minor {
  color: #95afb8;
}

.d-theme-value__minor.t-default .d-theme-label, .t-default .d-theme-value__minor .d-theme-label {
  color: white;
}

.d-theme-value__disabled.t-default, .t-default .d-theme-value__disabled {
  color: #b8c9d0;
}

.d-theme-value__disabled.t-default .d-theme-label, .t-default .d-theme-value__disabled .d-theme-label {
  color: black;
}

.d-theme-value__fill.t-default, .t-default .d-theme-value__fill {
  color: #dce4e7;
}

.d-theme-value__fill.t-default .d-theme-label, .t-default .d-theme-value__fill .d-theme-label {
  color: black;
}

.d-theme-value__stroke.t-default, .t-default .d-theme-value__stroke {
  color: #e6e6e6;
}

.d-theme-value__stroke.t-default .d-theme-label, .t-default .d-theme-value__stroke .d-theme-label {
  color: black;
}

.d-theme-value__stroke-more.t-default, .t-default .d-theme-value__stroke-more {
  color: #cccccc;
}

.d-theme-value__stroke-more.t-default .d-theme-label, .t-default .d-theme-value__stroke-more .d-theme-label {
  color: black;
}

.d-theme-value__focus.t-default, .t-default .d-theme-value__focus {
  color: #4e7989;
}

.d-theme-value__focus.t-default .d-theme-label, .t-default .d-theme-value__focus .d-theme-label {
  color: white;
}

.d-theme-value__active.t-default, .t-default .d-theme-value__active {
  color: #4e7989;
}

.d-theme-value__active.t-default .d-theme-label, .t-default .d-theme-value__active .d-theme-label {
  color: white;
}

.d-theme-value__attention.t-default, .t-default .d-theme-value__attention {
  color: #4e7989;
}

.d-theme-value__attention.t-default .d-theme-label, .t-default .d-theme-value__attention .d-theme-label {
  color: white;
}

.d-theme-value__positive.t-default, .t-default .d-theme-value__positive {
  color: #2ecc71;
}

.d-theme-value__positive.t-default .d-theme-label, .t-default .d-theme-value__positive .d-theme-label {
  color: white;
}

.d-theme-value__negative.t-default, .t-default .d-theme-value__negative {
  color: #e74c3c;
}

.d-theme-value__negative.t-default .d-theme-label, .t-default .d-theme-value__negative .d-theme-label {
  color: white;
}

.d-theme-value__background.t-default-inverse, .t-default-inverse .d-theme-value__background {
  color: black;
}

.d-theme-value__background.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__background .d-theme-label {
  color: white;
}

.d-theme-value__foreground.t-default-inverse, .t-default-inverse .d-theme-value__foreground {
  color: white;
}

.d-theme-value__foreground.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__foreground .d-theme-label {
  color: black;
}

.d-theme-value__major.t-default-inverse, .t-default-inverse .d-theme-value__major {
  color: white;
}

.d-theme-value__major.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__major .d-theme-label {
  color: black;
}

.d-theme-value__minor.t-default-inverse, .t-default-inverse .d-theme-value__minor {
  color: #b3b3b3;
}

.d-theme-value__minor.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__minor .d-theme-label {
  color: white;
}

.d-theme-value__disabled.t-default-inverse, .t-default-inverse .d-theme-value__disabled {
  color: gray;
}

.d-theme-value__disabled.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__disabled .d-theme-label {
  color: white;
}

.d-theme-value__fill.t-default-inverse, .t-default-inverse .d-theme-value__fill {
  color: #1a1a1a;
}

.d-theme-value__fill.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__fill .d-theme-label {
  color: white;
}

.d-theme-value__stroke.t-default-inverse, .t-default-inverse .d-theme-value__stroke {
  color: #333333;
}

.d-theme-value__stroke.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__stroke .d-theme-label {
  color: white;
}

.d-theme-value__stroke-more.t-default-inverse, .t-default-inverse .d-theme-value__stroke-more {
  color: #4d4d4d;
}

.d-theme-value__stroke-more.t-default-inverse .d-theme-label, .t-default-inverse .d-theme-value__stroke-more .d-theme-label {
  color: white;
}

.d-theme-value__background.t-primary, .t-primary .d-theme-value__background {
  color: white;
}

.d-theme-value__background.t-primary .d-theme-label, .t-primary .d-theme-value__background .d-theme-label {
  color: black;
}

.d-theme-value__major.t-primary, .t-primary .d-theme-value__major {
  color: #4e7989;
}

.d-theme-value__major.t-primary .d-theme-label, .t-primary .d-theme-value__major .d-theme-label {
  color: white;
}

.d-theme-value__fill.t-primary, .t-primary .d-theme-value__fill {
  color: #edf2f3;
}

.d-theme-value__fill.t-primary .d-theme-label, .t-primary .d-theme-value__fill .d-theme-label {
  color: black;
}

.d-theme-value__stroke.t-primary, .t-primary .d-theme-value__stroke {
  color: #d3dee2;
}

.d-theme-value__stroke.t-primary .d-theme-label, .t-primary .d-theme-value__stroke .d-theme-label {
  color: black;
}

.d-theme-value__stroke-more.t-primary, .t-primary .d-theme-value__stroke-more {
  color: #d3dee2;
}

.d-theme-value__stroke-more.t-primary .d-theme-label, .t-primary .d-theme-value__stroke-more .d-theme-label {
  color: black;
}

.d-theme-value__background.t-primary-inverse, .t-primary-inverse .d-theme-value__background {
  color: #80A5B3;
}

.d-theme-value__background.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__background .d-theme-label {
  color: white;
}

.d-theme-value__foreground.t-primary-inverse, .t-primary-inverse .d-theme-value__foreground {
  color: white;
}

.d-theme-value__foreground.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__foreground .d-theme-label {
  color: black;
}

.d-theme-value__major.t-primary-inverse, .t-primary-inverse .d-theme-value__major {
  color: white;
}

.d-theme-value__major.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__major .d-theme-label {
  color: black;
}

.d-theme-value__minor.t-primary-inverse, .t-primary-inverse .d-theme-value__minor {
  color: rgba(255, 255, 255, 0.6);
}

.d-theme-value__minor.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__minor .d-theme-label {
  color: black;
}

.d-theme-value__fill.t-primary-inverse, .t-primary-inverse .d-theme-value__fill {
  color: #7395a1;
}

.d-theme-value__fill.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__fill .d-theme-label {
  color: white;
}

.d-theme-value__stroke.t-primary-inverse, .t-primary-inverse .d-theme-value__stroke {
  color: #6d8c98;
}

.d-theme-value__stroke.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__stroke .d-theme-label {
  color: white;
}

.d-theme-value__stroke-more.t-primary-inverse, .t-primary-inverse .d-theme-value__stroke-more {
  color: #66848f;
}

.d-theme-value__stroke-more.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__stroke-more .d-theme-label {
  color: white;
}

.d-theme-value__focus.t-primary-inverse, .t-primary-inverse .d-theme-value__focus {
  color: black;
}

.d-theme-value__focus.t-primary-inverse .d-theme-label, .t-primary-inverse .d-theme-value__focus .d-theme-label {
  color: white;
}

.d-theme-value__background.t-secondary, .t-secondary .d-theme-value__background {
  color: white;
}

.d-theme-value__background.t-secondary .d-theme-label, .t-secondary .d-theme-value__background .d-theme-label {
  color: black;
}

.d-theme-value__major.t-secondary, .t-secondary .d-theme-value__major {
  color: #4e7989;
}

.d-theme-value__major.t-secondary .d-theme-label, .t-secondary .d-theme-value__major .d-theme-label {
  color: white;
}

.d-theme-value__fill.t-secondary, .t-secondary .d-theme-value__fill {
  color: #edf2f3;
}

.d-theme-value__fill.t-secondary .d-theme-label, .t-secondary .d-theme-value__fill .d-theme-label {
  color: black;
}

.d-theme-value__stroke.t-secondary, .t-secondary .d-theme-value__stroke {
  color: #d3dee2;
}

.d-theme-value__stroke.t-secondary .d-theme-label, .t-secondary .d-theme-value__stroke .d-theme-label {
  color: black;
}

.d-theme-value__stroke-more.t-secondary, .t-secondary .d-theme-value__stroke-more {
  color: #d3dee2;
}

.d-theme-value__stroke-more.t-secondary .d-theme-label, .t-secondary .d-theme-value__stroke-more .d-theme-label {
  color: black;
}

.d-theme-value__background.t-secondary-inverse, .t-secondary-inverse .d-theme-value__background {
  color: #4e7989;
}

.d-theme-value__background.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__background .d-theme-label {
  color: white;
}

.d-theme-value__foreground.t-secondary-inverse, .t-secondary-inverse .d-theme-value__foreground {
  color: white;
}

.d-theme-value__foreground.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__foreground .d-theme-label {
  color: black;
}

.d-theme-value__major.t-secondary-inverse, .t-secondary-inverse .d-theme-value__major {
  color: white;
}

.d-theme-value__major.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__major .d-theme-label {
  color: black;
}

.d-theme-value__minor.t-secondary-inverse, .t-secondary-inverse .d-theme-value__minor {
  color: rgba(255, 255, 255, 0.6);
}

.d-theme-value__minor.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__minor .d-theme-label {
  color: black;
}

.d-theme-value__fill.t-secondary-inverse, .t-secondary-inverse .d-theme-value__fill {
  color: #466d7b;
}

.d-theme-value__fill.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__fill .d-theme-label {
  color: white;
}

.d-theme-value__stroke.t-secondary-inverse, .t-secondary-inverse .d-theme-value__stroke {
  color: #426774;
}

.d-theme-value__stroke.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__stroke .d-theme-label {
  color: white;
}

.d-theme-value__stroke-more.t-secondary-inverse, .t-secondary-inverse .d-theme-value__stroke-more {
  color: #3e616e;
}

.d-theme-value__stroke-more.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__stroke-more .d-theme-label {
  color: white;
}

.d-theme-value__focus.t-secondary-inverse, .t-secondary-inverse .d-theme-value__focus {
  color: black;
}

.d-theme-value__focus.t-secondary-inverse .d-theme-label, .t-secondary-inverse .d-theme-value__focus .d-theme-label {
  color: white;
}

.d-theme-box {
  border-radius: calc(1.02778em + 2px);
  background-color: currentColor;
  text-align: center;
  line-height: 4;
}

.d-theme-text {
  display: inline-block;
  margin-top: 0;
  vertical-align: middle;
}

.d-theme-text::before {
  content: 'text';
}

.d-theme-line {
  display: inline-block;
  margin-top: 0;
  border-top: 1px solid currentColor;
  background-color: currentColor;
  width: 2em;
  vertical-align: middle;
}

.tie {
  display: flex;
  flex-direction: column;
}

.tie > * {
  flex-shrink: 0;
  flex-grow: 0;
}

.tie_top {
  margin-bottom: auto;
}

.tie_right {
  margin-left: auto;
}

.tie_bottom {
  margin-top: auto;
}

.tie_left {
  margin-right: auto;
}

.tie_center-x {
  margin-left: auto;
  margin-right: auto;
}

.tie_center-y {
  margin-top: auto;
  margin-bottom: auto;
}

.tie_center {
  margin: auto;
}

.tie__top {
  justify-content: flex-start;
}

.tie__bottom {
  justify-content: flex-end;
}

.tie__center-x {
  align-items: center;
}

.tie__center-y {
  justify-content: center;
}

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

.tooltip {
  display: inline-block;
  position: relative;
  transition: opacity 0.25s ease;
  z-index: 300;
  margin: 0;
  border-radius: calc(1.02778em + 2px);
  padding: 0.22222222em 0.61111111em;
  white-space: nowrap;
}

.tooltip {
  background-color: #4e7989;
  color: white;
}

.tooltip.t-primary-inverse, .t-primary-inverse .tooltip {
  background-color: white;
  color: #80A5B3;
}

.tooltip.t-secondary-inverse, .t-secondary-inverse .tooltip {
  background-color: white;
  color: #4e7989;
}

.tooltip::before {
  position: absolute;
}

.tooltip__top::before {
  width: 0;
  height: 0;
  content: '';
  border-top: 0.5em solid;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -0.5em;
}

.tooltip__top::before {
  border-top-color: #4e7989;
}

.tooltip__top.t-primary-inverse::before, .t-primary-inverse .tooltip__top::before {
  border-top-color: white;
}

.tooltip__top.t-secondary-inverse::before, .t-secondary-inverse .tooltip__top::before {
  border-top-color: white;
}

.tooltip__right::before {
  width: 0;
  height: 0;
  content: '';
  border-right: 0.5em solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  top: 50%;
  right: 100%;
  margin-top: -0.5em;
}

.tooltip__right::before {
  border-right-color: #4e7989;
}

.tooltip__right.t-primary-inverse::before, .t-primary-inverse .tooltip__right::before {
  border-right-color: white;
}

.tooltip__right.t-secondary-inverse::before, .t-secondary-inverse .tooltip__right::before {
  border-right-color: white;
}

.tooltip__bottom::before {
  width: 0;
  height: 0;
  content: '';
  border-bottom: 0.5em solid;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  bottom: 100%;
  left: 50%;
  margin-left: -0.5em;
}

.tooltip__bottom::before {
  border-bottom-color: #4e7989;
}

.tooltip__bottom.t-primary-inverse::before, .t-primary-inverse .tooltip__bottom::before {
  border-bottom-color: white;
}

.tooltip__bottom.t-secondary-inverse::before, .t-secondary-inverse .tooltip__bottom::before {
  border-bottom-color: white;
}

.tooltip__left::before {
  width: 0;
  height: 0;
  content: '';
  border-left: 0.5em solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  top: 50%;
  left: 100%;
  margin-top: -0.5em;
}

.tooltip__left::before {
  border-left-color: #4e7989;
}

.tooltip__left.t-primary-inverse::before, .t-primary-inverse .tooltip__left::before {
  border-left-color: white;
}

.tooltip__left.t-secondary-inverse::before, .t-secondary-inverse .tooltip__left::before {
  border-left-color: white;
}

.x-tooltip {
  position: relative;
}

.x-tooltip > .tooltip {
  position: absolute;
}

.x-tooltip > .tooltip__top {
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  margin-bottom: 1em;
  transform: translateX(-50%);
}

.x-tooltip > .tooltip__right {
  top: 50%;
  left: 100%;
  transform: translate(0, -50%);
  margin-left: 1em;
  transform: translateY(-50%);
}

.x-tooltip > .tooltip__bottom {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 1em;
}

.x-tooltip > .tooltip__left {
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
  margin-right: 1em;
  transform: translateY(-50%);
}

.x-tooltip__hover:not(:hover) > .tooltip {
  opacity: 0;
  pointer-events: none;
}

.x-tooltip__focus *:not(:focus) + .tooltip {
  opacity: 0;
  pointer-events: none;
}

.transition.is-disabled,
.transition.is-disabled .t-i,
.transition.is-disabled .t-in {
  transition: none !important;
}

.t-fade {
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}

.t-fade:not(.is-running) {
  opacity: 0;
}

.t-fade.is-running {
  opacity: 1;
}

.t-fade-slide-i .t-i,
.t-fade-slide-i .t-in {
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

.t-fade-slide-i .t-i1,
.t-fade-slide-i .t-in:nth-child(1) {
  transition-delay: 0s;
}

.t-fade-slide-i .t-i2,
.t-fade-slide-i .t-in:nth-child(2) {
  transition-delay: 0.05s;
}

.t-fade-slide-i .t-i3,
.t-fade-slide-i .t-in:nth-child(3) {
  transition-delay: 0.1s;
}

.t-fade-slide-i .t-i4,
.t-fade-slide-i .t-in:nth-child(4) {
  transition-delay: 0.15s;
}

.t-fade-slide-i .t-i5,
.t-fade-slide-i .t-in:nth-child(5) {
  transition-delay: 0.2s;
}

.t-fade-slide-i .t-i6,
.t-fade-slide-i .t-in:nth-child(6) {
  transition-delay: 0.25s;
}

.t-fade-slide-i .t-i7,
.t-fade-slide-i .t-in:nth-child(7) {
  transition-delay: 0.3s;
}

.t-fade-slide-i .t-i8,
.t-fade-slide-i .t-in:nth-child(8) {
  transition-delay: 0.35s;
}

.t-fade-slide-i .t-i9,
.t-fade-slide-i .t-in:nth-child(9) {
  transition-delay: 0.4s;
}

.t-fade-slide-i .t-i10,
.t-fade-slide-i .t-in:nth-child(10) {
  transition-delay: 0.45s;
}

.t-fade-slide-i .t-i11,
.t-fade-slide-i .t-in:nth-child(11) {
  transition-delay: 0.5s;
}

.t-fade-slide-i .t-i12,
.t-fade-slide-i .t-in:nth-child(12) {
  transition-delay: 0.55s;
}

.t-fade-slide-i .t-i13,
.t-fade-slide-i .t-in:nth-child(13) {
  transition-delay: 0.6s;
}

.t-fade-slide-i .t-i14,
.t-fade-slide-i .t-in:nth-child(14) {
  transition-delay: 0.65s;
}

.t-fade-slide-i .t-i15,
.t-fade-slide-i .t-in:nth-child(15) {
  transition-delay: 0.7s;
}

.t-fade-slide-i .t-i16,
.t-fade-slide-i .t-in:nth-child(16) {
  transition-delay: 0.75s;
}

.t-fade-slide-i .t-i17,
.t-fade-slide-i .t-in:nth-child(17) {
  transition-delay: 0.8s;
}

.t-fade-slide-i .t-i18,
.t-fade-slide-i .t-in:nth-child(18) {
  transition-delay: 0.85s;
}

.t-fade-slide-i .t-i19,
.t-fade-slide-i .t-in:nth-child(19) {
  transition-delay: 0.9s;
}

.t-fade-slide-i .t-i20,
.t-fade-slide-i .t-in:nth-child(20) {
  transition-delay: 0.95s;
}

.t-fade-slide-i:not(.is-running) .t-i,
.t-fade-slide-i:not(.is-running) .t-in {
  opacity: 0;
  transform: translateY(100px);
}

.t-fade-slide-i.is-running .t-i,
.t-fade-slide-i.is-running .t-in {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion) {
  .t-fade-slide-i .t-i,
  .t-fade-slide-i .t-in {
    transition: none !important;
  }
}

.d-t-demo .t-i,
.d-t-demo .t-in {
  transition-property: opacity, transform, color;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

.d-t-demo .t-i1,
.d-t-demo .t-in:nth-child(1) {
  transition-delay: 0s;
}

.d-t-demo .t-i2,
.d-t-demo .t-in:nth-child(2) {
  transition-delay: 0.1s;
}

.d-t-demo .t-i3,
.d-t-demo .t-in:nth-child(3) {
  transition-delay: 0.2s;
}

.d-t-demo .t-i4,
.d-t-demo .t-in:nth-child(4) {
  transition-delay: 0.3s;
}

.d-t-demo .t-i5,
.d-t-demo .t-in:nth-child(5) {
  transition-delay: 0.4s;
}

.d-t-demo .t-i6,
.d-t-demo .t-in:nth-child(6) {
  transition-delay: 0.5s;
}

.d-t-demo .t-i7,
.d-t-demo .t-in:nth-child(7) {
  transition-delay: 0.6s;
}

.d-t-demo .t-i8,
.d-t-demo .t-in:nth-child(8) {
  transition-delay: 0.7s;
}

.d-t-demo .t-i9,
.d-t-demo .t-in:nth-child(9) {
  transition-delay: 0.8s;
}

.d-t-demo .t-i10,
.d-t-demo .t-in:nth-child(10) {
  transition-delay: 0.9s;
}

.d-t-demo .t-i11,
.d-t-demo .t-in:nth-child(11) {
  transition-delay: 1s;
}

.d-t-demo .t-i12,
.d-t-demo .t-in:nth-child(12) {
  transition-delay: 1.1s;
}

.d-t-demo .t-i13,
.d-t-demo .t-in:nth-child(13) {
  transition-delay: 1.2s;
}

.d-t-demo .t-i14,
.d-t-demo .t-in:nth-child(14) {
  transition-delay: 1.3s;
}

.d-t-demo .t-i15,
.d-t-demo .t-in:nth-child(15) {
  transition-delay: 1.4s;
}

.d-t-demo .t-i16,
.d-t-demo .t-in:nth-child(16) {
  transition-delay: 1.5s;
}

.d-t-demo .t-i17,
.d-t-demo .t-in:nth-child(17) {
  transition-delay: 1.6s;
}

.d-t-demo .t-i18,
.d-t-demo .t-in:nth-child(18) {
  transition-delay: 1.7s;
}

.d-t-demo .t-i19,
.d-t-demo .t-in:nth-child(19) {
  transition-delay: 1.8s;
}

.d-t-demo .t-i20,
.d-t-demo .t-in:nth-child(20) {
  transition-delay: 1.9s;
}

.d-t-demo:not(.is-running) .t-i,
.d-t-demo:not(.is-running) .t-in {
  opacity: 0;
  transform: translateX(100px);
}

.d-t-demo.is-running .t-i,
.d-t-demo.is-running .t-in {
  opacity: 1;
  transform: translateX(0);
}

.d-t-demo.is-running .t-i.t-i-red,
.d-t-demo.is-running .t-in.t-i-red {
  color: red;
}

.d-t-demo.is-running .t-i.t-i-blue,
.d-t-demo.is-running .t-in.t-i-blue {
  color: blue;
}

@media (prefers-reduced-motion) {
  .d-t-demo .t-i,
  .d-t-demo .t-in {
    transition: none !important;
  }
}

video {
  display: inline-block;
  vertical-align: middle;
}

.video {
  position: relative;
  border-radius: calc(1.02778em + 2px);
}

.video::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 56.25%;
}

* + .video {
  margin-top: 2.91666667rem;
}

.video_content {
  border: 0;
}

.video_content, .video_info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.video_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  text-align: center;
}

.video_info {
  background-color: #dce4e7;
}

.video_info.t-primary-inverse, .t-primary-inverse .video_info {
  background-color: #7395a1;
}

.video_info.t-secondary-inverse, .t-secondary-inverse .video_info {
  background-color: #466d7b;
}

.video__sharp {
  border-radius: 0;
}

.video__plain {
  border-radius: 0;
}

.u-xxshrink {
  font-size: 0.72222222em;
}

.u-xshrink {
  font-size: 0.77777778em;
}

.u-shrink {
  font-size: 0.88888889em;
}

.u-grow {
  font-size: 1.22222222em;
}

.u-xgrow {
  font-size: 1.38888889em;
}

.u-xxgrow {
  font-size: 1.61111111em;
}

.u-90deg {
  transform: rotate(90deg);
}

.u-180deg {
  transform: rotate(180deg);
}

.u-270deg {
  transform: rotate(270deg);
}

.u-width-xxxsmall {
  width: 100%;
  max-width: 7.77777778rem;
}

.u-width-xxsmall {
  width: 100%;
  max-width: 15.55555556rem;
}

.u-width-xsmall {
  width: 100%;
  max-width: 23.33333333rem;
}

.u-width-small {
  width: 100%;
  max-width: 31.11111111rem;
}

.u-width-medium {
  width: 100%;
  max-width: 38.88888889rem;
}

.u-width-large {
  width: 100%;
  max-width: 46.66666667rem;
}

.u-width-xlarge {
  width: 100%;
  max-width: 54.44444444rem;
}

.u-width-xxlarge {
  width: 100%;
  max-width: 62.22222222rem;
}

.u-width-xxxlarge {
  width: 100%;
  max-width: 70rem;
}

.u-major {
  color: black;
}

.u-major.t-primary-inverse, .t-primary-inverse .u-major {
  color: white;
}

.u-major.t-secondary-inverse, .t-secondary-inverse .u-major {
  color: white;
}

.u-minor {
  color: #95afb8;
}

.u-minor.t-primary-inverse, .t-primary-inverse .u-minor {
  color: rgba(255, 255, 255, 0.6);
}

.u-minor.t-secondary-inverse, .t-secondary-inverse .u-minor {
  color: rgba(255, 255, 255, 0.6);
}

.u-focus {
  color: #4e7989;
}

.u-focus.t-primary-inverse, .t-primary-inverse .u-focus {
  color: black;
}

.u-focus.t-secondary-inverse, .t-secondary-inverse .u-focus {
  color: black;
}

.u-background {
  color: white;
}

.u-background.t-primary-inverse, .t-primary-inverse .u-background {
  color: #80A5B3;
}

.u-background.t-secondary-inverse, .t-secondary-inverse .u-background {
  color: #4e7989;
}

.u-ratio {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
}

.u-no-ratio::before {
  display: none;
}

.u-1x1::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 100%;
}

.u-4x3::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 75%;
}

.u-3x4::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 133.33333333%;
}

.u-16x9::before {
  display: block;
  margin-top: 0;
  content: '';
  box-sizing: content-box;
  padding-top: 56.25%;
}

.u-25vh {
  min-height: 25vh;
}

.u-50vh {
  min-height: 50vh;
}

.u-75vh {
  min-height: 75vh;
}

.u-100vh {
  min-height: 100vh;
}

.u-25vw {
  min-height: 25vw;
}

.u-50vw {
  min-height: 50vw;
}

.u-75vw {
  min-height: 75vw;
}

.u-100vw {
  min-height: 100vw;
}

.u-left {
  margin-right: auto;
  margin-left: 0;
}

.u-left-wrap {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 760px) {
  .u-left-wrap {
    margin-right: 2vw;
    margin-bottom: 2vw;
    float: left;
  }
  .u-left-wrap:first-child + * {
    margin-top: 0;
  }
}

.u-right {
  margin-right: 0;
  margin-left: auto;
}

.u-right-wrap {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 760px) {
  .u-right-wrap {
    margin-bottom: 2vw;
    margin-left: 2vw;
    float: right;
  }
  .u-right-wrap:first-child + * {
    margin-top: 0;
  }
}

.u-center {
  margin-right: auto;
  margin-left: auto;
}

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

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

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

@media screen and (max-width: 499px) {
  .u-text-collapse br {
    display: none;
  }
}

.u-nocase {
  text-transform: none;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-lowercase {
  text-transform: lowercase;
}

[hidden],
.u-hidden {
  display: none;
}

.u-invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-overflow-scrolling: touch;
}

.u-invisible-text {
  overflow: hidden;
  text-align: left;
  text-indent: -99999px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.u-reveal {
  transition: opacity 0.25s ease;
  opacity: 0;
}

.x-reveal:hover .u-reveal,
.x-reveal:focus .u-reveal,
.x-reveal:active .u-reveal {
  opacity: 1;
}

.u-conceal {
  transition: opacity 0.25s ease;
  opacity: 1;
}

.x-conceal:hover .u-conceal,
.x-conceal:focus .u-conceal,
.x-conceal:active .u-conceal {
  opacity: 0;
}

* + .u-space,
.u-space + * {
  margin-top: 3.88888889rem;
}

.u-radius {
  border-radius: calc(1.02778em + 2px);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.u-radius > * {
  border-radius: 0;
}

.u-pull-x {
  margin-left: -4vw;
  margin-right: -4vw;
}

@media screen and (min-width: 1522px) {
  .u-pull-x {
    margin-left: calc(-50vw - -700px);
    margin-right: calc(-50vw - -700px);
  }
}

@media print {
  .u-pull-x {
    margin-left: initial;
    margin-right: initial;
  }
}

.u-pull-left {
  margin-left: -4vw;
}

@media screen and (min-width: 1522px) {
  .u-pull-left {
    margin-left: calc(-50vw - -700px);
  }
}

@media print {
  .u-pull-left {
    margin-left: initial;
  }
}

.u-pull-right {
  margin-right: -4vw;
}

@media screen and (min-width: 1522px) {
  .u-pull-right {
    margin-right: calc(-50vw - -700px);
  }
}

@media print {
  .u-pull-right {
    margin-right: initial;
  }
}

.u-pull-y {
  margin-top: -3.88888889rem;
  margin-bottom: -3.88888889rem;
}

.u-push-x {
  margin-left: 4vw;
  margin-right: 4vw;
}

@media screen and (min-width: 1522px) {
  .u-push-x {
    margin-left: calc(50vw - 700px);
    margin-right: calc(50vw - 700px);
  }
}

@media print {
  .u-push-x {
    margin-left: initial;
    margin-right: initial;
  }
}

.u-push-left {
  margin-left: 4vw;
}

@media screen and (min-width: 1522px) {
  .u-push-left {
    margin-left: calc(50vw - 700px);
  }
}

@media print {
  .u-push-left {
    margin-left: initial;
  }
}

.u-push-right {
  margin-right: 4vw;
}

@media screen and (min-width: 1522px) {
  .u-push-right {
    margin-right: calc(50vw - 700px);
  }
}

@media print {
  .u-push-right {
    margin-right: initial;
  }
}

.c-major {
  color: black;
}

.c-major.t-primary-inverse, .t-primary-inverse .c-major {
  color: white;
}

.c-major.t-secondary-inverse, .t-secondary-inverse .c-major {
  color: white;
}

.c-minor {
  color: #95afb8;
}

.c-minor.t-primary-inverse, .t-primary-inverse .c-minor {
  color: rgba(255, 255, 255, 0.6);
}

.c-minor.t-secondary-inverse, .t-secondary-inverse .c-minor {
  color: rgba(255, 255, 255, 0.6);
}

.c-focus {
  color: #4e7989;
}

.c-focus.t-primary-inverse, .t-primary-inverse .c-focus {
  color: black;
}

.c-focus.t-secondary-inverse, .t-secondary-inverse .c-focus {
  color: black;
}

.c-attention {
  color: #4e7989;
}

.c-positive {
  color: #2ecc71;
}

.c-negative {
  color: #e74c3c;
}

.d-body {
  padding-left: 4vw;
  padding-right: 4vw;
}

@media screen and (min-width: 1522px) {
  .d-body {
    padding-left: calc(50vw - 700px);
    padding-right: calc(50vw - 700px);
  }
}

@media print {
  .d-body {
    padding-left: initial;
    padding-right: initial;
  }
}

.d {
  position: relative;
  margin: 0 auto;
  padding: 3.88888889rem 0 100vh 0;
  max-width: 1400px;
}

.d-filler {
  min-height: 100px;
  line-height: 100px;
  text-align: center;
}

.d-filler {
  background-image: linear-gradient(45deg, rgba(78, 121, 137, 0.4), rgba(78, 121, 137, 0.4) 50%, rgba(78, 121, 137, 0.2) 50%, rgba(78, 121, 137, 0.2));
}

.d-filler.t-primary-inverse, .t-primary-inverse .d-filler {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2));
}

.d-filler.t-secondary-inverse, .t-secondary-inverse .d-filler {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2));
}

.d-link:link,.d-link:visited, .d-link:link:link, .d-link:link:visited, .d-link:visited:link, .d-link:visited:visited {
  border-bottom: 0;
  text-decoration: none;
}

.d-link:hover, .d-link:hover:link, .d-link:hover:visited {
  border-bottom: 2px solid;
  text-decoration: none;
}

.d-link:hover, .d-link:hover:link, .d-link:hover:visited {
  border-bottom-color: rgba(78, 121, 137, 0.25);
}

.t-primary-inverse.d-link:hover, .t-primary-inverse.d-link:hover:link, .t-primary-inverse.d-link:hover:visited, .t-primary-inverse .d-link:hover, .t-primary-inverse .d-link:hover:link, .t-primary-inverse .d-link:hover:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.t-secondary-inverse.d-link:hover, .t-secondary-inverse.d-link:hover:link, .t-secondary-inverse.d-link:hover:visited, .t-secondary-inverse .d-link:hover, .t-secondary-inverse .d-link:hover:link, .t-secondary-inverse .d-link:hover:visited {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.d-link:hover:hover, .d-link:hover:focus, .d-link:hover:active {
  border-bottom-color: #4e7989;
}

.t-primary-inverse.d-link:hover:hover, .t-primary-inverse.d-link:hover:focus, .t-primary-inverse.d-link:hover:active, .t-primary-inverse .d-link:hover:hover, .t-primary-inverse .d-link:hover:focus, .t-primary-inverse .d-link:hover:active {
  border-bottom-color: white;
}

.t-secondary-inverse.d-link:hover:hover, .t-secondary-inverse.d-link:hover:focus, .t-secondary-inverse.d-link:hover:active, .t-secondary-inverse .d-link:hover:hover, .t-secondary-inverse .d-link:hover:focus, .t-secondary-inverse .d-link:hover:active {
  border-bottom-color: white;
}

.d-heading-main {
  font-weight: normal;
}

.d-heading-main {
  color: #4e7989;
}

.d-heading-main.t-primary-inverse, .t-primary-inverse .d-heading-main {
  color: white;
}

.d-heading-main.t-secondary-inverse, .t-secondary-inverse .d-heading-main {
  color: white;
}

.d-heading,
.d-heading-attribute,
.d-heading-pseudoclass,
.d-heading-block,
.d-heading-element,
.d-heading-modifier,
.d-heading-theme {
  position: relative;
  border-radius: calc(1.02778em + 2px);
  padding: 0.5em 0.61111111em;
  font-size: 1em;
  font-weight: bold;
}

.d-heading,
.d-heading-attribute,
.d-heading-pseudoclass,
.d-heading-block,
.d-heading-element,
.d-heading-modifier,
.d-heading-theme {
  color: #4e7989;
  background-color: #dce4e7;
}

.d-heading.t-primary-inverse, .d-heading-attribute.t-primary-inverse, .d-heading-pseudoclass.t-primary-inverse, .d-heading-block.t-primary-inverse, .d-heading-element.t-primary-inverse, .d-heading-modifier.t-primary-inverse, .d-heading-theme.t-primary-inverse, .t-primary-inverse .d-heading, .t-primary-inverse .d-heading-attribute, .t-primary-inverse .d-heading-pseudoclass, .t-primary-inverse .d-heading-block, .t-primary-inverse .d-heading-element, .t-primary-inverse .d-heading-modifier, .t-primary-inverse .d-heading-theme {
  color: white;
  background-color: #7395a1;
}

.d-heading.t-secondary-inverse, .d-heading-attribute.t-secondary-inverse, .d-heading-pseudoclass.t-secondary-inverse, .d-heading-block.t-secondary-inverse, .d-heading-element.t-secondary-inverse, .d-heading-modifier.t-secondary-inverse, .d-heading-theme.t-secondary-inverse, .t-secondary-inverse .d-heading, .t-secondary-inverse .d-heading-attribute, .t-secondary-inverse .d-heading-pseudoclass, .t-secondary-inverse .d-heading-block, .t-secondary-inverse .d-heading-element, .t-secondary-inverse .d-heading-modifier, .t-secondary-inverse .d-heading-theme {
  color: white;
  background-color: #466d7b;
}

* + .d-heading, * +
.d-heading-attribute, * +
.d-heading-pseudoclass, * +
.d-heading-block, * +
.d-heading-element, * +
.d-heading-modifier, * +
.d-heading-theme {
  margin: 1.5em 0;
}

.d-heading::before, .d-heading::after,
.d-heading-attribute::before,
.d-heading-attribute::after,
.d-heading-pseudoclass::before,
.d-heading-pseudoclass::after,
.d-heading-block::before,
.d-heading-block::after,
.d-heading-element::before,
.d-heading-element::after,
.d-heading-modifier::before,
.d-heading-modifier::after,
.d-heading-theme::before,
.d-heading-theme::after {
  float: right;
  font-weight: normal;
  padding: 0.16666667em 0.27777778em;
  margin-left: 0.61111111em;
  border-radius: calc(1.02778em + 2px);
  font-size: calc(0.88889em + -0.11111*(100vw - 326px)/761*18);
}

@media screen and (max-width: 325px) {
  .d-heading::before, .d-heading::after,
  .d-heading-attribute::before,
  .d-heading-attribute::after,
  .d-heading-pseudoclass::before,
  .d-heading-pseudoclass::after,
  .d-heading-block::before,
  .d-heading-block::after,
  .d-heading-element::before,
  .d-heading-element::after,
  .d-heading-modifier::before,
  .d-heading-modifier::after,
  .d-heading-theme::before,
  .d-heading-theme::after {
    font-size: 0.88888889em;
  }
}

@media screen and (min-width: 1087px) {
  .d-heading::before, .d-heading::after,
  .d-heading-attribute::before,
  .d-heading-attribute::after,
  .d-heading-pseudoclass::before,
  .d-heading-pseudoclass::after,
  .d-heading-block::before,
  .d-heading-block::after,
  .d-heading-element::before,
  .d-heading-element::after,
  .d-heading-modifier::before,
  .d-heading-modifier::after,
  .d-heading-theme::before,
  .d-heading-theme::after {
    font-size: 0.77777778em;
  }
}

.d-heading::before, .d-heading::after,
.d-heading-attribute::before,
.d-heading-attribute::after,
.d-heading-pseudoclass::before,
.d-heading-pseudoclass::after,
.d-heading-block::before,
.d-heading-block::after,
.d-heading-element::before,
.d-heading-element::after,
.d-heading-modifier::before,
.d-heading-modifier::after,
.d-heading-theme::before,
.d-heading-theme::after {
  color: white;
  background-color: black;
}

.t-primary-inverse.d-heading::before, .t-primary-inverse.d-heading::after, .t-primary-inverse.d-heading-attribute::before, .t-primary-inverse.d-heading-attribute::after, .t-primary-inverse.d-heading-pseudoclass::before, .t-primary-inverse.d-heading-pseudoclass::after, .t-primary-inverse.d-heading-block::before, .t-primary-inverse.d-heading-block::after, .t-primary-inverse.d-heading-element::before, .t-primary-inverse.d-heading-element::after, .t-primary-inverse.d-heading-modifier::before, .t-primary-inverse.d-heading-modifier::after, .t-primary-inverse.d-heading-theme::before, .t-primary-inverse.d-heading-theme::after, .t-primary-inverse .d-heading::before, .t-primary-inverse .d-heading::after, .t-primary-inverse .d-heading-attribute::before, .t-primary-inverse .d-heading-attribute::after, .t-primary-inverse .d-heading-pseudoclass::before, .t-primary-inverse .d-heading-pseudoclass::after, .t-primary-inverse .d-heading-block::before, .t-primary-inverse .d-heading-block::after, .t-primary-inverse .d-heading-element::before, .t-primary-inverse .d-heading-element::after, .t-primary-inverse .d-heading-modifier::before, .t-primary-inverse .d-heading-modifier::after, .t-primary-inverse .d-heading-theme::before, .t-primary-inverse .d-heading-theme::after {
  color: #80A5B3;
  background-color: white;
}

.t-secondary-inverse.d-heading::before, .t-secondary-inverse.d-heading::after, .t-secondary-inverse.d-heading-attribute::before, .t-secondary-inverse.d-heading-attribute::after, .t-secondary-inverse.d-heading-pseudoclass::before, .t-secondary-inverse.d-heading-pseudoclass::after, .t-secondary-inverse.d-heading-block::before, .t-secondary-inverse.d-heading-block::after, .t-secondary-inverse.d-heading-element::before, .t-secondary-inverse.d-heading-element::after, .t-secondary-inverse.d-heading-modifier::before, .t-secondary-inverse.d-heading-modifier::after, .t-secondary-inverse.d-heading-theme::before, .t-secondary-inverse.d-heading-theme::after, .t-secondary-inverse .d-heading::before, .t-secondary-inverse .d-heading::after, .t-secondary-inverse .d-heading-attribute::before, .t-secondary-inverse .d-heading-attribute::after, .t-secondary-inverse .d-heading-pseudoclass::before, .t-secondary-inverse .d-heading-pseudoclass::after, .t-secondary-inverse .d-heading-block::before, .t-secondary-inverse .d-heading-block::after, .t-secondary-inverse .d-heading-element::before, .t-secondary-inverse .d-heading-element::after, .t-secondary-inverse .d-heading-modifier::before, .t-secondary-inverse .d-heading-modifier::after, .t-secondary-inverse .d-heading-theme::before, .t-secondary-inverse .d-heading-theme::after {
  color: #4e7989;
  background-color: white;
}

.d-heading-pseudoclass::before {
  content: 'Pseudo Class';
}

.d-heading-attribute::before {
  content: 'Attribute';
}

.d-heading-block::before {
  content: 'Block';
}

.d-heading-element::before {
  content: 'Element';
}

.d-heading-modifier::before {
  content: 'Modifier';
}

.d-heading-theme::before {
  content: 'Theme';
}

.d-test::after {
  content: 'example for testing, don\'t use';
}

.d-test::after {
  color: #4e7989;
  background-color: transparent;
}

.d-test.t-primary-inverse::after, .t-primary-inverse .d-test::after {
  background-color: transparent;
}

.d-test.t-secondary-inverse::after, .t-secondary-inverse .d-test::after {
  background-color: transparent;
}

.d-default::after {
  content: 'default style, not needed';
}

.d-default::after {
  color: black;
  background-color: transparent;
}

.d-default.t-primary-inverse::after, .t-primary-inverse .d-default::after {
  color: white;
  background-color: transparent;
}

.d-default.t-secondary-inverse::after, .t-secondary-inverse .d-default::after {
  color: white;
  background-color: transparent;
}

.d-clear::after {
  display: table;
  clear: both;
  content: '';
}

.d-groups {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75em;
  margin-left: -0.75em;
  margin-bottom: -1.5em;
}

.d-groups > * {
  margin-right: 0.75em;
  margin-left: 0.75em;
  margin-bottom: 1.5em;
}

.d-groups > * {
  margin-top: 0;
  flex-grow: 1;
  flex-basis: 150px;
}

.d-groups-letter > * + * {
  margin-top: 0.5em;
}

.d-groups-heading {
  text-transform: capitalize;
}

.d-groups-list {
  padding-left: 0;
}

.d-groups-list > * {
  margin-left: 0;
  list-style-image: none;
  list-style-type: none;
}

.d-inline {
  margin-top: -0.5em;
  margin-left: -0.27777778em;
}

.d-inline > * {
  vertical-align: middle;
  margin: 0.5em 0 0 0.25em;
}

.d-inline > input {
  max-width: 10em;
}

.d-switcher {
  position: fixed;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: right;
  padding: 1em;
  border-top: 1px solid;
  padding-left: 0;
  float: right;
}

.d-switcher {
  background-color: white;
  border-color: #cccccc;
}

.d-switcher.t-primary-inverse, .t-primary-inverse .d-switcher {
  background-color: #80A5B3;
  border-color: #66848f;
}

.d-switcher.t-secondary-inverse, .t-secondary-inverse .d-switcher {
  background-color: #4e7989;
  border-color: #3e616e;
}

.d-switcher > * {
  margin-left: 0;
  list-style-image: none;
  list-style-type: none;
}

.d-switcher > * {
  display: inline-block;
}

.d-guide {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: -10000vh;
  height: 20000vh;
  pointer-events: none;
  z-index: 99999;
  border-style: solid;
  border-width: 0 1px;
  border-color: red;
}

.d-font-test {
  line-height: 1;
  font-size: 100px;
  margin-top: 1rem;
  border-top: 1px dashed red;
  border-bottom: 1px dashed red;
}

.d-font-test__normal {
  font-family: Fredoka, Helvetica, Arial, sans-serif;
}

.d-font-test__normal::before {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.14em;
  content: '';
}

.d-font-test__normal::after {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.15em;
  content: '';
}

.d-font-test__monospace {
  font-family: monaco, Consolas, "Lucida Console", monospace;
}

.d-font-test__monospace::before {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.1em;
  content: '';
}

.d-font-test__monospace::after {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.13em;
  content: '';
}

.d-gradient-ease,
.d-gradient-linear {
  height: 100px;
}

.d-gradient-ease {
  background: linear-gradient(to right, hsl(0, 0%, 0%), hsla(0, 0%, 0%, 0.95932) 5.79%, hsla(0, 0%, 0%, 0.8912) 10.88%, hsla(0, 0%, 0%, 0.80156) 15.63%, hsla(0, 0%, 0%, 0.6963) 20.37%, hsla(0, 0%, 0%, 0.58131) 25.46%, hsla(0, 0%, 0%, 0.4625) 31.25%, hsla(0, 0%, 0%, 0.34578) 38.08%, hsla(0, 0%, 0%, 0.23704) 46.3%, hsla(0, 0%, 0%, 0.14219) 56.25%, hsla(0, 0%, 0%, 0.06713) 68.29%, hsla(0, 0%, 0%, 0.01777) 82.75%, hsla(0, 0%, 0%, 0));
}

.d-gradient-linear {
  background: linear-gradient(to right, black, transparent);
}

.d-quantity {
  display: flex;
}

.d-quantity > * {
  margin-top: 0;
  margin-right: 10px;
  width: 100px;
  height: 100px;
  background-color: black;
}

.d-quantity > *:nth-last-child(n+3), .d-quantity > *:nth-last-child(n+3) ~ * {
  background-color: blue;
}

.d-quantity > *:nth-last-child(n+4), .d-quantity > *:nth-last-child(n+4) ~ * {
  background-color: red;
}
