/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal, .reveal.tiny, .reveal.small, .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto; } }

/**
 * @param string $animation-name
 * @param string $animation-string
 * css3 animation shorthand property contains:
 *   - animation-name
 *   - animation-duration (1s|500ms) / 0s
 *   - animation-timing-function (ease|linear|ease-out|...) / linear
 *   - animation-delay (1s|500ms|0s) / 0s
 *   - animation-iteration-count (1|2|3|...) / 1
 *   - animation-direction (normal|reverse|alternate|alternate-reverse) / normal
 *   - animation-fill-mode (forwards|backwards|both) / forwards
 *   - animation-play-state (paused|running) / running
 *
 * just skip the name property and you are fine
 */
@keyframes fade-out {
  to {
    opacity: 0; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes rotate {
  0% {
    transform: rotateZ(0deg); }
  100% {
    transform: rotateZ(360deg); } }

@keyframes rotateY {
  0% {
    transform: rotateY(0deg); }
  100% {
    transform: rotateY(360deg); } }

@keyframes zoom-in {
  0% {
    transform: scale(0.25);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }

@keyframes zoom-out {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(0.25);
    opacity: 0; } }

@keyframes bounce {
  0% {
    transform: scale(1); }
  66% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.animation-fade-in {
  animation: fade-in .5s ease 0s 1 normal both running; }

.animation-zoom-in {
  animation: zoom-in .5s ease 0s 1 normal both running; }

.animation-zoom-out {
  animation: zoom-out .5s ease 0s 1 normal both running; }

.animation-rotate {
  animation: rotate 1s linear 0s infinite normal both running; }

.animation-rotate-3d {
  animation: rotateY 1s linear 0s infinite normal both running; }

.animation-bounce {
  animation: bounce 0.5s ease 0s 1 normal both running; }

.animate-slow {
  animation-duration: 1s; }

.animate-fast {
  animation-duration: .25s; }

.animate-slowmotion {
  animation-duration: 2s; }

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

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

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

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

a {
  background-color: transparent; }

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

b,
strong {
  font-weight: bolder; }

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

small, .text-small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

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

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

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

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

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

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

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

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

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

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

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }

html {
  box-sizing: border-box;
  font-size: 100%; }

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

body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  font-family: "OpenSans", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  color: #4A4A4A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

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

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

pre {
  overflow: auto; }

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

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

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

.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto; }
  @media print, screen and (min-width: 40em) {
    .grid-container {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .grid-container.fluid {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    @media print, screen and (min-width: 40em) {
      .grid-container.fluid {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  .grid-container.full {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto; }
  .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex: 0 0 auto; }
  .grid-x > .medium-shrink {
    width: auto; }
  .grid-x > .medium-1 {
    width: 8.33333%; }
  .grid-x > .medium-2 {
    width: 16.66667%; }
  .grid-x > .medium-3 {
    width: 25%; }
  .grid-x > .medium-4 {
    width: 33.33333%; }
  .grid-x > .medium-5 {
    width: 41.66667%; }
  .grid-x > .medium-6 {
    width: 50%; }
  .grid-x > .medium-7 {
    width: 58.33333%; }
  .grid-x > .medium-8 {
    width: 66.66667%; }
  .grid-x > .medium-9 {
    width: 75%; }
  .grid-x > .medium-10 {
    width: 83.33333%; }
  .grid-x > .medium-11 {
    width: 91.66667%; }
  .grid-x > .medium-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto; }
  .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex: 0 0 auto; }
  .grid-x > .large-shrink {
    width: auto; }
  .grid-x > .large-1 {
    width: 8.33333%; }
  .grid-x > .large-2 {
    width: 16.66667%; }
  .grid-x > .large-3 {
    width: 25%; }
  .grid-x > .large-4 {
    width: 33.33333%; }
  .grid-x > .large-5 {
    width: 41.66667%; }
  .grid-x > .large-6 {
    width: 50%; }
  .grid-x > .large-7 {
    width: 58.33333%; }
  .grid-x > .large-8 {
    width: 66.66667%; }
  .grid-x > .large-9 {
    width: 75%; }
  .grid-x > .large-10 {
    width: 83.33333%; }
  .grid-x > .large-11 {
    width: 91.66667%; }
  .grid-x > .large-12 {
    width: 100%; } }

.grid-margin-x:not(.grid-x) > .cell {
  width: auto; }

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

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-x {
      margin-left: -0.9375rem;
      margin-right: -0.9375rem; } }
  .grid-margin-x > .cell {
    width: calc(100% - 1.25rem);
    margin-left: 0.625rem;
    margin-right: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-x > .cell {
      width: calc(100% - 1.875rem);
      margin-left: 0.9375rem;
      margin-right: 0.9375rem; } }
  .grid-margin-x > .auto {
    width: auto; }
  .grid-margin-x > .shrink {
    width: auto; }
  .grid-margin-x > .small-1 {
    width: calc(8.33333% - 1.25rem); }
  .grid-margin-x > .small-2 {
    width: calc(16.66667% - 1.25rem); }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.25rem); }
  .grid-margin-x > .small-4 {
    width: calc(33.33333% - 1.25rem); }
  .grid-margin-x > .small-5 {
    width: calc(41.66667% - 1.25rem); }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.25rem); }
  .grid-margin-x > .small-7 {
    width: calc(58.33333% - 1.25rem); }
  .grid-margin-x > .small-8 {
    width: calc(66.66667% - 1.25rem); }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.25rem); }
  .grid-margin-x > .small-10 {
    width: calc(83.33333% - 1.25rem); }
  .grid-margin-x > .small-11 {
    width: calc(91.66667% - 1.25rem); }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-margin-x > .auto {
      width: auto; }
    .grid-margin-x > .shrink {
      width: auto; }
    .grid-margin-x > .small-1 {
      width: calc(8.33333% - 1.875rem); }
    .grid-margin-x > .small-2 {
      width: calc(16.66667% - 1.875rem); }
    .grid-margin-x > .small-3 {
      width: calc(25% - 1.875rem); }
    .grid-margin-x > .small-4 {
      width: calc(33.33333% - 1.875rem); }
    .grid-margin-x > .small-5 {
      width: calc(41.66667% - 1.875rem); }
    .grid-margin-x > .small-6 {
      width: calc(50% - 1.875rem); }
    .grid-margin-x > .small-7 {
      width: calc(58.33333% - 1.875rem); }
    .grid-margin-x > .small-8 {
      width: calc(66.66667% - 1.875rem); }
    .grid-margin-x > .small-9 {
      width: calc(75% - 1.875rem); }
    .grid-margin-x > .small-10 {
      width: calc(83.33333% - 1.875rem); }
    .grid-margin-x > .small-11 {
      width: calc(91.66667% - 1.875rem); }
    .grid-margin-x > .small-12 {
      width: calc(100% - 1.875rem); }
    .grid-margin-x > .medium-auto {
      width: auto; }
    .grid-margin-x > .medium-shrink {
      width: auto; }
    .grid-margin-x > .medium-1 {
      width: calc(8.33333% - 1.875rem); }
    .grid-margin-x > .medium-2 {
      width: calc(16.66667% - 1.875rem); }
    .grid-margin-x > .medium-3 {
      width: calc(25% - 1.875rem); }
    .grid-margin-x > .medium-4 {
      width: calc(33.33333% - 1.875rem); }
    .grid-margin-x > .medium-5 {
      width: calc(41.66667% - 1.875rem); }
    .grid-margin-x > .medium-6 {
      width: calc(50% - 1.875rem); }
    .grid-margin-x > .medium-7 {
      width: calc(58.33333% - 1.875rem); }
    .grid-margin-x > .medium-8 {
      width: calc(66.66667% - 1.875rem); }
    .grid-margin-x > .medium-9 {
      width: calc(75% - 1.875rem); }
    .grid-margin-x > .medium-10 {
      width: calc(83.33333% - 1.875rem); }
    .grid-margin-x > .medium-11 {
      width: calc(91.66667% - 1.875rem); }
    .grid-margin-x > .medium-12 {
      width: calc(100% - 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-margin-x > .large-auto {
      width: auto; }
    .grid-margin-x > .large-shrink {
      width: auto; }
    .grid-margin-x > .large-1 {
      width: calc(8.33333% - 1.875rem); }
    .grid-margin-x > .large-2 {
      width: calc(16.66667% - 1.875rem); }
    .grid-margin-x > .large-3 {
      width: calc(25% - 1.875rem); }
    .grid-margin-x > .large-4 {
      width: calc(33.33333% - 1.875rem); }
    .grid-margin-x > .large-5 {
      width: calc(41.66667% - 1.875rem); }
    .grid-margin-x > .large-6 {
      width: calc(50% - 1.875rem); }
    .grid-margin-x > .large-7 {
      width: calc(58.33333% - 1.875rem); }
    .grid-margin-x > .large-8 {
      width: calc(66.66667% - 1.875rem); }
    .grid-margin-x > .large-9 {
      width: calc(75% - 1.875rem); }
    .grid-margin-x > .large-10 {
      width: calc(83.33333% - 1.875rem); }
    .grid-margin-x > .large-11 {
      width: calc(91.66667% - 1.875rem); }
    .grid-margin-x > .large-12 {
      width: calc(100% - 1.875rem); } }

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-x .grid-padding-x {
      margin-right: -0.9375rem;
      margin-left: -0.9375rem; } }

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

.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-x > .cell {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%; }
  .medium-up-2 > .cell {
    width: 50%; }
  .medium-up-3 > .cell {
    width: 33.33333%; }
  .medium-up-4 > .cell {
    width: 25%; }
  .medium-up-5 > .cell {
    width: 20%; }
  .medium-up-6 > .cell {
    width: 16.66667%; }
  .medium-up-7 > .cell {
    width: 14.28571%; }
  .medium-up-8 > .cell {
    width: 12.5%; } }

@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%; }
  .large-up-2 > .cell {
    width: 50%; }
  .large-up-3 > .cell {
    width: 33.33333%; }
  .large-up-4 > .cell {
    width: 25%; }
  .large-up-5 > .cell {
    width: 20%; }
  .large-up-6 > .cell {
    width: 16.66667%; }
  .large-up-7 > .cell {
    width: 14.28571%; }
  .large-up-8 > .cell {
    width: 12.5%; } }

.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem); }

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.875rem); }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.875rem); }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.33333% - 1.875rem); }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.875rem); }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.875rem); }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.66667% - 1.875rem); }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.28571% - 1.875rem); }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.875rem); }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem); }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem); }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.33333% - 1.875rem); }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem); }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem); }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.66667% - 1.875rem); }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.28571% - 1.875rem); }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem); } }

@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem); }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem); }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.33333% - 1.875rem); }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem); }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem); }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.66667% - 1.875rem); }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.28571% - 1.875rem); }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem); } }

.small-margin-collapse {
  margin-right: 0;
  margin-left: 0; }
  .small-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0; }
  .small-margin-collapse > .small-1 {
    width: 8.33333%; }
  .small-margin-collapse > .small-2 {
    width: 16.66667%; }
  .small-margin-collapse > .small-3 {
    width: 25%; }
  .small-margin-collapse > .small-4 {
    width: 33.33333%; }
  .small-margin-collapse > .small-5 {
    width: 41.66667%; }
  .small-margin-collapse > .small-6 {
    width: 50%; }
  .small-margin-collapse > .small-7 {
    width: 58.33333%; }
  .small-margin-collapse > .small-8 {
    width: 66.66667%; }
  .small-margin-collapse > .small-9 {
    width: 75%; }
  .small-margin-collapse > .small-10 {
    width: 83.33333%; }
  .small-margin-collapse > .small-11 {
    width: 91.66667%; }
  .small-margin-collapse > .small-12 {
    width: 100%; }
  @media print, screen and (min-width: 40em) {
    .small-margin-collapse > .medium-1 {
      width: 8.33333%; }
    .small-margin-collapse > .medium-2 {
      width: 16.66667%; }
    .small-margin-collapse > .medium-3 {
      width: 25%; }
    .small-margin-collapse > .medium-4 {
      width: 33.33333%; }
    .small-margin-collapse > .medium-5 {
      width: 41.66667%; }
    .small-margin-collapse > .medium-6 {
      width: 50%; }
    .small-margin-collapse > .medium-7 {
      width: 58.33333%; }
    .small-margin-collapse > .medium-8 {
      width: 66.66667%; }
    .small-margin-collapse > .medium-9 {
      width: 75%; }
    .small-margin-collapse > .medium-10 {
      width: 83.33333%; }
    .small-margin-collapse > .medium-11 {
      width: 91.66667%; }
    .small-margin-collapse > .medium-12 {
      width: 100%; } }
  @media print, screen and (min-width: 64em) {
    .small-margin-collapse > .large-1 {
      width: 8.33333%; }
    .small-margin-collapse > .large-2 {
      width: 16.66667%; }
    .small-margin-collapse > .large-3 {
      width: 25%; }
    .small-margin-collapse > .large-4 {
      width: 33.33333%; }
    .small-margin-collapse > .large-5 {
      width: 41.66667%; }
    .small-margin-collapse > .large-6 {
      width: 50%; }
    .small-margin-collapse > .large-7 {
      width: 58.33333%; }
    .small-margin-collapse > .large-8 {
      width: 66.66667%; }
    .small-margin-collapse > .large-9 {
      width: 75%; }
    .small-margin-collapse > .large-10 {
      width: 83.33333%; }
    .small-margin-collapse > .large-11 {
      width: 91.66667%; }
    .small-margin-collapse > .large-12 {
      width: 100%; } }

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

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

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.33333%; }
  .medium-margin-collapse > .small-2 {
    width: 16.66667%; }
  .medium-margin-collapse > .small-3 {
    width: 25%; }
  .medium-margin-collapse > .small-4 {
    width: 33.33333%; }
  .medium-margin-collapse > .small-5 {
    width: 41.66667%; }
  .medium-margin-collapse > .small-6 {
    width: 50%; }
  .medium-margin-collapse > .small-7 {
    width: 58.33333%; }
  .medium-margin-collapse > .small-8 {
    width: 66.66667%; }
  .medium-margin-collapse > .small-9 {
    width: 75%; }
  .medium-margin-collapse > .small-10 {
    width: 83.33333%; }
  .medium-margin-collapse > .small-11 {
    width: 91.66667%; }
  .medium-margin-collapse > .small-12 {
    width: 100%; } }

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.33333%; }
  .medium-margin-collapse > .medium-2 {
    width: 16.66667%; }
  .medium-margin-collapse > .medium-3 {
    width: 25%; }
  .medium-margin-collapse > .medium-4 {
    width: 33.33333%; }
  .medium-margin-collapse > .medium-5 {
    width: 41.66667%; }
  .medium-margin-collapse > .medium-6 {
    width: 50%; }
  .medium-margin-collapse > .medium-7 {
    width: 58.33333%; }
  .medium-margin-collapse > .medium-8 {
    width: 66.66667%; }
  .medium-margin-collapse > .medium-9 {
    width: 75%; }
  .medium-margin-collapse > .medium-10 {
    width: 83.33333%; }
  .medium-margin-collapse > .medium-11 {
    width: 91.66667%; }
  .medium-margin-collapse > .medium-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.33333%; }
  .medium-margin-collapse > .large-2 {
    width: 16.66667%; }
  .medium-margin-collapse > .large-3 {
    width: 25%; }
  .medium-margin-collapse > .large-4 {
    width: 33.33333%; }
  .medium-margin-collapse > .large-5 {
    width: 41.66667%; }
  .medium-margin-collapse > .large-6 {
    width: 50%; }
  .medium-margin-collapse > .large-7 {
    width: 58.33333%; }
  .medium-margin-collapse > .large-8 {
    width: 66.66667%; }
  .medium-margin-collapse > .large-9 {
    width: 75%; }
  .medium-margin-collapse > .large-10 {
    width: 83.33333%; }
  .medium-margin-collapse > .large-11 {
    width: 91.66667%; }
  .medium-margin-collapse > .large-12 {
    width: 100%; } }

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

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

@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.33333%; }
  .large-margin-collapse > .small-2 {
    width: 16.66667%; }
  .large-margin-collapse > .small-3 {
    width: 25%; }
  .large-margin-collapse > .small-4 {
    width: 33.33333%; }
  .large-margin-collapse > .small-5 {
    width: 41.66667%; }
  .large-margin-collapse > .small-6 {
    width: 50%; }
  .large-margin-collapse > .small-7 {
    width: 58.33333%; }
  .large-margin-collapse > .small-8 {
    width: 66.66667%; }
  .large-margin-collapse > .small-9 {
    width: 75%; }
  .large-margin-collapse > .small-10 {
    width: 83.33333%; }
  .large-margin-collapse > .small-11 {
    width: 91.66667%; }
  .large-margin-collapse > .small-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.33333%; }
  .large-margin-collapse > .medium-2 {
    width: 16.66667%; }
  .large-margin-collapse > .medium-3 {
    width: 25%; }
  .large-margin-collapse > .medium-4 {
    width: 33.33333%; }
  .large-margin-collapse > .medium-5 {
    width: 41.66667%; }
  .large-margin-collapse > .medium-6 {
    width: 50%; }
  .large-margin-collapse > .medium-7 {
    width: 58.33333%; }
  .large-margin-collapse > .medium-8 {
    width: 66.66667%; }
  .large-margin-collapse > .medium-9 {
    width: 75%; }
  .large-margin-collapse > .medium-10 {
    width: 83.33333%; }
  .large-margin-collapse > .medium-11 {
    width: 91.66667%; }
  .large-margin-collapse > .medium-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.33333%; }
  .large-margin-collapse > .large-2 {
    width: 16.66667%; }
  .large-margin-collapse > .large-3 {
    width: 25%; }
  .large-margin-collapse > .large-4 {
    width: 33.33333%; }
  .large-margin-collapse > .large-5 {
    width: 41.66667%; }
  .large-margin-collapse > .large-6 {
    width: 50%; }
  .large-margin-collapse > .large-7 {
    width: 58.33333%; }
  .large-margin-collapse > .large-8 {
    width: 66.66667%; }
  .large-margin-collapse > .large-9 {
    width: 75%; }
  .large-margin-collapse > .large-10 {
    width: 83.33333%; }
  .large-margin-collapse > .large-11 {
    width: 91.66667%; }
  .large-margin-collapse > .large-12 {
    width: 100%; } }

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

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

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

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

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.33333% + 0.625rem); }

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

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

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

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

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

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.33333% + 0.625rem); }

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

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.66667% + 0.625rem); }

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

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

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

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.33333% + 0.625rem); }

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

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.66667% + 0.625rem); }

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

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

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

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.33333% + 0.625rem); }

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

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.66667% + 0.625rem); }

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.9375rem); }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem); }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem); }
  .medium-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.9375rem); }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem); }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem); }
  .medium-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.9375rem); }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem); }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem); }
  .medium-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.9375rem); }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem); }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem); } }

@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.9375rem); }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem); }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem); }
  .large-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.9375rem); }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem); }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem); }
  .large-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.9375rem); }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem); }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem); }
  .large-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.9375rem); }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem); }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem); } }

.grid-y {
  display: flex;
  flex-flow: column nowrap; }
  .grid-y > .cell {
    width: auto;
    max-width: none; }
  .grid-y > .auto {
    height: auto; }
  .grid-y > .shrink {
    height: auto; }
  .grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
    flex-basis: auto; }
  @media print, screen and (min-width: 40em) {
    .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
      flex-basis: auto; } }
  @media print, screen and (min-width: 64em) {
    .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
      flex-basis: auto; } }
  .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
    flex: 0 0 auto; }
  .grid-y > .small-1 {
    height: 8.33333%; }
  .grid-y > .small-2 {
    height: 16.66667%; }
  .grid-y > .small-3 {
    height: 25%; }
  .grid-y > .small-4 {
    height: 33.33333%; }
  .grid-y > .small-5 {
    height: 41.66667%; }
  .grid-y > .small-6 {
    height: 50%; }
  .grid-y > .small-7 {
    height: 58.33333%; }
  .grid-y > .small-8 {
    height: 66.66667%; }
  .grid-y > .small-9 {
    height: 75%; }
  .grid-y > .small-10 {
    height: 83.33333%; }
  .grid-y > .small-11 {
    height: 91.66667%; }
  .grid-y > .small-12 {
    height: 100%; }
  @media print, screen and (min-width: 40em) {
    .grid-y > .medium-auto {
      flex: 1 1 0px;
      height: auto; }
    .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
      flex: 0 0 auto; }
    .grid-y > .medium-shrink {
      height: auto; }
    .grid-y > .medium-1 {
      height: 8.33333%; }
    .grid-y > .medium-2 {
      height: 16.66667%; }
    .grid-y > .medium-3 {
      height: 25%; }
    .grid-y > .medium-4 {
      height: 33.33333%; }
    .grid-y > .medium-5 {
      height: 41.66667%; }
    .grid-y > .medium-6 {
      height: 50%; }
    .grid-y > .medium-7 {
      height: 58.33333%; }
    .grid-y > .medium-8 {
      height: 66.66667%; }
    .grid-y > .medium-9 {
      height: 75%; }
    .grid-y > .medium-10 {
      height: 83.33333%; }
    .grid-y > .medium-11 {
      height: 91.66667%; }
    .grid-y > .medium-12 {
      height: 100%; } }
  @media print, screen and (min-width: 64em) {
    .grid-y > .large-auto {
      flex: 1 1 0px;
      height: auto; }
    .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
      flex: 0 0 auto; }
    .grid-y > .large-shrink {
      height: auto; }
    .grid-y > .large-1 {
      height: 8.33333%; }
    .grid-y > .large-2 {
      height: 16.66667%; }
    .grid-y > .large-3 {
      height: 25%; }
    .grid-y > .large-4 {
      height: 33.33333%; }
    .grid-y > .large-5 {
      height: 41.66667%; }
    .grid-y > .large-6 {
      height: 50%; }
    .grid-y > .large-7 {
      height: 58.33333%; }
    .grid-y > .large-8 {
      height: 66.66667%; }
    .grid-y > .large-9 {
      height: 75%; }
    .grid-y > .large-10 {
      height: 83.33333%; }
    .grid-y > .large-11 {
      height: 91.66667%; }
    .grid-y > .large-12 {
      height: 100%; } }

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-y .grid-padding-y {
      margin-top: -0.9375rem;
      margin-bottom: -0.9375rem; } }

.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-y > .cell {
      padding-top: 0.9375rem;
      padding-bottom: 0.9375rem; } }

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y {
      margin-top: -0.9375rem;
      margin-bottom: -0.9375rem; } }
  .grid-margin-y > .cell {
    height: calc(100% - 1.25rem);
    margin-top: 0.625rem;
    margin-bottom: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1.875rem);
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem; } }
  .grid-margin-y > .auto {
    height: auto; }
  .grid-margin-y > .shrink {
    height: auto; }
  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.25rem); }
  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.25rem); }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.25rem); }
  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.25rem); }
  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.25rem); }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.25rem); }
  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.25rem); }
  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.25rem); }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.25rem); }
  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.25rem); }
  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.25rem); }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.33333% - 1.875rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.66667% - 1.875rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.33333% - 1.875rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.66667% - 1.875rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.33333% - 1.875rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.66667% - 1.875rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.33333% - 1.875rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.66667% - 1.875rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1.875rem); }
    .grid-margin-y > .medium-auto {
      height: auto; }
    .grid-margin-y > .medium-shrink {
      height: auto; }
    .grid-margin-y > .medium-1 {
      height: calc(8.33333% - 1.875rem); }
    .grid-margin-y > .medium-2 {
      height: calc(16.66667% - 1.875rem); }
    .grid-margin-y > .medium-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .medium-4 {
      height: calc(33.33333% - 1.875rem); }
    .grid-margin-y > .medium-5 {
      height: calc(41.66667% - 1.875rem); }
    .grid-margin-y > .medium-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .medium-7 {
      height: calc(58.33333% - 1.875rem); }
    .grid-margin-y > .medium-8 {
      height: calc(66.66667% - 1.875rem); }
    .grid-margin-y > .medium-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .medium-10 {
      height: calc(83.33333% - 1.875rem); }
    .grid-margin-y > .medium-11 {
      height: calc(91.66667% - 1.875rem); }
    .grid-margin-y > .medium-12 {
      height: calc(100% - 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-margin-y > .large-auto {
      height: auto; }
    .grid-margin-y > .large-shrink {
      height: auto; }
    .grid-margin-y > .large-1 {
      height: calc(8.33333% - 1.875rem); }
    .grid-margin-y > .large-2 {
      height: calc(16.66667% - 1.875rem); }
    .grid-margin-y > .large-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .large-4 {
      height: calc(33.33333% - 1.875rem); }
    .grid-margin-y > .large-5 {
      height: calc(41.66667% - 1.875rem); }
    .grid-margin-y > .large-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .large-7 {
      height: calc(58.33333% - 1.875rem); }
    .grid-margin-y > .large-8 {
      height: calc(66.66667% - 1.875rem); }
    .grid-margin-y > .large-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .large-10 {
      height: calc(83.33333% - 1.875rem); }
    .grid-margin-y > .large-11 {
      height: calc(91.66667% - 1.875rem); }
    .grid-margin-y > .large-12 {
      height: calc(100% - 1.875rem); } }

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh; } }

@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh; } }

.cell .grid-y.grid-frame {
  height: 100%; }

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

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

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y {
      margin-top: -0.9375rem;
      margin-bottom: -0.9375rem; } }
  .grid-margin-y > .cell {
    height: calc(100% - 1.25rem);
    margin-top: 0.625rem;
    margin-bottom: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1.875rem);
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem; } }
  .grid-margin-y > .auto {
    height: auto; }
  .grid-margin-y > .shrink {
    height: auto; }
  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.25rem); }
  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.25rem); }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.25rem); }
  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.25rem); }
  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.25rem); }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.25rem); }
  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.25rem); }
  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.25rem); }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.25rem); }
  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.25rem); }
  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.25rem); }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.33333% - 1.875rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.66667% - 1.875rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.33333% - 1.875rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.66667% - 1.875rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.33333% - 1.875rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.66667% - 1.875rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.33333% - 1.875rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.66667% - 1.875rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1.875rem); }
    .grid-margin-y > .medium-auto {
      height: auto; }
    .grid-margin-y > .medium-shrink {
      height: auto; }
    .grid-margin-y > .medium-1 {
      height: calc(8.33333% - 1.875rem); }
    .grid-margin-y > .medium-2 {
      height: calc(16.66667% - 1.875rem); }
    .grid-margin-y > .medium-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .medium-4 {
      height: calc(33.33333% - 1.875rem); }
    .grid-margin-y > .medium-5 {
      height: calc(41.66667% - 1.875rem); }
    .grid-margin-y > .medium-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .medium-7 {
      height: calc(58.33333% - 1.875rem); }
    .grid-margin-y > .medium-8 {
      height: calc(66.66667% - 1.875rem); }
    .grid-margin-y > .medium-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .medium-10 {
      height: calc(83.33333% - 1.875rem); }
    .grid-margin-y > .medium-11 {
      height: calc(91.66667% - 1.875rem); }
    .grid-margin-y > .medium-12 {
      height: calc(100% - 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-margin-y > .large-auto {
      height: auto; }
    .grid-margin-y > .large-shrink {
      height: auto; }
    .grid-margin-y > .large-1 {
      height: calc(8.33333% - 1.875rem); }
    .grid-margin-y > .large-2 {
      height: calc(16.66667% - 1.875rem); }
    .grid-margin-y > .large-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .large-4 {
      height: calc(33.33333% - 1.875rem); }
    .grid-margin-y > .large-5 {
      height: calc(41.66667% - 1.875rem); }
    .grid-margin-y > .large-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .large-7 {
      height: calc(58.33333% - 1.875rem); }
    .grid-margin-y > .large-8 {
      height: calc(66.66667% - 1.875rem); }
    .grid-margin-y > .large-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .large-10 {
      height: calc(83.33333% - 1.875rem); }
    .grid-margin-y > .large-11 {
      height: calc(91.66667% - 1.875rem); }
    .grid-margin-y > .large-12 {
      height: calc(100% - 1.875rem); } }

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-frame.grid-margin-y {
      height: calc(100vh + 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-frame.grid-margin-y {
      height: calc(100vh + 1.875rem); } }

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem); } }

@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem); } }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.9875rem;
  margin: 0 0 1.5rem;
  padding: 0.75rem;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #EAF4F7;
  box-shadow: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.55;
  color: #4A4A4A;
  transition: background 0.25s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    outline: none;
    border: 1px solid transparent;
    background-color: #dae3e6;
    box-shadow: none;
    transition: background 0.25s ease-in-out; }

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

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

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

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

::-moz-placeholder {
  color: #4A4A4A; }

:-ms-input-placeholder {
  color: #4A4A4A; }

::-ms-input-placeholder {
  color: #4A4A4A; }

::placeholder {
  color: #4A4A4A; }

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

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

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

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

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4A4A4A; }
  label.middle {
    margin: 0 0 1.5rem;
    padding: 0.8125rem 0; }

.help-text {
  margin-top: -0.75rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #4A4A4A; }

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

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

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

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

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

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

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

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #dae3e6; }
  .fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem; }

select {
  height: 2.9875rem;
  margin: 0 0 1.5rem;
  padding: 0.75rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #EAF4F7;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.55;
  color: #4A4A4A;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='6.993' viewBox='0 0 12 6.993'><defs><style>.a{fill: rgb%2874, 74, 74%29;}</style></defs><path class='a' d='M665,7008.335,663.59,7007l-4.59,4.322L654.41,7007l-1.41,1.331,6,5.663Z' transform='translate(-653 -7007.004)'/></svg>");
  background-origin: content-box;
  background-position: right -1.5rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 2.25rem;
  transition: background 0.25s ease-in-out; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:focus {
    outline: none;
    border: 1px solid transparent;
    background-color: #dae3e6;
    box-shadow: none;
    transition: background 0.25s ease-in-out; }
  select:disabled {
    background-color: #EAF4F7;
    cursor: not-allowed; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb; }
  .is-invalid-input:not(:focus)::-moz-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus)::-ms-input-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37; }

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

.form-error {
  display: none;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cc4b37; }
  .form-error.is-visible {
    display: block; }

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 1rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #0091A5;
  color: #FFFFFF; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #007b8c;
    color: #FFFFFF; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.8rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #0091A5;
    color: #FFFFFF; }
    .button.primary:hover, .button.primary:focus {
      background-color: #007484;
      color: #FFFFFF; }
  .button.secondary {
    background-color: #4A4A4A;
    color: #FFFFFF; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #3b3b3b;
      color: #FFFFFF; }
  .button.success {
    background-color: #3adb76;
    color: #4A4A4A; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #4A4A4A; }
  .button.warning {
    background-color: #ffae00;
    color: #4A4A4A; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #4A4A4A; }
  .button.alert {
    background-color: #cc4b37;
    color: #FFFFFF; }
    .button.alert:hover, .button.alert:focus {
      background-color: #a53b2a;
      color: #FFFFFF; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
      background-color: #0091A5;
      color: #FFFFFF; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #0091A5;
        color: #FFFFFF; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #4A4A4A;
        color: #FFFFFF; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #4A4A4A; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #4A4A4A; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cc4b37;
        color: #FFFFFF; }
  .button.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
    .button.hollow.primary {
      border: 1px solid #0091A5;
      color: #0091A5; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #004953;
        color: #004953; }
        .button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
          border: 1px solid #0091A5;
          color: #0091A5; }
    .button.hollow.secondary {
      border: 1px solid #4A4A4A;
      color: #4A4A4A; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #252525;
        color: #252525; }
        .button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
          border: 1px solid #4A4A4A;
          color: #4A4A4A; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
        .button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
          border: 1px solid #3adb76;
          color: #3adb76; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
        .button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
          border: 1px solid #ffae00;
          color: #ffae00; }
    .button.hollow.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #67251a;
        color: #67251a; }
        .button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
          border: 1px solid #cc4b37;
          color: #cc4b37; }
  .button.clear {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .button.clear, .button.clear:hover, .button.clear:focus {
      background-color: transparent; }
    .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
      background-color: transparent; }
    .button.clear:hover, .button.clear:focus {
      border-color: #004953;
      color: #004953; }
      .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
    .button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
      border-color: transparent; }
    .button.clear.primary {
      border: 1px solid #0091A5;
      color: #0091A5; }
      .button.clear.primary:hover, .button.clear.primary:focus {
        border-color: #004953;
        color: #004953; }
        .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
          border: 1px solid #0091A5;
          color: #0091A5; }
      .button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
        border-color: transparent; }
    .button.clear.secondary {
      border: 1px solid #4A4A4A;
      color: #4A4A4A; }
      .button.clear.secondary:hover, .button.clear.secondary:focus {
        border-color: #252525;
        color: #252525; }
        .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
          border: 1px solid #4A4A4A;
          color: #4A4A4A; }
      .button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
        border-color: transparent; }
    .button.clear.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.clear.success:hover, .button.clear.success:focus {
        border-color: #157539;
        color: #157539; }
        .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
          border: 1px solid #3adb76;
          color: #3adb76; }
      .button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
        border-color: transparent; }
    .button.clear.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.clear.warning:hover, .button.clear.warning:focus {
        border-color: #805700;
        color: #805700; }
        .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
          border: 1px solid #ffae00;
          color: #ffae00; }
      .button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
        border-color: transparent; }
    .button.clear.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.clear.alert:hover, .button.clear.alert:focus {
        border-color: #67251a;
        color: #67251a; }
        .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
          border: 1px solid #cc4b37;
          color: #cc4b37; }
      .button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
        border-color: transparent; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #FFFFFF transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1rem; }
  .button.dropdown.hollow::after, .button.dropdown.clear::after {
    border-top-color: #0091A5; }
  .button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
    border-top-color: #0091A5; }
  .button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
    border-top-color: #4A4A4A; }
  .button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
    border-top-color: #3adb76; }
  .button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
    border-top-color: #ffae00; }
  .button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
    border-top-color: #cc4b37; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

a.button:hover, a.button:focus {
  text-decoration: none; }

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #0091A5;
  color: #FFFFFF; }
  .badge.primary {
    background: #0091A5;
    color: #FFFFFF; }
  .badge.secondary {
    background: #4A4A4A;
    color: #FFFFFF; }
  .badge.success {
    background: #3adb76;
    color: #4A4A4A; }
  .badge.warning {
    background: #ffae00;
    color: #4A4A4A; }
  .badge.alert {
    background: #cc4b37;
    color: #FFFFFF; }

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch; }
  .button-group::before, .button-group::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 1rem;
    flex: 0 0 auto; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 0.6rem; }
  .button-group.small .button {
    font-size: 0.8rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded .button {
    flex: 1 1 0px; }
  .button-group.primary .button {
    background-color: #0091A5;
    color: #FFFFFF; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #007484;
      color: #FFFFFF; }
  .button-group.secondary .button {
    background-color: #4A4A4A;
    color: #FFFFFF; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #3b3b3b;
      color: #FFFFFF; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #4A4A4A; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #4A4A4A; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #4A4A4A; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #4A4A4A; }
  .button-group.alert .button {
    background-color: #cc4b37;
    color: #FFFFFF; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #a53b2a;
      color: #FFFFFF; }
  .button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
    flex-wrap: wrap; }
    .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
      flex: 0 0 100%; }
      .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
        margin-bottom: 0; }
    .button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
      flex: 1 1 0px; }
  @media print, screen and (min-width: 40em) {
    .button-group.stacked-for-small .button {
      flex: 0 0 auto;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      flex: 0 0 auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 39.99875em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }
  @media screen and (max-width: 63.99875em) {
    .button-group.stacked-for-medium.expanded {
      display: block; }
      .button-group.stacked-for-medium.expanded .button {
        display: block;
        margin-right: 0; } }

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(74, 74, 74, 0.25);
  border-radius: 0;
  background-color: white;
  color: #4A4A4A; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #cbf9ff;
    color: #4A4A4A; }
  .callout.secondary {
    background-color: #e4e4e4;
    color: #4A4A4A; }
  .callout.success {
    background-color: #e1faea;
    color: #4A4A4A; }
  .callout.warning {
    background-color: #fff3d9;
    color: #4A4A4A; }
  .callout.alert {
    background-color: #f7e4e1;
    color: #4A4A4A; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.close-button {
  position: absolute;
  color: #9a9fa1;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #4A4A4A; }
  .close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1rem;
    line-height: 1; }
  .close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 1rem;
    line-height: 1; }

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

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

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

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block; }
  .is-drilldown.animate-height {
    transition: height 0.5s; }

.drilldown a {
  padding: 0.7rem 1rem;
  background: #FFFFFF; }

.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #FFFFFF;
  transition: transform 0.15s linear; }
  .drilldown .is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%); }
  .drilldown .is-drilldown-submenu.is-closing {
    transform: translateX(100%); }
  .drilldown .is-drilldown-submenu a {
    padding: 0.7rem 1rem; }

.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0; }

.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%; }

.drilldown .is-drilldown-submenu-parent > a {
  position: relative; }
  .drilldown .is-drilldown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0091A5;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem; }

.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #0091A5;
  right: 1rem;
  left: auto; }

.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0091A5 transparent transparent;
  right: auto;
  left: 1rem; }

.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0091A5 transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem; }

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

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

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

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

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0; }

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #0091A5 transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.dropdown.menu > li > a {
  padding: 0.7rem 1rem; }

.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #0091A5; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

.dropdown.menu.vertical > li > a::after {
  right: 14px; }

.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0091A5 transparent transparent;
  right: auto;
  left: 5px; }

.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #0091A5; }

@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0091A5 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0091A5 transparent transparent;
    right: auto;
    left: 5px; }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0091A5; } }

@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0091A5 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0091A5 transparent transparent;
    right: auto;
    left: 5px; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0091A5; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto; }

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

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

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

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

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #0091A5;
  color: #FFFFFF; }
  .label.primary {
    background: #0091A5;
    color: #FFFFFF; }
  .label.secondary {
    background: #4A4A4A;
    color: #FFFFFF; }
  .label.success {
    background: #3adb76;
    color: #4A4A4A; }
  .label.warning {
    background: #ffae00;
    color: #4A4A4A; }
  .label.alert {
    background: #cc4b37;
    color: #FFFFFF; }

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 39.99875em) {
    .media-object.stack-for-small {
      flex-wrap: wrap; } }

.media-object-section {
  flex: 0 1 auto; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  @media screen and (max-width: 39.99875em) {
    .stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      flex-basis: 100%;
      max-width: 100%; }
      .stack-for-small .media-object-section img {
        width: 100%; } }
  .media-object-section.main-section {
    flex: 1 1 0px; }

.is-off-canvas-open {
  overflow: hidden; }

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden; }
  .js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible; }
  .js-off-canvas-overlay.is-closable {
    cursor: pointer; }
  .js-off-canvas-overlay.is-overlay-absolute {
    position: absolute; }
  .js-off-canvas-overlay.is-overlay-fixed {
    position: fixed; }

.off-canvas-wrapper {
  position: relative;
  overflow: hidden; }

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #FFFFFF; }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.is-transition-push {
    z-index: 12; }
  .off-canvas.is-closed {
    visibility: hidden; }
  .off-canvas.is-transition-overlap {
    z-index: 13; }
    .off-canvas.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(74, 74, 74, 0.7); }
  .off-canvas.is-open {
    transform: translate(0, 0); }

.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #FFFFFF; }
  [data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0; }
  .off-canvas-absolute.is-transition-push {
    z-index: 12; }
  .off-canvas-absolute.is-closed {
    visibility: hidden; }
  .off-canvas-absolute.is-transition-overlap {
    z-index: 13; }
    .off-canvas-absolute.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(74, 74, 74, 0.7); }
  .off-canvas-absolute.is-open {
    transform: translate(0, 0); }

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  transform: translateX(-100%); }
  @media print, screen and (min-width: 40em) {
    .position-left {
      width: 360px;
      transform: translateX(-360px); } }
  .off-canvas-content .off-canvas.position-left {
    transform: translateX(-100%); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content .off-canvas.position-left {
        transform: translateX(-360px); } }
    .off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-left.has-transition-push {
    transform: translateX(100%); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content.is-open-left.has-transition-push {
        transform: translateX(360px); } }
  .position-left.is-transition-push {
    box-shadow: inset -13px 0 20px -13px rgba(74, 74, 74, 0.25); }

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  transform: translateX(100%); }
  @media print, screen and (min-width: 40em) {
    .position-right {
      width: 360px;
      transform: translateX(360px); } }
  .off-canvas-content .off-canvas.position-right {
    transform: translateX(100%); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content .off-canvas.position-right {
        transform: translateX(360px); } }
    .off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-right.has-transition-push {
    transform: translateX(-100%); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content.is-open-right.has-transition-push {
        transform: translateX(-360px); } }
  .position-right.is-transition-push {
    box-shadow: inset 13px 0 20px -13px rgba(74, 74, 74, 0.25); }

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px); }
  .off-canvas-content .off-canvas.position-top {
    transform: translateY(-250px); }
    .off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-top.has-transition-push {
    transform: translateY(250px); }
  .position-top.is-transition-push {
    box-shadow: inset 0 -13px 20px -13px rgba(74, 74, 74, 0.25); }

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px); }
  .off-canvas-content .off-canvas.position-bottom {
    transform: translateY(250px); }
    .off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-bottom.has-transition-push {
    transform: translateY(-250px); }
  .position-bottom.is-transition-push {
    box-shadow: inset 0 13px 20px -13px rgba(74, 74, 74, 0.25); }

.off-canvas-content {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden; }
  .off-canvas-content.has-transition-push {
    transform: translate(0, 0); }
  .off-canvas-content .off-canvas.is-open {
    transform: translate(0, 0); }

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-left.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-left.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-left {
      margin-left: 360px; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 360px; }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-right.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-right.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-right {
      margin-right: 360px; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 360px; }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-top.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-top.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-top {
      margin-top: 360px; }
    .position-top.reveal-for-medium ~ .off-canvas-content {
      margin-top: 360px; }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-bottom.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-bottom.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-bottom {
      margin-bottom: 360px; }
    .position-bottom.reveal-for-medium ~ .off-canvas-content {
      margin-bottom: 360px; } }

@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-left.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-left.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-left {
      margin-left: 360px; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 360px; }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-right.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-right.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-right {
      margin-right: 360px; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 360px; }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-top.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-top.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-top {
      margin-top: 360px; }
    .position-top.reveal-for-large ~ .off-canvas-content {
      margin-top: 360px; }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-bottom.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-bottom.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-bottom {
      margin-bottom: 360px; }
    .position-bottom.reveal-for-large ~ .off-canvas-content {
      margin-bottom: 360px; } }

@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none; }
    .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-medium .close-button {
      display: none; } }

@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none; }
    .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-large .close-button {
      display: none; } }

.orbit {
  position: relative; }

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

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

.orbit-figure {
  margin: 0; }

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

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

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

.orbit-previous {
  left: 0; }

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

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

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .pagination::after {
    clear: both; }
  .pagination li {
    margin-right: 0.0625rem;
    border-radius: 0;
    font-size: 1rem;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media print, screen and (min-width: 40em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0;
    color: #4A4A4A; }
    .pagination a:hover,
    .pagination button:hover {
      background: #EAF4F7; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #0091A5;
    color: #FFFFFF;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #dae3e6;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    padding: 0.1875rem 0.625rem;
    content: '\2026';
    color: #4A4A4A; }

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab'; }

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb'; }

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #dae3e6; }
  .progress.primary .progress-meter {
    background-color: #0091A5; }
  .progress.secondary .progress-meter {
    background-color: #4A4A4A; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #cc4b37; }

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #0091A5; }

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #FFFFFF;
  white-space: nowrap; }

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #EAF4F7;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #dae3e6;
  transition: all 0.2s ease-in-out; }
  .slider-fill.is-dragging {
    transition: all 0s linear; }

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #0091A5;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #007b8c; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed; }

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1); }
  .slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%; }
  .slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%); }

.sticky-container {
  position: relative; }

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0); }

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%; }
  .sticky.is-stuck.is-at-top {
    top: 0; }
  .sticky.is-stuck.is-at-bottom {
    bottom: 0; }

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto; }
  .sticky.is-anchored.is-at-bottom {
    bottom: 0; }

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

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

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

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0; }

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #dae3e6;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer; }
  input + .switch-paddle {
    margin: 0; }
  .switch-paddle::after {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate3d(0, 0, 0);
    border-radius: 0;
    background: #FFFFFF;
    transition: all 0.25s ease-out;
    content: ''; }
  input:checked ~ .switch-paddle {
    background: #0091A5; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.switch-active {
  left: 8%;
  display: none; }
  input:checked + label > .switch-active {
    display: block; }

.switch-inactive {
  right: 15%; }
  input:checked + label > .switch-inactive {
    display: none; }

.switch.tiny {
  height: 1.5rem; }
  .switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.625rem; }
  .switch.tiny .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem; }
  .switch.tiny input:checked ~ .switch-paddle::after {
    left: 1.75rem; }

.switch.small {
  height: 1.75rem; }
  .switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: 0.75rem; }
  .switch.small .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem; }
  .switch.small input:checked ~ .switch-paddle::after {
    left: 2rem; }

.switch.large {
  height: 2.5rem; }
  .switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1rem; }
  .switch.large .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 2rem;
    height: 2rem; }
  .switch.large input:checked ~ .switch-paddle::after {
    left: 2.75rem; }

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0; }
  thead,
  tbody,
  tfoot {
    border: 1px solid #f2f2f2;
    background-color: #FFFFFF; }
  caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: 600; }
  thead {
    background: #f9f9f9;
    color: #4A4A4A; }
  tfoot {
    background: #f2f2f2;
    color: #4A4A4A; }
  thead tr,
  tfoot tr {
    background: transparent; }
  thead th,
  thead td,
  tfoot th,
  tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: 600;
    text-align: left; }
  tbody th,
  tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }
  tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f2f2f2; }
  table.unstriped tbody {
    background-color: #FFFFFF; }
    table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f2f2f2;
      background-color: #FFFFFF; }

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

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

table.hover thead tr:hover {
  background-color: #f4f4f4; }

table.hover tfoot tr:hover {
  background-color: #ededed; }

table.hover tbody tr:hover {
  background-color: #fafafa; }

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ededed; }

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

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 4px solid #FFFFFF;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(74, 74, 74, 0.2);
  line-height: 0; }

a.thumbnail {
  transition: box-shadow 200ms ease-out; }
  a.thumbnail:hover, a.thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(0, 145, 165, 0.5); }
  a.thumbnail image {
    box-shadow: none; }

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-weight: 600;
  cursor: help; }

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

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix::after {
  clear: both; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1; }
  .medium-order-2 {
    order: 2; }
  .medium-order-3 {
    order: 3; }
  .medium-order-4 {
    order: 4; }
  .medium-order-5 {
    order: 5; }
  .medium-order-6 {
    order: 6; } }

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1; }
  .large-order-2 {
    order: 2; }
  .large-order-3 {
    order: 3; }
  .large-order-4 {
    order: 4; }
  .large-order-5 {
    order: 5; }
  .large-order-6 {
    order: 6; } }

.flex-container {
  display: flex; }

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

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

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

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

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

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

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

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

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

.text-hide {
  font: 0/0 a !important;
  color: transparent !important;
  text-shadow: none !important;
  background-color: transparent !important;
  border: 0 !important; }

.text-truncate {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  white-space: nowrap !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-wrap {
  word-wrap: break-word !important; }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.text-overline {
  text-decoration: overline !important; }

.text-underline {
  text-decoration: underline !important; }

.text-line-through {
  text-decoration: line-through !important; }

.font-wide {
  letter-spacing: 0.25rem; }

.font-normal {
  font-weight: 300; }

.font-bold {
  font-weight: 600; }

.font-italic {
  font-style: italic !important; }

ul.list-disc {
  list-style-type: disc !important; }

ul.list-circle {
  list-style-type: circle !important; }

ul.list-square {
  list-style-type: square !important; }

ol.list-decimal {
  list-style-type: decimal !important; }

ol.list-lower-alpha {
  list-style-type: lower-alpha !important; }

ol.list-lower-latin {
  list-style-type: lower-latin !important; }

ol.list-lower-roman {
  list-style-type: lower-roman !important; }

ol.list-upper-alpha {
  list-style-type: upper-alpha !important; }

ol.list-upper-latin {
  list-style-type: upper-latin !important; }

ol.list-upper-roman {
  list-style-type: upper-roman !important; }

.rounded {
  border-radius: 5000px !important; }
  .rounded:after {
    border-radius: 50%; }

.radius {
  border-radius: 0.1875rem; }

.bordered {
  border: 0.0625rem solid #dae3e6; }

.shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }

.arrow-down {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #4A4A4A transparent transparent; }

.arrow-up {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #4A4A4A; }

.arrow-right {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #4A4A4A; }

.arrow-left {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4375rem;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #4A4A4A transparent transparent; }

.separator-center {
  text-align: center !important; }
  .separator-center::before, .separator-center::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .separator-center::after {
    clear: both; }
  .separator-center::after {
    position: relative !important;
    width: 3rem;
    border-bottom: 0.125rem solid #0091A5;
    margin: 1rem auto 0; }

.separator-left {
  text-align: left !important; }
  .separator-left::before, .separator-left::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .separator-left::after {
    clear: both; }
  .separator-left::after {
    position: relative !important;
    width: 3rem;
    border-bottom: 0.125rem solid #0091A5;
    margin: 1rem auto 0;
    margin-left: 0 !important; }

.separator-right {
  text-align: right !important; }
  .separator-right::before, .separator-right::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .separator-right::after {
    clear: both; }
  .separator-right::after {
    position: relative !important;
    width: 3rem;
    border-bottom: 0.125rem solid #0091A5;
    margin: 1rem auto 0;
    margin-right: 0 !important; }

.overflow-visible {
  overflow: visible !important; }

.overflow-x-visible {
  overflow-x: visible !important; }

.overflow-y-visible {
  overflow-y: visible !important; }

.overflow-hidden {
  overflow: hidden !important; }

.overflow-x-hidden {
  overflow-x: hidden !important; }

.overflow-y-hidden {
  overflow-y: hidden !important; }

.overflow-scroll {
  overflow: scroll !important; }

.overflow-x-scroll {
  overflow-x: scroll !important; }

.overflow-y-scroll {
  overflow-y: scroll !important; }

.display-inline {
  display: inline !important; }

.display-inline-block {
  display: inline-block !important; }

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

.display-table {
  display: table !important; }

.display-table-cell {
  display: table-cell !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-fixed-top {
  position: fixed !important;
  top: 0rem !important;
  right: 0rem !important;
  left: 0rem !important;
  z-index: 975; }

.position-fixed-bottom {
  position: fixed !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  z-index: 975; }

.border-box {
  box-sizing: border-box !important; }

.border-none {
  border: none !important; }

.width-25 {
  width: 25% !important; }

.width-50 {
  width: 50% !important; }

.width-75 {
  width: 75% !important; }

.width-100 {
  width: 100% !important; }

.height-25 {
  height: 25% !important; }

.height-50 {
  height: 50% !important; }

.height-75 {
  height: 75% !important; }

.height-100 {
  height: 100% !important; }

.max-width-100 {
  max-width: 100% !important; }

.max-height-100 {
  max-height: 100% !important; }

.margin-0 {
  margin: 0rem; }

.margin-top-0 {
  margin-top: 0rem !important; }

.margin-right-0 {
  margin-right: 0rem !important; }

.margin-bottom-0 {
  margin-bottom: 0rem !important; }

.margin-left-0 {
  margin-left: 0rem !important; }

.margin-horizontal-0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important; }

.margin-vertical-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important; }

.padding-0 {
  padding: 0rem; }

.padding-top-0 {
  padding-top: 0rem !important; }

.padding-right-0 {
  padding-right: 0rem !important; }

.padding-bottom-0 {
  padding-bottom: 0rem !important; }

.padding-left-0 {
  padding-left: 0rem !important; }

.padding-horizontal-0 {
  padding-right: 0rem !important;
  padding-left: 0rem !important; }

.padding-vertical-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important; }

.margin-1 {
  margin: 1rem; }

.margin-top-1 {
  margin-top: 1rem !important; }

.margin-right-1 {
  margin-right: 1rem !important; }

.margin-bottom-1 {
  margin-bottom: 1rem !important; }

.margin-left-1 {
  margin-left: 1rem !important; }

.margin-horizontal-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.margin-vertical-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.padding-1 {
  padding: 1rem; }

.padding-top-1 {
  padding-top: 1rem !important; }

.padding-right-1 {
  padding-right: 1rem !important; }

.padding-bottom-1 {
  padding-bottom: 1rem !important; }

.padding-left-1 {
  padding-left: 1rem !important; }

.padding-horizontal-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.padding-vertical-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.margin-2 {
  margin: 2rem; }

.margin-top-2 {
  margin-top: 2rem !important; }

.margin-right-2 {
  margin-right: 2rem !important; }

.margin-bottom-2 {
  margin-bottom: 2rem !important; }

.margin-left-2 {
  margin-left: 2rem !important; }

.margin-horizontal-2 {
  margin-right: 2rem !important;
  margin-left: 2rem !important; }

.margin-vertical-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important; }

.padding-2 {
  padding: 2rem; }

.padding-top-2 {
  padding-top: 2rem !important; }

.padding-right-2 {
  padding-right: 2rem !important; }

.padding-bottom-2 {
  padding-bottom: 2rem !important; }

.padding-left-2 {
  padding-left: 2rem !important; }

.padding-horizontal-2 {
  padding-right: 2rem !important;
  padding-left: 2rem !important; }

.padding-vertical-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important; }

.margin-3 {
  margin: 3rem; }

.margin-top-3 {
  margin-top: 3rem !important; }

.margin-right-3 {
  margin-right: 3rem !important; }

.margin-bottom-3 {
  margin-bottom: 3rem !important; }

.margin-left-3 {
  margin-left: 3rem !important; }

.margin-horizontal-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.margin-vertical-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.padding-3 {
  padding: 3rem; }

.padding-top-3 {
  padding-top: 3rem !important; }

.padding-right-3 {
  padding-right: 3rem !important; }

.padding-bottom-3 {
  padding-bottom: 3rem !important; }

.padding-left-3 {
  padding-left: 3rem !important; }

.padding-horizontal-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.padding-vertical-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #EAF4F7;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: none;
  overflow: hidden;
  color: #4A4A4A; }
  .card > :last-child {
    margin-bottom: 0; }

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #EAF4F7; }
  .card-divider > :last-child {
    margin-bottom: 0; }

.card-section {
  flex: 1 0 auto;
  padding: 1rem; }
  .card-section > :last-child {
    margin-bottom: 0; }

.card-image {
  min-height: 1px; }

.tabs {
  margin: 0;
  border: 1px solid #EAF4F7;
  background: #FFFFFF;
  list-style-type: none; }
  .tabs::before, .tabs::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .tabs::after {
    clear: both; }

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto; }

.tabs.simple > li > a {
  padding: 0; }
  .tabs.simple > li > a:hover {
    background: transparent; }

.tabs.primary {
  background: #0091A5; }
  .tabs.primary > li > a {
    color: #FFFFFF; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #00a0b6; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1;
    color: #0091A5; }
    [data-whatinput='mouse'] .tabs-title > a {
      outline: 0; }
    .tabs-title > a:hover {
      background: #FFFFFF;
      color: #007d8e; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: #EAF4F7;
      color: #0091A5; }

.tabs-content {
  border: 1px solid #EAF4F7;
  border-top: 0;
  background: #FFFFFF;
  color: #4A4A4A;
  transition: all 0.5s ease; }

.tabs-content.vertical {
  border: 1px solid #EAF4F7;
  border-left: 0; }

.tabs-panel {
  display: none;
  padding: 1rem; }
  .tabs-panel.is-active {
    display: block; }

.accordion {
  margin-left: 0;
  background: #FFFFFF;
  list-style-type: none; }
  .accordion[disabled] .accordion-title {
    cursor: not-allowed; }

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0; }

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0; }

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #EAF4F7;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #0091A5; }
  :last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid #EAF4F7;
    border-radius: 0 0 0 0; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #EAF4F7; }
  .accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: '+'; }
  .is-active > .accordion-title::before {
    content: '\2013'; }

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #EAF4F7;
  border-bottom: 0;
  background-color: #FFFFFF;
  color: #4A4A4A; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid #EAF4F7; }

a.button,
p a[href].button {
  text-decoration: none; }

.input-group-button {
  margin-bottom: 0; }

.input-group-label.-fixed-5 {
  min-width: 5em; }

.input-group-label.-fixed-6 {
  min-width: 6em; }

.input-group-label.-fixed-7 {
  min-width: 7em; }

.input-group-label.-fixed-8 {
  min-width: 8em; }

.input-group-label.-fixed-9 {
  min-width: 9em; }

.input-group-label.-fixed-10 {
  min-width: 10em; }

.input-group-label.-fixed-11 {
  min-width: 11em; }

.input-group-label.-fixed-12 {
  min-width: 12em; }

.input-group-label.-fixed-13 {
  min-width: 13em; }

.input-group-label.-fixed-14 {
  min-width: 14em; }

.input-group-label.-fixed-15 {
  min-width: 15em; }

.input-group-label.-fixed-16 {
  min-width: 16em; }

.input-group-label.-fixed-17 {
  min-width: 17em; }

.input-group-label.-fixed-18 {
  min-width: 18em; }

.input-group-label.-fixed-19 {
  min-width: 19em; }

.button {
  text-transform: uppercase;
  font-weight: 600; }

.reveal .close-button + * {
  padding-right: 2rem; }

.grid-x > .cell > .input-group,
.grid-x > .cell > .button {
  margin-bottom: 0; }

.button.small-expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0; }

.cell.cell-small-fix {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.cell.cell-small-fix-left {
  padding-left: 0 !important; }

.cell.cell-small-fix-right {
  padding-right: 0 !important; }

@media screen and (max-width: 39.99875em) {
  .button.small-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-small-only-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-small-only-fix-left {
    padding-left: 0 !important; }
  .cell.cell-small-only-fix-right {
    padding-right: 0 !important; } }

@media screen and (max-width: 39.99875em) {
  .button.small-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-small-down-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-small-down-fix-left {
    padding-left: 0 !important; }
  .cell.cell-small-down-fix-right {
    padding-right: 0 !important; } }

@media print, screen and (min-width: 40em) {
  .button.medium-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-medium-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-medium-fix-left {
    padding-left: 0 !important; }
  .cell.cell-medium-fix-right {
    padding-right: 0 !important; } }

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .button.medium-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-medium-only-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-medium-only-fix-left {
    padding-left: 0 !important; }
  .cell.cell-medium-only-fix-right {
    padding-right: 0 !important; } }

@media screen and (max-width: 63.99875em) {
  .button.medium-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-medium-down-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-medium-down-fix-left {
    padding-left: 0 !important; }
  .cell.cell-medium-down-fix-right {
    padding-right: 0 !important; } }

@media print, screen and (min-width: 64em) {
  .button.large-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-large-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-large-fix-left {
    padding-left: 0 !important; }
  .cell.cell-large-fix-right {
    padding-right: 0 !important; } }

@media screen and (min-width: 64em) and (max-width: 74.99875em) {
  .button.large-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-large-only-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-large-only-fix-left {
    padding-left: 0 !important; }
  .cell.cell-large-only-fix-right {
    padding-right: 0 !important; } }

@media screen and (max-width: 74.99875em) {
  .button.large-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-large-down-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-large-down-fix-left {
    padding-left: 0 !important; }
  .cell.cell-large-down-fix-right {
    padding-right: 0 !important; } }

@media screen and (min-width: 75em) {
  .button.xlarge-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-xlarge-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-xlarge-fix-left {
    padding-left: 0 !important; }
  .cell.cell-xlarge-fix-right {
    padding-right: 0 !important; } }

@media screen and (min-width: 75em) and (max-width: 89.99875em) {
  .button.xlarge-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-xlarge-only-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-xlarge-only-fix-left {
    padding-left: 0 !important; }
  .cell.cell-xlarge-only-fix-right {
    padding-right: 0 !important; } }

@media screen and (max-width: 89.99875em) {
  .button.xlarge-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-xlarge-down-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-xlarge-down-fix-left {
    padding-left: 0 !important; }
  .cell.cell-xlarge-down-fix-right {
    padding-right: 0 !important; } }

@media screen and (min-width: 90em) {
  .button.xxlarge-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-xxlarge-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-xxlarge-fix-left {
    padding-left: 0 !important; }
  .cell.cell-xxlarge-fix-right {
    padding-right: 0 !important; } }

@media screen and (min-width: 90em) {
  .button.xxlarge-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .cell.cell-xxlarge-only-fix {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .cell.cell-xxlarge-only-fix-left {
    padding-left: 0 !important; }
  .cell.cell-xxlarge-only-fix-right {
    padding-right: 0 !important; } }

.button.xxlarge-down-expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0; }

.cell.cell-xxlarge-down-fix {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.cell.cell-xxlarge-down-fix-left {
  padding-left: 0 !important; }

.cell.cell-xxlarge-down-fix-right {
  padding-right: 0 !important; }

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

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

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

@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    width: auto !important; } }

.button-group.-center {
  justify-content: center; }

.button-group.-right {
  justify-content: flex-end; }

@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto; } }

@media screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small .button {
    width: 100%; } }

.orbit.-variable-image-size .orbit-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9; }
  .orbit.-variable-image-size .orbit-wrapper .orbit-container {
    height: 100% !important; }
  .orbit.-variable-image-size .orbit-wrapper .orbit-slide {
    position: absolute;
    height: 100%; }

.orbit.-variable-image-size .orbit-slide .orbit-figure {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  .orbit.-variable-image-size .orbit-slide .orbit-figure ._image-wrap {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center; }
  .orbit.-variable-image-size .orbit-slide .orbit-figure img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
    -o-object-fit: contain;
       object-fit: contain; }

picture.orbit-image img {
  display: block;
  width: 100% !important;
  height: auto !important; }

.orbit-bullets {
  vertical-align: middle;
  line-height: 1; }
  .orbit-bullets button {
    vertical-align: middle;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent !important;
    outline: none; }
    .orbit-bullets button:before, .orbit-bullets button:after {
      content: "";
      position: absolute; }
    .orbit-bullets button:before {
      z-index: 2;
      width: 0.8rem;
      height: 0.8rem;
      left: 0.35rem;
      top: 0.35rem;
      border-radius: 1rem;
      background: #EAF4F7; }
    .orbit-bullets button:after {
      z-index: 1;
      width: 1.5rem;
      height: 1.5rem;
      left: 0;
      top: 0;
      border-radius: 1.5rem;
      background: rgba(255, 255, 255, 0.25);
      transform: scale(0.5);
      opacity: 0;
      transition: all .25s ease; }
    .orbit-bullets button.is-active:after {
      opacity: 1;
      transform: scale(1); }

.orbit-bullets.-absolute {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  right: 1rem; }
  @media print, screen and (min-width: 64em) {
    .orbit-bullets.-absolute {
      bottom: 2rem;
      right: 2rem; } }

.has-tip.-decent {
  border-bottom: 0 !important; }

.button-group.-no-margin-top {
  margin-top: 0 !important; }

.button-group.-no-padding {
  padding-left: 0 !important; }

.cell > label > input, .cell > label > textarea, .cell > label > select {
  margin-bottom: 0; }

html.no-js .show-for-js {
  display: none !important; }

.reveal .hide-in-reveal {
  display: none !important; }

.show-in-reveal {
  display: none !important; }

.reveal .show-in-reveal {
  display: unset !important; }

.orbit-control-bar {
  text-align: center; }
  .orbit-control-bar .orbit-previous,
  .orbit-control-bar .orbit-next {
    position: static;
    transform: none;
    top: auto;
    right: auto;
    left: auto;
    padding: 0; }
  .orbit-control-bar > button {
    display: inline-block; }
  .orbit-control-bar > nav {
    display: inline-block; }

.reveal.xxs {
  max-width: 480px; }
  @media screen and (max-width: 39.99875em) {
    .reveal.xxs {
      left: auto;
      right: auto;
      top: 1rem;
      bottom: auto;
      margin: auto; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shake {
  animation-name: shake-7; }

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

.spin-cw {
  animation-name: spin-cw-1turn; }

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

.spin-ccw {
  animation-name: spin-ccw-1turn; }

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

.wiggle {
  animation-name: wiggle-7deg; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#svg-container {
  position: absolute;
  z-index: -1;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px; }

.svg {
  max-width: 100%;
  height: auto;
  color: inherit;
  fill: currentColor; }
  .svg.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle; }
    .svg.icon.-is-left {
      margin-right: .2em; }
    .svg.icon.-is-right {
      margin-left: .2em; }
    .svg.icon.-large {
      font-size: 1.5em;
      vertical-align: middle; }
    .svg.icon.-small {
      font-size: .66em;
      vertical-align: middle; }
    .svg.icon.-tiny {
      font-size: .5em;
      vertical-align: middle; }
  .svg .stroked {
    stroke: currentColor; }
  .svg .transparent-fill {
    fill: transparent !important; }

.svg-autoscale {
  display: block;
  overflow: visible;
  position: relative;
  margin: 0; }
  .svg-autoscale .svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%; }

html.no-js svg.replace-symbol {
  display: none; }

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

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

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-LightItalic.ttf");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-SemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "Gunny";
  src: url("../fonts/gnyrwn971.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

body {
  background: #FFFFFF;
  font-family: "OpenSans", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  color: #4A4A4A;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 3.125rem; }
  h2, .h2 {
    font-size: 2.25rem; }
  h3, .h3 {
    font-size: 1.875rem; }
  h4, .h4 {
    font-size: 1.3125rem; }
  h5, .h5 {
    font-size: 1.3125rem; }
  h6, .h6 {
    font-size: 0.875rem; } }

a {
  line-height: inherit;
  color: #0091A5;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: #007d8e; }
  a img {
    border: 0; }

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 0.125rem solid #CFCFCF;
  border-left: 0; }

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

li {
  font-size: inherit; }

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

ol {
  margin-left: 1.25rem; }

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

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

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #dae3e6; }
  blockquote, blockquote p {
    line-height: 1.55;
    color: #9a9fa1; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #9a9fa1; }
  cite:before {
    content: "— "; }

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

figure {
  margin: 0; }

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #dae3e6;
  background-color: #EAF4F7;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 300;
  color: #4A4A4A; }

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #EAF4F7;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #4A4A4A; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #9a9fa1; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #9a9fa1;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .print-break-inside {
    page-break-inside: auto; } }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  margin-bottom: 1em; }
  h1.gunny, .h1.gunny,
  h2.gunny, .h2.gunny,
  h3.gunny, .h3.gunny,
  h4.gunny, .h4.gunny,
  h5.gunny, .h5.gunny {
    font-family: "Gunny", serif;
    font-weight: 400; }
    h1.gunny b, h1.gunny strong, h1.gunny em, h1.gunny i, .h1.gunny b, .h1.gunny strong, .h1.gunny em, .h1.gunny i,
    h2.gunny b,
    h2.gunny strong,
    h2.gunny em,
    h2.gunny i, .h2.gunny b, .h2.gunny strong, .h2.gunny em, .h2.gunny i,
    h3.gunny b,
    h3.gunny strong,
    h3.gunny em,
    h3.gunny i, .h3.gunny b, .h3.gunny strong, .h3.gunny em, .h3.gunny i,
    h4.gunny b,
    h4.gunny strong,
    h4.gunny em,
    h4.gunny i, .h4.gunny b, .h4.gunny strong, .h4.gunny em, .h4.gunny i,
    h5.gunny b,
    h5.gunny strong,
    h5.gunny em,
    h5.gunny i, .h5.gunny b, .h5.gunny strong, .h5.gunny em, .h5.gunny i {
      font-style: normal;
      font-weight: 400; }

.gunny {
  font-family: "Gunny", serif;
  font-weight: 400; }
  .gunny b, .gunny strong, .gunny em, .gunny i {
    font-style: normal;
    font-weight: 400; }

h6, .h6 {
  text-transform: uppercase;
  font-weight: 400; }

input::-moz-placeholder {
  font-style: italic; }

input:-ms-input-placeholder {
  font-style: italic; }

input::-ms-input-placeholder {
  font-style: italic; }

input::placeholder {
  font-style: italic; }

address {
  font-style: normal; }

input[type^=date] {
  overflow: hidden; }
  .date-parent {
    position: relative;
    overflow: hidden; }
  input[type^=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    cursor: pointer;
    opacity: .01;
    color: transparent; }

#pre-header {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 1.8rem; }
  @media print, screen and (min-width: 64em) {
    #pre-header {
      display: block; } }
  #pre-header a {
    display: block;
    font-size: 80%;
    padding: .25em; }

#page-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0091A5;
  color: #FFFFFF;
  transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.5s ease, height 0.5s ease;
  opacity: 1;
  transform: translateY(0);
  height: 4.25rem;
  height: 4.25rem; }
  @media print, screen and (min-width: 64em) {
    #pre-header + #page-header {
      top: 1.8rem; }
      body.scrolled #pre-header + #page-header {
        top: 0; } }
  body.hide-header #page-header {
    opacity: 0;
    transform: translateY(-120px); }
  @media print, screen and (min-width: 64em) {
    body.scrolled #page-header {
      background-color: #FFFFFF;
      color: #0091A5; } }
  @media screen and (min-width: 75em) {
    #page-header {
      height: 5.5rem; } }
  @media print, screen and (min-width: 64em) {
    body.scrolled #page-header {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
      height: 4rem; } }
  #page-header-pseudo {
    height: 4.25rem;
    background: #0091A5;
    height: 4.25rem; }
    @media screen and (min-width: 75em) {
      #page-header-pseudo {
        height: 5.5rem; } }
  #page-header:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent url("../img/waves.svg") repeat-x left top;
    opacity: .15; }
    @media print, screen and (min-width: 64em) {
      body.scrolled #page-header:after {
        display: none; } }
  #page-header ._inner {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%; }
  #page-header .special-container {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start; }

.special-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto; }
  .special-container.-relative {
    position: relative; }

#main-menu-toggle {
  position: fixed;
  top: 0;
  z-index: 1000;
  right: 0;
  height: 4.25rem;
  width: 4.25rem;
  height: 4.25rem;
  width: 4.25rem;
  box-sizing: border-box;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  margin: 0;
  color: #FFFFFF;
  transition: opacity 0.5s ease;
  opacity: 1; }
  @media screen and (min-width: 75em) {
    #main-menu-toggle {
      height: 5.5rem;
      width: 5.5rem; } }
  body.hide-header #main-menu-toggle {
    opacity: 0;
    z-index: -1;
    pointer-events: none; }
  #main-menu-toggle .svg {
    width: 1.7rem;
    width: 1.7rem;
    margin-top: 1.1rem; }
    @media screen and (min-width: 75em) {
      #main-menu-toggle .svg {
        width: 2.2rem; } }
    #main-menu-toggle .svg path {
      transition: transform .25s ease, opacity .1s ease; }
    #main-menu-toggle .svg ._bar-1 {
      transform-origin: 0 25%; }
    #main-menu-toggle .svg ._bar-3 {
      transform-origin: 0 80%; }

#main-menu-toggle-checkbox[aria-expanded="true"] + #main-menu-toggle,
html.no-js #main-menu-toggle-checkbox:checked + #main-menu-toggle {
  position: fixed;
  background-color: #99d3db; }
  #main-menu-toggle-checkbox[aria-expanded="true"] + #main-menu-toggle:before,
  html.no-js #main-menu-toggle-checkbox:checked + #main-menu-toggle:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent url("../img/waves.svg") repeat-x right top;
    opacity: .15; }
  #main-menu-toggle-checkbox[aria-expanded="true"] + #main-menu-toggle ._inner,
  html.no-js #main-menu-toggle-checkbox:checked + #main-menu-toggle ._inner {
    display: block;
    position: relative;
    z-index: 1; }

#main-menu-toggle-checkbox[aria-expanded="true"] + #main-menu-toggle .svg ._bar-1 {
  transform: rotate(45deg) scale(0.9) translateX(5%); }

#main-menu-toggle-checkbox[aria-expanded="true"] + #main-menu-toggle .svg ._bar-2 {
  opacity: 0; }

#main-menu-toggle-checkbox[aria-expanded="true"] + #main-menu-toggle .svg ._bar-3 {
  transform: rotate(-45deg) scale(0.9) translateX(5%); }

#main-logo {
  position: absolute;
  z-index: 101;
  left: 1rem;
  width: 6.25rem;
  height: auto;
  transition: all .25s ease; }
  #main-logo:not(.-top) {
    top: .5rem; }
  #main-logo.-shadow {
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.25); }
  @media print, screen and (min-width: 64em) {
    #main-logo {
      right: 1rem;
      left: auto;
      width: 9rem;
      transform-origin: right top;
      transition: transform .25s ease; }
      #main-logo:not(.-top) {
        top: 1rem; }
      body.main-menu-open #main-logo {
        transform: scale(0.3); }
      body.scrolled #main-logo {
        transform: scale(0.5); } }
  @media screen and (min-width: 75em) {
    #main-logo {
      width: auto; } }

#functions-menu {
  display: none;
  position: absolute;
  max-width: 280px;
  flex-direction: column;
  top: 4.25rem;
  top: 4.25rem;
  margin: 0;
  padding: 0; }
  @media screen and (min-width: 75em) {
    #functions-menu {
      top: 5.5rem; } }
  @media print, screen and (min-width: 64em) {
    body.scrolled #functions-menu {
      top: 4rem; } }
  #functions-menu ._item {
    display: flex;
    align-items: center; }
  @media screen and (max-width: 85em) {
    #functions-menu {
      background: #FFFFFF;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); }
      #functions-menu.-active {
        display: flex; }
      #functions-menu ._item {
        justify-content: flex-start;
        padding: .5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        transition: background .25s ease; }
        #functions-menu ._item:hover {
          background: #EAF4F7; }
        #functions-menu ._item ._icon {
          flex: 0 0 2rem;
          margin-right: .5rem; }
        #functions-menu ._item ._text {
          flex: 1 0 calc(100% - 4rem); } }
  @media screen and (min-width: 85em) {
    #functions-menu {
      display: flex;
      position: static;
      flex-direction: row; }
      #functions-menu ._item {
        color: #FFFFFF;
        flex: 1 0 4rem;
        justify-content: center;
        padding: 0 1rem;
        border-width: 0;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.25);
        border-right-width: 1px;
        transition: background .25s ease; }
        body.scrolled #functions-menu ._item {
          color: #0091A5; }
        body.scrolled #functions-menu ._item {
          border-color: rgba(0, 145, 165, 0.25); }
        #functions-menu ._item:nth-of-type(1) {
          border-left-width: 1px; }
        #functions-menu ._item:hover {
          background: rgba(255, 255, 255, 0.25); }
          body.scrolled #functions-menu ._item:hover {
            background: rgba(0, 145, 165, 0.25); }
        #functions-menu ._item ._icon {
          font-size: 1.5rem;
          line-height: 0; }
        #functions-menu ._item ._text {
          display: none; } }

#main-menu {
  display: none; }
  @media print, screen and (min-width: 64em) {
    #main-menu {
      display: block; } }
  #main-menu ul.first-level {
    list-style: none;
    margin-left: 0;
    display: flex;
    align-items: stretch;
    height: 100%; }
  #main-menu ._item.-first-level {
    display: flex; }
  #main-menu ._link.-first-level {
    color: #FFFFFF;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    font-weight: 600;
    transition: background .25s ease; }
    body.scrolled #main-menu ._link.-first-level {
      color: #0091A5; }
    #main-menu ._link.-first-level.-icon ._icon {
      line-height: 1; }
      #main-menu ._link.-first-level.-icon ._icon + ._text {
        margin-left: .5em; }
    #main-menu ._link.-first-level.-icon.-icon-right ._icon {
      order: 2;
      margin-left: .5em; }
      #main-menu ._link.-first-level.-icon.-icon-right ._icon + ._text {
        margin-left: 0; }
    #main-menu ._link.-first-level.-icon.-icon-right ._text {
      order: 1; }
    #main-menu ._link.-first-level:hover {
      background: rgba(255, 255, 255, 0.25); }
      body.scrolled #main-menu ._link.-first-level:hover {
        background: rgba(0, 145, 165, 0.25); }
    #main-menu ._link.-first-level.-active {
      background: #EAF4F7;
      color: #0091A5; }
      body.scrolled #main-menu ._link.-first-level.-active {
        background: #0091A5;
        color: #FFFFFF; }
  @media print, screen and (min-width: 64em) {
    body.main-menu-open {
      overflow: hidden; } }
  #main-menu ._submenu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
    background: #FFFFFF;
    top: 4.25rem;
    max-height: calc(100vh - 4.25rem);
    top: 4.25rem;
    max-height: calc(100vh - 4.25rem);
    padding: 2rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    overflow: auto;
    color: #4A4A4A; }
    @media screen and (min-width: 75em) {
      #main-menu ._submenu {
        top: 5.5rem;
        max-height: calc(100vh - 5.5rem); } }
    @media print, screen and (min-width: 64em) {
      body.scrolled #main-menu ._submenu {
        top: 4rem; } }
  #main-menu ._parent-link-wrap {
    background: #EAF4F7;
    margin: -2rem -2rem 1rem -2rem;
    padding: 1rem; }
  #main-menu ul.second-level {
    list-style: none;
    margin-left: 0;
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap; }
  #main-menu ._item.-second-level {
    flex: 1 0 240px;
    box-sizing: border-box;
    padding: 0 .5rem; }
    #main-menu ._item.-second-level:not(:last-of-type) {
      margin-bottom: 2rem; }
    #main-menu ._item.-second-level.-align {
      display: flex;
      flex-direction: column; }
      #main-menu ._item.-second-level.-align > ._link {
        flex: 0 1 auto; }
      #main-menu ._item.-second-level.-align > .third-level {
        flex: 1 0 auto; }
    #main-menu ._item.-second-level.-add {
      flex: 0 0 66%;
      justify-self: flex-end;
      margin-left: auto; }
      @media screen and (min-width: 75em) {
        #main-menu ._item.-second-level.-add {
          flex-basis: 50%; } }
  #main-menu .third-level {
    padding-left: 1.5rem;
    padding-right: 1rem;
    border-left: 4px dotted #0091A5; }
    #main-menu .third-level.-columns {
      -moz-column-width: 320px;
           column-width: 320px;
      -moz-column-gap: 1rem;
           column-gap: 1rem;
      -moz-column-rule: 4px dotted #0091A5;
           column-rule: 4px dotted #0091A5; }
  #main-menu .second-level-heading {
    cursor: default; }
  #main-menu .second-level-heading,
  #main-menu ._link.-second-level {
    color: #0091A5;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem; }
  #main-menu ._link.-second-level ._text {
    display: block;
    transition: transform .25s ease; }
  #main-menu ._link.-second-level:hover ._text {
    transform: translateX(0.25em); }
  #main-menu ._link.-third-level,
  #main-menu ._link.-show-all {
    display: flex;
    font-size: .88em;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: opacity .25s ease; }
    #main-menu ._link.-third-level ._thumb,
    #main-menu ._link.-third-level ._icon,
    #main-menu ._link.-show-all ._thumb,
    #main-menu ._link.-show-all ._icon {
      flex: 0 0 70px;
      margin-right: .5rem; }
    #main-menu ._link.-third-level ._text,
    #main-menu ._link.-show-all ._text {
      flex: 1 0 calc(100% - 70px - .5rem); }
    #main-menu ._link.-third-level:hover,
    #main-menu ._link.-show-all:hover {
      opacity: .75; }
  #main-menu ._link.-third-level {
    color: #4A4A4A; }
    #main-menu ._link.-third-level.-icon ._text {
      flex-basis: calc(100% - 2em - .5rem); }
    #main-menu ._link.-third-level.-icon ._icon {
      flex-basis: 2em;
      text-align: right;
      color: #0091A5;
      transition: transform .25s ease; }
    #main-menu ._link.-third-level.-icon:hover ._icon {
      transform: translateX(0.25em); }
  #main-menu ._link.-show-all {
    font-weight: 600; }
    #main-menu ._link.-show-all ._icon {
      text-align: right;
      transition: transform .25s ease; }
    #main-menu ._link.-show-all:hover ._icon {
      transform: translateX(0.25em); }

@media screen and (min-width: 85em) {
  #toggle-functions-menu {
    display: none !important; } }

.off-canvas-top {
  background-color: #80c8d2;
  color: #FFFFFF;
  width: 100%;
  position: relative; }
  .off-canvas-top:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .15;
    background: transparent url("../img/waves.svg") repeat-x right top; }
  .off-canvas-top ._inner {
    position: relative;
    z-index: 1;
    height: 4.25rem;
    padding-right: 4.25rem;
    display: flex; }
  .off-canvas-top a {
    color: #FFFFFF; }
  .off-canvas-top ._item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center; }
    .off-canvas-top ._item:not(:last-child) {
      border-right: 1px solid rgba(255, 255, 255, 0.3); }
    .off-canvas-top ._item .icon {
      font-size: 1.5em;
      margin-right: .5em; }
    .off-canvas-top ._item .circle-icon {
      margin-right: .5em; }

.off-canvas-search ._search-field {
  position: relative; }
  .off-canvas-search ._search-field input[type="search"] {
    padding-right: 2.5rem; }
  .off-canvas-search ._search-field button[type="submit"] {
    color: #0091A5;
    outline: none;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%); }

#main-off-canvas-menu .icon-menu,
#main-off-canvas-menu .disclaimer-links {
  font-size: .88em; }

.off-canvas-menu ul.first-level {
  list-style: none;
  margin-left: 0; }

.off-canvas-menu ul.second-level {
  list-style: none;
  margin-left: 0;
  display: none; }

.off-canvas-menu ul.third-level {
  list-style: none;
  margin-left: 0;
  display: none; }

.off-canvas-menu ._link {
  border-top: 1px solid rgba(0, 145, 165, 0.3);
  display: flex;
  align-items: center; }
  .off-canvas-menu ._link ._text {
    display: block;
    flex: 1 0 auto; }
  .off-canvas-menu ._link ._icon {
    flex: 0 1 1.5rem;
    display: block; }

.off-canvas-menu ._link.-first-level {
  padding: 1rem; }

.off-canvas-menu li.-first-level:last-of-type > ._link {
  border-bottom: 1px solid rgba(0, 145, 165, 0.3); }

.off-canvas-menu ._link.-second-level {
  padding: .5rem 1rem .5rem 1.5rem;
  background-color: rgba(0, 145, 165, 0.1); }
  .off-canvas-menu ._link.-second-level.-parent-link {
    background-color: #FFFFFF; }

.off-canvas-menu ._link.-third-level {
  padding: .5rem 1rem .5rem 2.5rem;
  background-color: rgba(0, 145, 165, 0.17); }
  .off-canvas-menu ._link.-third-level.-parent-link {
    background-color: rgba(0, 145, 165, 0.1); }

.off-canvas-menu .svg.symbol-replaced.-plus-menu .lines {
  transform-origin: center center;
  transition: transform .25s ease; }

.off-canvas-menu .svg.symbol-replaced.-plus-menu rect {
  transition: transform .25s ease;
  transform-origin: center center; }

.off-canvas-menu ._link.-active .svg.symbol-replaced.-plus-menu .lines {
  transform: scale(0.6); }

.off-canvas-menu ._link.-active .svg.symbol-replaced.-plus-menu .line-vertical {
  transform: translate(-32%, 0%) rotate(-45deg); }

.off-canvas-menu ._link.-active .svg.symbol-replaced.-plus-menu .line-horizontal {
  transform: translate(32%, 0%) rotate(135deg); }

html.no-js #main-menu-toggle-checkbox:checked ~ .off-canvas-wrapper #main-off-canvas-menu,
html.no-js #main-menu-toggle-checkbox:checked ~ .off-canvas-wrapper #main-off-canvas-content {
  transform: translateX(0); }

#pre-footer ._wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch; }
  @media print, screen and (min-width: 64em) {
    #pre-footer ._wrapper {
      flex-direction: row;
      align-items: center; } }
  #pre-footer ._wrapper ._logos {
    margin-bottom: 2rem;
    text-align: center; }
    @media print, screen and (min-width: 64em) {
      #pre-footer ._wrapper ._logos {
        order: 2;
        flex: 1 0 auto; } }
    @media print, screen and (min-width: 40em) {
      #pre-footer ._wrapper ._logos {
        text-align: right; } }
    @media print, screen and (min-width: 64em) {
      #pre-footer ._wrapper ._logos {
        margin-bottom: 0; } }
    #pre-footer ._wrapper ._logos > * {
      display: inline-block;
      padding: .5rem; }
    #pre-footer ._wrapper ._logos img {
      min-width: 75px;
      height: 75px;
      width: auto; }

#page-footer {
  background: #4A4A4A;
  color: #FFFFFF;
  padding: 3rem 0 6rem 0;
  font-size: .88rem;
  line-height: 1.6;
  position: relative; }
  @media print, screen and (min-width: 64em) {
    #page-footer {
      padding-top: 6rem;
      padding-bottom: 8rem; } }
  #page-footer:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6rem;
    background: #0091A5 url("../img/waves-inverted.svg") repeat right top; }
  #page-footer address {
    font-style: normal;
    font-size: 1.14em; }
  #page-footer a {
    color: #FFFFFF; }

.footer-block-header {
  font-size: 1em;
  text-transform: uppercase;
  margin: 0 0 1em; }
  @media print, screen and (min-width: 64em) {
    .footer-block-header {
      margin-bottom: 3rem; } }

.footer-menu {
  list-style: none;
  margin-left: 0; }
  .footer-menu ._link {
    display: flex;
    padding: .125em 0; }
    .footer-menu ._link > * {
      display: block;
      transition: transform .25s ease; }
    .footer-menu ._link:hover > * {
      transform: translateX(0.2em); }
  .footer-menu ._icon {
    flex: 0 0 1rem;
    margin-right: .5rem;
    color: #0091A5; }

.grid-1-1-1-borders ._col1,
.grid-1-1-1-borders ._col2,
.grid-1-1-1-borders ._col3 {
  border-width: 0;
  border-color: #0091A5;
  border-style: dotted;
  border-top-width: 4px;
  padding-top: 1rem; }
  @media print, screen and (min-width: 40em) {
    .grid-1-1-1-borders ._col1,
    .grid-1-1-1-borders ._col2,
    .grid-1-1-1-borders ._col3 {
      border-top-width: 0; } }

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .grid-1-1-1-borders ._col1 {
    position: relative; }
    .grid-1-1-1-borders ._col1:after {
      content: "";
      border-right: 4px dotted #0091A5;
      right: -17px;
      position: absolute;
      top: 0;
      bottom: 0; }
  .grid-1-1-1-borders ._col3 {
    margin-top: 2rem; } }

@media print, screen and (min-width: 64em) {
  .grid-1-1-1-borders ._col1,
  .grid-1-1-1-borders ._col2 {
    position: relative; }
    .grid-1-1-1-borders ._col1:after,
    .grid-1-1-1-borders ._col2:after {
      content: "";
      border-right: 4px dotted #0091A5;
      right: -17px;
      position: absolute;
      top: 0;
      bottom: 0; } }

.grid-1-1-1-boxes ._col {
  border: 1px solid rgba(74, 74, 74, 0.25); }

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  border: none;
  outline: none; }
  .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
    pointer-events: none;
    opacity: 0.5; }
  .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
    color: #FFF; }

.lg-actions .lg-next {
  right: 20px; }
  .lg-actions .lg-next:before {
    content: "\e095"; }

.lg-actions .lg-prev {
  left: 20px; }
  .lg-actions .lg-prev:after {
    content: "\e094"; }

@keyframes lg-right-end {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@keyframes lg-left-end {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

.lg-outer.lg-right-end .lg-object {
  animation: lg-right-end 0.3s;
  position: relative; }

.lg-outer.lg-left-end .lg-object {
  animation: lg-left-end 0.3s;
  position: relative; }

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45); }
  .lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    transition: color 0.2s linear; }
    .lg-toolbar .lg-icon:hover {
      color: #FFF; }
  .lg-toolbar .lg-close:after {
    content: "\e070"; }
  .lg-toolbar .lg-download:after {
    content: "\e0f2"; }

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080; }
  .lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold; }
  .lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0; }

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle; }

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear; }

.lg-hide-items .lg-prev {
  opacity: 0;
  transform: translate3d(-10px, 0, 0); }

.lg-hide-items .lg-next {
  opacity: 0;
  transform: translate3d(10px, 0, 0); }

.lg-hide-items .lg-toolbar {
  opacity: 0;
  transform: translate3d(0, -10px, 0); }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transform-origin: 50% 50%; }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  transform: scale3d(1, 1, 1);
  opacity: 1; }

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    transition-duration: 0s !important; }

.lg-outer.lg-thumb-open .lg-thumb-outer {
  transform: translate3d(0, 0%, 0); }

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px; }

.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px; }
  @media (min-width: 1025px) {
    .lg-outer .lg-thumb-item {
      transition: border-color 0.25s ease; } }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #a90707; }
  .lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px; }

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0; }

.lg-outer.lg-pull-caption-up .lg-sub-html {
  transition: bottom 0.25s ease; }

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px; }

.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px; }
  .lg-outer .lg-toogle-thumb:after {
    content: "\e1ff"; }
  .lg-outer .lg-toogle-thumb:hover {
    color: #FFF; }

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px; }

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative; }
  .lg-outer .lg-video .lg-object {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }
  .lg-outer .lg-video .lg-video-play {
    width: 84px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -42px;
    margin-top: -30px;
    z-index: 1080;
    cursor: pointer; }

.lg-outer .lg-has-iframe .lg-video {
  -webkit-overflow-scrolling: touch;
  overflow: auto; }

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }

.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8; }

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1; }

.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent; }

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent; }

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden; }

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none; }

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible; }

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  transition: opacity 0.08s ease 0s; }
  .lg-progress-bar .lg-progress {
    background-color: #a90707;
    height: 5px;
    width: 0; }
  .lg-progress-bar.lg-start .lg-progress {
    width: 100%; }
  .lg-show-autoplay .lg-progress-bar {
    opacity: 1; }

.lg-autoplay-button:after {
  content: "\e01d"; }
  .lg-show-autoplay .lg-autoplay-button:after {
    content: "\e01a"; }

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  transition-duration: 0s; }

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  transform: scale3d(1, 1, 1);
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transform-origin: 0 0;
  backface-visibility: hidden; }

#lg-zoom-in:after {
  content: "\e311"; }

#lg-actual-size {
  font-size: 20px; }
  #lg-actual-size:after {
    content: "\e033"; }

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none; }
  #lg-zoom-out:after {
    content: "\e312"; }
  .lg-zoomed #lg-zoom-out {
    opacity: 1;
    pointer-events: auto; }

.lg-fullscreen:after {
  content: "\e20c"; }
  .lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d"; }

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

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0;
  transition: opacity 0.15s ease 0s; }
  .lg-outer * {
    box-sizing: border-box; }
  .lg-outer.lg-visible {
    opacity: 1; }
  .lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
    transition-duration: inherit !important;
    transition-timing-function: inherit !important; }
  .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
    transition-duration: 0s !important;
    opacity: 1; }
  .lg-outer.lg-grab img.lg-object {
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
  .lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing; }
  .lg-outer .lg {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%; }
  .lg-outer .lg-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap; }
  .lg-outer .lg-item {
    background: url("../img/loading.gif") no-repeat scroll center center transparent;
    display: none !important; }
  .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
    display: inline-block !important; }
  .lg-outer.lg-css .lg-current {
    display: inline-block !important; }
  .lg-outer .lg-item, .lg-outer .lg-img-wrap {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%; }
    .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
      content: "";
      display: inline-block;
      height: 50%;
      width: 1px;
      margin-right: -1px; }
  .lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .lg-outer .lg-item.lg-complete {
    background-image: none; }
  .lg-outer .lg-item.lg-current {
    z-index: 1060; }
  .lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important; }
  .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    transition: opacity 0.15s ease 0s; }
  .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
    opacity: 1; }
  .lg-outer .lg-empty-html {
    display: none; }
  .lg-outer.lg-hide-download #lg-download {
    display: none; }

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.15s ease 0s; }
  .lg-backdrop.in {
    opacity: 0.75; }

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  transition: none 0s ease 0s !important; }

.lg-css3.lg-use-css3 .lg-item {
  backface-visibility: hidden; }

.lg-css3.lg-use-left .lg-item {
  backface-visibility: hidden; }

.lg-css3.lg-fade .lg-item {
  opacity: 0; }
  .lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1; }
  .lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
    transition: opacity 0.1s ease 0s; }

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    transform: translate3d(-100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    transform: translate3d(100%, 0, 0); }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    transform: translate3d(0, 0, 0);
    opacity: 1; }
  .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1; }
  .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

.lg-actions .lg-next::before,
.lg-actions .lg-prev::after,
.lg-toolbar .lg-download::after,
.lg-thumb-outer .lg-toogle-thumb::after,
.lg-toolbar .lg-close::after,
.lg-toolbar #lg-actual-size::after,
.lg-toolbar #lg-zoom-in::after,
.lg-toolbar #lg-zoom-out::after,
.lg-toolbar .lg-fullscreen::after,
.lg-toolbar .lg-autoplay-button::after {
  content: unset;
  display: none; }

.lg-thumb-outer .lg-toogle-thumb .icon {
  transition: transform .25s ease;
  transform-origin: center center; }
  .lg-thumb-open .lg-thumb-outer .lg-toogle-thumb .icon {
    transform: rotate(180deg); }

.lg-autoplay-button ._paused {
  display: inline-block; }

.lg-autoplay-button ._playing {
  display: none; }

.lg-show-autoplay .lg-autoplay-button ._paused {
  display: none; }

.lg-show-autoplay .lg-autoplay-button ._playing {
  display: inline-block; }

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0; }

.leaflet-container {
  overflow: hidden; }

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none; }

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
  background: transparent; }
.leaflet-tile::selection {
  background: transparent; }

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast; }

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0; }

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block; }

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important; }

.leaflet-container.leaflet-touch-zoom {
  touch-action: pan-x pan-y; }

.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom; }

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  touch-action: none; }

.leaflet-container {
  -webkit-tap-highlight-color: transparent; }

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4); }

.leaflet-tile {
  filter: inherit;
  visibility: hidden; }

.leaflet-tile-loaded {
  visibility: inherit; }

.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800; }

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none; }

.leaflet-pane {
  z-index: 400; }

.leaflet-tile-pane {
  z-index: 200; }

.leaflet-overlay-pane {
  z-index: 400; }

.leaflet-shadow-pane {
  z-index: 500; }

.leaflet-marker-pane {
  z-index: 600; }

.leaflet-tooltip-pane {
  z-index: 650; }

.leaflet-popup-pane {
  z-index: 700; }

.leaflet-map-pane canvas {
  z-index: 100; }

.leaflet-map-pane svg {
  z-index: 200; }

.leaflet-vml-shape {
  width: 1px;
  height: 1px; }

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute; }

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none; }

.leaflet-top {
  top: 0; }

.leaflet-right {
  right: 0; }

.leaflet-bottom {
  bottom: 0; }

.leaflet-left {
  left: 0; }

.leaflet-control {
  float: left;
  clear: both; }

.leaflet-right .leaflet-control {
  float: right; }

.leaflet-top .leaflet-control {
  margin-top: 10px; }

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px; }

.leaflet-left .leaflet-control {
  margin-left: 10px; }

.leaflet-right .leaflet-control {
  margin-right: 10px; }

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity; }

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear; }

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1; }

.leaflet-zoom-animated {
  transform-origin: 0 0; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1); }

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none; }

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden; }

/* cursors */
.leaflet-interactive {
  cursor: pointer; }

.leaflet-grab {
  cursor: grab; }

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair; }

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto; }

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: grabbing; }

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none; }

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0; }

.leaflet-container a {
  color: #0078A8; }

.leaflet-container a.leaflet-active {
  outline: 2px solid orange; }

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5); }

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; }

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px; }

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black; }

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block; }

.leaflet-bar a:hover {
  background-color: #f4f4f4; }

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none; }

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb; }

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px; }

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px; }

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px; }

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px; }

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px; }

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px; }

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px; }

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none; }

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative; }

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff; }

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px; }

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px; }

.leaflet-control-layers label {
  display: block; }

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px; }

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png); }

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0; }

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333; }

.leaflet-control-attribution a {
  text-decoration: none; }

.leaflet-control-attribution a:hover {
  text-decoration: underline; }

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px; }

.leaflet-left .leaflet-control-scale {
  margin-left: 5px; }

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px; }

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5); }

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px; }

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777; }

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none; }

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box; }

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px; }

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px; }

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4; }

.leaflet-popup-content p {
  margin: 18px 0; }

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none; }

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  transform: rotate(45deg); }

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4); }

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent; }

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999; }

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd; }

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1; }

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); }

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px; }

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999; }

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666; }

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto; }

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: ""; }

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px; }

.leaflet-tooltip-top {
  margin-top: -6px; }

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px; }

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff; }

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff; }

.leaflet-tooltip-left {
  margin-left: -6px; }

.leaflet-tooltip-right {
  margin-left: 6px; }

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px; }

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff; }

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff; }

@keyframes leaflet-gestures-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.leaflet-container:after {
  animation: leaflet-gestures-fadein 0.8s backwards;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 22px;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 461;
  pointer-events: none; }

.leaflet-gesture-handling-touch-warning:after,
.leaflet-gesture-handling-scroll-warning:after {
  animation: leaflet-gestures-fadein 0.8s forwards; }

.leaflet-gesture-handling-touch-warning:after {
  content: attr(data-gesture-handling-touch-content); }

.leaflet-gesture-handling-scroll-warning:after {
  content: attr(data-gesture-handling-scroll-content); }

.leaflet-div-icon {
  background: transparent !important;
  border-style: none !important; }
  .leaflet-div-icon svg {
    height: 100%;
    width: 100%;
    fill: #496;
    stroke: white;
    stroke-opacity: .6;
    stroke-width: 0.5; }

.leaflet-control-zoom a, .leaflet-control-zoom a:hover, .leaflet-control-zoom a:visited, .leaflet-control-zoom a:active,
.leaflet-control-attribution a,
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:visited,
.leaflet-control-attribution a:active {
  color: #4A4A4A !important; }

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

hr.expanded {
  width: 100%;
  max-width: none; }

.cell > .grow-in-cell {
  height: 100%; }

hr.dotted {
  border-style: dotted;
  border-bottom-width: 4px; }
  hr.dotted.-light {
    opacity: .5; }
  hr.dotted.-thin {
    border-bottom-width: 2px; }

.nobr {
  white-space: nowrap; }

.no-margin-bottom {
  margin-bottom: 0 !important; }

.remove-margin-bottom-from-last-child > *:last-child:not(.margin-bottom), .little-vertical-padding > *:last-child:not(.margin-bottom), .vertical-padding > *:last-child:not(.margin-bottom), .large-vertical-padding > *:last-child:not(.margin-bottom), .huge-vertical-padding > *:last-child:not(.margin-bottom), .container > *:last-child:not(.margin-bottom) {
  margin-bottom: 0; }

.little-vertical-padding, .container.-little-padding {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  @media print, screen and (min-width: 40em) {
    .little-vertical-padding, .container.-little-padding {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem; } }
  @media print, screen and (min-width: 64em) {
    .little-vertical-padding, .container.-little-padding {
      padding-top: 1rem;
      padding-bottom: 1rem; } }

.vertical-padding, .container.-padding {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  @media print, screen and (min-width: 40em) {
    .vertical-padding, .container.-padding {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem; } }
  @media print, screen and (min-width: 64em) {
    .vertical-padding, .container.-padding {
      padding-top: 2rem;
      padding-bottom: 2rem; } }

.large-vertical-padding, .container.-large-padding {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  @media print, screen and (min-width: 40em) {
    .large-vertical-padding, .container.-large-padding {
      padding-top: 3rem;
      padding-bottom: 3rem; } }
  @media print, screen and (min-width: 64em) {
    .large-vertical-padding, .container.-large-padding {
      padding-top: 4rem;
      padding-bottom: 4rem; } }

.huge-vertical-padding, .container.-huge-padding {
  padding-top: 4rem;
  padding-bottom: 4rem; }
  @media print, screen and (min-width: 40em) {
    .huge-vertical-padding, .container.-huge-padding {
      padding-top: 6rem;
      padding-bottom: 6rem; } }
  @media print, screen and (min-width: 64em) {
    .huge-vertical-padding, .container.-huge-padding {
      padding-top: 8rem;
      padding-bottom: 8rem; } }

.little-margin-bottom {
  margin-bottom: 0.5rem; }
  @media print, screen and (min-width: 40em) {
    .little-margin-bottom {
      margin-bottom: 0.75rem; } }
  @media print, screen and (min-width: 64em) {
    .little-margin-bottom {
      margin-bottom: 1rem; } }

.margin-bottom {
  margin-bottom: 1rem; }
  @media print, screen and (min-width: 40em) {
    .margin-bottom {
      margin-bottom: 1.5rem; } }
  @media print, screen and (min-width: 64em) {
    .margin-bottom {
      margin-bottom: 2rem; } }

.large-margin-bottom {
  margin-bottom: 2rem; }
  @media print, screen and (min-width: 40em) {
    .large-margin-bottom {
      margin-bottom: 3rem; } }
  @media print, screen and (min-width: 64em) {
    .large-margin-bottom {
      margin-bottom: 4rem; } }

.huge-margin-bottom {
  margin-bottom: 4rem; }
  @media print, screen and (min-width: 40em) {
    .huge-margin-bottom {
      margin-bottom: 6rem; } }
  @media print, screen and (min-width: 64em) {
    .huge-margin-bottom {
      margin-bottom: 8rem; } }

.little-margin-top {
  margin-top: 0.5rem; }
  @media print, screen and (min-width: 40em) {
    .little-margin-top {
      margin-top: 0.75rem; } }
  @media print, screen and (min-width: 64em) {
    .little-margin-top {
      margin-top: 1rem; } }

.margin-top {
  margin-top: 1rem; }
  @media print, screen and (min-width: 40em) {
    .margin-top {
      margin-top: 1.5rem; } }
  @media print, screen and (min-width: 64em) {
    .margin-top {
      margin-top: 2rem; } }

.large-margin-top {
  margin-top: 2rem; }
  @media print, screen and (min-width: 40em) {
    .large-margin-top {
      margin-top: 3rem; } }
  @media print, screen and (min-width: 64em) {
    .large-margin-top {
      margin-top: 4rem; } }

.huge-margin-top {
  margin-top: 4rem; }
  @media print, screen and (min-width: 40em) {
    .huge-margin-top {
      margin-top: 6rem; } }
  @media print, screen and (min-width: 64em) {
    .huge-margin-top {
      margin-top: 8rem; } }

.menu-link, .disclaimer-links a {
  text-transform: uppercase; }
  .menu-link:focus, .disclaimer-links a:focus {
    outline: none; }

.case-upper {
  text-transform: uppercase; }

.increased-margin {
  margin-bottom: 2em; }

:is(.limited-width, .limited-width-320) {
  display: block;
  margin-left: auto;
  margin-right: auto; }
  :is(.limited-width, .limited-width-320) :is(figure, video, audio) {
    max-width: 100%;
    height: auto; }

.limited-width {
  max-width: 720px; }

.limited-width-320 {
  max-width: 320px; }

.decorate {
  text-decoration: underline; }
  .decorate:hover {
    text-decoration: none; }

.hover-opacity, .thumbnail-list a, .links a, .upcoming a {
  transition: opacity .25s ease; }
  .hover-opacity:hover, .thumbnail-list a:hover, .links a:hover, .upcoming a:hover {
    opacity: .6; }

.button-size {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 1rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer; }
  [data-whatinput='mouse'] .button-size {
    outline: 0; }
  .button-group .button-size {
    margin-bottom: 0; }
  .button-size.input-group-button {
    margin-bottom: 0; }
  @media screen and (max-width: 39.99875em) {
    .button-group.stacked-for-small .button-size {
      flex-basis: 100%; } }

.hide-if-empty:empty {
  display: none !important; }

.text-color-main {
  color: #0091A5 !important; }

.text-color-culinary {
  color: #CAB39C !important; }

.text-color-yoga {
  color: #BE9C5C !important; }

.text-color-active {
  color: #B1BE56 !important; }

.text-color-lightblue {
  color: #EAF4F7 !important; }

.text-color-pink {
  color: #E6007E !important; }

.text-color-dark {
  color: #4A4A4A !important; }

.text-color-velo {
  color: #11515f !important; }

.text-color-success {
  color: #3adb76 !important; }

.text-color-alert {
  color: #cc4b37 !important; }

.text-color-warning {
  color: #ffae00 !important; }

html:not(.no-js) .hide-for-js {
  display: none; }

.autocols {
  -moz-columns: 320px auto;
       columns: 320px auto;
  -moz-column-gap: 2rem;
       column-gap: 2rem; }
  .autocols li, .autocols dd {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid; }

.container {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (min-width: 89.5em) {
    .container:not(.-force) {
      padding-left: 0;
      padding-right: 0; } }
  .container .container:not(.-force):not(.-force-on-small) {
    padding-left: 0;
    padding-right: 0; }
  @media print, screen and (min-width: 40em) {
    .container .container:not(.-force) {
      padding-left: 0;
      padding-right: 0; } }
  @media screen and (max-width: 39.99875em) {
    .container .escape-container-on-small {
      position: relative;
      margin-left: -1rem;
      margin-right: -1rem; } }

.icon-menu ._item {
  display: flex;
  align-items: center;
  padding: .5rem 1rem .5rem 1rem;
  color: #4A4A4A; }
  .icon-menu ._item ._icon {
    flex: 0 1 1.5rem;
    color: #0091A5;
    margin-right: .5rem;
    text-align: left; }
  .icon-menu ._item ._text {
    flex: 1 1 0; }

.icon-menu.-no-padding-left ._item {
  padding-left: 0; }

.icon-menu.-circle-icons ._icon {
  flex-basis: 3rem; }

.icon-menu.-small-margins ._item {
  margin-bottom: 1px; }

.icon-menu.-bg ._item {
  background-color: #EAF4F7; }

.icon-menu.-bg ._item:hover {
  background-color: #c5e1e9; }

.icon-menu.-bg ._item.-active {
  background-color: #c5e1e9; }

.icon-menu.-language-menu .circle-icon {
  border-color: #FFFFFF;
  background-color: #FFFFFF; }

.circle-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  border: 2px solid currentColor;
  overflow: hidden;
  transition: all .5s ease; }
  .circle-icon.-shadow {
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); }
  .circle-icon .icon {
    font-size: 1.5rem; }
  .circle-icon.-small {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 1px; }
    .circle-icon.-small .icon {
      font-size: .75rem; }
  .circle-icon.-smaller {
    width: 2.2rem;
    height: 2.2rem;
    border-width: 1px; }
    .circle-icon.-smaller .icon {
      font-size: 1.1rem; }
  .circle-icon.-inverse {
    border-color: transparent;
    background-color: currentColor; }
    .circle-icon.-inverse .icon {
      color: #FFFFFF; }

.disclaimer-links a {
  font-size: 80%;
  color: #9a9fa1;
  display: inline-block;
  padding: .5em;
  font-weight: 400;
  transition: color .25s ease; }
  .disclaimer-links a:hover {
    color: #4A4A4A; }

.multi-line-header {
  margin-bottom: 1rem; }
  .multi-line-header > * {
    margin-bottom: 0; }
  .multi-line-header.-margin-bottom {
    margin-bottom: 1rem; }
    @media print, screen and (min-width: 40em) {
      .multi-line-header.-margin-bottom {
        margin-bottom: 1.5rem; } }
    @media print, screen and (min-width: 64em) {
      .multi-line-header.-margin-bottom {
        margin-bottom: 2rem; } }
  .multi-line-header.-large-margin-bottom {
    margin-bottom: 2rem; }
    @media print, screen and (min-width: 40em) {
      .multi-line-header.-large-margin-bottom {
        margin-bottom: 3rem; } }
    @media print, screen and (min-width: 64em) {
      .multi-line-header.-large-margin-bottom {
        margin-bottom: 4rem; } }

.waves,
.waves-inverted {
  position: relative; }
  .waves:after,
  .waves-inverted:after {
    position: absolute;
    z-index: 1;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0; }
  .waves ._content,
  .waves-inverted ._content {
    position: relative;
    z-index: 2; }

.thumbnail-list {
  list-style: none;
  margin-left: 0; }
  .thumbnail-list:not(.-no-cols):not(.-flex) {
    -moz-column-width: 320px;
         column-width: 320px;
    -moz-column-gap: 2rem;
         column-gap: 2rem; }
    @media print, screen and (min-width: 40em) {
      .slide.ctype-highlights-list .thumbnail-list:not(.-no-cols):not(.-flex) {
        -moz-column-width: unset;
             column-width: unset;
        -moz-column-count: 2;
             column-count: 2; } }
    @media print, screen and (min-width: 64em) {
      .slide.ctype-highlights-list .thumbnail-list:not(.-no-cols):not(.-flex) {
        -moz-column-count: 3;
             column-count: 3; } }
  .thumbnail-list.-flex {
    display: flex;
    position: relative;
    margin-left: -.5rem;
    margin-right: -.5rem;
    align-items: stretch;
    flex-wrap: wrap; }
    .thumbnail-list.-flex ._item {
      flex: 0 0 100%;
      margin: 0 .5rem 1rem; }
      @media print, screen and (min-width: 40em) {
        .thumbnail-list.-flex ._item {
          flex: 0 0 calc(50% - 1rem); } }
      @media print, screen and (min-width: 64em) {
        .thumbnail-list.-flex ._item {
          flex: 0 0 calc(25% - 1rem); } }
  .thumbnail-list ._item {
    margin-bottom: 1rem;
    display: flex;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    page-break-inside: avoid; }
    .thumbnail-list ._item ._thumb {
      flex: 0 0 auto;
      margin-right: 1rem; }
    .thumbnail-list ._item ._text {
      flex: 1 1 auto; }

.links {
  display: flex;
  align-items: flex-start;
  justify-items: flex-start;
  flex-wrap: wrap;
  letter-spacing: -.05em; }
  .links.-force-rows {
    flex-direction: column; }
  .links a {
    display: block;
    flex: 1 1 0;
    padding: .5rem 1rem;
    white-space: nowrap; }
    .links a:not(.decent) {
      font-weight: 600; }

.upcoming {
  list-style: none;
  margin-left: 0; }
  .upcoming ._item {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    position: relative; }
    .upcoming ._item:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border-bottom: 1px solid currentColor;
      opacity: .25; }
  .upcoming ._date {
    display: inline-block;
    padding: .2em .5em;
    background: #0091A5;
    color: #FFFFFF; }
  .upcoming ._link {
    display: block;
    font-weight: 600; }
  .upcoming ._item.-highlight ._date {
    background: #F9B233; }

.hr-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center; }
  @media print, screen and (min-width: 40em) {
    .hr-heading {
      flex-direction: row; } }
  .hr-heading:before, .hr-heading:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    margin-bottom: .5rem;
    flex: 1 0 0;
    border-bottom: 4px dotted currentColor; }
    @media print, screen and (min-width: 40em) {
      .hr-heading:before, .hr-heading:after {
        margin-bottom: 0;
        width: auto; } }
  @media print, screen and (min-width: 40em) {
    .hr-heading:before {
      margin-right: 2rem; } }
  @media print, screen and (min-width: 64em) {
    .hr-heading:before {
      margin-right: 3rem; } }
  .hr-heading:after {
    display: none; }
    @media print, screen and (min-width: 40em) {
      .hr-heading:after {
        display: block;
        margin-left: 2rem; } }
    @media print, screen and (min-width: 64em) {
      .hr-heading:after {
        margin-left: 3rem; } }
  @media screen and (max-width: 39.99875em) {
    .hr-heading.-expand-container-on-small {
      position: relative;
      margin-left: -1rem;
      margin-right: -1rem; }
      .hr-heading.-expand-container-on-small ._inner {
        padding-left: 1rem;
        padding-right: 1rem; } }
  .hr-heading ._inner {
    display: block;
    flex: 0 1 100%; }
    @media print, screen and (min-width: 40em) {
      .hr-heading ._inner {
        flex-basis: 0; } }
  .hr-heading ._appendix {
    order: 10;
    margin-left: 1rem; }

.formlabel {
  font-weight: 600;
  text-transform: uppercase; }

.loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  .loader ._inner ._icon {
    display: block;
    font-size: 2em; }
  .loader ._inner ._text {
    display: block; }
  .loader.-negative {
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase; }

.bubble {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center; }
  .bubble.-tilt-left {
    transform: rotate(-10deg); }
  .bubble.-tilt-right {
    transform: rotate(10deg); }
  .bubble.-tilt-right-2 {
    transform: rotate(15deg) translateX(70px) translateY(-44px); }

.blind-image {
  position: relative;
  width: 100%;
  height: 0;
  font-size: 4rem; }
  .blind-image.-ratio-0-75 {
    padding-bottom: 75%; }
  .blind-image.-ratio-0-8 {
    padding-bottom: 80%; }
  .blind-image.-small {
    font-size: 2rem; }
  .blind-image ._wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    .blind-image ._wrapper ._max-height {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
  .blind-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%; }
    .blind-image img._margin {
      max-width: calc(100% - 2rem);
      max-height: calc(100% - 2rem); }

.stars {
  display: inline-block;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.5)); }
  .stars.-is-left {
    margin-right: .5em; }
  .stars.-is-right {
    margin-left: .5em; }
  .stars .icon {
    color: #FFDD00; }

label.checkbox input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1px;
  height: 1px;
  opacity: 0; }

label.checkbox ._box {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 1rem;
  height: 1rem;
  border: 1px solid currentColor; }
  label.checkbox ._box:before {
    content: "";
    position: absolute;
    left: 1px;
    bottom: 1px;
    top: 1px;
    right: 1px;
    background: currentColor;
    opacity: .33;
    transition: all .25s ease; }

label.checkbox input[type="checkbox"]:checked ~ ._box:before,
label.checkbox input[type="checkbox"][checked] ~ ._box:before {
  background: #0091A5;
  opacity: 1; }

.has-image-overlay {
  position: relative; }

.color-overlay-parent {
  position: relative; }
  .color-overlay-parent:is(:hover, :focus-within) .color-overlay {
    opacity: 0; }

.color-overlay {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--color-main, #0091A5);
  opacity: .75;
  transition: opacity .5s ease; }

.image-overlay {
  position: absolute;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }
  .image-overlay.-top {
    top: 0; }
  .image-overlay.-bottom {
    bottom: 0; }
  .image-overlay.-left {
    left: 0; }
  .image-overlay.-right {
    right: 0; }
  .image-overlay.-padding {
    padding: 1rem; }
  .image-overlay.-margin {
    margin: 1rem; }
  .image-overlay.-boost {
    z-index: 1010; }

.copyright {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  padding: .25rem .5rem;
  color: #FFFFFF;
  font-size: .8rem;
  cursor: pointer; }
  .copyright ._copyright-icon {
    display: inline;
    vertical-align: top; }
  .copyright ._copyright-content {
    display: none;
    vertical-align: top; }
    .copyright ._copyright-content.-show {
      display: inline; }

.fix-paragraphs p {
  margin-bottom: 0; }

.block-image img {
  display: block;
  width: 100%;
  height: auto; }

/**
 * @todo we should solve the flavor thematic using css-vars
 */
.light-bg {
  position: relative; }
  .light-bg:before {
    position: absolute;
    opacity: .15;
    z-index: 0;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0; }
  .light-bg > ._inner {
    position: relative;
    z-index: 1; }

.flv-main {
  --color-main: #0091A5;
  --color-contrast: #F9B233;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #4A4A4A;
  color: #4A4A4A; }
  .flv-main a:not(.decent) {
    color: #0091A5; }
  .flv-main .bordered {
    border: 1px solid #0091A5; }
  .flv-main .waves:after {
    background: #0091A5 url("../img/waves.svg") repeat left top; }
  .flv-main .waves.-light:after {
    opacity: .15; }
  .flv-main .waves-inverted:after {
    background: #0091A5 url("../img/waves-inverted.svg") repeat left top; }
  .flv-main .waves-inverted.-light:after {
    opacity: .15; }
  .flv-main .decent {
    color: inherit; }
    .flv-main .decent a {
      color: indianred; }
  .flv-main hr.dotted {
    border-bottom-color: #0091A5; }
  .flv-main h1, .flv-main h2, .flv-main h3, .flv-main h4, .flv-main h5, .flv-main h6,
  .flv-main .h1, .flv-main .h2, .flv-main .h3, .flv-main .h4, .flv-main .h5, .flv-main .h6 {
    color: #4A4A4A; }
    .flv-main h1 a, .flv-main h2 a, .flv-main h3 a, .flv-main h4 a, .flv-main h5 a, .flv-main h6 a,
    .flv-main .h1 a, .flv-main .h2 a, .flv-main .h3 a, .flv-main .h4 a, .flv-main .h5 a, .flv-main .h6 a {
      color: #4A4A4A; }
  .flv-main .highlighted-text {
    color: #0091A5; }
  .flv-main .primary-color {
    color: #0091A5; }
  .flv-main .secondary-color {
    color: #F9B233; }
  .flv-main .light-bg:before {
    background: #0091A5; }
  .flv-main .bubble {
    background: #F9B233;
    color: #0091A5; }
    .flv-main .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-main .button.default.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-main .button.default.hollow:hover, .flv-main .button.default.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-main .button.default.hollow:hover.disabled, .flv-main .button.default.hollow:hover[disabled], .flv-main .button.default.hollow:focus.disabled, .flv-main .button.default.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-main .button.default:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-main .button.default:not(.hollow):hover, .flv-main .button.default:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-main .button.contrast.hollow {
    border: 1px solid #F9B233;
    color: #F9B233; }
    .flv-main .button.contrast.hollow:hover, .flv-main .button.contrast.hollow:focus {
      border-color: #925f04;
      color: #925f04; }
      .flv-main .button.contrast.hollow:hover.disabled, .flv-main .button.contrast.hollow:hover[disabled], .flv-main .button.contrast.hollow:focus.disabled, .flv-main .button.contrast.hollow:focus[disabled] {
        border: 1px solid #F9B233;
        color: #F9B233; }
  .flv-main .button.contrast:not(.hollow) {
    background-color: #F9B233;
    color: #FFFFFF; }
    .flv-main .button.contrast:not(.hollow):hover, .flv-main .button.contrast:not(.hollow):focus {
      background-color: #e99807;
      color: #FFFFFF; }
  .flv-main .button.highlight.hollow {
    border: 1px solid #ac1c00;
    color: #ac1c00; }
    .flv-main .button.highlight.hollow:hover, .flv-main .button.highlight.hollow:focus {
      border-color: #560e00;
      color: #560e00; }
      .flv-main .button.highlight.hollow:hover.disabled, .flv-main .button.highlight.hollow:hover[disabled], .flv-main .button.highlight.hollow:focus.disabled, .flv-main .button.highlight.hollow:focus[disabled] {
        border: 1px solid #ac1c00;
        color: #ac1c00; }
  .flv-main .button.highlight:not(.hollow) {
    background-color: #ac1c00;
    color: #FFFFFF; }
    .flv-main .button.highlight:not(.hollow):hover, .flv-main .button.highlight:not(.hollow):focus {
      background-color: #8a1600;
      color: #FFFFFF; }
  .flv-main .text-color {
    color: #4A4A4A !important; }
    .flv-main .text-color a {
      color: #4A4A4A !important; }
  .flv-main .colorized {
    --color-main: #0091A5;
    --color-contrast: #F9B233;
    --color-back: #0091A5;
    background-color: #0091A5;
    --color-text: #FFFFFF;
    color: #FFFFFF; }
    .flv-main .colorized a:not(.decent) {
      color: #FFFFFF; }
    .flv-main .colorized .bordered {
      border: 1px solid #0091A5; }
    .flv-main .colorized .waves:after {
      background: #0091A5 url("../img/waves.svg") repeat left top; }
    .flv-main .colorized .waves.-light:after {
      opacity: .15; }
    .flv-main .colorized .waves-inverted:after {
      background: #0091A5 url("../img/waves-inverted.svg") repeat left top; }
    .flv-main .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-main .colorized .decent {
      color: inherit; }
      .flv-main .colorized .decent a {
        color: indianred; }
    .flv-main .colorized hr.dotted {
      border-bottom-color: #0091A5; }
    .flv-main .colorized h1, .flv-main .colorized h2, .flv-main .colorized h3, .flv-main .colorized h4, .flv-main .colorized h5, .flv-main .colorized h6,
    .flv-main .colorized .h1, .flv-main .colorized .h2, .flv-main .colorized .h3, .flv-main .colorized .h4, .flv-main .colorized .h5, .flv-main .colorized .h6 {
      color: #FFFFFF; }
      .flv-main .colorized h1 a, .flv-main .colorized h2 a, .flv-main .colorized h3 a, .flv-main .colorized h4 a, .flv-main .colorized h5 a, .flv-main .colorized h6 a,
      .flv-main .colorized .h1 a, .flv-main .colorized .h2 a, .flv-main .colorized .h3 a, .flv-main .colorized .h4 a, .flv-main .colorized .h5 a, .flv-main .colorized .h6 a {
        color: #FFFFFF; }
    .flv-main .colorized .highlighted-text {
      color: #F9B233; }
    .flv-main .colorized .primary-color {
      color: #0091A5; }
    .flv-main .colorized .secondary-color {
      color: #F9B233; }
    .flv-main .colorized .light-bg:before {
      background: #0091A5; }
    .flv-main .colorized .bubble {
      background: #F9B233;
      color: #0091A5; }
      .flv-main .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-main .colorized .button.default.hollow {
      border: 1px solid #FFFFFF;
      color: #FFFFFF; }
      .flv-main .colorized .button.default.hollow:hover, .flv-main .colorized .button.default.hollow:focus {
        border-color: gray;
        color: gray; }
        .flv-main .colorized .button.default.hollow:hover.disabled, .flv-main .colorized .button.default.hollow:hover[disabled], .flv-main .colorized .button.default.hollow:focus.disabled, .flv-main .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #FFFFFF;
          color: #FFFFFF; }
    .flv-main .colorized .button.default:not(.hollow) {
      background-color: #FFFFFF;
      color: #0091A5; }
      .flv-main .colorized .button.default:not(.hollow):hover, .flv-main .colorized .button.default:not(.hollow):focus {
        background-color: #cccccc;
        color: #0091A5; }
    .flv-main .colorized .button.contrast.hollow {
      border: 1px solid #F9B233;
      color: #F9B233; }
      .flv-main .colorized .button.contrast.hollow:hover, .flv-main .colorized .button.contrast.hollow:focus {
        border-color: #925f04;
        color: #925f04; }
        .flv-main .colorized .button.contrast.hollow:hover.disabled, .flv-main .colorized .button.contrast.hollow:hover[disabled], .flv-main .colorized .button.contrast.hollow:focus.disabled, .flv-main .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #F9B233;
          color: #F9B233; }
    .flv-main .colorized .button.contrast:not(.hollow) {
      background-color: #F9B233;
      color: #FFFFFF; }
      .flv-main .colorized .button.contrast:not(.hollow):hover, .flv-main .colorized .button.contrast:not(.hollow):focus {
        background-color: #e99807;
        color: #FFFFFF; }
    .flv-main .colorized .button.highlight.hollow {
      border: 1px solid #ff0;
      color: #ff0; }
      .flv-main .colorized .button.highlight.hollow:hover, .flv-main .colorized .button.highlight.hollow:focus {
        border-color: olive;
        color: olive; }
        .flv-main .colorized .button.highlight.hollow:hover.disabled, .flv-main .colorized .button.highlight.hollow:hover[disabled], .flv-main .colorized .button.highlight.hollow:focus.disabled, .flv-main .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ff0;
          color: #ff0; }
    .flv-main .colorized .button.highlight:not(.hollow) {
      background-color: #ff0;
      color: #0091A5; }
      .flv-main .colorized .button.highlight:not(.hollow):hover, .flv-main .colorized .button.highlight:not(.hollow):focus {
        background-color: #cccc00;
        color: #0091A5; }
    .flv-main .colorized .text-color {
      color: #FFFFFF !important; }
      .flv-main .colorized .text-color a {
        color: #FFFFFF !important; }

.flv-culinary {
  --color-main: #CAB39C;
  --color-contrast: #0091A5;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #4A4A4A;
  color: #4A4A4A; }
  .flv-culinary a:not(.decent) {
    color: #0091A5; }
  .flv-culinary .bordered {
    border: 1px solid #CAB39C; }
  .flv-culinary .waves:after {
    background: #CAB39C url("../img/waves.svg") repeat left top; }
  .flv-culinary .waves.-light:after {
    opacity: .15; }
  .flv-culinary .waves-inverted:after {
    background: #CAB39C url("../img/waves-inverted.svg") repeat left top; }
  .flv-culinary .waves-inverted.-light:after {
    opacity: .15; }
  .flv-culinary .decent {
    color: inherit; }
    .flv-culinary .decent a {
      color: indianred; }
  .flv-culinary hr.dotted {
    border-bottom-color: #CAB39C; }
  .flv-culinary h1, .flv-culinary h2, .flv-culinary h3, .flv-culinary h4, .flv-culinary h5, .flv-culinary h6,
  .flv-culinary .h1, .flv-culinary .h2, .flv-culinary .h3, .flv-culinary .h4, .flv-culinary .h5, .flv-culinary .h6 {
    color: #4A4A4A; }
    .flv-culinary h1 a, .flv-culinary h2 a, .flv-culinary h3 a, .flv-culinary h4 a, .flv-culinary h5 a, .flv-culinary h6 a,
    .flv-culinary .h1 a, .flv-culinary .h2 a, .flv-culinary .h3 a, .flv-culinary .h4 a, .flv-culinary .h5 a, .flv-culinary .h6 a {
      color: #4A4A4A; }
  .flv-culinary .highlighted-text {
    color: #0091A5; }
  .flv-culinary .primary-color {
    color: #CAB39C; }
  .flv-culinary .secondary-color {
    color: #0091A5; }
  .flv-culinary .light-bg:before {
    background: #CAB39C; }
  .flv-culinary .bubble {
    background: #0091A5;
    color: #CAB39C; }
    .flv-culinary .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-culinary .button.default.hollow {
    border: 1px solid #CAB39C;
    color: #CAB39C; }
    .flv-culinary .button.default.hollow:hover, .flv-culinary .button.default.hollow:focus {
      border-color: #755a3e;
      color: #755a3e; }
      .flv-culinary .button.default.hollow:hover.disabled, .flv-culinary .button.default.hollow:hover[disabled], .flv-culinary .button.default.hollow:focus.disabled, .flv-culinary .button.default.hollow:focus[disabled] {
        border: 1px solid #CAB39C;
        color: #CAB39C; }
  .flv-culinary .button.default:not(.hollow) {
    background-color: #CAB39C;
    color: #FFFFFF; }
    .flv-culinary .button.default:not(.hollow):hover, .flv-culinary .button.default:not(.hollow):focus {
      background-color: #b18f6d;
      color: #FFFFFF; }
  .flv-culinary .button.contrast.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-culinary .button.contrast.hollow:hover, .flv-culinary .button.contrast.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-culinary .button.contrast.hollow:hover.disabled, .flv-culinary .button.contrast.hollow:hover[disabled], .flv-culinary .button.contrast.hollow:focus.disabled, .flv-culinary .button.contrast.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-culinary .button.contrast:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-culinary .button.contrast:not(.hollow):hover, .flv-culinary .button.contrast:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-culinary .button.highlight.hollow {
    border: 1px solid #ac1c00;
    color: #ac1c00; }
    .flv-culinary .button.highlight.hollow:hover, .flv-culinary .button.highlight.hollow:focus {
      border-color: #560e00;
      color: #560e00; }
      .flv-culinary .button.highlight.hollow:hover.disabled, .flv-culinary .button.highlight.hollow:hover[disabled], .flv-culinary .button.highlight.hollow:focus.disabled, .flv-culinary .button.highlight.hollow:focus[disabled] {
        border: 1px solid #ac1c00;
        color: #ac1c00; }
  .flv-culinary .button.highlight:not(.hollow) {
    background-color: #ac1c00;
    color: #FFFFFF; }
    .flv-culinary .button.highlight:not(.hollow):hover, .flv-culinary .button.highlight:not(.hollow):focus {
      background-color: #8a1600;
      color: #FFFFFF; }
  .flv-culinary .text-color {
    color: #4A4A4A !important; }
    .flv-culinary .text-color a {
      color: #4A4A4A !important; }
  .flv-culinary .colorized {
    --color-main: #CAB39C;
    --color-contrast: #0091A5;
    --color-back: #CAB39C;
    background-color: #CAB39C;
    --color-text: #FFFFFF;
    color: #FFFFFF; }
    .flv-culinary .colorized a:not(.decent) {
      color: #0091A5; }
    .flv-culinary .colorized .bordered {
      border: 1px solid #CAB39C; }
    .flv-culinary .colorized .waves:after {
      background: #CAB39C url("../img/waves.svg") repeat left top; }
    .flv-culinary .colorized .waves.-light:after {
      opacity: .15; }
    .flv-culinary .colorized .waves-inverted:after {
      background: #CAB39C url("../img/waves-inverted.svg") repeat left top; }
    .flv-culinary .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-culinary .colorized .decent {
      color: inherit; }
      .flv-culinary .colorized .decent a {
        color: indianred; }
    .flv-culinary .colorized hr.dotted {
      border-bottom-color: #CAB39C; }
    .flv-culinary .colorized h1, .flv-culinary .colorized h2, .flv-culinary .colorized h3, .flv-culinary .colorized h4, .flv-culinary .colorized h5, .flv-culinary .colorized h6,
    .flv-culinary .colorized .h1, .flv-culinary .colorized .h2, .flv-culinary .colorized .h3, .flv-culinary .colorized .h4, .flv-culinary .colorized .h5, .flv-culinary .colorized .h6 {
      color: #FFFFFF; }
      .flv-culinary .colorized h1 a, .flv-culinary .colorized h2 a, .flv-culinary .colorized h3 a, .flv-culinary .colorized h4 a, .flv-culinary .colorized h5 a, .flv-culinary .colorized h6 a,
      .flv-culinary .colorized .h1 a, .flv-culinary .colorized .h2 a, .flv-culinary .colorized .h3 a, .flv-culinary .colorized .h4 a, .flv-culinary .colorized .h5 a, .flv-culinary .colorized .h6 a {
        color: #FFFFFF; }
    .flv-culinary .colorized .highlighted-text {
      color: #FFFFFF; }
    .flv-culinary .colorized .primary-color {
      color: #CAB39C; }
    .flv-culinary .colorized .secondary-color {
      color: #0091A5; }
    .flv-culinary .colorized .light-bg:before {
      background: #CAB39C; }
    .flv-culinary .colorized .bubble {
      background: #0091A5;
      color: #CAB39C; }
      .flv-culinary .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-culinary .colorized .button.default.hollow {
      border: 1px solid #FFFFFF;
      color: #FFFFFF; }
      .flv-culinary .colorized .button.default.hollow:hover, .flv-culinary .colorized .button.default.hollow:focus {
        border-color: gray;
        color: gray; }
        .flv-culinary .colorized .button.default.hollow:hover.disabled, .flv-culinary .colorized .button.default.hollow:hover[disabled], .flv-culinary .colorized .button.default.hollow:focus.disabled, .flv-culinary .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #FFFFFF;
          color: #FFFFFF; }
    .flv-culinary .colorized .button.default:not(.hollow) {
      background-color: #FFFFFF;
      color: #CAB39C; }
      .flv-culinary .colorized .button.default:not(.hollow):hover, .flv-culinary .colorized .button.default:not(.hollow):focus {
        background-color: #cccccc;
        color: #CAB39C; }
    .flv-culinary .colorized .button.contrast.hollow {
      border: 1px solid #0091A5;
      color: #0091A5; }
      .flv-culinary .colorized .button.contrast.hollow:hover, .flv-culinary .colorized .button.contrast.hollow:focus {
        border-color: #004953;
        color: #004953; }
        .flv-culinary .colorized .button.contrast.hollow:hover.disabled, .flv-culinary .colorized .button.contrast.hollow:hover[disabled], .flv-culinary .colorized .button.contrast.hollow:focus.disabled, .flv-culinary .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #0091A5;
          color: #0091A5; }
    .flv-culinary .colorized .button.contrast:not(.hollow) {
      background-color: #0091A5;
      color: #FFFFFF; }
      .flv-culinary .colorized .button.contrast:not(.hollow):hover, .flv-culinary .colorized .button.contrast:not(.hollow):focus {
        background-color: #007484;
        color: #FFFFFF; }
    .flv-culinary .colorized .button.highlight.hollow {
      border: 1px solid #ff0;
      color: #ff0; }
      .flv-culinary .colorized .button.highlight.hollow:hover, .flv-culinary .colorized .button.highlight.hollow:focus {
        border-color: olive;
        color: olive; }
        .flv-culinary .colorized .button.highlight.hollow:hover.disabled, .flv-culinary .colorized .button.highlight.hollow:hover[disabled], .flv-culinary .colorized .button.highlight.hollow:focus.disabled, .flv-culinary .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ff0;
          color: #ff0; }
    .flv-culinary .colorized .button.highlight:not(.hollow) {
      background-color: #ff0;
      color: #0091A5; }
      .flv-culinary .colorized .button.highlight:not(.hollow):hover, .flv-culinary .colorized .button.highlight:not(.hollow):focus {
        background-color: #cccc00;
        color: #0091A5; }
    .flv-culinary .colorized .text-color {
      color: #FFFFFF !important; }
      .flv-culinary .colorized .text-color a {
        color: #FFFFFF !important; }

.flv-yoga {
  --color-main: #BE9C5C;
  --color-contrast: #0091A5;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #4A4A4A;
  color: #4A4A4A; }
  .flv-yoga a:not(.decent) {
    color: #0091A5; }
  .flv-yoga .bordered {
    border: 1px solid #BE9C5C; }
  .flv-yoga .waves:after {
    background: #BE9C5C url("../img/waves.svg") repeat left top; }
  .flv-yoga .waves.-light:after {
    opacity: .15; }
  .flv-yoga .waves-inverted:after {
    background: #BE9C5C url("../img/waves-inverted.svg") repeat left top; }
  .flv-yoga .waves-inverted.-light:after {
    opacity: .15; }
  .flv-yoga .decent {
    color: inherit; }
    .flv-yoga .decent a {
      color: indianred; }
  .flv-yoga hr.dotted {
    border-bottom-color: #BE9C5C; }
  .flv-yoga h1, .flv-yoga h2, .flv-yoga h3, .flv-yoga h4, .flv-yoga h5, .flv-yoga h6,
  .flv-yoga .h1, .flv-yoga .h2, .flv-yoga .h3, .flv-yoga .h4, .flv-yoga .h5, .flv-yoga .h6 {
    color: #4A4A4A; }
    .flv-yoga h1 a, .flv-yoga h2 a, .flv-yoga h3 a, .flv-yoga h4 a, .flv-yoga h5 a, .flv-yoga h6 a,
    .flv-yoga .h1 a, .flv-yoga .h2 a, .flv-yoga .h3 a, .flv-yoga .h4 a, .flv-yoga .h5 a, .flv-yoga .h6 a {
      color: #4A4A4A; }
  .flv-yoga .highlighted-text {
    color: #BE9C5C; }
  .flv-yoga .primary-color {
    color: #BE9C5C; }
  .flv-yoga .secondary-color {
    color: #0091A5; }
  .flv-yoga .light-bg:before {
    background: #BE9C5C; }
  .flv-yoga .bubble {
    background: #0091A5;
    color: #FFFFFF; }
    .flv-yoga .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-yoga .button.default.hollow {
    border: 1px solid #BE9C5C;
    color: #BE9C5C; }
    .flv-yoga .button.default.hollow:hover, .flv-yoga .button.default.hollow:focus {
      border-color: #655028;
      color: #655028; }
      .flv-yoga .button.default.hollow:hover.disabled, .flv-yoga .button.default.hollow:hover[disabled], .flv-yoga .button.default.hollow:focus.disabled, .flv-yoga .button.default.hollow:focus[disabled] {
        border: 1px solid #BE9C5C;
        color: #BE9C5C; }
  .flv-yoga .button.default:not(.hollow) {
    background-color: #BE9C5C;
    color: #FFFFFF; }
    .flv-yoga .button.default:not(.hollow):hover, .flv-yoga .button.default:not(.hollow):focus {
      background-color: #a18040;
      color: #FFFFFF; }
  .flv-yoga .button.contrast.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-yoga .button.contrast.hollow:hover, .flv-yoga .button.contrast.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-yoga .button.contrast.hollow:hover.disabled, .flv-yoga .button.contrast.hollow:hover[disabled], .flv-yoga .button.contrast.hollow:focus.disabled, .flv-yoga .button.contrast.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-yoga .button.contrast:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-yoga .button.contrast:not(.hollow):hover, .flv-yoga .button.contrast:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-yoga .button.highlight.hollow {
    border: 1px solid #ac1c00;
    color: #ac1c00; }
    .flv-yoga .button.highlight.hollow:hover, .flv-yoga .button.highlight.hollow:focus {
      border-color: #560e00;
      color: #560e00; }
      .flv-yoga .button.highlight.hollow:hover.disabled, .flv-yoga .button.highlight.hollow:hover[disabled], .flv-yoga .button.highlight.hollow:focus.disabled, .flv-yoga .button.highlight.hollow:focus[disabled] {
        border: 1px solid #ac1c00;
        color: #ac1c00; }
  .flv-yoga .button.highlight:not(.hollow) {
    background-color: #ac1c00;
    color: #FFFFFF; }
    .flv-yoga .button.highlight:not(.hollow):hover, .flv-yoga .button.highlight:not(.hollow):focus {
      background-color: #8a1600;
      color: #FFFFFF; }
  .flv-yoga .text-color {
    color: #4A4A4A !important; }
    .flv-yoga .text-color a {
      color: #4A4A4A !important; }
  .flv-yoga .colorized {
    --color-main: #BE9C5C;
    --color-contrast: #0091A5;
    --color-back: #BE9C5C;
    background-color: #BE9C5C;
    --color-text: #FFFFFF;
    color: #FFFFFF; }
    .flv-yoga .colorized a:not(.decent) {
      color: #0091A5; }
    .flv-yoga .colorized .bordered {
      border: 1px solid #BE9C5C; }
    .flv-yoga .colorized .waves:after {
      background: #BE9C5C url("../img/waves.svg") repeat left top; }
    .flv-yoga .colorized .waves.-light:after {
      opacity: .15; }
    .flv-yoga .colorized .waves-inverted:after {
      background: #BE9C5C url("../img/waves-inverted.svg") repeat left top; }
    .flv-yoga .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-yoga .colorized .decent {
      color: inherit; }
      .flv-yoga .colorized .decent a {
        color: indianred; }
    .flv-yoga .colorized hr.dotted {
      border-bottom-color: #BE9C5C; }
    .flv-yoga .colorized h1, .flv-yoga .colorized h2, .flv-yoga .colorized h3, .flv-yoga .colorized h4, .flv-yoga .colorized h5, .flv-yoga .colorized h6,
    .flv-yoga .colorized .h1, .flv-yoga .colorized .h2, .flv-yoga .colorized .h3, .flv-yoga .colorized .h4, .flv-yoga .colorized .h5, .flv-yoga .colorized .h6 {
      color: #FFFFFF; }
      .flv-yoga .colorized h1 a, .flv-yoga .colorized h2 a, .flv-yoga .colorized h3 a, .flv-yoga .colorized h4 a, .flv-yoga .colorized h5 a, .flv-yoga .colorized h6 a,
      .flv-yoga .colorized .h1 a, .flv-yoga .colorized .h2 a, .flv-yoga .colorized .h3 a, .flv-yoga .colorized .h4 a, .flv-yoga .colorized .h5 a, .flv-yoga .colorized .h6 a {
        color: #FFFFFF; }
    .flv-yoga .colorized .highlighted-text {
      color: #FFFFFF; }
    .flv-yoga .colorized .primary-color {
      color: #BE9C5C; }
    .flv-yoga .colorized .secondary-color {
      color: #0091A5; }
    .flv-yoga .colorized .light-bg:before {
      background: #BE9C5C; }
    .flv-yoga .colorized .bubble {
      background: #0091A5;
      color: #BE9C5C; }
      .flv-yoga .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-yoga .colorized .button.default.hollow {
      border: 1px solid #FFFFFF;
      color: #FFFFFF; }
      .flv-yoga .colorized .button.default.hollow:hover, .flv-yoga .colorized .button.default.hollow:focus {
        border-color: gray;
        color: gray; }
        .flv-yoga .colorized .button.default.hollow:hover.disabled, .flv-yoga .colorized .button.default.hollow:hover[disabled], .flv-yoga .colorized .button.default.hollow:focus.disabled, .flv-yoga .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #FFFFFF;
          color: #FFFFFF; }
    .flv-yoga .colorized .button.default:not(.hollow) {
      background-color: #FFFFFF;
      color: #0091A5; }
      .flv-yoga .colorized .button.default:not(.hollow):hover, .flv-yoga .colorized .button.default:not(.hollow):focus {
        background-color: #cccccc;
        color: #0091A5; }
    .flv-yoga .colorized .button.contrast.hollow {
      border: 1px solid #0091A5;
      color: #0091A5; }
      .flv-yoga .colorized .button.contrast.hollow:hover, .flv-yoga .colorized .button.contrast.hollow:focus {
        border-color: #004953;
        color: #004953; }
        .flv-yoga .colorized .button.contrast.hollow:hover.disabled, .flv-yoga .colorized .button.contrast.hollow:hover[disabled], .flv-yoga .colorized .button.contrast.hollow:focus.disabled, .flv-yoga .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #0091A5;
          color: #0091A5; }
    .flv-yoga .colorized .button.contrast:not(.hollow) {
      background-color: #0091A5;
      color: #FFFFFF; }
      .flv-yoga .colorized .button.contrast:not(.hollow):hover, .flv-yoga .colorized .button.contrast:not(.hollow):focus {
        background-color: #007484;
        color: #FFFFFF; }
    .flv-yoga .colorized .button.highlight.hollow {
      border: 1px solid #ff0;
      color: #ff0; }
      .flv-yoga .colorized .button.highlight.hollow:hover, .flv-yoga .colorized .button.highlight.hollow:focus {
        border-color: olive;
        color: olive; }
        .flv-yoga .colorized .button.highlight.hollow:hover.disabled, .flv-yoga .colorized .button.highlight.hollow:hover[disabled], .flv-yoga .colorized .button.highlight.hollow:focus.disabled, .flv-yoga .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ff0;
          color: #ff0; }
    .flv-yoga .colorized .button.highlight:not(.hollow) {
      background-color: #ff0;
      color: #0091A5; }
      .flv-yoga .colorized .button.highlight:not(.hollow):hover, .flv-yoga .colorized .button.highlight:not(.hollow):focus {
        background-color: #cccc00;
        color: #0091A5; }
    .flv-yoga .colorized .text-color {
      color: #FFFFFF !important; }
      .flv-yoga .colorized .text-color a {
        color: #FFFFFF !important; }

.flv-active {
  --color-main: #B1BE56;
  --color-contrast: #0091A5;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #4A4A4A;
  color: #4A4A4A; }
  .flv-active a:not(.decent) {
    color: #B1BE56; }
  .flv-active .bordered {
    border: 1px solid #B1BE56; }
  .flv-active .waves:after {
    background: #B1BE56 url("../img/waves.svg") repeat left top; }
  .flv-active .waves.-light:after {
    opacity: .15; }
  .flv-active .waves-inverted:after {
    background: #B1BE56 url("../img/waves-inverted.svg") repeat left top; }
  .flv-active .waves-inverted.-light:after {
    opacity: .15; }
  .flv-active .decent {
    color: inherit; }
    .flv-active .decent a {
      color: indianred; }
  .flv-active hr.dotted {
    border-bottom-color: #B1BE56; }
  .flv-active h1, .flv-active h2, .flv-active h3, .flv-active h4, .flv-active h5, .flv-active h6,
  .flv-active .h1, .flv-active .h2, .flv-active .h3, .flv-active .h4, .flv-active .h5, .flv-active .h6 {
    color: #B1BE56; }
    .flv-active h1 a, .flv-active h2 a, .flv-active h3 a, .flv-active h4 a, .flv-active h5 a, .flv-active h6 a,
    .flv-active .h1 a, .flv-active .h2 a, .flv-active .h3 a, .flv-active .h4 a, .flv-active .h5 a, .flv-active .h6 a {
      color: #B1BE56; }
  .flv-active .highlighted-text {
    color: #B1BE56; }
  .flv-active .primary-color {
    color: #B1BE56; }
  .flv-active .secondary-color {
    color: #0091A5; }
  .flv-active .light-bg:before {
    background: #B1BE56; }
  .flv-active .bubble {
    background: #0091A5;
    color: #B1BE56; }
    .flv-active .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-active .button.default.hollow {
    border: 1px solid #B1BE56;
    color: #B1BE56; }
    .flv-active .button.default.hollow:hover, .flv-active .button.default.hollow:focus {
      border-color: #5c6426;
      color: #5c6426; }
      .flv-active .button.default.hollow:hover.disabled, .flv-active .button.default.hollow:hover[disabled], .flv-active .button.default.hollow:focus.disabled, .flv-active .button.default.hollow:focus[disabled] {
        border: 1px solid #B1BE56;
        color: #B1BE56; }
  .flv-active .button.default:not(.hollow) {
    background-color: #B1BE56;
    color: #FFFFFF; }
    .flv-active .button.default:not(.hollow):hover, .flv-active .button.default:not(.hollow):focus {
      background-color: #939f3d;
      color: #FFFFFF; }
  .flv-active .button.contrast.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-active .button.contrast.hollow:hover, .flv-active .button.contrast.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-active .button.contrast.hollow:hover.disabled, .flv-active .button.contrast.hollow:hover[disabled], .flv-active .button.contrast.hollow:focus.disabled, .flv-active .button.contrast.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-active .button.contrast:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-active .button.contrast:not(.hollow):hover, .flv-active .button.contrast:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-active .button.highlight.hollow {
    border: 1px solid #ac1c00;
    color: #ac1c00; }
    .flv-active .button.highlight.hollow:hover, .flv-active .button.highlight.hollow:focus {
      border-color: #560e00;
      color: #560e00; }
      .flv-active .button.highlight.hollow:hover.disabled, .flv-active .button.highlight.hollow:hover[disabled], .flv-active .button.highlight.hollow:focus.disabled, .flv-active .button.highlight.hollow:focus[disabled] {
        border: 1px solid #ac1c00;
        color: #ac1c00; }
  .flv-active .button.highlight:not(.hollow) {
    background-color: #ac1c00;
    color: #FFFFFF; }
    .flv-active .button.highlight:not(.hollow):hover, .flv-active .button.highlight:not(.hollow):focus {
      background-color: #8a1600;
      color: #FFFFFF; }
  .flv-active .text-color {
    color: #4A4A4A !important; }
    .flv-active .text-color a {
      color: #4A4A4A !important; }
  .flv-active .colorized {
    --color-main: #B1BE56;
    --color-contrast: #0091A5;
    --color-back: #B1BE56;
    background-color: #B1BE56;
    --color-text: #FFFFFF;
    color: #FFFFFF; }
    .flv-active .colorized a:not(.decent) {
      color: #FFFFFF; }
    .flv-active .colorized .bordered {
      border: 1px solid #B1BE56; }
    .flv-active .colorized .waves:after {
      background: #B1BE56 url("../img/waves.svg") repeat left top; }
    .flv-active .colorized .waves.-light:after {
      opacity: .15; }
    .flv-active .colorized .waves-inverted:after {
      background: #B1BE56 url("../img/waves-inverted.svg") repeat left top; }
    .flv-active .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-active .colorized .decent {
      color: inherit; }
      .flv-active .colorized .decent a {
        color: indianred; }
    .flv-active .colorized hr.dotted {
      border-bottom-color: #B1BE56; }
    .flv-active .colorized h1, .flv-active .colorized h2, .flv-active .colorized h3, .flv-active .colorized h4, .flv-active .colorized h5, .flv-active .colorized h6,
    .flv-active .colorized .h1, .flv-active .colorized .h2, .flv-active .colorized .h3, .flv-active .colorized .h4, .flv-active .colorized .h5, .flv-active .colorized .h6 {
      color: #FFFFFF; }
      .flv-active .colorized h1 a, .flv-active .colorized h2 a, .flv-active .colorized h3 a, .flv-active .colorized h4 a, .flv-active .colorized h5 a, .flv-active .colorized h6 a,
      .flv-active .colorized .h1 a, .flv-active .colorized .h2 a, .flv-active .colorized .h3 a, .flv-active .colorized .h4 a, .flv-active .colorized .h5 a, .flv-active .colorized .h6 a {
        color: #FFFFFF; }
    .flv-active .colorized .highlighted-text {
      color: #FFFFFF; }
    .flv-active .colorized .primary-color {
      color: #B1BE56; }
    .flv-active .colorized .secondary-color {
      color: #0091A5; }
    .flv-active .colorized .light-bg:before {
      background: #B1BE56; }
    .flv-active .colorized .bubble {
      background: #0091A5;
      color: #B1BE56; }
      .flv-active .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-active .colorized .button.default.hollow {
      border: 1px solid #FFFFFF;
      color: #FFFFFF; }
      .flv-active .colorized .button.default.hollow:hover, .flv-active .colorized .button.default.hollow:focus {
        border-color: gray;
        color: gray; }
        .flv-active .colorized .button.default.hollow:hover.disabled, .flv-active .colorized .button.default.hollow:hover[disabled], .flv-active .colorized .button.default.hollow:focus.disabled, .flv-active .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #FFFFFF;
          color: #FFFFFF; }
    .flv-active .colorized .button.default:not(.hollow) {
      background-color: #FFFFFF;
      color: #B1BE56; }
      .flv-active .colorized .button.default:not(.hollow):hover, .flv-active .colorized .button.default:not(.hollow):focus {
        background-color: #cccccc;
        color: #B1BE56; }
    .flv-active .colorized .button.contrast.hollow {
      border: 1px solid #0091A5;
      color: #0091A5; }
      .flv-active .colorized .button.contrast.hollow:hover, .flv-active .colorized .button.contrast.hollow:focus {
        border-color: #004953;
        color: #004953; }
        .flv-active .colorized .button.contrast.hollow:hover.disabled, .flv-active .colorized .button.contrast.hollow:hover[disabled], .flv-active .colorized .button.contrast.hollow:focus.disabled, .flv-active .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #0091A5;
          color: #0091A5; }
    .flv-active .colorized .button.contrast:not(.hollow) {
      background-color: #0091A5;
      color: #FFFFFF; }
      .flv-active .colorized .button.contrast:not(.hollow):hover, .flv-active .colorized .button.contrast:not(.hollow):focus {
        background-color: #007484;
        color: #FFFFFF; }
    .flv-active .colorized .button.highlight.hollow {
      border: 1px solid #ff0;
      color: #ff0; }
      .flv-active .colorized .button.highlight.hollow:hover, .flv-active .colorized .button.highlight.hollow:focus {
        border-color: olive;
        color: olive; }
        .flv-active .colorized .button.highlight.hollow:hover.disabled, .flv-active .colorized .button.highlight.hollow:hover[disabled], .flv-active .colorized .button.highlight.hollow:focus.disabled, .flv-active .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ff0;
          color: #ff0; }
    .flv-active .colorized .button.highlight:not(.hollow) {
      background-color: #ff0;
      color: #0091A5; }
      .flv-active .colorized .button.highlight:not(.hollow):hover, .flv-active .colorized .button.highlight:not(.hollow):focus {
        background-color: #cccc00;
        color: #0091A5; }
    .flv-active .colorized .text-color {
      color: #FFFFFF !important; }
      .flv-active .colorized .text-color a {
        color: #FFFFFF !important; }

.flv-lightblue {
  --color-main: #EAF4F7;
  --color-contrast: #0091A5;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #4A4A4A;
  color: #4A4A4A; }
  .flv-lightblue a:not(.decent) {
    color: #0091A5; }
  .flv-lightblue .bordered {
    border: 1px solid #EAF4F7; }
  .flv-lightblue .waves:after {
    background: #EAF4F7 url("../img/waves.svg") repeat left top; }
  .flv-lightblue .waves.-light:after {
    opacity: .15; }
  .flv-lightblue .waves-inverted:after {
    background: #EAF4F7 url("../img/waves-inverted.svg") repeat left top; }
  .flv-lightblue .waves-inverted.-light:after {
    opacity: .15; }
  .flv-lightblue .decent {
    color: inherit; }
    .flv-lightblue .decent a {
      color: indianred; }
  .flv-lightblue hr.dotted {
    border-bottom-color: #EAF4F7; }
  .flv-lightblue h1, .flv-lightblue h2, .flv-lightblue h3, .flv-lightblue h4, .flv-lightblue h5, .flv-lightblue h6,
  .flv-lightblue .h1, .flv-lightblue .h2, .flv-lightblue .h3, .flv-lightblue .h4, .flv-lightblue .h5, .flv-lightblue .h6 {
    color: #0091A5; }
    .flv-lightblue h1 a, .flv-lightblue h2 a, .flv-lightblue h3 a, .flv-lightblue h4 a, .flv-lightblue h5 a, .flv-lightblue h6 a,
    .flv-lightblue .h1 a, .flv-lightblue .h2 a, .flv-lightblue .h3 a, .flv-lightblue .h4 a, .flv-lightblue .h5 a, .flv-lightblue .h6 a {
      color: #0091A5; }
  .flv-lightblue .highlighted-text {
    color: #0091A5; }
  .flv-lightblue .primary-color {
    color: #EAF4F7; }
  .flv-lightblue .secondary-color {
    color: #0091A5; }
  .flv-lightblue .light-bg:before {
    background: #EAF4F7; }
  .flv-lightblue .bubble {
    background: #0091A5;
    color: #EAF4F7; }
    .flv-lightblue .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-lightblue .button.default.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-lightblue .button.default.hollow:hover, .flv-lightblue .button.default.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-lightblue .button.default.hollow:hover.disabled, .flv-lightblue .button.default.hollow:hover[disabled], .flv-lightblue .button.default.hollow:focus.disabled, .flv-lightblue .button.default.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-lightblue .button.default:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-lightblue .button.default:not(.hollow):hover, .flv-lightblue .button.default:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-lightblue .button.contrast.hollow {
    border: 1px solid #F9B233;
    color: #F9B233; }
    .flv-lightblue .button.contrast.hollow:hover, .flv-lightblue .button.contrast.hollow:focus {
      border-color: #925f04;
      color: #925f04; }
      .flv-lightblue .button.contrast.hollow:hover.disabled, .flv-lightblue .button.contrast.hollow:hover[disabled], .flv-lightblue .button.contrast.hollow:focus.disabled, .flv-lightblue .button.contrast.hollow:focus[disabled] {
        border: 1px solid #F9B233;
        color: #F9B233; }
  .flv-lightblue .button.contrast:not(.hollow) {
    background-color: #F9B233;
    color: #FFFFFF; }
    .flv-lightblue .button.contrast:not(.hollow):hover, .flv-lightblue .button.contrast:not(.hollow):focus {
      background-color: #e99807;
      color: #FFFFFF; }
  .flv-lightblue .button.highlight.hollow {
    border: 1px solid #ac1c00;
    color: #ac1c00; }
    .flv-lightblue .button.highlight.hollow:hover, .flv-lightblue .button.highlight.hollow:focus {
      border-color: #560e00;
      color: #560e00; }
      .flv-lightblue .button.highlight.hollow:hover.disabled, .flv-lightblue .button.highlight.hollow:hover[disabled], .flv-lightblue .button.highlight.hollow:focus.disabled, .flv-lightblue .button.highlight.hollow:focus[disabled] {
        border: 1px solid #ac1c00;
        color: #ac1c00; }
  .flv-lightblue .button.highlight:not(.hollow) {
    background-color: #ac1c00;
    color: #FFFFFF; }
    .flv-lightblue .button.highlight:not(.hollow):hover, .flv-lightblue .button.highlight:not(.hollow):focus {
      background-color: #8a1600;
      color: #FFFFFF; }
  .flv-lightblue .text-color {
    color: #4A4A4A !important; }
    .flv-lightblue .text-color a {
      color: #4A4A4A !important; }
  .flv-lightblue .colorized {
    --color-main: #EAF4F7;
    --color-contrast: #0091A5;
    --color-back: #EAF4F7;
    background-color: #EAF4F7;
    --color-text: #4A4A4A;
    color: #4A4A4A; }
    .flv-lightblue .colorized a:not(.decent) {
      color: #0091A5; }
    .flv-lightblue .colorized .bordered {
      border: 1px solid #EAF4F7; }
    .flv-lightblue .colorized .waves:after {
      background: #EAF4F7 url("../img/waves.svg") repeat left top; }
    .flv-lightblue .colorized .waves.-light:after {
      opacity: .15; }
    .flv-lightblue .colorized .waves-inverted:after {
      background: #EAF4F7 url("../img/waves-inverted.svg") repeat left top; }
    .flv-lightblue .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-lightblue .colorized .decent {
      color: inherit; }
      .flv-lightblue .colorized .decent a {
        color: indianred; }
    .flv-lightblue .colorized hr.dotted {
      border-bottom-color: #EAF4F7; }
    .flv-lightblue .colorized h1, .flv-lightblue .colorized h2, .flv-lightblue .colorized h3, .flv-lightblue .colorized h4, .flv-lightblue .colorized h5, .flv-lightblue .colorized h6,
    .flv-lightblue .colorized .h1, .flv-lightblue .colorized .h2, .flv-lightblue .colorized .h3, .flv-lightblue .colorized .h4, .flv-lightblue .colorized .h5, .flv-lightblue .colorized .h6 {
      color: #0091A5; }
      .flv-lightblue .colorized h1 a, .flv-lightblue .colorized h2 a, .flv-lightblue .colorized h3 a, .flv-lightblue .colorized h4 a, .flv-lightblue .colorized h5 a, .flv-lightblue .colorized h6 a,
      .flv-lightblue .colorized .h1 a, .flv-lightblue .colorized .h2 a, .flv-lightblue .colorized .h3 a, .flv-lightblue .colorized .h4 a, .flv-lightblue .colorized .h5 a, .flv-lightblue .colorized .h6 a {
        color: #0091A5; }
    .flv-lightblue .colorized .highlighted-text {
      color: #0091A5; }
    .flv-lightblue .colorized .primary-color {
      color: #EAF4F7; }
    .flv-lightblue .colorized .secondary-color {
      color: #0091A5; }
    .flv-lightblue .colorized .light-bg:before {
      background: #EAF4F7; }
    .flv-lightblue .colorized .bubble {
      background: #0091A5;
      color: #EAF4F7; }
      .flv-lightblue .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-lightblue .colorized .button.default.hollow {
      border: 1px solid #0091A5;
      color: #0091A5; }
      .flv-lightblue .colorized .button.default.hollow:hover, .flv-lightblue .colorized .button.default.hollow:focus {
        border-color: #004953;
        color: #004953; }
        .flv-lightblue .colorized .button.default.hollow:hover.disabled, .flv-lightblue .colorized .button.default.hollow:hover[disabled], .flv-lightblue .colorized .button.default.hollow:focus.disabled, .flv-lightblue .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #0091A5;
          color: #0091A5; }
    .flv-lightblue .colorized .button.default:not(.hollow) {
      background-color: #0091A5;
      color: #FFFFFF; }
      .flv-lightblue .colorized .button.default:not(.hollow):hover, .flv-lightblue .colorized .button.default:not(.hollow):focus {
        background-color: #007484;
        color: #FFFFFF; }
    .flv-lightblue .colorized .button.contrast.hollow {
      border: 1px solid #F9B233;
      color: #F9B233; }
      .flv-lightblue .colorized .button.contrast.hollow:hover, .flv-lightblue .colorized .button.contrast.hollow:focus {
        border-color: #925f04;
        color: #925f04; }
        .flv-lightblue .colorized .button.contrast.hollow:hover.disabled, .flv-lightblue .colorized .button.contrast.hollow:hover[disabled], .flv-lightblue .colorized .button.contrast.hollow:focus.disabled, .flv-lightblue .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #F9B233;
          color: #F9B233; }
    .flv-lightblue .colorized .button.contrast:not(.hollow) {
      background-color: #F9B233;
      color: #FFFFFF; }
      .flv-lightblue .colorized .button.contrast:not(.hollow):hover, .flv-lightblue .colorized .button.contrast:not(.hollow):focus {
        background-color: #e99807;
        color: #FFFFFF; }
    .flv-lightblue .colorized .button.highlight.hollow {
      border: 1px solid #ac1c00;
      color: #ac1c00; }
      .flv-lightblue .colorized .button.highlight.hollow:hover, .flv-lightblue .colorized .button.highlight.hollow:focus {
        border-color: #560e00;
        color: #560e00; }
        .flv-lightblue .colorized .button.highlight.hollow:hover.disabled, .flv-lightblue .colorized .button.highlight.hollow:hover[disabled], .flv-lightblue .colorized .button.highlight.hollow:focus.disabled, .flv-lightblue .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ac1c00;
          color: #ac1c00; }
    .flv-lightblue .colorized .button.highlight:not(.hollow) {
      background-color: #ac1c00;
      color: #FFFFFF; }
      .flv-lightblue .colorized .button.highlight:not(.hollow):hover, .flv-lightblue .colorized .button.highlight:not(.hollow):focus {
        background-color: #8a1600;
        color: #FFFFFF; }
    .flv-lightblue .colorized .text-color {
      color: #4A4A4A !important; }
      .flv-lightblue .colorized .text-color a {
        color: #4A4A4A !important; }

.flv-pink {
  --color-main: #E6007E;
  --color-contrast: #F9B233;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #4A4A4A;
  color: #4A4A4A; }
  .flv-pink a:not(.decent) {
    color: #E6007E; }
  .flv-pink .bordered {
    border: 1px solid #E6007E; }
  .flv-pink .waves:after {
    background: #E6007E url("../img/waves.svg") repeat left top; }
  .flv-pink .waves.-light:after {
    opacity: .15; }
  .flv-pink .waves-inverted:after {
    background: #E6007E url("../img/waves-inverted.svg") repeat left top; }
  .flv-pink .waves-inverted.-light:after {
    opacity: .15; }
  .flv-pink .decent {
    color: inherit; }
    .flv-pink .decent a {
      color: indianred; }
  .flv-pink hr.dotted {
    border-bottom-color: #E6007E; }
  .flv-pink h1, .flv-pink h2, .flv-pink h3, .flv-pink h4, .flv-pink h5, .flv-pink h6,
  .flv-pink .h1, .flv-pink .h2, .flv-pink .h3, .flv-pink .h4, .flv-pink .h5, .flv-pink .h6 {
    color: #E6007E; }
    .flv-pink h1 a, .flv-pink h2 a, .flv-pink h3 a, .flv-pink h4 a, .flv-pink h5 a, .flv-pink h6 a,
    .flv-pink .h1 a, .flv-pink .h2 a, .flv-pink .h3 a, .flv-pink .h4 a, .flv-pink .h5 a, .flv-pink .h6 a {
      color: #E6007E; }
  .flv-pink .highlighted-text {
    color: #E6007E; }
  .flv-pink .primary-color {
    color: #E6007E; }
  .flv-pink .secondary-color {
    color: #F9B233; }
  .flv-pink .light-bg:before {
    background: #E6007E; }
  .flv-pink .bubble {
    background: #F9B233;
    color: #E6007E; }
    .flv-pink .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-pink .button.default.hollow {
    border: 1px solid #E6007E;
    color: #E6007E; }
    .flv-pink .button.default.hollow:hover, .flv-pink .button.default.hollow:focus {
      border-color: #73003f;
      color: #73003f; }
      .flv-pink .button.default.hollow:hover.disabled, .flv-pink .button.default.hollow:hover[disabled], .flv-pink .button.default.hollow:focus.disabled, .flv-pink .button.default.hollow:focus[disabled] {
        border: 1px solid #E6007E;
        color: #E6007E; }
  .flv-pink .button.default:not(.hollow) {
    background-color: #E6007E;
    color: #FFFFFF; }
    .flv-pink .button.default:not(.hollow):hover, .flv-pink .button.default:not(.hollow):focus {
      background-color: #b80065;
      color: #FFFFFF; }
  .flv-pink .button.contrast.hollow {
    border: 1px solid #F9B233;
    color: #F9B233; }
    .flv-pink .button.contrast.hollow:hover, .flv-pink .button.contrast.hollow:focus {
      border-color: #925f04;
      color: #925f04; }
      .flv-pink .button.contrast.hollow:hover.disabled, .flv-pink .button.contrast.hollow:hover[disabled], .flv-pink .button.contrast.hollow:focus.disabled, .flv-pink .button.contrast.hollow:focus[disabled] {
        border: 1px solid #F9B233;
        color: #F9B233; }
  .flv-pink .button.contrast:not(.hollow) {
    background-color: #F9B233;
    color: #FFFFFF; }
    .flv-pink .button.contrast:not(.hollow):hover, .flv-pink .button.contrast:not(.hollow):focus {
      background-color: #e99807;
      color: #FFFFFF; }
  .flv-pink .button.highlight.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-pink .button.highlight.hollow:hover, .flv-pink .button.highlight.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-pink .button.highlight.hollow:hover.disabled, .flv-pink .button.highlight.hollow:hover[disabled], .flv-pink .button.highlight.hollow:focus.disabled, .flv-pink .button.highlight.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-pink .button.highlight:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-pink .button.highlight:not(.hollow):hover, .flv-pink .button.highlight:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-pink .text-color {
    color: #4A4A4A !important; }
    .flv-pink .text-color a {
      color: #4A4A4A !important; }
  .flv-pink .colorized {
    --color-main: #E6007E;
    --color-contrast: #F9B233;
    --color-back: #E6007E;
    background-color: #E6007E;
    --color-text: #FFFFFF;
    color: #FFFFFF; }
    .flv-pink .colorized a:not(.decent) {
      color: #FFFFFF; }
    .flv-pink .colorized .bordered {
      border: 1px solid #E6007E; }
    .flv-pink .colorized .waves:after {
      background: #E6007E url("../img/waves.svg") repeat left top; }
    .flv-pink .colorized .waves.-light:after {
      opacity: .15; }
    .flv-pink .colorized .waves-inverted:after {
      background: #E6007E url("../img/waves-inverted.svg") repeat left top; }
    .flv-pink .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-pink .colorized .decent {
      color: inherit; }
      .flv-pink .colorized .decent a {
        color: indianred; }
    .flv-pink .colorized hr.dotted {
      border-bottom-color: #E6007E; }
    .flv-pink .colorized h1, .flv-pink .colorized h2, .flv-pink .colorized h3, .flv-pink .colorized h4, .flv-pink .colorized h5, .flv-pink .colorized h6,
    .flv-pink .colorized .h1, .flv-pink .colorized .h2, .flv-pink .colorized .h3, .flv-pink .colorized .h4, .flv-pink .colorized .h5, .flv-pink .colorized .h6 {
      color: #FFFFFF; }
      .flv-pink .colorized h1 a, .flv-pink .colorized h2 a, .flv-pink .colorized h3 a, .flv-pink .colorized h4 a, .flv-pink .colorized h5 a, .flv-pink .colorized h6 a,
      .flv-pink .colorized .h1 a, .flv-pink .colorized .h2 a, .flv-pink .colorized .h3 a, .flv-pink .colorized .h4 a, .flv-pink .colorized .h5 a, .flv-pink .colorized .h6 a {
        color: #FFFFFF; }
    .flv-pink .colorized .highlighted-text {
      color: #FFFFFF; }
    .flv-pink .colorized .primary-color {
      color: #E6007E; }
    .flv-pink .colorized .secondary-color {
      color: #F9B233; }
    .flv-pink .colorized .light-bg:before {
      background: #E6007E; }
    .flv-pink .colorized .bubble {
      background: #F9B233;
      color: #E6007E; }
      .flv-pink .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-pink .colorized .button.default.hollow {
      border: 1px solid #FFFFFF;
      color: #FFFFFF; }
      .flv-pink .colorized .button.default.hollow:hover, .flv-pink .colorized .button.default.hollow:focus {
        border-color: gray;
        color: gray; }
        .flv-pink .colorized .button.default.hollow:hover.disabled, .flv-pink .colorized .button.default.hollow:hover[disabled], .flv-pink .colorized .button.default.hollow:focus.disabled, .flv-pink .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #FFFFFF;
          color: #FFFFFF; }
    .flv-pink .colorized .button.default:not(.hollow) {
      background-color: #FFFFFF;
      color: #E6007E; }
      .flv-pink .colorized .button.default:not(.hollow):hover, .flv-pink .colorized .button.default:not(.hollow):focus {
        background-color: #cccccc;
        color: #E6007E; }
    .flv-pink .colorized .button.contrast.hollow {
      border: 1px solid #F9B233;
      color: #F9B233; }
      .flv-pink .colorized .button.contrast.hollow:hover, .flv-pink .colorized .button.contrast.hollow:focus {
        border-color: #925f04;
        color: #925f04; }
        .flv-pink .colorized .button.contrast.hollow:hover.disabled, .flv-pink .colorized .button.contrast.hollow:hover[disabled], .flv-pink .colorized .button.contrast.hollow:focus.disabled, .flv-pink .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #F9B233;
          color: #F9B233; }
    .flv-pink .colorized .button.contrast:not(.hollow) {
      background-color: #F9B233;
      color: #FFFFFF; }
      .flv-pink .colorized .button.contrast:not(.hollow):hover, .flv-pink .colorized .button.contrast:not(.hollow):focus {
        background-color: #e99807;
        color: #FFFFFF; }
    .flv-pink .colorized .button.highlight.hollow {
      border: 1px solid #ff0;
      color: #ff0; }
      .flv-pink .colorized .button.highlight.hollow:hover, .flv-pink .colorized .button.highlight.hollow:focus {
        border-color: olive;
        color: olive; }
        .flv-pink .colorized .button.highlight.hollow:hover.disabled, .flv-pink .colorized .button.highlight.hollow:hover[disabled], .flv-pink .colorized .button.highlight.hollow:focus.disabled, .flv-pink .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ff0;
          color: #ff0; }
    .flv-pink .colorized .button.highlight:not(.hollow) {
      background-color: #ff0;
      color: #0091A5; }
      .flv-pink .colorized .button.highlight:not(.hollow):hover, .flv-pink .colorized .button.highlight:not(.hollow):focus {
        background-color: #cccc00;
        color: #0091A5; }
    .flv-pink .colorized .text-color {
      color: #FFFFFF !important; }
      .flv-pink .colorized .text-color a {
        color: #FFFFFF !important; }

.flv-dark {
  --color-main: #4A4A4A;
  --color-contrast: #0091A5;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #4A4A4A;
  color: #4A4A4A; }
  .flv-dark a:not(.decent) {
    color: #4A4A4A; }
  .flv-dark .bordered {
    border: 1px solid #4A4A4A; }
  .flv-dark .waves:after {
    background: #4A4A4A url("../img/waves.svg") repeat left top; }
  .flv-dark .waves.-light:after {
    opacity: .15; }
  .flv-dark .waves-inverted:after {
    background: #4A4A4A url("../img/waves-inverted.svg") repeat left top; }
  .flv-dark .waves-inverted.-light:after {
    opacity: .15; }
  .flv-dark .decent {
    color: inherit; }
    .flv-dark .decent a {
      color: indianred; }
  .flv-dark hr.dotted {
    border-bottom-color: #4A4A4A; }
  .flv-dark h1, .flv-dark h2, .flv-dark h3, .flv-dark h4, .flv-dark h5, .flv-dark h6,
  .flv-dark .h1, .flv-dark .h2, .flv-dark .h3, .flv-dark .h4, .flv-dark .h5, .flv-dark .h6 {
    color: #4A4A4A; }
    .flv-dark h1 a, .flv-dark h2 a, .flv-dark h3 a, .flv-dark h4 a, .flv-dark h5 a, .flv-dark h6 a,
    .flv-dark .h1 a, .flv-dark .h2 a, .flv-dark .h3 a, .flv-dark .h4 a, .flv-dark .h5 a, .flv-dark .h6 a {
      color: #4A4A4A; }
  .flv-dark .highlighted-text {
    color: #0091A5; }
  .flv-dark .primary-color {
    color: #4A4A4A; }
  .flv-dark .secondary-color {
    color: #0091A5; }
  .flv-dark .light-bg:before {
    background: #4A4A4A; }
  .flv-dark .bubble {
    background: #0091A5;
    color: #4A4A4A; }
    .flv-dark .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-dark .button.default.hollow {
    border: 1px solid #4A4A4A;
    color: #4A4A4A; }
    .flv-dark .button.default.hollow:hover, .flv-dark .button.default.hollow:focus {
      border-color: #252525;
      color: #252525; }
      .flv-dark .button.default.hollow:hover.disabled, .flv-dark .button.default.hollow:hover[disabled], .flv-dark .button.default.hollow:focus.disabled, .flv-dark .button.default.hollow:focus[disabled] {
        border: 1px solid #4A4A4A;
        color: #4A4A4A; }
  .flv-dark .button.default:not(.hollow) {
    background-color: #4A4A4A;
    color: #FFFFFF; }
    .flv-dark .button.default:not(.hollow):hover, .flv-dark .button.default:not(.hollow):focus {
      background-color: #3b3b3b;
      color: #FFFFFF; }
  .flv-dark .button.contrast.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-dark .button.contrast.hollow:hover, .flv-dark .button.contrast.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-dark .button.contrast.hollow:hover.disabled, .flv-dark .button.contrast.hollow:hover[disabled], .flv-dark .button.contrast.hollow:focus.disabled, .flv-dark .button.contrast.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-dark .button.contrast:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-dark .button.contrast:not(.hollow):hover, .flv-dark .button.contrast:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-dark .button.highlight.hollow {
    border: 1px solid #ac1c00;
    color: #ac1c00; }
    .flv-dark .button.highlight.hollow:hover, .flv-dark .button.highlight.hollow:focus {
      border-color: #560e00;
      color: #560e00; }
      .flv-dark .button.highlight.hollow:hover.disabled, .flv-dark .button.highlight.hollow:hover[disabled], .flv-dark .button.highlight.hollow:focus.disabled, .flv-dark .button.highlight.hollow:focus[disabled] {
        border: 1px solid #ac1c00;
        color: #ac1c00; }
  .flv-dark .button.highlight:not(.hollow) {
    background-color: #ac1c00;
    color: #FFFFFF; }
    .flv-dark .button.highlight:not(.hollow):hover, .flv-dark .button.highlight:not(.hollow):focus {
      background-color: #8a1600;
      color: #FFFFFF; }
  .flv-dark .text-color {
    color: #4A4A4A !important; }
    .flv-dark .text-color a {
      color: #4A4A4A !important; }
  .flv-dark .colorized {
    --color-main: #4A4A4A;
    --color-contrast: #0091A5;
    --color-back: #4A4A4A;
    background-color: #4A4A4A;
    --color-text: #FFFFFF;
    color: #FFFFFF; }
    .flv-dark .colorized a:not(.decent) {
      color: #FFFFFF; }
    .flv-dark .colorized .bordered {
      border: 1px solid #4A4A4A; }
    .flv-dark .colorized .waves:after {
      background: #4A4A4A url("../img/waves.svg") repeat left top; }
    .flv-dark .colorized .waves.-light:after {
      opacity: .15; }
    .flv-dark .colorized .waves-inverted:after {
      background: #4A4A4A url("../img/waves-inverted.svg") repeat left top; }
    .flv-dark .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-dark .colorized .decent {
      color: inherit; }
      .flv-dark .colorized .decent a {
        color: indianred; }
    .flv-dark .colorized hr.dotted {
      border-bottom-color: #4A4A4A; }
    .flv-dark .colorized h1, .flv-dark .colorized h2, .flv-dark .colorized h3, .flv-dark .colorized h4, .flv-dark .colorized h5, .flv-dark .colorized h6,
    .flv-dark .colorized .h1, .flv-dark .colorized .h2, .flv-dark .colorized .h3, .flv-dark .colorized .h4, .flv-dark .colorized .h5, .flv-dark .colorized .h6 {
      color: #FFFFFF; }
      .flv-dark .colorized h1 a, .flv-dark .colorized h2 a, .flv-dark .colorized h3 a, .flv-dark .colorized h4 a, .flv-dark .colorized h5 a, .flv-dark .colorized h6 a,
      .flv-dark .colorized .h1 a, .flv-dark .colorized .h2 a, .flv-dark .colorized .h3 a, .flv-dark .colorized .h4 a, .flv-dark .colorized .h5 a, .flv-dark .colorized .h6 a {
        color: #FFFFFF; }
    .flv-dark .colorized .highlighted-text {
      color: #FFFFFF; }
    .flv-dark .colorized .primary-color {
      color: #4A4A4A; }
    .flv-dark .colorized .secondary-color {
      color: #0091A5; }
    .flv-dark .colorized .light-bg:before {
      background: #4A4A4A; }
    .flv-dark .colorized .bubble {
      background: #0091A5;
      color: #4A4A4A; }
      .flv-dark .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-dark .colorized .button.default.hollow {
      border: 1px solid #FFFFFF;
      color: #FFFFFF; }
      .flv-dark .colorized .button.default.hollow:hover, .flv-dark .colorized .button.default.hollow:focus {
        border-color: gray;
        color: gray; }
        .flv-dark .colorized .button.default.hollow:hover.disabled, .flv-dark .colorized .button.default.hollow:hover[disabled], .flv-dark .colorized .button.default.hollow:focus.disabled, .flv-dark .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #FFFFFF;
          color: #FFFFFF; }
    .flv-dark .colorized .button.default:not(.hollow) {
      background-color: #FFFFFF;
      color: #0091A5; }
      .flv-dark .colorized .button.default:not(.hollow):hover, .flv-dark .colorized .button.default:not(.hollow):focus {
        background-color: #cccccc;
        color: #0091A5; }
    .flv-dark .colorized .button.contrast.hollow {
      border: 1px solid #0091A5;
      color: #0091A5; }
      .flv-dark .colorized .button.contrast.hollow:hover, .flv-dark .colorized .button.contrast.hollow:focus {
        border-color: #004953;
        color: #004953; }
        .flv-dark .colorized .button.contrast.hollow:hover.disabled, .flv-dark .colorized .button.contrast.hollow:hover[disabled], .flv-dark .colorized .button.contrast.hollow:focus.disabled, .flv-dark .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #0091A5;
          color: #0091A5; }
    .flv-dark .colorized .button.contrast:not(.hollow) {
      background-color: #0091A5;
      color: #FFFFFF; }
      .flv-dark .colorized .button.contrast:not(.hollow):hover, .flv-dark .colorized .button.contrast:not(.hollow):focus {
        background-color: #007484;
        color: #FFFFFF; }
    .flv-dark .colorized .button.highlight.hollow {
      border: 1px solid #ff0;
      color: #ff0; }
      .flv-dark .colorized .button.highlight.hollow:hover, .flv-dark .colorized .button.highlight.hollow:focus {
        border-color: olive;
        color: olive; }
        .flv-dark .colorized .button.highlight.hollow:hover.disabled, .flv-dark .colorized .button.highlight.hollow:hover[disabled], .flv-dark .colorized .button.highlight.hollow:focus.disabled, .flv-dark .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ff0;
          color: #ff0; }
    .flv-dark .colorized .button.highlight:not(.hollow) {
      background-color: #ff0;
      color: #0091A5; }
      .flv-dark .colorized .button.highlight:not(.hollow):hover, .flv-dark .colorized .button.highlight:not(.hollow):focus {
        background-color: #cccc00;
        color: #0091A5; }
    .flv-dark .colorized .text-color {
      color: #FFFFFF !important; }
      .flv-dark .colorized .text-color a {
        color: #FFFFFF !important; }

.flv-velo {
  --color-main: #11515f;
  --color-contrast: #94D2BF;
  --color-back: #FFFFFF;
  background-color: #FFFFFF;
  --color-text: #2C2E35;
  color: #2C2E35; }
  .flv-velo a:not(.decent) {
    color: #11515f; }
  .flv-velo .bordered {
    border: 1px solid #11515f; }
  .flv-velo .waves:after {
    background: #11515f url("../img/waves.svg") repeat left top; }
  .flv-velo .waves.-light:after {
    opacity: .15; }
  .flv-velo .waves-inverted:after {
    background: #11515f url("../img/waves-inverted.svg") repeat left top; }
  .flv-velo .waves-inverted.-light:after {
    opacity: .15; }
  .flv-velo .decent {
    color: inherit; }
    .flv-velo .decent a {
      color: indianred; }
  .flv-velo hr.dotted {
    border-bottom-color: #11515f; }
  .flv-velo h1, .flv-velo h2, .flv-velo h3, .flv-velo h4, .flv-velo h5, .flv-velo h6,
  .flv-velo .h1, .flv-velo .h2, .flv-velo .h3, .flv-velo .h4, .flv-velo .h5, .flv-velo .h6 {
    color: #2C2E35; }
    .flv-velo h1 a, .flv-velo h2 a, .flv-velo h3 a, .flv-velo h4 a, .flv-velo h5 a, .flv-velo h6 a,
    .flv-velo .h1 a, .flv-velo .h2 a, .flv-velo .h3 a, .flv-velo .h4 a, .flv-velo .h5 a, .flv-velo .h6 a {
      color: #2C2E35; }
  .flv-velo .highlighted-text {
    color: #11515f; }
  .flv-velo .primary-color {
    color: #11515f; }
  .flv-velo .secondary-color {
    color: #94D2BF; }
  .flv-velo .light-bg:before {
    background: #11515f; }
  .flv-velo .bubble {
    background: #94D2BF;
    color: #11515f; }
    .flv-velo .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-velo .button.default.hollow {
    border: 1px solid #11515f;
    color: #11515f; }
    .flv-velo .button.default.hollow:hover, .flv-velo .button.default.hollow:focus {
      border-color: #092930;
      color: #092930; }
      .flv-velo .button.default.hollow:hover.disabled, .flv-velo .button.default.hollow:hover[disabled], .flv-velo .button.default.hollow:focus.disabled, .flv-velo .button.default.hollow:focus[disabled] {
        border: 1px solid #11515f;
        color: #11515f; }
  .flv-velo .button.default:not(.hollow) {
    background-color: #11515f;
    color: #FFFFFF; }
    .flv-velo .button.default:not(.hollow):hover, .flv-velo .button.default:not(.hollow):focus {
      background-color: #0e414c;
      color: #FFFFFF; }
  .flv-velo .button.contrast.hollow {
    border: 1px solid #94D2BF;
    color: #94D2BF; }
    .flv-velo .button.contrast.hollow:hover, .flv-velo .button.contrast.hollow:focus {
      border-color: #357e68;
      color: #357e68; }
      .flv-velo .button.contrast.hollow:hover.disabled, .flv-velo .button.contrast.hollow:hover[disabled], .flv-velo .button.contrast.hollow:focus.disabled, .flv-velo .button.contrast.hollow:focus[disabled] {
        border: 1px solid #94D2BF;
        color: #94D2BF; }
  .flv-velo .button.contrast:not(.hollow) {
    background-color: #94D2BF;
    color: #FFFFFF; }
    .flv-velo .button.contrast:not(.hollow):hover, .flv-velo .button.contrast:not(.hollow):focus {
      background-color: #62bda1;
      color: #FFFFFF; }
  .flv-velo .button.highlight.hollow {
    border: 1px solid #ac1c00;
    color: #ac1c00; }
    .flv-velo .button.highlight.hollow:hover, .flv-velo .button.highlight.hollow:focus {
      border-color: #560e00;
      color: #560e00; }
      .flv-velo .button.highlight.hollow:hover.disabled, .flv-velo .button.highlight.hollow:hover[disabled], .flv-velo .button.highlight.hollow:focus.disabled, .flv-velo .button.highlight.hollow:focus[disabled] {
        border: 1px solid #ac1c00;
        color: #ac1c00; }
  .flv-velo .button.highlight:not(.hollow) {
    background-color: #ac1c00;
    color: #FFFFFF; }
    .flv-velo .button.highlight:not(.hollow):hover, .flv-velo .button.highlight:not(.hollow):focus {
      background-color: #8a1600;
      color: #FFFFFF; }
  .flv-velo .text-color {
    color: #2C2E35 !important; }
    .flv-velo .text-color a {
      color: #2C2E35 !important; }
  .flv-velo .colorized {
    --color-main: #11515f;
    --color-contrast: #94D2BF;
    --color-back: #11515f;
    background-color: #11515f;
    --color-text: #FFFFFF;
    color: #FFFFFF; }
    .flv-velo .colorized a:not(.decent) {
      color: #FFFFFF; }
    .flv-velo .colorized .bordered {
      border: 1px solid #11515f; }
    .flv-velo .colorized .waves:after {
      background: #11515f url("../img/waves.svg") repeat left top; }
    .flv-velo .colorized .waves.-light:after {
      opacity: .15; }
    .flv-velo .colorized .waves-inverted:after {
      background: #11515f url("../img/waves-inverted.svg") repeat left top; }
    .flv-velo .colorized .waves-inverted.-light:after {
      opacity: .15; }
    .flv-velo .colorized .decent {
      color: inherit; }
      .flv-velo .colorized .decent a {
        color: indianred; }
    .flv-velo .colorized hr.dotted {
      border-bottom-color: #11515f; }
    .flv-velo .colorized h1, .flv-velo .colorized h2, .flv-velo .colorized h3, .flv-velo .colorized h4, .flv-velo .colorized h5, .flv-velo .colorized h6,
    .flv-velo .colorized .h1, .flv-velo .colorized .h2, .flv-velo .colorized .h3, .flv-velo .colorized .h4, .flv-velo .colorized .h5, .flv-velo .colorized .h6 {
      color: #FFFFFF; }
      .flv-velo .colorized h1 a, .flv-velo .colorized h2 a, .flv-velo .colorized h3 a, .flv-velo .colorized h4 a, .flv-velo .colorized h5 a, .flv-velo .colorized h6 a,
      .flv-velo .colorized .h1 a, .flv-velo .colorized .h2 a, .flv-velo .colorized .h3 a, .flv-velo .colorized .h4 a, .flv-velo .colorized .h5 a, .flv-velo .colorized .h6 a {
        color: #FFFFFF; }
    .flv-velo .colorized .highlighted-text {
      color: #94D2BF; }
    .flv-velo .colorized .primary-color {
      color: #11515f; }
    .flv-velo .colorized .secondary-color {
      color: #94D2BF; }
    .flv-velo .colorized .light-bg:before {
      background: #11515f; }
    .flv-velo .colorized .bubble {
      background: #94D2BF;
      color: #11515f; }
      .flv-velo .colorized .bubble ._bubble-contrast {
        color: #FFFFFF; }
    .flv-velo .colorized .button.default.hollow {
      border: 1px solid #FFFFFF;
      color: #FFFFFF; }
      .flv-velo .colorized .button.default.hollow:hover, .flv-velo .colorized .button.default.hollow:focus {
        border-color: gray;
        color: gray; }
        .flv-velo .colorized .button.default.hollow:hover.disabled, .flv-velo .colorized .button.default.hollow:hover[disabled], .flv-velo .colorized .button.default.hollow:focus.disabled, .flv-velo .colorized .button.default.hollow:focus[disabled] {
          border: 1px solid #FFFFFF;
          color: #FFFFFF; }
    .flv-velo .colorized .button.default:not(.hollow) {
      background-color: #FFFFFF;
      color: #11515f; }
      .flv-velo .colorized .button.default:not(.hollow):hover, .flv-velo .colorized .button.default:not(.hollow):focus {
        background-color: #cccccc;
        color: #11515f; }
    .flv-velo .colorized .button.contrast.hollow {
      border: 1px solid #94D2BF;
      color: #94D2BF; }
      .flv-velo .colorized .button.contrast.hollow:hover, .flv-velo .colorized .button.contrast.hollow:focus {
        border-color: #357e68;
        color: #357e68; }
        .flv-velo .colorized .button.contrast.hollow:hover.disabled, .flv-velo .colorized .button.contrast.hollow:hover[disabled], .flv-velo .colorized .button.contrast.hollow:focus.disabled, .flv-velo .colorized .button.contrast.hollow:focus[disabled] {
          border: 1px solid #94D2BF;
          color: #94D2BF; }
    .flv-velo .colorized .button.contrast:not(.hollow) {
      background-color: #94D2BF;
      color: #FFFFFF; }
      .flv-velo .colorized .button.contrast:not(.hollow):hover, .flv-velo .colorized .button.contrast:not(.hollow):focus {
        background-color: #62bda1;
        color: #FFFFFF; }
    .flv-velo .colorized .button.highlight.hollow {
      border: 1px solid #ff0;
      color: #ff0; }
      .flv-velo .colorized .button.highlight.hollow:hover, .flv-velo .colorized .button.highlight.hollow:focus {
        border-color: olive;
        color: olive; }
        .flv-velo .colorized .button.highlight.hollow:hover.disabled, .flv-velo .colorized .button.highlight.hollow:hover[disabled], .flv-velo .colorized .button.highlight.hollow:focus.disabled, .flv-velo .colorized .button.highlight.hollow:focus[disabled] {
          border: 1px solid #ff0;
          color: #ff0; }
    .flv-velo .colorized .button.highlight:not(.hollow) {
      background-color: #ff0;
      color: #0091A5; }
      .flv-velo .colorized .button.highlight:not(.hollow):hover, .flv-velo .colorized .button.highlight:not(.hollow):focus {
        background-color: #cccc00;
        color: #0091A5; }
    .flv-velo .colorized .text-color {
      color: #FFFFFF !important; }
      .flv-velo .colorized .text-color a {
        color: #FFFFFF !important; }

.flv-culinary.ctype-promo-article .colorized {
  background-color: #BE9C5C; }

.map-wrapper {
  position: relative;
  width: 100%;
  height: 320px; }
  @media print, screen and (min-width: 64em) {
    .map-wrapper {
      height: 400px; } }
  @media screen and (min-width: 75em) {
    .map-wrapper {
      height: 500px; } }

.map-container {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.demand-buttons .demand-button {
  display: block; }
  .demand-buttons .demand-button:not(:last-child) {
    margin-bottom: .5em; }

.map-component {
  display: inline-block;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  pointer-events: none; }
  .map-component > .container > button {
    pointer-events: all; }

.map-overlay {
  position: absolute;
  max-height: 100%;
  z-index: 2;
  left: 1rem;
  top: 1rem;
  box-sizing: border-box;
  pointer-events: all; }
  .map-overlay ._overlay-scroll-content {
    width: 100%;
    height: 100%;
    overflow: auto; }
  @media screen and (max-width: 63.99875em) {
    .map-overlay {
      left: auto;
      width: 100%;
      background: rgba(255, 255, 255, 0.5);
      padding: 1rem;
      top: 0;
      bottom: 0;
      right: 100%;
      transition: transform .5s ease; }
      .map-overlay.-active {
        transform: translateX(100%); }
        .map-overlay.-active ._toggle-button {
          transform: translateX(-100%); }
          .map-overlay.-active ._toggle-button .icon {
            transition: transform .5s ease;
            transform: rotate(180deg); } }
  .map-overlay ._toggle-button {
    position: absolute;
    left: 100%;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #FFFFFF;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.66);
    transition: transform .5s ease; }
    @media print, screen and (min-width: 64em) {
      .map-overlay ._toggle-button {
        display: none; } }
    .map-overlay ._toggle-button .icon {
      transform-origin: center center; }
  .map-overlay ._overlay-section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem; }

.map-icon {
  font-size: .75rem;
  text-align: center;
  color: #4A4A4A;
  width: 36px;
  height: 48px;
  box-sizing: border-box;
  position: relative; }
  .map-icon.-main {
    width: 48px;
    height: 64px;
    font-size: 1rem; }
    .map-icon.-main ._icon {
      display: inline-block;
      background: #FFFFFF;
      width: 1.3em;
      height: 1.3em;
      border-radius: 100px;
      line-height: 1.3em;
      font-size: 1.5em; }
  .map-icon.-poi {
    width: 80px;
    height: 105px; }
    .map-icon.-poi ._icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .map-icon.-poi ._icon img {
        display: block;
        width: 100%;
        height: auto; }
  .map-icon.-cluster {
    color: #0091A5; }
  .map-icon:before {
    content: "";
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #FFFFFF;
    border-radius: 2px; }
  .map-icon:after {
    content: "";
    z-index: 1;
    position: absolute;
    background: #FFFFFF;
    width: 1em;
    height: 1em;
    left: calc(50% - .5em);
    top: calc(100% - .5em);
    transform: rotate(45deg); }
  .map-icon > ._shadow {
    position: absolute;
    left: -25%;
    right: -25%;
    top: 80%;
    height: calc(50% + .5em);
    z-index: 0;
    background: transparent radial-gradient(closest-side, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 100%); }
  .map-icon > ._wrapper {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .map-icon svg {
    fill: currentColor;
    stroke: none; }
  .map-icon.flv-main {
    color: #FFFFFF; }
    .map-icon.flv-main:before, .map-icon.flv-main:after {
      background: #0091A5; }
    .map-icon.flv-main.-main ._icon {
      background: #FFFFFF;
      color: #0091A5; }
  .map-icon.flv-culinary {
    color: #FFFFFF; }
    .map-icon.flv-culinary:before, .map-icon.flv-culinary:after {
      background: #CAB39C; }
    .map-icon.flv-culinary.-main ._icon {
      background: #FFFFFF;
      color: #CAB39C; }
  .map-icon.flv-yoga {
    color: #FFFFFF; }
    .map-icon.flv-yoga:before, .map-icon.flv-yoga:after {
      background: #BE9C5C; }
    .map-icon.flv-yoga.-main ._icon {
      background: #FFFFFF;
      color: #BE9C5C; }
  .map-icon.flv-active {
    color: #FFFFFF; }
    .map-icon.flv-active:before, .map-icon.flv-active:after {
      background: #B1BE56; }
    .map-icon.flv-active.-main ._icon {
      background: #FFFFFF;
      color: #B1BE56; }
  .map-icon.flv-lightblue {
    color: #0091A5; }
    .map-icon.flv-lightblue:before, .map-icon.flv-lightblue:after {
      background: #EAF4F7; }
    .map-icon.flv-lightblue.-main ._icon {
      background: #0091A5;
      color: #EAF4F7; }
  .map-icon.flv-pink {
    color: #FFFFFF; }
    .map-icon.flv-pink:before, .map-icon.flv-pink:after {
      background: #E6007E; }
    .map-icon.flv-pink.-main ._icon {
      background: #FFFFFF;
      color: #E6007E; }
  .map-icon.flv-dark {
    color: #FFFFFF; }
    .map-icon.flv-dark:before, .map-icon.flv-dark:after {
      background: #4A4A4A; }
    .map-icon.flv-dark.-main ._icon {
      background: #FFFFFF;
      color: #4A4A4A; }
  .map-icon.flv-velo {
    color: #FFFFFF; }
    .map-icon.flv-velo:before, .map-icon.flv-velo:after {
      background: #11515f; }
    .map-icon.flv-velo.-main ._icon {
      background: #FFFFFF;
      color: #11515f; }

.leaflet-popup-content .map-infobox {
  min-width: 240px; }
  .leaflet-popup-content .map-infobox ._title {
    display: block;
    margin-bottom: .5em; }
  .leaflet-popup-content .map-infobox p {
    margin-top: 0; }
    .leaflet-popup-content .map-infobox p:not(:last-of-type) {
      margin-bottom: 1em; }
  .leaflet-popup-content .map-infobox img {
    width: 64px;
    height: auto; }

.gdpr {
  font-size: small;
  position: relative; }
  .gdpr ._option-grid {
    align-items: center; }
  .gdpr .message {
    position: absolute;
    z-index: 1;
    top: 1rem;
    right: 1rem; }

@media screen and (max-width: 39.99875em) {
  .reveal.gdpr-reveal {
    min-height: 0;
    height: auto;
    top: 50vh; } }

.content-slideshow, .slideshow {
  position: relative; }
  html.no-js .content-slideshow .orbit-image[data-interchange], html.no-js .slideshow .orbit-image[data-interchange] {
    display: none; }
  .content-slideshow .loader, .slideshow .loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1; }
    .content-slideshow .loader ._icon, .slideshow .loader ._icon {
      font-size: 4rem; }
  .content-slideshow .orbit-container, .slideshow .orbit-container {
    z-index: 2; }
    html.no-js .content-slideshow .orbit-container, html.no-js .slideshow .orbit-container {
      overflow: visible; }
      html.no-js .content-slideshow .orbit-container .orbit-slide:not(.is-active), html.no-js .slideshow .orbit-container .orbit-slide:not(.is-active) {
        display: none; }
  .content-slideshow .orbit-figure, .slideshow .orbit-figure {
    display: block; }
    .content-slideshow .orbit-figure .orbit-image, .slideshow .orbit-figure .orbit-image {
      display: block;
      line-height: 0; }
  html:not(.no-js) .content-slideshow .orbit-container, html:not(.no-js) .slideshow .orbit-container {
    opacity: 0;
    will-change: opacity;
    transition: opacity .5s ease; }
    html:not(.no-js) .content-slideshow .orbit-container[style*="height:"], html:not(.no-js) .slideshow .orbit-container[style*="height:"] {
      opacity: 1; }
      html:not(.no-js) .content-slideshow .orbit-container[style*="height:"] + .loader, html:not(.no-js) .slideshow .orbit-container[style*="height:"] + .loader {
        display: none; }

.content-slideshow.-white {
  background-color: #FFFFFF; }

.slideshow {
  height: 150vw; }
  .slideshow .orbit-previous,
  .slideshow .orbit-next {
    top: auto;
    bottom: .5rem;
    transform: none; }
  .slideshow .orbit-next {
    right: auto;
    left: 3rem; }
  @media print, screen and (min-width: 40em) {
    .slideshow {
      height: 56.25vw; } }
  @media screen and (min-width: 120em) {
    .slideshow {
      width: 1920px;
      height: 1080px;
      margin-left: auto;
      margin-right: auto; } }
  .slideshow .orbit-image {
    width: 100%;
    height: 150vw; }
    @media print, screen and (min-width: 40em) {
      .slideshow .orbit-image {
        height: 56.25vw; } }
    @media screen and (min-width: 120em) {
      .slideshow .orbit-image {
        width: 1920px;
        height: 1080px; } }

.on-slide-caption {
  position: absolute;
  color: #FFFFFF;
  left: 1rem;
  bottom: 4rem;
  width: calc(100% - 2rem); }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-left {
      left: 1rem; }
    .on-slide-caption.-small-center {
      left: 50%;
      transform: translateX(-50%); }
    .on-slide-caption.-small-right {
      left: auto;
      right: 1rem; }
    .on-slide-caption.-small-top {
      bottom: auto;
      top: 2rem; }
    .on-slide-caption.-small-middle {
      bottom: auto;
      top: 50%;
      transform: translateY(-50%); }
      .on-slide-caption.-small-middle.-small-center {
        transform: translate(-50%, -50%); }
    .on-slide-caption.-small-shadow {
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); }
      .on-slide-caption.-small-shadow.-small-flavor-black {
        text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); } }
  @media screen and (min-width: 64em) {
    .on-slide-caption {
      width: calc(100% - 4rem); }
      .on-slide-caption.-large-left {
        left: 2rem; }
      .on-slide-caption.-large-center {
        left: 50%;
        transform: translateX(-50%); }
      .on-slide-caption.-large-right {
        left: auto;
        right: 2rem; }
      .on-slide-caption.-large-top {
        bottom: auto;
        top: 2rem; }
      .on-slide-caption.-large-middle {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%); }
        .on-slide-caption.-large-middle.-large-center {
          transform: translate(-50%, -50%); }
      .on-slide-caption.-large-shadow {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); }
        .on-slide-caption.-large-shadow.-large-flavor-black {
          text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-main {
      color: #0091A5; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-main {
      color: #0091A5; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-culinary {
      color: #CAB39C; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-culinary {
      color: #CAB39C; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-yoga {
      color: #BE9C5C; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-yoga {
      color: #BE9C5C; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-active {
      color: #B1BE56; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-active {
      color: #B1BE56; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-lightblue {
      color: #EAF4F7; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-lightblue {
      color: #EAF4F7; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-pink {
      color: #E6007E; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-pink {
      color: #E6007E; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-dark {
      color: #4A4A4A; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-dark {
      color: #4A4A4A; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-velo {
      color: #11515f; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-velo {
      color: #11515f; } }
  @media screen and (max-width: 63.99875em) {
    .on-slide-caption.-small-flavor-black {
      color: #000; } }
  @media screen and (min-width: 64em) {
    .on-slide-caption.-large-flavor-black {
      color: #000; } }
  .on-slide-caption ._small {
    font-size: 1.25rem;
    line-height: 1;
    display: block; }
    @media screen and (min-width: 30em) {
      .on-slide-caption ._small {
        font-size: 1.5rem; } }
    @media print, screen and (min-width: 40em) {
      .on-slide-caption ._small {
        font-size: 1.75rem; } }
    @media print, screen and (min-width: 64em) {
      .on-slide-caption ._small {
        font-size: 2rem;
        line-height: 1; } }
  .on-slide-caption ._big {
    display: block;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase; }
    @media screen and (min-width: 30em) {
      .on-slide-caption ._big {
        font-size: 2.75rem; } }
    @media print, screen and (min-width: 40em) {
      .on-slide-caption ._big {
        font-size: 3.33rem; } }
    @media print, screen and (min-width: 64em) {
      .on-slide-caption ._big {
        font-size: 5.33rem;
        line-height: 1; } }

html:not(.no-js) .orbit-slide .on-slide-caption ._caption-wrap {
  display: block;
  transform: translateY(-100px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease .25s; }

html:not(.no-js) .orbit-slide.is-active:not([class*="mui"]) .on-slide-caption ._caption-wrap {
  opacity: 1;
  transform: translateY(0); }

.intro .multi-line-header {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto; }

.save-the-date {
  position: relative; }
  @media print, screen and (min-width: 64em) {
    .save-the-date ._h1 {
      font-size: 2.5rem; } }
  @media print, screen and (min-width: 64em) {
    .save-the-date ._h2 {
      font-size: 2.5rem; } }
  .save-the-date ._bubble {
    box-sizing: border-box;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background: #FFFFFF;
    color: #0091A5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    text-align: center;
    line-height: 1.15; }
    .save-the-date ._bubble.-tilt-left {
      transform: rotateZ(-15deg); }
      .save-the-date ._bubble.-tilt-left.-hover {
        transition: transform .25s ease; }
        .save-the-date ._bubble.-tilt-left.-hover:hover {
          transform: rotateZ(-1deg); }
  .save-the-date.-has-bubble {
    min-height: 200px; }
    .save-the-date.-has-bubble .card-section {
      padding-right: 175px; }
    .save-the-date.-has-bubble ._bubble {
      position: absolute;
      right: 1rem;
      bottom: -1rem; }
      @media print, screen and (min-width: 64em) {
        .save-the-date.-has-bubble ._bubble {
          right: -1rem;
          bottom: 1rem; } }

#main-menu ._submenu .save-the-date.card {
  flex-direction: row; }
  #main-menu ._submenu .save-the-date.card img,
  #main-menu ._submenu .save-the-date.card figure {
    order: 2;
    flex: 1 0; }
  #main-menu ._submenu .save-the-date.card .card-section {
    flex: 0 1;
    position: relative; }

.article-card-container {
  container-type: inline-size; }

.article-card {
  border: none;
  container-type: inline-size;
  display: flex;
  flex-direction: column; }

@container (width >= 32rem) {
  .article-card {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between; } }
  .flv-culinary .article-card .card-content {
    border: 1px solid #CAB39C; }
  .article-card figure {
    position: relative;
    isolation: isolate; }

@container (width < 32rem) {
  .article-card figure {
    order: 1;
    aspect-ratio: 16 / 9; }
    .article-card figure img {
      display: block;
      width: 100%;
      height: auto; } }

@container (width >= 32rem) {
  .article-card figure {
    flex: 0 0 50%; }
    .article-card figure img {
      position: absolute;
      z-index: -1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; } }
    .article-card figure picture {
      display: block; }

@container (width < 32rem) {
  .article-card .card-section {
    order: 2; } }

@container (width >= 32rem) {
  .article-card .card-section {
    flex: 1 0 50%; } }

@container (width >= 32rem) {
  .article-card .card-content ._heading {
    font-size: 1.33rem;
    line-height: 1.2; } }
  .article-card .card-content p {
    font-size: 1rem;
    line-height: 1.4; }

@media screen and (min-width: 75em) {
  .accommodation-search-widget {
    padding-left: 2rem; }
    .accommodation-search-widget ._links-cell .links {
      padding: 2rem; } }

.accommodation-search-widget .room-row:not(:first-of-type) {
  position: relative;
  margin-top: 1rem; }
  .accommodation-search-widget .room-row:not(:first-of-type):before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0;
    right: 1rem;
    border-top: 1px solid currentColor;
    opacity: .25; }

@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .accommodation-search-widget ._form-cell {
    order: 1; }
  .accommodation-search-widget ._folder-cell {
    order: 3;
    padding-top: 4rem; }
  .accommodation-search-widget ._links-cell {
    order: 2; } }

.child-ages {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-left: -.25rem; }
  .child-ages input {
    flex: 0 1 100%;
    max-width: 4.5rem;
    margin: 0 .25rem .25rem; }

.folder-preview {
  border: 4px solid #FFFFFF;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
  transform: rotateZ(-3deg);
  position: relative; }
  .folder-preview .corner1,
  .folder-preview .corner2 {
    position: absolute;
    z-index: 2;
    background-image: url("../img/waves.svg");
    background-repeat: repeat; }
  .folder-preview .corner1 {
    right: -.5rem;
    top: -.5rem;
    width: 80px;
    height: 80px;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.25);
    border-bottom-left-radius: 100%; }
  .folder-preview .corner2 {
    left: -.5rem;
    bottom: -.5rem;
    width: 40px;
    height: 40px;
    box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.25);
    border-top-right-radius: 100%; }
  .folder-preview ._inner {
    z-index: 1; }
  .folder-preview ._cover {
    margin: 0 .5rem 1rem .5rem;
    padding-top: .5rem; }
    .folder-preview ._cover img {
      border: 4px solid #FFFFFF;
      box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
      transform: rotateZ(-3deg); }
  .folder-preview ._content {
    padding: 1rem; }
    @media screen and (min-width: 75em) {
      .folder-preview ._content {
        padding: 1rem 2rem; } }

.promo-article {
  display: flex;
  flex-direction: column; }
  @media print, screen and (min-width: 64em) {
    .promo-article {
      flex-direction: row; } }
  .promo-article ._text {
    text-align: center;
    flex: 1 1 auto;
    order: 2; }
    @media print, screen and (min-width: 64em) {
      .promo-article ._text {
        text-align: left; } }
  .promo-article ._image {
    flex: 0 0 auto;
    order: 2;
    text-align: center; }
    .promo-article ._image.-pull-up {
      position: relative;
      margin-top: -6rem; }
      @media print, screen and (min-width: 64em) {
        .promo-article ._image.-pull-up {
          margin-top: -8rem; } }
    @media screen and (max-width: 63.99875em) {
      .promo-article ._image {
        order: 1; } }

.friends {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  position: relative; }
  @media print, screen and (min-width: 64em) {
    .friends {
      display: flex;
      align-items: stretch; } }
  .friends ._image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1; }
    .friends ._image picture {
      flex: 1; }
    @media print, screen and (min-width: 64em) {
      .friends ._image {
        flex: 0 0 50%; } }
    .friends ._image .h6 {
      position: absolute;
      left: 1rem;
      top: 1rem;
      z-index: 2; }
    .friends ._image img:not(.-keep-size) {
      z-index: 1;
      width: 100%;
      height: auto; }
    .friends ._image .bubble {
      display: none;
      font-size: 2rem;
      line-height: 1; }
      @media print, screen and (min-width: 64em) {
        .friends ._image .bubble {
          display: flex;
          position: absolute;
          z-index: 3;
          left: 45%;
          bottom: 15%; } }
  .friends ._testimonial {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    top: 1rem; }
    @media print, screen and (min-width: 64em) {
      .friends ._testimonial {
        position: absolute;
        width: 180px;
        height: 180px;
        top: 1rem;
        left: 50%;
        margin-left: -140px; } }
    @media screen and (min-width: 75em) {
      .friends ._testimonial {
        margin-left: -80px; } }
    .friends ._testimonial img {
      width: 100%;
      height: auto;
      border-radius: 100%;
      border: 4px solid currentColor; }
    .friends ._testimonial ._quote {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translate(66%, -133%); }
  .friends ._image ~ ._testimonial {
    margin-top: -100px;
    top: 0; }
    @media print, screen and (min-width: 64em) {
      .friends ._image ~ ._testimonial {
        top: 1rem;
        margin-top: 0; } }
  .friends ._quote {
    display: block;
    font-size: 2rem;
    line-height: 1.5em;
    text-align: center;
    width: 64px;
    height: 64px;
    border-radius: 100%; }
  .friends ._text {
    padding: 1rem; }
    @media print, screen and (min-width: 64em) {
      .friends ._text {
        flex: 1 1 0;
        padding-left: 20px;
        padding-top: 200px; } }
    @media screen and (min-width: 75em) {
      .friends ._text {
        padding-left: 90px; } }
    .friends ._text ._quotation-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem; }
      @media print, screen and (min-width: 64em) {
        .friends ._text ._quotation-wrap {
          position: absolute;
          display: block;
          margin-bottom: 0;
          transform: translate(-100%, -100%); } }
    .friends ._text blockquote {
      text-align: center;
      border: 0;
      padding: 0; }
      @media print, screen and (min-width: 64em) {
        .friends ._text blockquote {
          padding-left: 40px;
          text-align: left; } }
      @media screen and (min-width: 75em) {
        .friends ._text blockquote ._quotation {
          font-size: 2rem;
          line-height: 1.4; } }
      .friends ._text blockquote ._quotation,
      .friends ._text blockquote ._source em {
        font-style: italic; }
      .friends ._text blockquote ._source em {
        font-weight: 600;
        display: block; }
        @media screen and (min-width: 75em) {
          .friends ._text blockquote ._source em {
            margin-bottom: 1rem; } }
    .friends ._text ._description {
      margin-bottom: 2rem; }
      @media screen and (min-width: 75em) {
        .friends ._text ._description {
          padding-left: 40px;
          padding-top: 2rem; } }
  @media print, screen and (min-width: 64em) {
    .friends ._image ~ ._text {
      padding-top: 90px; } }

.app-promotion {
  position: relative; }
  .app-promotion.-has-special {
    padding-bottom: 60px; }
  .app-promotion .special-alexa-bubble {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.2;
    position: relative; }
    .app-promotion .special-alexa-bubble ._bubble-contrast {
      display: block; }
  .app-promotion ._bubble {
    position: absolute;
    z-index: 1; }
  .app-promotion ._icon {
    position: absolute;
    width: 100px;
    height: 50px;
    left: -3.5rem;
    bottom: 0;
    z-index: 2; }
    .app-promotion ._icon .svg.-rss {
      position: absolute;
      z-index: 2;
      color: #FFFFFF;
      font-size: 3rem;
      filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.33));
      transform: rotate(-45deg);
      transform-origin: center center;
      left: 1rem;
      top: -1.2rem; }
    .app-promotion ._icon .svg.-hockey-puck {
      position: absolute;
      z-index: 1;
      color: #0091A5;
      font-size: 5rem; }

.app-links {
  display: flex; }
  .app-links a {
    flex: 0 1 50%;
    max-width: 180px; }
    .app-links a:not(:first-of-type) {
      margin-left: 1rem; }

.imagelink {
  position: relative;
  display: block; }
  .imagelink ._header {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2; }
  .imagelink ._image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto; }

.iconlink {
  display: block;
  width: 100%;
  padding-bottom: 62.5%;
  height: 0;
  position: relative; }
  .iconlink ._header {
    position: absolute;
    z-index: 2;
    left: 1rem;
    top: 1rem; }
  .iconlink ._icon-wrap {
    width: 100px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .iconlink .svg-autoscale {
    transition: transform .25s ease; }
  .iconlink:hover .svg-autoscale {
    transform: scale(1.25); }

/**
 * this is not very nice - try to find a better solution
 */
@media print, screen and (min-width: 40em) {
  .grid-1-1-1-boxes ._col .widget:only-child {
    min-height: 100%; }
    .grid-1-1-1-boxes ._col .widget:only-child.ctype-dce_widget_iconlink {
      display: flex;
      align-items: stretch; }
      .grid-1-1-1-boxes ._col .widget:only-child.ctype-dce_widget_iconlink > .container {
        width: 100%;
        display: flex;
        align-items: stretch; }
        .grid-1-1-1-boxes ._col .widget:only-child.ctype-dce_widget_iconlink > .container > .iconlink {
          height: auto;
          width: 100%;
          padding-bottom: 0;
          min-height: 240px; } }

.images-grid {
  position: relative;
  margin-left: -.5rem;
  margin-right: -.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  grid-auto-flow: dense; }
  @media print, screen and (min-width: 40em) {
    .images-grid {
      grid-template-columns: repeat(auto-fill, minmax(33%, 1fr)); } }
  @media print, screen and (min-width: 64em) {
    .images-grid {
      grid-template-columns: repeat(auto-fill, minmax(25%, 1fr)); } }
  .images-grid ._item.-landscape {
    grid-column-end: span 2; }
  .images-grid ._item.-portrait {
    grid-row-end: span 2; }
  .images-grid ._item a {
    position: relative;
    display: block;
    overflow: hidden; }
    .images-grid ._item a:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      border: 0.5rem solid #FFFFFF; }
    .images-grid ._item a:hover img {
      transform: scale(1.05); }
    .images-grid ._item a img {
      display: block;
      width: 100%;
      height: auto;
      transform: scale(1);
      transition: transform .25s ease;
      transform-origin: center center; }

.images-strip {
  display: flex;
  flex-wrap: wrap; }
  .images-strip ._item {
    flex: 0 0 calc(50% - 1rem);
    margin: 0 .5rem 1rem; }
    @media print, screen and (min-width: 40em) {
      .images-strip ._item {
        flex-basis: calc(33% - 1rem); } }
    @media print, screen and (min-width: 64em) {
      .images-strip ._item {
        flex-basis: calc(11% - 1rem); } }
    .images-strip ._item img {
      display: block;
      width: 100%;
      height: auto; }
    .images-strip ._item.-appendix {
      background: #e3e3e3;
      display: flex;
      flex-grow: 1;
      align-items: center;
      justify-content: center; }

.grid-x.images.-left {
  justify-content: flex-start; }

.grid-x.images.-center {
  justify-content: center; }

.grid-x.images.-right {
  justify-content: flex-end; }

.bullettext {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center; }
  @media print, screen and (min-width: 40em) {
    .bullettext {
      flex-direction: row;
      justify-content: center; } }
  .bullettext ._bullet {
    width: 1rem;
    height: 1rem;
    background: currentColor;
    border-radius: 100%; }
    @media print, screen and (min-width: 40em) {
      .bullettext ._bullet {
        flex: 0 0 1rem; } }
  .bullettext ._inner {
    margin: 2rem 0; }
    @media print, screen and (min-width: 40em) {
      .bullettext ._inner {
        margin: 0 2rem;
        flex: 0 1 100%;
        max-width: 800px; } }

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }
  .partner-logos ._item {
    padding: 1rem 1rem;
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media print, screen and (min-width: 64em) {
      .partner-logos ._item {
        flex-basis: 160px;
        padding: 2rem; } }

.weather-details ._temps {
  display: flex;
  align-items: center; }

.weather-details ._upper-lower {
  flex: 1 0 0;
  font-size: 3rem;
  letter-spacing: -.1em;
  font-weight: 600;
  white-space: nowrap; }
  .weather-details ._upper-lower ._separator {
    font-weight: 300;
    opacity: .5; }
  .weather-details ._upper-lower + ._others {
    margin-left: 2rem;
    padding-left: 2rem;
    position: relative; }
    .weather-details ._upper-lower + ._others:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: currentColor;
      opacity: .5; }

.weather-details ._others {
  flex: 0 1 100%;
  display: flex;
  flex-direction: column; }
  @media print, screen and (min-width: 64em) {
    .weather-details ._others {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      justify-items: flex-start; } }
  .weather-details ._others ._item {
    flex: 0 0 auto;
    white-space: nowrap; }
    @media print, screen and (min-width: 64em) {
      .weather-details ._others ._item {
        font-size: 2rem; } }
    @media print, screen and (min-width: 64em) {
      .weather-details ._others ._item:not(:first-of-type) {
        margin-left: 2rem;
        padding-left: 2rem;
        position: relative; }
        .weather-details ._others ._item:not(:first-of-type):before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 1px;
          background: currentColor;
          opacity: .5; } }
    .weather-details ._others ._item ._text {
      font-size: 1rem;
      vertical-align: top; }
    .weather-details ._others ._item ._value {
      margin-left: .5rem; }
    .weather-details ._others ._item ._icon {
      display: none; }
      @media print, screen and (min-width: 64em) {
        .weather-details ._others ._item ._icon {
          display: inline; } }

.weather-details ._times {
  list-style: none;
  margin-left: 0; }
  @media print, screen and (min-width: 64em) {
    .weather-details ._times {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start; }
      .weather-details ._times ._item {
        flex: 0 1 120px; } }
  .weather-details ._times ._item {
    position: relative; }
    @media screen and (max-width: 63.99875em) {
      .weather-details ._times ._item {
        padding-bottom: 1rem;
        margin-bottom: 1rem; }
        .weather-details ._times ._item:after {
          position: absolute;
          content: "";
          left: 0;
          right: 0;
          bottom: 0;
          height: 1px;
          background-color: currentColor;
          opacity: .5; } }
    @media print, screen and (min-width: 64em) {
      .weather-details ._times ._item {
        line-height: 1.2;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; }
        .weather-details ._times ._item:not(:first-of-type) {
          padding-left: 1rem;
          margin-left: 1rem; }
          .weather-details ._times ._item:not(:first-of-type):before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: currentColor;
            opacity: .5; }
        .weather-details ._times ._item ._icon {
          font-size: 1.5rem;
          line-height: 1; }
        .weather-details ._times ._item ._time {
          display: flex;
          align-items: center;
          justify-content: center;
          white-space: nowrap;
          margin-bottom: .5em; }
        .weather-details ._times ._item ._description {
          font-size: .8em;
          text-align: center; } }

.suggestions-wrapper {
  position: relative; }
  .suggestions-wrapper > input {
    margin: 0; }
  .suggestions-wrapper .suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0; }

.suggestions {
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden; }
  .suggestions ._item {
    text-align: left;
    padding: .5em; }
    .suggestions ._item:not(:last-of-type) {
      border-bottom: 1px solid rgba(74, 74, 74, 0.25); }
    .suggestions ._item.-active {
      background: #f2f2f2;
      outline: none; }
    .suggestions ._item:active, .suggestions ._item:focus {
      outline: none; }

.search-result {
  margin-bottom: 2rem; }
  .search-result ._title {
    color: #0091A5;
    margin-bottom: .5em; }
    .search-result ._title a {
      color: inherit; }
  .search-result ._url {
    display: block;
    padding: .2em 0;
    color: #080 !important; }
  .search-result ._teaser {
    overflow: hidden; }
    .search-result ._teaser figure {
      display: block; }
      @media screen and (min-width: 30em) {
        .search-result ._teaser figure {
          width: 240px;
          float: left;
          margin-right: 1rem; } }
      .search-result ._teaser figure img {
        width: 100%;
        height: auto; }

.dc-detail ._dc-content,
.dc-detail ._col-sidebar address {
  font-size: 1.3125rem;
  line-height: 1.55; }

.dc-detail ._header.-has-slider .waves-inverted {
  padding-bottom: 30vw;
  margin-bottom: 4rem; }
  @media screen and (min-width: 87.5em) {
    .dc-detail ._header.-has-slider .waves-inverted {
      padding-bottom: 29.16667rem; } }

.dc-detail ._header.-has-slider .content-slideshow {
  position: relative;
  z-index: 2;
  margin-top: -30vw; }
  @media screen and (min-width: 87.5em) {
    .dc-detail ._header.-has-slider .content-slideshow {
      margin-top: -29.16667rem; } }

@media print, screen and (min-width: 40em) {
  .dc-detail ._header-inner {
    margin-left: 2rem; } }

@media print, screen and (min-width: 64em) {
  .dc-detail ._content-sidebar {
    align-items: flex-start; }
    .dc-detail ._content-sidebar ._col-content {
      padding-right: 2rem; }
    .dc-detail ._content-sidebar ._col-sidebar {
      padding-left: 2rem;
      padding-bottom: 2rem;
      position: relative; }
      .dc-detail ._content-sidebar ._col-sidebar:after {
        content: "";
        border-left: 4px dotted #0091A5;
        left: -17px;
        position: absolute;
        top: 0;
        bottom: 0; } }

@media print, screen and (min-width: 40em) {
  .dc-content-nodes ._dc-indent {
    margin-left: 2rem; } }

.ws-map-mock {
  position: relative; }
  .ws-map-mock img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto; }
  .ws-map-mock ._marker {
    position: absolute;
    width: 1rem;
    height: 1rem;
    text-align: center;
    font-size: 2rem;
    z-index: 2;
    transform: translate(-50%, -100%);
    color: #FC0; }
    .ws-map-mock ._marker .svg {
      display: block; }

.dot {
  display: block;
  position: relative;
  height: 1rem; }
  .dot:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: currentColor; }

.countdown ._text.-big {
  font-size: 1.33em;
  line-height: 1.55; }

@media print, screen and (min-width: 64em) {
  .slide.ctype-dce_countdown .countdown {
    display: flex; }
    .slide.ctype-dce_countdown .countdown > ._text {
      flex: 1 0 50%;
      margin-right: 2rem; }
    .slide.ctype-dce_countdown .countdown > ._countdown {
      flex: 0 1 50%;
      min-width: 320px; } }

.countdown_figure {
  display: flex;
  align-items: stretch; }
  .countdown_figure ._number-wrap {
    flex: 1 1 33%;
    font-size: 1rem;
    line-height: 1; }
    @media screen and (min-width: 30em) {
      .countdown_figure ._number-wrap {
        font-size: 1.25rem; } }
    @media print, screen and (min-width: 40em) {
      .countdown_figure ._number-wrap {
        font-size: 1.75rem; } }
    .countdown_figure ._number-wrap:not(:last-of-type) {
      margin-right: 5px; }
    .countdown_figure ._number-wrap ._wrap {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
    .countdown_figure ._number-wrap ._value {
      font-family: Consolas, "Liberation Mono", Courier, monospace;
      font-weight: 600; }
    .countdown_figure ._number-wrap ._unit {
      text-transform: uppercase; }

@media screen and (max-width: 63.99875em) {
  .timetable {
    position: relative;
    min-height: 100vh;
    overflow: hidden; }
    .timetable [data-sticky-container] {
      position: absolute;
      z-index: 2;
      left: 0;
      width: 50%;
      min-width: 280px;
      top: 0;
      bottom: 0;
      height: 100% !important;
      transition: transform .5s ease;
      box-sizing: border-box;
      background: #FFFFFF;
      box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25); }
      .timetable [data-sticky-container].is-off-canvas {
        transform: translateX(-100%); }
        .timetable [data-sticky-container].is-off-canvas ._toggle-off-canvas > span {
          transform: rotate(180deg); }
      .timetable [data-sticky-container] ._toggle-off-canvas {
        position: absolute;
        left: 100%;
        top: 0;
        width: 3rem;
        height: 3rem;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15); }
        .timetable [data-sticky-container] ._toggle-off-canvas > span {
          display: block;
          transition: transform .25s ease .25s; }
    .timetable ._filter {
      margin-bottom: 1rem; }
      .timetable ._filter .checkbox-label,
      .timetable ._filter .checkbox {
        display: block; }
        .timetable ._filter .checkbox-label ._back,
        .timetable ._filter .checkbox ._back {
          text-align: left; } }

@media print, screen and (min-width: 64em) {
  .timetable-filters {
    background: #FFFFFF;
    padding: .5rem 0; }
    .timetable-filters.is-stuck {
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25); }
    .timetable-filters .filters-wrap {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start; }
      .timetable-filters .filters-wrap ._filter {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center; }
        .timetable-filters .filters-wrap ._filter > * {
          flex: 1; }
      .timetable-filters .filters-wrap ._filter + ._filter:before {
        flex: 0 0 10px;
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        background: #EAF4F7;
        border-radius: 10px;
        margin-right: 10px;
        margin-left: 10px; }
    .timetable-filters ._weekday-filter,
    .timetable-filters ._location-filter {
      display: flex; }
      .timetable-filters ._weekday-filter .checkbox-label,
      .timetable-filters ._location-filter .checkbox-label {
        flex: 1;
        margin-right: 10px; }
    .timetable-filters ._additional-filter {
      position: relative; }
      .timetable-filters ._additional-filter button {
        margin-bottom: 0;
        font-style: italic; }
      .timetable-filters ._additional-filter ._items {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        border: 1px solid #EAF4F7;
        box-shadow: 0.5em 0.5em 2em rgba(0, 0, 0, 0.15);
        background: #FFFFFF; }
        .timetable-filters ._additional-filter ._items .checkbox {
          padding: .5em 1em; }
          .timetable-filters ._additional-filter ._items .checkbox:not(:last-child) {
            border-bottom: 1px solid #EAF4F7; } }

.timetable .waves-inverted {
  height: 2.5rem; }
  .timetable .waves-inverted:after {
    background-color: #4A4A4A !important; }

.timetable-event {
  border: 1px solid #4A4A4A;
  padding: 1rem;
  position: relative; }
  .timetable-event.linked {
    cursor: pointer; }
  .timetable-event ._title a:not(.decent) {
    text-decoration: none; }
  .timetable-event a {
    text-decoration: underline; }
  .timetable-event > *:last-child {
    margin-bottom: 0; }
  .timetable-event ._content-wrap {
    display: flex;
    flex-direction: column; }
    @media print, screen and (min-width: 40em) {
      .timetable-event ._content-wrap {
        flex-direction: row;
        justify-content: space-between; } }
  .timetable-event ._event-addition {
    color: #0091A5;
    text-transform: uppercase; }
  .timetable-event ._icon-links .circle-icon {
    border-width: 1px;
    border-color: #cacaca;
    margin: 0 .25em .5em .25em; }

.checkbox-label {
  text-transform: uppercase;
  display: inline-block;
  position: relative; }
  .checkbox-label input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: .01;
    width: 1px;
    height: 1px; }
  .checkbox-label ._back {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-family: inherit;
    font-size: 1rem;
    -webkit-appearance: none;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0;
    transition: all .25s ease;
    background: #EAF4F7;
    width: 100%;
    height: 100%; }
    [data-whatinput='mouse'] .checkbox-label ._back {
      outline: 0; }
    .checkbox-label ._back:not(.-current-color) {
      color: #4A4A4A; }
  .checkbox-label input[type="checkbox"]:checked ~ ._back:not(.-current-color) {
    background: #0091A5;
    color: #FFFFFF; }
  .checkbox-label input[type="checkbox"]:checked ~ ._back.-current-color {
    background: currentColor; }
    .checkbox-label input[type="checkbox"]:checked ~ ._back.-current-color ._text {
      color: #FFFFFF; }

@media screen and (max-width: 63.99875em) {
  .timetable-results {
    padding-top: 4rem; } }

.tags-list__item {
  border: 1px solid currentColor;
  text-decoration: none;
  padding: .2em .4em;
  font-size: 80%;
  line-height: 1.25;
  white-space: nowrap;
  margin: 0 .25em .25em 0;
  display: inline-block; }

:root {
  --color-main: #0091A5;
  --color-main-rgb: 0,145,165;
  --color-main-h: 187.27273deg;
  --color-main-s: 100%;
  --color-main-l: 32.35294%;
  --color-contrast: #F9B233;
  --color-contrast-rgb: 249,178,51;
  --color-contrast-h: 38.48485deg;
  --color-contrast-s: 94.28571%;
  --color-contrast-l: 58.82353%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #4A4A4A;
  --color-header-rgb: 74,74,74;
  --color-header-h: 0deg;
  --color-header-s: 0%;
  --color-header-l: 29.01961%;
  --color-link: #0091A5;
  --color-link-rgb: 0,145,165;
  --color-link-h: 187.27273deg;
  --color-link-s: 100%;
  --color-link-l: 32.35294%;
  --color-link-hover: #0091A5;
  --color-link-hover-rgb: 0,145,165;
  --color-link-hover-h: 187.27273deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 32.35294%;
  --color-decent-ui: #cacaca;
  --color-decent-ui-rgb: 201.5,201.5,201.5;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 79.01961%; }
  @media screen and (prefers-color-scheme: dark) {
    :root:not(.disable-dark-mode) {
      --color-main: #0091A5;
      --color-main-rgb: 0,145,165;
      --color-main-h: 187.27273deg;
      --color-main-s: 100%;
      --color-main-l: 32.35294%;
      --color-contrast: #F9B233;
      --color-contrast-rgb: 249,178,51;
      --color-contrast-h: 38.48485deg;
      --color-contrast-s: 94.28571%;
      --color-contrast-l: 58.82353%;
      --color-back: #FFFFFF;
      --color-back-rgb: 255,255,255;
      --color-back-h: 0deg;
      --color-back-s: 0%;
      --color-back-l: 100%;
      --color-text: #4A4A4A;
      --color-text-rgb: 74,74,74;
      --color-text-h: 0deg;
      --color-text-s: 0%;
      --color-text-l: 29.01961%;
      --color-header: #FFFFFF;
      --color-header-rgb: 255,255,255;
      --color-header-h: 0deg;
      --color-header-s: 0%;
      --color-header-l: 100%;
      --color-link: #FFFFFF;
      --color-link-rgb: 255,255,255;
      --color-link-h: 0deg;
      --color-link-s: 0%;
      --color-link-l: 100%;
      --color-link-hover: #FFFFFF;
      --color-link-hover-rgb: 255,255,255;
      --color-link-hover-h: 0deg;
      --color-link-hover-s: 0%;
      --color-link-hover-l: 100%;
      --color-decent-ui: #80c8d2;
      --color-decent-ui-rgb: 128,200,210;
      --color-decent-ui-h: 187.31707deg;
      --color-decent-ui-s: 47.67442%;
      --color-decent-ui-l: 66.27451%; } }

.flv-default {
  --color-main: #0091A5;
  --color-main-rgb: 0,145,165;
  --color-main-h: 187.27273deg;
  --color-main-s: 100%;
  --color-main-l: 32.35294%;
  --color-contrast: #F9B233;
  --color-contrast-rgb: 249,178,51;
  --color-contrast-h: 38.48485deg;
  --color-contrast-s: 94.28571%;
  --color-contrast-l: 58.82353%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #4A4A4A;
  --color-header-rgb: 74,74,74;
  --color-header-h: 0deg;
  --color-header-s: 0%;
  --color-header-l: 29.01961%;
  --color-link: #0091A5;
  --color-link-rgb: 0,145,165;
  --color-link-h: 187.27273deg;
  --color-link-s: 100%;
  --color-link-l: 32.35294%;
  --color-link-hover: #0091A5;
  --color-link-hover-rgb: 0,145,165;
  --color-link-hover-h: 187.27273deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 32.35294%;
  --color-decent-ui: #cacaca;
  --color-decent-ui-rgb: 201.5,201.5,201.5;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 79.01961%; }
  @media screen and (prefers-color-scheme: dark) {
    :root:not(.disable-dark-mode) .flv-default {
      --color-main: #0091A5;
      --color-main-rgb: 0,145,165;
      --color-main-h: 187.27273deg;
      --color-main-s: 100%;
      --color-main-l: 32.35294%;
      --color-contrast: #F9B233;
      --color-contrast-rgb: 249,178,51;
      --color-contrast-h: 38.48485deg;
      --color-contrast-s: 94.28571%;
      --color-contrast-l: 58.82353%;
      --color-back: #FFFFFF;
      --color-back-rgb: 255,255,255;
      --color-back-h: 0deg;
      --color-back-s: 0%;
      --color-back-l: 100%;
      --color-text: #4A4A4A;
      --color-text-rgb: 74,74,74;
      --color-text-h: 0deg;
      --color-text-s: 0%;
      --color-text-l: 29.01961%;
      --color-header: #FFFFFF;
      --color-header-rgb: 255,255,255;
      --color-header-h: 0deg;
      --color-header-s: 0%;
      --color-header-l: 100%;
      --color-link: #FFFFFF;
      --color-link-rgb: 255,255,255;
      --color-link-h: 0deg;
      --color-link-s: 0%;
      --color-link-l: 100%;
      --color-link-hover: #FFFFFF;
      --color-link-hover-rgb: 255,255,255;
      --color-link-hover-h: 0deg;
      --color-link-hover-s: 0%;
      --color-link-hover-l: 100%;
      --color-decent-ui: #80c8d2;
      --color-decent-ui-rgb: 128,200,210;
      --color-decent-ui-h: 187.31707deg;
      --color-decent-ui-s: 47.67442%;
      --color-decent-ui-l: 66.27451%; } }

.schema-root {
  background: var(--color-back);
  color: var(--color-text); }
  .schema-root--opacity {
    background: hsla(var(--color-back-h), var(--color-back-s), var(--color-back-l), var(--background-light-opacity)); }
  .schema-root--shadow {
    box-shadow: var(--drop-shadow); }

.hide-for-dark-mode {
  display: block; }
  @media screen and (prefers-color-scheme: dark) {
    :root:not(.disable-dark-mode) .hide-for-dark-mode {
      display: none; } }

.show-for-dark-mode {
  display: none; }
  @media screen and (prefers-color-scheme: dark) {
    :root:not(.disable-dark-mode) .show-for-dark-mode {
      display: block; } }

.schema-reset {
  --color-main: revert;
  --color-main-rgb: revert;
  --color-main-h: revert;
  --color-main-s: revert;
  --color-main-l: revert;
  --color-contrast: revert;
  --color-contrast-rgb: revert;
  --color-contrast-h: revert;
  --color-contrast-s: revert;
  --color-contrast-l: revert;
  --color-back: revert;
  --color-back-rgb: revert;
  --color-back-h: revert;
  --color-back-s: revert;
  --color-back-l: revert;
  --color-text: revert;
  --color-text-rgb: revert;
  --color-text-h: revert;
  --color-text-s: revert;
  --color-text-l: revert;
  --color-header: revert;
  --color-header-rgb: revert;
  --color-header-h: revert;
  --color-header-s: revert;
  --color-header-l: revert;
  --color-link: revert;
  --color-link-rgb: revert;
  --color-link-h: revert;
  --color-link-s: revert;
  --color-link-l: revert;
  --color-link-hover: revert;
  --color-link-hover-rgb: revert;
  --color-link-hover-h: revert;
  --color-link-hover-s: revert;
  --color-link-hover-l: revert;
  --color-decent-ui: revert;
  --color-decent-ui-rgb: revert;
  --color-decent-ui-h: revert;
  --color-decent-ui-s: revert;
  --color-decent-ui-l: revert; }

.svg {
  max-width: 100%;
  height: auto;
  color: inherit;
  fill: currentColor; }
  .svg.icon {
    max-width: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle; }
    .svg.icon.-is-left {
      margin-right: .2em; }
    .svg.icon.-is-right {
      margin-left: .2em; }
    .svg.icon.-large {
      font-size: 1.5em;
      vertical-align: middle; }
    .svg.icon.-small {
      font-size: .66em;
      vertical-align: middle; }
    .svg.icon.-tiny {
      font-size: .5em;
      vertical-align: middle; }
  .svg .stroked {
    stroke: currentColor; }
  .svg .transparent-fill {
    fill: transparent !important; }

.large-icons .svg.icon {
  font-size: var(--font-size-large); }

.huge-icons .svg.icon {
  font-size: var(--font-size-huge); }

.gigantic-icons .svg.icon {
  font-size: var(--font-size-gigantic); }

.svg-autoscale {
  display: block;
  overflow: visible;
  position: relative;
  margin: 0; }
  .svg-autoscale .svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%; }

:root {
  --named-breakpoints: 'small=0&smaller=480px&medium=640px&large=1024px&xlarge=1200px&xxlarge=1440px';
  --radius: 0;
  --background-light-opacity: .6;
  --drop-shadow: 0 5px 10px rgba(0, 0, 0, .25); }
  @media screen and (prefers-color-scheme: dark) {
    :root:not(.disable-dark-mode) {
      --drop-shadow: 0 0 1px 1px #fff; } }

base-off-canvas:not(:defined) {
  display: none; }

base-popup:not(:defined) {
  display: none; }

base-drop-content:not(:defined) {
  display: none; }

base-slide-content:not(:defined) {
  display: none; }

base-gdpr-protected:not(:defined) {
  display: none; }

base-overlay-loader:not(:defined) {
  display: none; }

base-simple-rating:not(:defined) {
  display: none; }

base-slide-content:not(:defined) {
  display: none; }
  base-slide-content:not(:defined)[open] {
    display: block; }

base-slideshow:not(:defined) {
  display: none; }

base-countdown:not(:defined) {
  display: none; }

base-popup.gpu::part(content) {
  box-sizing: border-box;
  padding: 1rem;
  background-color: var(--color-back); }

base-popup.gpu[size="fullscreen"] [data-gdpr-root] {
  flex-grow: 1;
  display: flex;
  flex-direction: column; }

base-popup.gpu[size="fullscreen"] .gpu-buttons {
  margin-top: auto;
  margin-bottom: 0; }

[data-gdpr-root] base-slide-content {
  padding-left: 2em; }

.color-main {
  color: var(--color-main, #0091A5) !important; }

.color-contrast {
  color: var(--color-contrast, #F9B233) !important; }

.color-back {
  color: var(--color-back, #FFFFFF) !important; }

.color-text {
  color: var(--color-text, #4A4A4A) !important; }

.color-header {
  color: var(--color-header, #4A4A4A) !important; }

.color-link {
  color: var(--color-link, #0091A5) !important; }
  .color-link:hover {
    color: var(--color-link-hover, #0091A5) !important; }

.color-decent-ui {
  color: var(--color-decent-ui, #cacaca) !important; }

.color-inherit {
  color: inherit !important; }

.background-transparent {
  background-color: transparent !important; }

.background-main {
  background-color: var(--color-main, #0091A5) !important; }

.background-contrast {
  background-color: var(--color-contrast, #F9B233) !important; }

.background-back {
  background-color: var(--color-back, #FFFFFF) !important; }

.background-text {
  background-color: var(--color-text, #4A4A4A) !important; }

:root {
  --space-none: 0rem;
  --space-tiny: 0.25rem;
  --space-small: 0.5rem;
  --space-regular: 1rem;
  --space-big: 2rem;
  --space-huge: 3rem; }
  @media (min-width: 1024px) {
    :root {
      --space-tiny: 0.5rem;
      --space-small: 1rem;
      --space-regular: 2rem;
      --space-big: 3rem;
      --space-huge: 6rem; } }

.base-padding {
  --padding-space: var(--space-regular);
  padding: var(--padding-space) !important; }
  .base-padding--none {
    --padding-space: var(--space-none); }
  .base-padding--tiny {
    --padding-space: var(--space-tiny); }
  .base-padding--small {
    --padding-space: var(--space-small); }
  .base-padding--regular {
    --padding-space: var(--space-regular); }
  .base-padding--big {
    --padding-space: var(--space-big); }
  .base-padding--huge {
    --padding-space: var(--space-huge); }
  .base-padding-t {
    --padding-t-space: var(--padding-space, var(--space-regular));
    padding-top: var(--padding-t-space) !important; }
    .base-padding-t--none {
      --padding-t-space: var(--space-none); }
    .base-padding-t--tiny {
      --padding-t-space: var(--space-tiny); }
    .base-padding-t--small {
      --padding-t-space: var(--space-small); }
    .base-padding-t--regular {
      --padding-t-space: var(--space-regular); }
    .base-padding-t--big {
      --padding-t-space: var(--space-big); }
    .base-padding-t--huge {
      --padding-t-space: var(--space-huge); }
  .base-padding-r {
    --padding-r-space: var(--padding-space, var(--space-regular));
    padding-right: var(--padding-r-space) !important; }
    .base-padding-r--none {
      --padding-r-space: var(--space-none); }
    .base-padding-r--tiny {
      --padding-r-space: var(--space-tiny); }
    .base-padding-r--small {
      --padding-r-space: var(--space-small); }
    .base-padding-r--regular {
      --padding-r-space: var(--space-regular); }
    .base-padding-r--big {
      --padding-r-space: var(--space-big); }
    .base-padding-r--huge {
      --padding-r-space: var(--space-huge); }
  .base-padding-b {
    --padding-b-space: var(--padding-space, var(--space-regular));
    padding-bottom: var(--padding-b-space) !important; }
    .base-padding-b--none {
      --padding-b-space: var(--space-none); }
    .base-padding-b--tiny {
      --padding-b-space: var(--space-tiny); }
    .base-padding-b--small {
      --padding-b-space: var(--space-small); }
    .base-padding-b--regular {
      --padding-b-space: var(--space-regular); }
    .base-padding-b--big {
      --padding-b-space: var(--space-big); }
    .base-padding-b--huge {
      --padding-b-space: var(--space-huge); }
  .base-padding-l {
    --padding-l-space: var(--padding-space, var(--space-regular));
    padding-left: var(--padding-l-space) !important; }
    .base-padding-l--none {
      --padding-l-space: var(--space-none); }
    .base-padding-l--tiny {
      --padding-l-space: var(--space-tiny); }
    .base-padding-l--small {
      --padding-l-space: var(--space-small); }
    .base-padding-l--regular {
      --padding-l-space: var(--space-regular); }
    .base-padding-l--big {
      --padding-l-space: var(--space-big); }
    .base-padding-l--huge {
      --padding-l-space: var(--space-huge); }
  .base-padding-h {
    --padding-h-space: var(--padding-space, var(--space-regular));
    padding-left: var(--padding-h-space) !important;
    padding-right: var(--padding-h-space) !important; }
    .base-padding-h--none {
      --padding-h-space: var(--space-none); }
    .base-padding-h--tiny {
      --padding-h-space: var(--space-tiny); }
    .base-padding-h--small {
      --padding-h-space: var(--space-small); }
    .base-padding-h--regular {
      --padding-h-space: var(--space-regular); }
    .base-padding-h--big {
      --padding-h-space: var(--space-big); }
    .base-padding-h--huge {
      --padding-h-space: var(--space-huge); }
  .base-padding-v {
    --padding-v-space: var(--padding-space, var(--space-regular));
    padding-top: var(--padding-v-space) !important;
    padding-bottom: var(--padding-v-space) !important; }
    .base-padding-v--none {
      --padding-v-space: var(--space-none); }
    .base-padding-v--tiny {
      --padding-v-space: var(--space-tiny); }
    .base-padding-v--small {
      --padding-v-space: var(--space-small); }
    .base-padding-v--regular {
      --padding-v-space: var(--space-regular); }
    .base-padding-v--big {
      --padding-v-space: var(--space-big); }
    .base-padding-v--huge {
      --padding-v-space: var(--space-huge); }
  .base-padding-v {
    --space-vertical: var(--padding-v-space); }

.base-margin {
  --margin-space: var(--space-regular);
  margin: var(--margin-space) !important; }
  .base-margin--none {
    --margin-space: var(--space-none); }
  .base-margin--tiny {
    --margin-space: var(--space-tiny); }
  .base-margin--small {
    --margin-space: var(--space-small); }
  .base-margin--regular {
    --margin-space: var(--space-regular); }
  .base-margin--big {
    --margin-space: var(--space-big); }
  .base-margin--huge {
    --margin-space: var(--space-huge); }
  .base-margin-t {
    --margin-t-space: var(--margin-space, var(--space-regular));
    margin-top: var(--margin-t-space) !important; }
    .base-margin-t--none {
      --margin-t-space: var(--space-none); }
    .base-margin-t--tiny {
      --margin-t-space: var(--space-tiny); }
    .base-margin-t--small {
      --margin-t-space: var(--space-small); }
    .base-margin-t--regular {
      --margin-t-space: var(--space-regular); }
    .base-margin-t--big {
      --margin-t-space: var(--space-big); }
    .base-margin-t--huge {
      --margin-t-space: var(--space-huge); }
  .base-margin-r {
    --margin-r-space: var(--margin-space, var(--space-regular));
    margin-right: var(--margin-r-space) !important; }
    .base-margin-r--none {
      --margin-r-space: var(--space-none); }
    .base-margin-r--tiny {
      --margin-r-space: var(--space-tiny); }
    .base-margin-r--small {
      --margin-r-space: var(--space-small); }
    .base-margin-r--regular {
      --margin-r-space: var(--space-regular); }
    .base-margin-r--big {
      --margin-r-space: var(--space-big); }
    .base-margin-r--huge {
      --margin-r-space: var(--space-huge); }
  .base-margin-b {
    --margin-b-space: var(--margin-space, var(--space-regular));
    margin-bottom: var(--margin-b-space) !important; }
    .base-margin-b--none {
      --margin-b-space: var(--space-none); }
    .base-margin-b--tiny {
      --margin-b-space: var(--space-tiny); }
    .base-margin-b--small {
      --margin-b-space: var(--space-small); }
    .base-margin-b--regular {
      --margin-b-space: var(--space-regular); }
    .base-margin-b--big {
      --margin-b-space: var(--space-big); }
    .base-margin-b--huge {
      --margin-b-space: var(--space-huge); }
  .base-margin-l {
    --margin-l-space: var(--margin-space, var(--space-regular));
    margin-left: var(--margin-l-space) !important; }
    .base-margin-l--none {
      --margin-l-space: var(--space-none); }
    .base-margin-l--tiny {
      --margin-l-space: var(--space-tiny); }
    .base-margin-l--small {
      --margin-l-space: var(--space-small); }
    .base-margin-l--regular {
      --margin-l-space: var(--space-regular); }
    .base-margin-l--big {
      --margin-l-space: var(--space-big); }
    .base-margin-l--huge {
      --margin-l-space: var(--space-huge); }
  .base-margin-h {
    --margin-h-space: var(--margin-space, var(--space-regular));
    margin-left: var(--margin-h-space) !important;
    margin-right: var(--margin-h-space) !important; }
    .base-margin-h--none {
      --margin-h-space: var(--space-none); }
    .base-margin-h--tiny {
      --margin-h-space: var(--space-tiny); }
    .base-margin-h--small {
      --margin-h-space: var(--space-small); }
    .base-margin-h--regular {
      --margin-h-space: var(--space-regular); }
    .base-margin-h--big {
      --margin-h-space: var(--space-big); }
    .base-margin-h--huge {
      --margin-h-space: var(--space-huge); }
  .base-margin-v {
    --margin-v-space: var(--margin-space, var(--space-regular));
    margin-top: var(--margin-v-space) !important;
    margin-bottom: var(--margin-v-space) !important; }
    .base-margin-v--none {
      --margin-v-space: var(--space-none); }
    .base-margin-v--tiny {
      --margin-v-space: var(--space-tiny); }
    .base-margin-v--small {
      --margin-v-space: var(--space-small); }
    .base-margin-v--regular {
      --margin-v-space: var(--space-regular); }
    .base-margin-v--big {
      --margin-v-space: var(--space-big); }
    .base-margin-v--huge {
      --margin-v-space: var(--space-huge); }
  .base-margin-b-auto {
    margin-bottom: var(--space-vertical, var(--space-regular)); }

html.no-js .show-for-js {
  display: none !important; }

html:not(.is-touch) .show-for-touch {
  display: none !important; }

@media (max-width: 479px) {
  .show-for-smaller,
  .show-for-smaller-only {
    display: none; } }

@media (min-width: 640px) {
  .show-for-smaller-only {
    display: none; } }

@media (min-width: 480px) {
  .hide-for-smaller {
    display: none; } }

@media (min-width: 480px) and (max-width: 639px) {
  .hide-for-smaller-only {
    display: none; } }

@media (max-width: 639px) {
  .show-for-medium,
  .show-for-medium-only {
    display: none; } }

@media (min-width: 1024px) {
  .show-for-medium-only {
    display: none; } }

@media (min-width: 640px) {
  .hide-for-medium {
    display: none; } }

@media (min-width: 640px) and (max-width: 1023px) {
  .hide-for-medium-only {
    display: none; } }

@media (max-width: 1023px) {
  .show-for-large,
  .show-for-large-only {
    display: none; } }

@media (min-width: 1200px) {
  .show-for-large-only {
    display: none; } }

@media (min-width: 1024px) {
  .hide-for-large {
    display: none; } }

@media (min-width: 1024px) and (max-width: 1199px) {
  .hide-for-large-only {
    display: none; } }

@media (max-width: 1199px) {
  .show-for-xlarge,
  .show-for-xlarge-only {
    display: none; } }

@media (min-width: 1440px) {
  .show-for-xlarge-only {
    display: none; } }

@media (min-width: 1200px) {
  .hide-for-xlarge {
    display: none; } }

@media (min-width: 1200px) and (max-width: 1439px) {
  .hide-for-xlarge-only {
    display: none; } }

@media (max-width: 1439px) {
  .show-for-xxlarge,
  .show-for-xxlarge-only {
    display: none; } }

@media (min-width: 1440px) {
  .hide-for-xxlarge {
    display: none; } }

@media (min-width: 1440px) {
  .hide-for-xxlarge-only {
    display: none; } }

.show-for-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  z-index: -1;
  opacity: .01;
  border: 0;
  padding: 0;
  outline: none; }

:root {
  --font-size-tiny: .625rem;
  --font-size-small: .8rem;
  --font-size-regular: 1rem;
  --font-size-big: 1.15rem;
  --font-size-large: 1.4rem;
  --font-size-huge: 2rem;
  --font-size-gigantic: 2.75rem;
  --font-size-smaller: .8em;
  --font-size-bigger: 1.15em;
  --font-size-larger: 1.3em; }
  @media (min-width: 1024px) {
    :root {
      --font-size-big: 1.25rem;
      --font-size-large: 1.6rem;
      --font-size-huge: 2.4rem;
      --font-size-gigantic: 3.5rem; } }

.font-size-gigantic {
  font-size: var(--font-size-gigantic); }

.font-size-huge {
  font-size: var(--font-size-huge); }

.font-size-big {
  font-size: var(--font-size-big); }

.font-size-large {
  font-size: var(--font-size-large); }

.font-size-small {
  font-size: var(--font-size-small); }

.font-size-tiny {
  font-size: var(--font-size-tiny); }

.font-size-bigger {
  font-size: var(--font-size-bigger); }

.font-size-larger {
  font-size: var(--font-size-larger); }

.font-size-smaller {
  font-size: var(--font-size-smaller); }

.font-header {
  font-family: var(--font-header-family, OpenSans, Arial, sans-serif);
  font-weight: var(--font-header-regular-weight, 300);
  font-style: var(--font-header-regular-style, normal);
  line-height: 1.15; }

.font-body {
  font-family: var(--font-body-family, OpenSans, Arial, sans-serif);
  font-weight: var(--font-body-regular-weight, 300);
  font-style: var(--font-body-regular-style, normal);
  line-height: var(--font-body-line-height, 1.55); }

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

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

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

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

@media (min-width: 480px) {
  .smaller-text-left {
    text-align: left; } }

@media (min-width: 480px) {
  .smaller-text-center {
    text-align: center; } }

@media (min-width: 480px) {
  .smaller-text-right {
    text-align: right; } }

@media (min-width: 480px) {
  .smaller-text-justify {
    text-align: justify; } }

@media (min-width: 640px) {
  .medium-text-left {
    text-align: left; } }

@media (min-width: 640px) {
  .medium-text-center {
    text-align: center; } }

@media (min-width: 640px) {
  .medium-text-right {
    text-align: right; } }

@media (min-width: 640px) {
  .medium-text-justify {
    text-align: justify; } }

@media (min-width: 1024px) {
  .large-text-left {
    text-align: left; } }

@media (min-width: 1024px) {
  .large-text-center {
    text-align: center; } }

@media (min-width: 1024px) {
  .large-text-right {
    text-align: right; } }

@media (min-width: 1024px) {
  .large-text-justify {
    text-align: justify; } }

@media (min-width: 1200px) {
  .xlarge-text-left {
    text-align: left; } }

@media (min-width: 1200px) {
  .xlarge-text-center {
    text-align: center; } }

@media (min-width: 1200px) {
  .xlarge-text-right {
    text-align: right; } }

@media (min-width: 1200px) {
  .xlarge-text-justify {
    text-align: justify; } }

@media (min-width: 1440px) {
  .xxlarge-text-left {
    text-align: left; } }

@media (min-width: 1440px) {
  .xxlarge-text-center {
    text-align: center; } }

@media (min-width: 1440px) {
  .xxlarge-text-right {
    text-align: right; } }

@media (min-width: 1440px) {
  .xxlarge-text-justify {
    text-align: justify; } }

[data-text-align="left"] {
  text-align: left; }

[data-text-align="center"] {
  text-align: center; }

[data-text-align="right"] {
  text-align: right; }

[data-text-align="justify"] {
  text-align: justify; }

:is(.limited-width, .limited-width-medium) {
  margin-left: auto;
  margin-right: auto; }

.limited-width {
  max-width: 480px; }

.limited-width-medium {
  max-width: 720px; }

.remove-margin-bottom-from-last-child > *:last-child, .little-vertical-padding > *:last-child, .vertical-padding > *:last-child, .large-vertical-padding > *:last-child, .huge-vertical-padding > *:last-child, .container > *:last-child {
  margin-bottom: 0 !important; }

:is(img.auto-image, img.block-image, .auto-image img, .block-image img) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto; }

.block-image {
  display: block; }

.nobr {
  white-space: nowrap; }

.case-upper {
  text-transform: uppercase !important; }

[hidden] {
  display: none !important; }

.animation-barrier {
  box-sizing: border-box;
  contain: paint; }

.base-reset-appearance {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .base-reset-appearance:is(button, input, select, textarea) {
    background: transparent;
    color: inherit;
    padding: 0;
    margin: 0;
    border: none; }

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

.base-nobtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent; }

.base-container {
  --base-container-max-width: 1400px; }
  .base-container:not(.base-container--no-padding) {
    padding-left: var(--space-regular);
    padding-right: var(--space-regular); }
  .base-container:not(.base-container--no-max-width) {
    max-width: min(100%, var(--base-container-max-width));
    margin-left: auto;
    margin-right: auto; }
  .base-container .base-container {
    padding-left: 0;
    padding-right: 0; }

.base-flex-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
  --base-flex-row-gap: 0;
  --base-flex-column-gap: 0;
  margin-left: calc(var(--base-flex-column-gap) * -.5);
  margin-right: calc(var(--base-flex-column-gap) * -.5); }
  .base-flex-grid:is(ul, ol) {
    list-style: none;
    padding-left: 0;
    padding-right: 0; }
  .base-flex-grid--gap {
    --base-flex-column-gap: var(--space-regular, 1rem);
    --base-flex-row-gap: var(--space-regular, 1rem); }
  .base-flex-grid--row-gap {
    --base-flex-row-gap: var(--space-regular, 1rem); }
  .base-flex-grid--column-gap {
    --base-flex-column-gap: var(--space-regular, 1rem); }
  .base-flex-grid--justify-center {
    justify-content: center; }
  .base-flex-grid--justify-start {
    justify-content: start; }
  .base-flex-grid--justify-end {
    justify-content: end; }
  .base-flex-grid--nowrap {
    flex-wrap: nowrap; }

.base-flex-cell {
  --base-flex-cell-order: 0;
  max-width: 100%;
  flex-basis: 0;
  order: var(--base-flex-cell-order);
  box-sizing: border-box;
  margin: 0 calc(var(--base-flex-column-gap) / 2) var(--base-flex-row-gap); }
  .base-flex-cell--auto {
    flex-basis: auto; }
  .base-flex-cell--shrink {
    flex-shrink: 1; }
  .base-flex-cell--grow {
    flex-grow: 1; }
  .base-flex-cell--order-1 {
    --base-flex-cell-order: 1; }
  .base-flex-cell--order-2 {
    --base-flex-cell-order: 2; }
  .base-flex-cell--order-3 {
    --base-flex-cell-order: 3; }
  .base-flex-cell--order-4 {
    --base-flex-cell-order: 4; }
  .base-flex-cell.small-1 {
    flex: 0 0 calc(8.33333% - var(--base-flex-column-gap));
    max-width: calc(8.33333% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-2 {
    flex: 0 0 calc(16.66667% - var(--base-flex-column-gap));
    max-width: calc(16.66667% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-3 {
    flex: 0 0 calc(25% - var(--base-flex-column-gap));
    max-width: calc(25% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-4 {
    flex: 0 0 calc(33.33333% - var(--base-flex-column-gap));
    max-width: calc(33.33333% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-5 {
    flex: 0 0 calc(41.66667% - var(--base-flex-column-gap));
    max-width: calc(41.66667% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-6 {
    flex: 0 0 calc(50% - var(--base-flex-column-gap));
    max-width: calc(50% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-7 {
    flex: 0 0 calc(58.33333% - var(--base-flex-column-gap));
    max-width: calc(58.33333% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-8 {
    flex: 0 0 calc(66.66667% - var(--base-flex-column-gap));
    max-width: calc(66.66667% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-9 {
    flex: 0 0 calc(75% - var(--base-flex-column-gap));
    max-width: calc(75% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-10 {
    flex: 0 0 calc(83.33333% - var(--base-flex-column-gap));
    max-width: calc(83.33333% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-11 {
    flex: 0 0 calc(91.66667% - var(--base-flex-column-gap));
    max-width: calc(91.66667% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-12 {
    flex: 0 0 calc(100% - var(--base-flex-column-gap));
    max-width: calc(100% - var(--base-flex-column-gap)); }
  .base-flex-cell.small-auto {
    flex-basis: auto; }
  .base-flex-cell.small-shrink {
    flex-shrink: 1; }
  .base-flex-cell.small-grow {
    flex-grow: 1;
    max-width: 100%; }
  .base-flex-cell.small-order-1 {
    --base-flex-cell-order: 1; }
  .base-flex-cell.small-order-2 {
    --base-flex-cell-order: 2; }
  .base-flex-cell.small-order-3 {
    --base-flex-cell-order: 3; }
  .base-flex-cell.small-order-4 {
    --base-flex-cell-order: 4; }
  @media (min-width: 480px) {
    .base-flex-cell.smaller-1 {
      flex: 0 0 calc(8.33333% - var(--base-flex-column-gap));
      max-width: calc(8.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-2 {
      flex: 0 0 calc(16.66667% - var(--base-flex-column-gap));
      max-width: calc(16.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-3 {
      flex: 0 0 calc(25% - var(--base-flex-column-gap));
      max-width: calc(25% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-4 {
      flex: 0 0 calc(33.33333% - var(--base-flex-column-gap));
      max-width: calc(33.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-5 {
      flex: 0 0 calc(41.66667% - var(--base-flex-column-gap));
      max-width: calc(41.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-6 {
      flex: 0 0 calc(50% - var(--base-flex-column-gap));
      max-width: calc(50% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-7 {
      flex: 0 0 calc(58.33333% - var(--base-flex-column-gap));
      max-width: calc(58.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-8 {
      flex: 0 0 calc(66.66667% - var(--base-flex-column-gap));
      max-width: calc(66.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-9 {
      flex: 0 0 calc(75% - var(--base-flex-column-gap));
      max-width: calc(75% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-10 {
      flex: 0 0 calc(83.33333% - var(--base-flex-column-gap));
      max-width: calc(83.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-11 {
      flex: 0 0 calc(91.66667% - var(--base-flex-column-gap));
      max-width: calc(91.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-12 {
      flex: 0 0 calc(100% - var(--base-flex-column-gap));
      max-width: calc(100% - var(--base-flex-column-gap)); }
    .base-flex-cell.smaller-auto {
      flex-basis: auto; }
    .base-flex-cell.smaller-shrink {
      flex-shrink: 1; }
    .base-flex-cell.smaller-grow {
      flex-grow: 1;
      max-width: 100%; }
    .base-flex-cell.smaller-order-1 {
      --base-flex-cell-order: 1; }
    .base-flex-cell.smaller-order-2 {
      --base-flex-cell-order: 2; }
    .base-flex-cell.smaller-order-3 {
      --base-flex-cell-order: 3; }
    .base-flex-cell.smaller-order-4 {
      --base-flex-cell-order: 4; } }
  @media (min-width: 640px) {
    .base-flex-cell.medium-1 {
      flex: 0 0 calc(8.33333% - var(--base-flex-column-gap));
      max-width: calc(8.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-2 {
      flex: 0 0 calc(16.66667% - var(--base-flex-column-gap));
      max-width: calc(16.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-3 {
      flex: 0 0 calc(25% - var(--base-flex-column-gap));
      max-width: calc(25% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-4 {
      flex: 0 0 calc(33.33333% - var(--base-flex-column-gap));
      max-width: calc(33.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-5 {
      flex: 0 0 calc(41.66667% - var(--base-flex-column-gap));
      max-width: calc(41.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-6 {
      flex: 0 0 calc(50% - var(--base-flex-column-gap));
      max-width: calc(50% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-7 {
      flex: 0 0 calc(58.33333% - var(--base-flex-column-gap));
      max-width: calc(58.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-8 {
      flex: 0 0 calc(66.66667% - var(--base-flex-column-gap));
      max-width: calc(66.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-9 {
      flex: 0 0 calc(75% - var(--base-flex-column-gap));
      max-width: calc(75% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-10 {
      flex: 0 0 calc(83.33333% - var(--base-flex-column-gap));
      max-width: calc(83.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-11 {
      flex: 0 0 calc(91.66667% - var(--base-flex-column-gap));
      max-width: calc(91.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-12 {
      flex: 0 0 calc(100% - var(--base-flex-column-gap));
      max-width: calc(100% - var(--base-flex-column-gap)); }
    .base-flex-cell.medium-auto {
      flex-basis: auto; }
    .base-flex-cell.medium-shrink {
      flex-shrink: 1; }
    .base-flex-cell.medium-grow {
      flex-grow: 1;
      max-width: 100%; }
    .base-flex-cell.medium-order-1 {
      --base-flex-cell-order: 1; }
    .base-flex-cell.medium-order-2 {
      --base-flex-cell-order: 2; }
    .base-flex-cell.medium-order-3 {
      --base-flex-cell-order: 3; }
    .base-flex-cell.medium-order-4 {
      --base-flex-cell-order: 4; } }
  @media (min-width: 1024px) {
    .base-flex-cell.large-1 {
      flex: 0 0 calc(8.33333% - var(--base-flex-column-gap));
      max-width: calc(8.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-2 {
      flex: 0 0 calc(16.66667% - var(--base-flex-column-gap));
      max-width: calc(16.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-3 {
      flex: 0 0 calc(25% - var(--base-flex-column-gap));
      max-width: calc(25% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-4 {
      flex: 0 0 calc(33.33333% - var(--base-flex-column-gap));
      max-width: calc(33.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-5 {
      flex: 0 0 calc(41.66667% - var(--base-flex-column-gap));
      max-width: calc(41.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-6 {
      flex: 0 0 calc(50% - var(--base-flex-column-gap));
      max-width: calc(50% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-7 {
      flex: 0 0 calc(58.33333% - var(--base-flex-column-gap));
      max-width: calc(58.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-8 {
      flex: 0 0 calc(66.66667% - var(--base-flex-column-gap));
      max-width: calc(66.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-9 {
      flex: 0 0 calc(75% - var(--base-flex-column-gap));
      max-width: calc(75% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-10 {
      flex: 0 0 calc(83.33333% - var(--base-flex-column-gap));
      max-width: calc(83.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-11 {
      flex: 0 0 calc(91.66667% - var(--base-flex-column-gap));
      max-width: calc(91.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-12 {
      flex: 0 0 calc(100% - var(--base-flex-column-gap));
      max-width: calc(100% - var(--base-flex-column-gap)); }
    .base-flex-cell.large-auto {
      flex-basis: auto; }
    .base-flex-cell.large-shrink {
      flex-shrink: 1; }
    .base-flex-cell.large-grow {
      flex-grow: 1;
      max-width: 100%; }
    .base-flex-cell.large-order-1 {
      --base-flex-cell-order: 1; }
    .base-flex-cell.large-order-2 {
      --base-flex-cell-order: 2; }
    .base-flex-cell.large-order-3 {
      --base-flex-cell-order: 3; }
    .base-flex-cell.large-order-4 {
      --base-flex-cell-order: 4; } }
  @media (min-width: 1200px) {
    .base-flex-cell.xlarge-1 {
      flex: 0 0 calc(8.33333% - var(--base-flex-column-gap));
      max-width: calc(8.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-2 {
      flex: 0 0 calc(16.66667% - var(--base-flex-column-gap));
      max-width: calc(16.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-3 {
      flex: 0 0 calc(25% - var(--base-flex-column-gap));
      max-width: calc(25% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-4 {
      flex: 0 0 calc(33.33333% - var(--base-flex-column-gap));
      max-width: calc(33.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-5 {
      flex: 0 0 calc(41.66667% - var(--base-flex-column-gap));
      max-width: calc(41.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-6 {
      flex: 0 0 calc(50% - var(--base-flex-column-gap));
      max-width: calc(50% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-7 {
      flex: 0 0 calc(58.33333% - var(--base-flex-column-gap));
      max-width: calc(58.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-8 {
      flex: 0 0 calc(66.66667% - var(--base-flex-column-gap));
      max-width: calc(66.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-9 {
      flex: 0 0 calc(75% - var(--base-flex-column-gap));
      max-width: calc(75% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-10 {
      flex: 0 0 calc(83.33333% - var(--base-flex-column-gap));
      max-width: calc(83.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-11 {
      flex: 0 0 calc(91.66667% - var(--base-flex-column-gap));
      max-width: calc(91.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-12 {
      flex: 0 0 calc(100% - var(--base-flex-column-gap));
      max-width: calc(100% - var(--base-flex-column-gap)); }
    .base-flex-cell.xlarge-auto {
      flex-basis: auto; }
    .base-flex-cell.xlarge-shrink {
      flex-shrink: 1; }
    .base-flex-cell.xlarge-grow {
      flex-grow: 1;
      max-width: 100%; }
    .base-flex-cell.xlarge-order-1 {
      --base-flex-cell-order: 1; }
    .base-flex-cell.xlarge-order-2 {
      --base-flex-cell-order: 2; }
    .base-flex-cell.xlarge-order-3 {
      --base-flex-cell-order: 3; }
    .base-flex-cell.xlarge-order-4 {
      --base-flex-cell-order: 4; } }
  @media (min-width: 1440px) {
    .base-flex-cell.xxlarge-1 {
      flex: 0 0 calc(8.33333% - var(--base-flex-column-gap));
      max-width: calc(8.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-2 {
      flex: 0 0 calc(16.66667% - var(--base-flex-column-gap));
      max-width: calc(16.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-3 {
      flex: 0 0 calc(25% - var(--base-flex-column-gap));
      max-width: calc(25% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-4 {
      flex: 0 0 calc(33.33333% - var(--base-flex-column-gap));
      max-width: calc(33.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-5 {
      flex: 0 0 calc(41.66667% - var(--base-flex-column-gap));
      max-width: calc(41.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-6 {
      flex: 0 0 calc(50% - var(--base-flex-column-gap));
      max-width: calc(50% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-7 {
      flex: 0 0 calc(58.33333% - var(--base-flex-column-gap));
      max-width: calc(58.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-8 {
      flex: 0 0 calc(66.66667% - var(--base-flex-column-gap));
      max-width: calc(66.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-9 {
      flex: 0 0 calc(75% - var(--base-flex-column-gap));
      max-width: calc(75% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-10 {
      flex: 0 0 calc(83.33333% - var(--base-flex-column-gap));
      max-width: calc(83.33333% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-11 {
      flex: 0 0 calc(91.66667% - var(--base-flex-column-gap));
      max-width: calc(91.66667% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-12 {
      flex: 0 0 calc(100% - var(--base-flex-column-gap));
      max-width: calc(100% - var(--base-flex-column-gap)); }
    .base-flex-cell.xxlarge-auto {
      flex-basis: auto; }
    .base-flex-cell.xxlarge-shrink {
      flex-shrink: 1; }
    .base-flex-cell.xxlarge-grow {
      flex-grow: 1;
      max-width: 100%; }
    .base-flex-cell.xxlarge-order-1 {
      --base-flex-cell-order: 1; }
    .base-flex-cell.xxlarge-order-2 {
      --base-flex-cell-order: 2; }
    .base-flex-cell.xxlarge-order-3 {
      --base-flex-cell-order: 3; }
    .base-flex-cell.xxlarge-order-4 {
      --base-flex-cell-order: 4; } }

.base-grid {
  --base-grid-cols: 1;
  --base-grid-gap: var(--space-regular, 1rem);
  display: grid;
  grid-template-columns: repeat(var(--base-grid-cols), 1fr);
  -moz-column-gap: var(--base-grid-col-gap);
       column-gap: var(--base-grid-col-gap);
  row-gap: var(--base-grid-row-gap); }
  .base-grid[data-cols="1"] {
    --base-grid-cols: 1; }
  .base-grid[data-cols="2"] {
    --base-grid-cols: 2; }
  .base-grid[data-cols="3"] {
    --base-grid-cols: 3; }
  .base-grid[data-cols="4"] {
    --base-grid-cols: 4; }
  .base-grid[data-cols="5"] {
    --base-grid-cols: 5; }
  .base-grid[data-cols="6"] {
    --base-grid-cols: 6; }
  .base-grid[data-cols="7"] {
    --base-grid-cols: 7; }
  .base-grid[data-cols="8"] {
    --base-grid-cols: 8; }
  .base-grid[data-cols="9"] {
    --base-grid-cols: 9; }
  .base-grid[data-cols="10"] {
    --base-grid-cols: 10; }
  .base-grid[data-cols="11"] {
    --base-grid-cols: 11; }
  .base-grid[data-cols="12"] {
    --base-grid-cols: 12; }
  .base-grid--auto-columns {
    grid-auto-flow: column; }
  .base-grid--gap-none {
    --base-grid-gap: 0; }
  .base-grid--gap-tiny {
    --base-grid-gap: var(--space-tiny, .25rem); }
  .base-grid--gap-small {
    --base-grid-gap: var(--space-small, .5rem); }
  .base-grid--gap-regular {
    --base-grid-gap: var(--space-regular, 1rem); }
  .base-grid--gap-big {
    --base-grid-gap: var(--space-big, 2rem); }
  .base-grid--gap-huge {
    --base-grid-gap: var(--space-huge, 3rem); }
  .base-grid--col-gap {
    -moz-column-gap: var(--base-grid-gap);
         column-gap: var(--base-grid-gap); }
  .base-grid--row-gap {
    row-gap: var(--base-grid-gap); }
  .base-grid--gap {
    -moz-column-gap: var(--base-grid-gap);
         column-gap: var(--base-grid-gap);
    row-gap: var(--base-grid-gap); }
  .base-grid--dense {
    grid-auto-flow: dense; }
  .base-grid > * {
    min-width: 0;
    min-height: 0; }
  .base-grid--remove-margins > * {
    margin: 0; }

.base-grid-cell[data-span-cols="1"] {
  grid-column: span 1; }

.base-grid-cell[data-span-rows="1"] {
  grid-row: span 1; }

.base-grid-cell[data-span-cols="2"] {
  grid-column: span 2; }

.base-grid-cell[data-span-rows="2"] {
  grid-row: span 2; }

.base-grid-cell[data-span-cols="3"] {
  grid-column: span 3; }

.base-grid-cell[data-span-rows="3"] {
  grid-row: span 3; }

.base-grid-cell[data-span-cols="4"] {
  grid-column: span 4; }

.base-grid-cell[data-span-rows="4"] {
  grid-row: span 4; }

.base-grid-cell[data-span-cols="5"] {
  grid-column: span 5; }

.base-grid-cell[data-span-rows="5"] {
  grid-row: span 5; }

.base-grid-cell[data-span-cols="6"] {
  grid-column: span 6; }

.base-grid-cell[data-span-rows="6"] {
  grid-row: span 6; }

.base-grid-cell[data-span-cols="7"] {
  grid-column: span 7; }

.base-grid-cell[data-span-rows="7"] {
  grid-row: span 7; }

.base-grid-cell[data-span-cols="8"] {
  grid-column: span 8; }

.base-grid-cell[data-span-rows="8"] {
  grid-row: span 8; }

.base-grid-cell[data-span-cols="9"] {
  grid-column: span 9; }

.base-grid-cell[data-span-rows="9"] {
  grid-row: span 9; }

.base-grid-cell[data-span-cols="10"] {
  grid-column: span 10; }

.base-grid-cell[data-span-rows="10"] {
  grid-row: span 10; }

.base-grid-cell[data-span-cols="11"] {
  grid-column: span 11; }

.base-grid-cell[data-span-rows="11"] {
  grid-row: span 11; }

.base-grid-cell[data-span-cols="12"] {
  grid-column: span 12; }

.base-grid-cell[data-span-rows="12"] {
  grid-row: span 12; }

.base-grid-cell--equalize-children {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between; }
  .base-grid-cell--equalize-children > * {
    flex-grow: 1; }

table.base-table {
  --base-table-bg-hs: var(--color-back-h), var(--color-back-s);
  --base-table-bg-l: var(--color-back-l);
  --base-table-modify-cell-lightness: 0%;
  --base-table-modify-header-cell-lightness: -20%;
  --base-table-header-l: clamp(0%, var(--base-table-bg-l) + var(--base-table-modify-header-cell-lightness), 100%);
  --base-table-header-bg: hsl(var(--base-table-bg-hs), var(--base-table-header-l));
  --base-table-header-fg: currentColor;
  --base-table-border-style: solid;
  --base-table-border-width: 1px;
  --base-table-border-color: var(--base-table-header-bg);
  --base-table-internal-border: var(--base-table-border-width) var(--base-table-border-style) var(--base-table-header-bg);
  min-width: 100%;
  border-collapse: collapse; }
  @media screen and (prefers-color-scheme: dark) {
    :root:not(.disable-dark-mode) table.base-table {
      --base-table-modify-header-cell-lightness: 20%; } }
  table.base-table :is(th, td) {
    padding: .25em .5em; }
  table.base-table th {
    font-weight: 600; }
  table.base-table--bordered {
    border: var(--base-table-internal-border); }
    table.base-table--bordered tbody :is(td, th) {
      border: var(--base-table-internal-border); }
  table.base-table--striped tbody tr:nth-child(even) {
    --base-table-modify-cell-lightness: -4%; }
    @media screen and (prefers-color-scheme: dark) {
      :root:not(.disable-dark-mode) table.base-table--striped tbody tr:nth-child(even) {
        --base-table-modify-cell-lightness: 8%; } }
  table.base-table--hover tbody tr {
    cursor: default;
    transition: background-color .25s linear; }
    table.base-table--hover tbody tr:hover {
      --base-table-modify-cell-lightness: -8%; }
      @media screen and (prefers-color-scheme: dark) {
        :root:not(.disable-dark-mode) table.base-table--hover tbody tr:hover {
          --base-table-modify-cell-lightness: 16%; } }
  table.base-table--nobr :is(th, td) {
    white-space: nowrap; }
  table.base-table.main {
    --base-table-header-bg: var(--color-main);
    --base-table-header-fg: var(--color-back);
    --base-table-bg-hs: var(--color-main-h), var(--color-main-s); }
  table.base-table.contrast {
    --base-table-header-bg: var(--color-contrast);
    --base-table-header-fg: var(--color-back);
    --base-table-bg-hs: var(--color-contrast-h), var(--color-contrast-s); }
  table.base-table :is(thead, tfoot) {
    background: var(--base-table-header-bg);
    color: var(--base-table-header-fg); }
  table.base-table tbody tr {
    background: hsl( var(--base-table-bg-hs), clamp(0%, calc(var(--base-table-bg-l) + var(--base-table-modify-cell-lightness)), 100%)); }

.base-table-scroll-box {
  overflow: scroll; }
  .base-table-scroll-box table {
    width: auto; }

.base-hr {
  --hr-width: 1px;
  --hr-style: solid;
  --hr-color: currentColor;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-bottom: var(--hr-width) var(--hr-style) var(--hr-color); }
  .base-hr--solid {
    --hr-style: solid;
    --hr-width: 1px; }
  .base-hr--dotted {
    --hr-style: dotted;
    --hr-width: 2px; }
  .base-hr--dashed {
    --hr-style: dashed;
    --hr-width: 3px; }

.base-menu {
  --base-menu-border: 1px solid hsla(var(--color-decent-ui-h), var(--color-decent-ui-s), var(--color-decent-ui-l), 0.5);
  --base-menu-border-radius: calc(var(--radius) * 4px);
  --base-menu-bg: var(--color-back);
  --base-menu-fg: var(--color-main);
  --base-menu-bg-hover: hsla(var(--color-back-h), var(--color-back-s), clamp(0%, calc(var(--color-back-l) - 10%), 100%), 1);
  --base-menu-icon-margin: .4em;
  margin-bottom: 1rem; }
  .base-menu--depth-2 {
    --base-menu-bg: hsla(var(--color-back-h), var(--color-back-s), clamp(0%, calc(var(--color-back-l) - 4%), 100%), 1); }
  .base-menu--depth-3 {
    --base-menu-bg: hsla(var(--color-back-h), var(--color-back-s), clamp(0%, calc(var(--color-back-l) - 8%), 100%), 1); }
  .base-menu__list {
    list-style: none;
    margin: 0;
    padding: 0; }
  .base-menu__item {
    position: relative;
    padding: 0; }
    .base-menu__item:not(:last-of-type) {
      border-bottom: var(--base-menu-border); }
  .base-menu__link {
    display: block;
    padding: .5em 1em;
    background: var(--base-menu-bg);
    transition: background .25s ease;
    overflow: hidden; }
    .base-menu__link:not(a) {
      cursor: default; }
    .base-menu__link a {
      color: var(--base-menu-fg); }
    .base-menu__link:is(a, [tabindex]) {
      color: var(--base-menu-fg); }
      .base-menu__link:is(a, [tabindex]):is(:hover, :focus-visible, :focus) {
        outline: none;
        background: var(--base-menu-bg-hover);
        color: var(--base-menu-fg); }
  .base-menu__link-icon {
    transform-origin: center center;
    transition: transform .25s ease; }
    .base-menu__link-icon--left {
      float: left;
      margin-right: var(--base-menu-icon-margin); }
    .base-menu__link-icon--right {
      float: right;
      margin-left: var(--base-menu-icon-margin); }
    .base-menu__link-icon--rotate-180 {
      transform: rotate(180deg); }
  .base-menu .base-menu {
    margin-bottom: 0; }
  .base-menu--border {
    border: var(--base-menu-border); }
  .base-menu .base-menu__list .base-menu__list {
    border-top: var(--base-menu-border); }
  .base-menu--radius {
    border-radius: var(--base-menu-border-radius);
    overflow: hidden; }

.base-mega-menu-parent {
  position: relative; }

.base-mega-menu {
  width: 100%; }
  .base-mega-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
    overflow: auto; }
  .base-mega-menu__link {
    display: block;
    padding: .25em .5em;
    font-size: 1.1rem; }
    @media (min-width: 1024px) {
      .base-mega-menu__link {
        font-size: 1.25rem; } }
  .base-mega-menu__sub-list--no-list-style {
    list-style: none;
    margin-left: 0;
    padding-left: 0; }
  .base-mega-menu__sub-link {
    display: block;
    padding: .25em .5em; }

base-drop-content.base-mega-menu {
  --drop-content-shadow: 0 15px 10px rgba(0, 0, 0, .25);
  display: block;
  opacity: 1;
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%; }
  base-drop-content.base-mega-menu::part(content) {
    box-sizing: border-box;
    width: 100%; }
  base-drop-content.base-mega-menu::part(wrap) {
    height: var(--drop-content-current-content-height);
    transition: height .5s ease;
    overflow: hidden; }

base-off-canvas.base-slide-over-menu {
  width: 100%; }

base-off-canvas:not([open]) base-off-canvas.base-slide-over-menu::part(drop-shadow) {
  display: none; }

.base-dropdown-parent {
  position: relative; }

.base-dropdown-menu {
  min-width: 14em; }

base-drop-content.base-dropdown-menu::part(content) {
  padding: 0; }

.base-auto-cols {
  -moz-columns: var(--autocols-width, 320px) auto;
       columns: var(--autocols-width, 320px) auto;
  -moz-column-gap: var(--autocols-gap, 2rem);
       column-gap: var(--autocols-gap, 2rem); }
  .base-auto-cols--large {
    -moz-column-width: calc(var(--autocols-width, 320px) * var(--autocols-large-factor, 1.4));
         column-width: calc(var(--autocols-width, 320px) * var(--autocols-large-factor, 1.4)); }
  .base-auto-cols li, .base-auto-cols dd {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid; }

.base-imagelink {
  --imagelink-color: #ffffff;
  --imagelink-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
  color: var(--imagelink-color);
  transition: opacity .25s ease;
  text-decoration: none !important; }
  .base-imagelink:hover, .base-imagelink:active {
    opacity: .6;
    color: var(--imagelink-color); }
  .base-imagelink:not(.base-imagelink--no-shadow).base-imagelink--filter {
    filter: drop-shadow(var(--imagelink-shadow)); }
  .base-imagelink:not(.base-imagelink--no-shadow):not(.base-imagelink--filter) {
    text-shadow: var(--imagelink-shadow); }

.has-base-overlay {
  position: relative; }

.base-overlay {
  position: absolute;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }
  .base-overlay--full {
    inset: 0; }
  .base-overlay--center {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%); }
  .base-overlay--centered-content {
    display: flex;
    align-items: center;
    justify-content: center; }
  .base-overlay--top {
    top: 0; }
  .base-overlay--bottom {
    bottom: 0; }
  .base-overlay--left {
    left: 0; }
  .base-overlay--right {
    right: 0; }
  .base-overlay--padding {
    padding: 1rem; }
  .base-overlay--margin {
    margin: 1rem; }
  .base-overlay--boost {
    z-index: 1010; }

.base-copyright {
  display: block;
  background: rgba(var(--color-text-rgb, "0,0,0"), 0.5);
  padding: 0.25rem 0.5rem;
  color: var(--color-back, #FFFFFF);
  font-size: small;
  cursor: pointer;
  outline: 0 !important; }
  .base-copyright__icon {
    display: inline;
    vertical-align: top; }
  .base-copyright__content {
    display: none;
    vertical-align: top; }
  .base-copyright:is(:focus, :focus-within, :hover, .base-copyright--show) .base-copyright__content {
    display: inline; }

.base-header-group {
  margin-bottom: 2rem; }
  .base-header-group--no-margin-bottom {
    margin-bottom: 0; }
  .base-header-group > *:not(:last-child) {
    margin-bottom: var(--space-small); }
  .base-header-group__header, .base-header-group__subheader {
    text-align: inherit; }
  .base-header-group__meta-item:not(:first-of-type)::before {
    content: " • "; }

.base-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  --base-card-radius: calc(var(--radius) * 3px);
  --base-card-box-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
  background: var(--color-back);
  border-radius: var(--base-card-radius); }
  .base-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--base-card-radius);
    box-shadow: var(--base-card-box-shadow);
    z-index: 1; }
    @media screen and (prefers-color-scheme: dark) {
      :root:not(.disable-dark-mode) .base-card::before {
        outline: 1px solid var(--color-text);
        box-shadow: none; } }
  .base-card--hover::before {
    opacity: .5;
    transition: opacity .25s ease; }
  .base-card--hover:hover::before {
    opacity: 1; }
  .base-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-back);
    border-radius: var(--base-card-radius);
    z-index: 0; }
  .base-card > * {
    position: relative;
    z-index: 1; }
  .base-card__image {
    overflow: hidden; }
    .base-card__image:first-child {
      border-top-left-radius: var(--base-card-radius);
      border-top-right-radius: var(--base-card-radius); }
    .base-card__image:last-child {
      border-bottom-left-radius: var(--base-card-radius);
      border-bottom-right-radius: var(--base-card-radius); }
  .base-card__hr {
    margin: .5rem 0;
    border: 0;
    height: 1px;
    width: 100%;
    background: var(--color-decent-ui); }
  .base-card__header {
    color: var(--color-text); }
  .base-card__section {
    padding: 1rem; }
  .base-card__link {
    display: block;
    padding: 1rem;
    text-align: center;
    font-size: var(--font-size-larger); }
  .base-card__stick-to-bottom {
    margin-top: auto; }

.base-card.base-card--horizonal {
  --horizontal-card-image-width: 30%;
  flex-direction: row; }
  .base-card.base-card--horizonal > .base-card__image {
    flex: 0 0 var(--horizontal-card-image-width);
    position: relative; }
    .base-card.base-card--horizonal > .base-card__image img.base-card__image-img-fit {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center center;
         object-position: center center; }
  .base-card.base-card--horizonal > .base-card__image--right {
    order: 99; }

img.base-card__image,
.base-card__image img {
  display: block;
  width: 100%;
  height: auto; }

.base-module-links {
  --base-module-links-space: .5rem;
  display: inline-block;
  margin-left: calc(var(--base-module-links-space) * -.5);
  margin-right: calc(var(--base-module-links-space) * -.5); }
  .base-module-links > * {
    margin-inline: calc(var(--base-module-links-space) * .5);
    margin-block-end: var(--base-module-links-space); }
  .base-module-links > a {
    display: inline-block;
    white-space: nowrap;
    padding-block: var(--base-module-links-space); }

.base-broken-image {
  background: hsla(var(--color-text-h), var(--color-text-s), var(--color-text-l), 0.15);
  display: flex;
  align-items: center;
  justify-content: center; }
  .base-broken-image .icon {
    font-size: var(--font-size-huge);
    opacity: .3; }

.base-figcaption {
  padding: var(--font-size-smaller); }

.t3-frontend-editing__ce::after {
  content: "";
  position: absolute;
  inset: 0;
  outline: 4px solid hsla(var(--color-main-h), var(--color-main-s), var(--color-main-l), 0.5) !important;
  outline-offset: 4px;
  opacity: 0;
  z-index: 10000;
  pointer-events: none;
  transition: outline-offset .25s ease, opacity .25s ease; }

.t3-frontend-editing__ce:hover {
  outline: none !important; }
  .t3-frontend-editing__ce:hover::after {
    opacity: 1;
    outline-offset: -4px; }

@supports ((-webkit-mask-size: contain) or (mask-size: contain)) {
  .base-rte-iconlist {
    --base-rte-iconlist-size: 1em;
    --base-rte-iconlist-offset-top: .25em;
    --base-rte-iconlist-mask: url("../Icons/Frontend/check.svg");
    --base-rte-iconlist-item-padding: .25em;
    list-style: none;
    padding-left: calc(var(--base-rte-iconlist-size) * 1.5); }
    .base-rte-iconlist > li {
      position: relative;
      min-height: var(--base-rte-iconlist-size);
      padding-block: var(--base-rte-iconlist-item-padding); }
      .base-rte-iconlist > li::before {
        content: "";
        display: inline-block;
        background-color: var(--color-main);
        -webkit-mask-image: var(--base-rte-iconlist-mask);
                mask-image: var(--base-rte-iconlist-mask);
        -webkit-mask-repeat: no-repeat;
                mask-repeat: no-repeat;
        -webkit-mask-size: contain;
                mask-size: contain;
        -webkit-mask-position: center center;
                mask-position: center center;
        width: var(--base-rte-iconlist-size);
        height: var(--base-rte-iconlist-size);
        position: absolute;
        margin-left: calc(var(--base-rte-iconlist-size) * -1.25);
        margin-top: var(--base-rte-iconlist-offset-top); }
    .base-rte-iconlist--big {
      --base-rte-iconlist-size: 1.5em;
      --base-rte-iconlist-offset-top: 0; }
    .base-rte-iconlist--arrow-right {
      --base-rte-iconlist-mask: url("../Icons/Frontend/right.svg"); } }

base-bullet-wrap {
  --bullet-wrap-fg: var(--color-back);
  --bullet-wrap-bg: var(--color-main); }
  base-bullet-wrap:not(:defined) {
    display: inline-block; }
  base-bullet-wrap.contrast {
    --bullet-wrap-bg: var(--color-contrast); }
    base-bullet-wrap.contrast.hover:hover {
      --bullet-wrap-bg: hsla(var(--color-contrast-h), var(--color-contrast-s), clamp(0%, calc(var(--color-contrast-l) + 10%), 100%), 1); }
  base-bullet-wrap.text {
    --bullet-wrap-bg: var(--color-text); }
    base-bullet-wrap.text.hover:hover {
      --bullet-wrap-bg: hsla(var(--color-text-h), var(--color-text-s), clamp(0%, calc(var(--color-text-l) + 10%), 100%), 1); }
  base-bullet-wrap.small {
    --bullet-wrap-size-base: .675rem; }
  base-bullet-wrap.big {
    --bullet-wrap-size-base: 1.5rem; }
  base-bullet-wrap.bigger {
    --bullet-wrap-size-base: 2rem; }
  base-bullet-wrap.huge {
    --bullet-wrap-size-base: 4rem; }
  base-bullet-wrap.giant {
    --bullet-wrap-size-base: 6rem; }
  base-bullet-wrap.hover:hover {
    --bullet-wrap-bg: hsla(var(--color-main-h), var(--color-main-s), clamp(0%, calc(var(--color-main-l) + 10%), 100%), 1);
    cursor: pointer; }
  base-bullet-wrap::part(bullet) {
    transition: background ease .25s; }
  base-bullet-wrap .svg.icon {
    font-size: var(--bullet-wrap-size-base);
    display: block; }
  base-bullet-wrap.play-on-hover {
    --bullet-animation-state: paused; }
    base-bullet-wrap.play-on-hover:hover {
      --bullet-animation-state: running; }

base-call-out {
  --call-out-margin: var(--space-regular);
  --call-out-radius: calc(var(--radius) * 4px); }
  base-call-out:not(:defined) {
    display: block; }
  base-call-out.default {
    --call-out-bg: var(--color-back);
    border-color: var(--color-decent-ui); }
  base-call-out.main {
    --call-out-bg: hsla(var(--color-main-h), 40%, 70%, 1); }
  base-call-out.contrast {
    --call-out-bg: hsla(var(--color-contrast-h), 40%, 70%, 1); }
  base-call-out.opaque {
    --call-out-opacity: 1; }
  base-call-out:is([severity="alert"], [severity="error"]) {
    --call-out-bg: #ff8888;
    border-color: #ff0000; }
  base-call-out[severity="warning"] {
    --call-out-bg: #ffaa88;
    border-color: #ff8800; }
  base-call-out[severity="notice"] {
    --call-out-bg: #ffff88;
    border-color: #ffff44; }
  base-call-out[severity="success"] {
    --call-out-bg: #88ff88;
    border-color: #008800; }
  base-call-out:not(.no-radius) {
    border-radius: var(--call-out-radius); }
    base-call-out:not(.no-radius)::part(background)::before {
      border-radius: var(--call-out-radius); }
  base-popup > base-call-out {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 0; }
  base-popup[position*="stretch-height"] > base-call-out {
    flex-grow: 1; }
  base-popup[size="fullscreen"] > base-call-out {
    flex-grow: 1;
    --call-out-radius: 0; }
    base-popup[size="fullscreen"] > base-call-out base-call-out {
      --call-out-radius: calc(var(--radius) * 4px); }

base-overlay-loader {
  --overlay-loader-bg: var(--color-main);
  --overlay-loader-fg: var(--color-back); }

base-button {
  --base-button-radius: calc(var(--radius) * 2px);
  --base-button-bg: var(--color-main);
  --base-button-bg-hover: hsla(var(--color-main-h), var(--color-main-s), clamp(0%, calc(var(--color-main-l) - 15%), 100%), 1);
  --base-button-focus-color: var(--color-contrast);
  --base-button-fg: var(--color-back);
  --base-button-hollow-border-width: 2px;
  --base-button-hollow-border-style: solid;
  --base-button-hollow-border: var(--base-button-hollow-border-width) var(--base-button-hollow-border-style); }
  base-button.contrast {
    --base-button-bg: var(--color-contrast);
    --base-button-bg-hover: hsla(var(--color-contrast-h), var(--color-contrast-s), clamp(0%, calc(var(--color-contrast-l) - 15%), 100%), 1);
    --base-button-focus-color: var(--color-main);
    --base-button-fg: var(--color-back); }
  base-button.success {
    --base-button-bg: darkgreen;
    --base-button-bg-hover: green;
    --base-button-fg: white; }
  base-button.warning {
    --base-button-bg: orangered;
    --base-button-bg-hover: orange;
    --base-button-fg: darkred; }
  base-button:is(.alert, .error) {
    --base-button-bg: darkred;
    --base-button-bg-hover: red;
    --base-button-fg: white; }
  base-button.hollow {
    padding: calc(var(--base-button-padding-v) - var(--base-button-hollow-border-width)) calc(var(--base-button-padding-h) - var(--base-button-hollow-border-width));
    background: transparent;
    border: var(--base-button-hollow-border) var(--base-button-internal-bg);
    color: var(--base-button-internal-bg); }
  base-button.size-smaller {
    font-size: .8em; }
  base-button.size-larger {
    font-size: 1.25em; }
  base-button.size-tiny {
    font-size: .625rem; }
  base-button.size-small {
    font-size: .8rem; }
  base-button.size-default {
    font-size: 1rem; }
  base-button.size-big {
    font-size: 1.25rem; }
  base-button.size-huge {
    font-size: 1.5rem; }

base-button-group:not(:defined) {
  display: inline-flex; }

base-button-group > base-button.hollow:not(:first-of-type) {
  border-left: 0;
  padding-left: var(--base-button-padding-h); }

base-button-group[stacked] > base-button.hollow:not(:first-of-type) {
  border-left: var(--base-button-hollow-border);
  padding-left: calc(var(--base-button-padding-h) - var(--base-button-hollow-border-width));
  border-top: none;
  padding-top: calc(var(--base-button-padding-v)); }

base-input-switch {
  --input-switch-inactive: hsla(var(--color-main-h), var(--color-main-s), var(--color-main-l), 0.3);
  --input-switch-active: var(--color-main);
  --input-switch-fg: var(--color-back);
  --input-switch-focus-color: var(--color-contrast);
  --input-switch-radius: calc(2px * var(--radius)); }
  base-input-switch.contrast {
    --input-switch-inactive: hsla(var(--color-contrast-h), var(--color-contrast-s), var(--color-contrast-l), 0.3);
    --input-switch-active: var(--color-contrast);
    --input-switch-focus-color: var(--color-main); }
  base-input-switch.size-smaller {
    font-size: .8em; }
  base-input-switch.size-larger {
    font-size: 1.25em; }
  base-input-switch.size-tiny {
    font-size: .625rem; }
  base-input-switch.size-small {
    font-size: .8rem; }
  base-input-switch.size-default {
    font-size: 1rem; }
  base-input-switch.size-big {
    font-size: 1.25rem; }
  base-input-switch.size-huge {
    font-size: 1.5rem; }
  base-input-switch::part(background) {
    border-radius: var(--input-switch-radius); }
  base-input-switch::part(slider) {
    border-radius: var(--input-switch-radius); }

base-gdpr-protected {
  background: hsla(var(--color-main-h), var(--color-main-s), var(--color-main-l), 0.25); }

base-popup [slot="close-button"] .svg.icon {
  display: inline-block;
  padding: .5em; }

base-popup.gallery img {
  max-width: 100%;
  height: auto; }

base-popup.reveal-popup::part(content) {
  min-width: 160px;
  background: var(--color-back);
  padding: 2rem 1rem 1rem; }

base-popup[size="fullscreen"] > .schema-root {
  min-height: 100%;
  box-sizing: border-box;
  margin: 0 !important; }

base-off-canvas {
  --off-canvas-background: var(--color-back); }

base-drop-content {
  --drop-content-bg: var(--color-back);
  color: var(--color-text); }
  base-drop-content.tooltip {
    --drop-content-bg: var(--color-text);
    color: var(--color-back);
    font-size: .8em;
    line-height: 1.2;
    min-width: 10em; }
    base-drop-content.tooltip::part(content) {
      border-radius: calc(3px * var(--radius)); }

base-slideshow {
  --slideshow-control-size: var(--font-size-gigantic); }
  base-slideshow.small-controls {
    --slideshow-control-size: var(--font-size-huge); }
  base-slideshow [slot$="icon"] svg {
    font-size: var(--slideshow-control-size); }

base-countdown {
  --base-countdown-gutter: 1rem; }
  @media (min-width: 1024px) {
    base-countdown {
      --base-countdown-gutter: 2rem; } }
  base-countdown::part(units) {
    gap: var(--base-countdown-gutter); }
  base-countdown::part(unit-wrap) {
    flex-basis: auto;
    background: hsla(var(--color-main-h), var(--color-main-s), var(--color-main-l), 0.5);
    padding: var(--base-countdown-gutter); }
  base-countdown::part(value) {
    font-family: var(--font-header-family, OpenSans, Arial, sans-serif);
    font-weight: var(--font-header-regular-weight, 300);
    font-style: var(--font-header-regular-style, normal);
    font-size: 2em;
    display: inline-block;
    width: 2ch;
    text-align: center; }

base-tabs-nav {
  --base-tabs--tab-separator-color: var(--color-back);
  --base-tabs--tab-background: hsla(var(--color-text-h), var(--color-text-s), var(--color-text-l), 0.1);
  --base-tabs--tab-hover-background: hsla(var(--color-text-h), var(--color-text-s), var(--color-text-l), 0.14);
  --base-tabs--tab-active-background: hsla(var(--color-text-h), var(--color-text-s), var(--color-text-l), 0.18);
  --base-tabs--tab-color: var(--color-link); }
  base-tabs-nav[flow*="vertical"]::part(tabs-wrapper), base-tabs-nav[flow*="vertical"]::part(tabs-nav) {
    height: 100%;
    box-sizing: border-box; }
  base-tabs-nav.tabs-align-start::part(tabs-nav) {
    display: flex;
    justify-content: flex-start; }
  base-tabs-nav.tabs-align-center::part(tabs-nav) {
    display: flex;
    justify-content: center; }
  base-tabs-nav.tabs-align-end::part(tabs-nav) {
    display: flex;
    justify-content: flex-end; }
  base-tabs-nav.tabs-align-stretch a, base-tabs-nav.tabs-align-stretch button {
    flex-grow: 1; }
  base-tabs-nav.tabs-align-stretch::part(tabs-nav) {
    display: flex;
    justify-content: stretch; }
  base-tabs-nav a, base-tabs-nav button {
    color: var(--color-link); }
    base-tabs-nav a:hover, base-tabs-nav button:hover {
      color: var(--color-link-hover); }
  base-tabs-nav.tabs-background {
    --base-tabs--tabs-background: hsla(var(--color-text-h), var(--color-text-s), var(--color-text-l), 0.05)
  ; }

base-video-player {
  max-width: 100%; }
  base-video-player.full-width {
    width: 100%; }
    base-video-player.full-width > :is(video, base-youtube-video, base-vimeo-video) {
      width: 100%; }

base-input-switch + label {
  display: inline-block; }

.flv-main {
  --color-main: #0091A5;
  --color-main-rgb: 0,145,165;
  --color-main-h: 187.27273deg;
  --color-main-s: 100%;
  --color-main-l: 32.35294%;
  --color-contrast: #F9B233;
  --color-contrast-rgb: 249,178,51;
  --color-contrast-h: 38.48485deg;
  --color-contrast-s: 94.28571%;
  --color-contrast-l: 58.82353%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #4A4A4A;
  --color-header-rgb: 74,74,74;
  --color-header-h: 0deg;
  --color-header-s: 0%;
  --color-header-l: 29.01961%;
  --color-link: #0091A5;
  --color-link-rgb: 0,145,165;
  --color-link-h: 187.27273deg;
  --color-link-s: 100%;
  --color-link-l: 32.35294%;
  --color-link-hover: #0091A5;
  --color-link-hover-rgb: 0,145,165;
  --color-link-hover-h: 187.27273deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 32.35294%;
  --color-decent-ui: #4A4A4A;
  --color-decent-ui-rgb: 74,74,74;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 29.01961%; }

.flv-culinary {
  --color-main: #CAB39C;
  --color-main-rgb: 202,179,156;
  --color-main-h: 30deg;
  --color-main-s: 30.26316%;
  --color-main-l: 70.19608%;
  --color-contrast: #0091A5;
  --color-contrast-rgb: 0,145,165;
  --color-contrast-h: 187.27273deg;
  --color-contrast-s: 100%;
  --color-contrast-l: 32.35294%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #4A4A4A;
  --color-header-rgb: 74,74,74;
  --color-header-h: 0deg;
  --color-header-s: 0%;
  --color-header-l: 29.01961%;
  --color-link: #0091A5;
  --color-link-rgb: 0,145,165;
  --color-link-h: 187.27273deg;
  --color-link-s: 100%;
  --color-link-l: 32.35294%;
  --color-link-hover: #0091A5;
  --color-link-hover-rgb: 0,145,165;
  --color-link-hover-h: 187.27273deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 32.35294%;
  --color-decent-ui: #4A4A4A;
  --color-decent-ui-rgb: 74,74,74;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 29.01961%; }

.flv-yoga {
  --color-main: #BE9C5C;
  --color-main-rgb: 190,156,92;
  --color-main-h: 39.18367deg;
  --color-main-s: 42.98246%;
  --color-main-l: 55.29412%;
  --color-contrast: #0091A5;
  --color-contrast-rgb: 0,145,165;
  --color-contrast-h: 187.27273deg;
  --color-contrast-s: 100%;
  --color-contrast-l: 32.35294%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #4A4A4A;
  --color-header-rgb: 74,74,74;
  --color-header-h: 0deg;
  --color-header-s: 0%;
  --color-header-l: 29.01961%;
  --color-link: #0091A5;
  --color-link-rgb: 0,145,165;
  --color-link-h: 187.27273deg;
  --color-link-s: 100%;
  --color-link-l: 32.35294%;
  --color-link-hover: #0091A5;
  --color-link-hover-rgb: 0,145,165;
  --color-link-hover-h: 187.27273deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 32.35294%;
  --color-decent-ui: #4A4A4A;
  --color-decent-ui-rgb: 74,74,74;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 29.01961%; }

.flv-active {
  --color-main: #B1BE56;
  --color-main-rgb: 177,190,86;
  --color-main-h: 67.5deg;
  --color-main-s: 44.44444%;
  --color-main-l: 54.11765%;
  --color-contrast: #0091A5;
  --color-contrast-rgb: 0,145,165;
  --color-contrast-h: 187.27273deg;
  --color-contrast-s: 100%;
  --color-contrast-l: 32.35294%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #B1BE56;
  --color-header-rgb: 177,190,86;
  --color-header-h: 67.5deg;
  --color-header-s: 44.44444%;
  --color-header-l: 54.11765%;
  --color-link: #B1BE56;
  --color-link-rgb: 177,190,86;
  --color-link-h: 67.5deg;
  --color-link-s: 44.44444%;
  --color-link-l: 54.11765%;
  --color-link-hover: #B1BE56;
  --color-link-hover-rgb: 177,190,86;
  --color-link-hover-h: 67.5deg;
  --color-link-hover-s: 44.44444%;
  --color-link-hover-l: 54.11765%;
  --color-decent-ui: #4A4A4A;
  --color-decent-ui-rgb: 74,74,74;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 29.01961%; }

.flv-lightblue {
  --color-main: #EAF4F7;
  --color-main-rgb: 234,244,247;
  --color-main-h: 193.84615deg;
  --color-main-s: 44.82759%;
  --color-main-l: 94.31373%;
  --color-contrast: #0091A5;
  --color-contrast-rgb: 0,145,165;
  --color-contrast-h: 187.27273deg;
  --color-contrast-s: 100%;
  --color-contrast-l: 32.35294%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #0091A5;
  --color-header-rgb: 0,145,165;
  --color-header-h: 187.27273deg;
  --color-header-s: 100%;
  --color-header-l: 32.35294%;
  --color-link: #0091A5;
  --color-link-rgb: 0,145,165;
  --color-link-h: 187.27273deg;
  --color-link-s: 100%;
  --color-link-l: 32.35294%;
  --color-link-hover: #0091A5;
  --color-link-hover-rgb: 0,145,165;
  --color-link-hover-h: 187.27273deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 32.35294%;
  --color-decent-ui: #4A4A4A;
  --color-decent-ui-rgb: 74,74,74;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 29.01961%; }

.flv-pink {
  --color-main: #E6007E;
  --color-main-rgb: 230,0,126;
  --color-main-h: 327.13043deg;
  --color-main-s: 100%;
  --color-main-l: 45.09804%;
  --color-contrast: #F9B233;
  --color-contrast-rgb: 249,178,51;
  --color-contrast-h: 38.48485deg;
  --color-contrast-s: 94.28571%;
  --color-contrast-l: 58.82353%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #E6007E;
  --color-header-rgb: 230,0,126;
  --color-header-h: 327.13043deg;
  --color-header-s: 100%;
  --color-header-l: 45.09804%;
  --color-link: #E6007E;
  --color-link-rgb: 230,0,126;
  --color-link-h: 327.13043deg;
  --color-link-s: 100%;
  --color-link-l: 45.09804%;
  --color-link-hover: #E6007E;
  --color-link-hover-rgb: 230,0,126;
  --color-link-hover-h: 327.13043deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 45.09804%;
  --color-decent-ui: #4A4A4A;
  --color-decent-ui-rgb: 74,74,74;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 29.01961%; }

.flv-dark {
  --color-main: #4A4A4A;
  --color-main-rgb: 74,74,74;
  --color-main-h: 0deg;
  --color-main-s: 0%;
  --color-main-l: 29.01961%;
  --color-contrast: #0091A5;
  --color-contrast-rgb: 0,145,165;
  --color-contrast-h: 187.27273deg;
  --color-contrast-s: 100%;
  --color-contrast-l: 32.35294%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #4A4A4A;
  --color-text-rgb: 74,74,74;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 29.01961%;
  --color-header: #4A4A4A;
  --color-header-rgb: 74,74,74;
  --color-header-h: 0deg;
  --color-header-s: 0%;
  --color-header-l: 29.01961%;
  --color-link: #4A4A4A;
  --color-link-rgb: 74,74,74;
  --color-link-h: 0deg;
  --color-link-s: 0%;
  --color-link-l: 29.01961%;
  --color-link-hover: #4A4A4A;
  --color-link-hover-rgb: 74,74,74;
  --color-link-hover-h: 0deg;
  --color-link-hover-s: 0%;
  --color-link-hover-l: 29.01961%;
  --color-decent-ui: #4A4A4A;
  --color-decent-ui-rgb: 74,74,74;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 29.01961%; }

.flv-velo {
  --color-main: #11515f;
  --color-main-rgb: 17,81,95;
  --color-main-h: 190.76923deg;
  --color-main-s: 69.64286%;
  --color-main-l: 21.96078%;
  --color-contrast: #94D2BF;
  --color-contrast-rgb: 148,210,191;
  --color-contrast-h: 161.6129deg;
  --color-contrast-s: 40.78947%;
  --color-contrast-l: 70.19608%;
  --color-back: #FFFFFF;
  --color-back-rgb: 255,255,255;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 100%;
  --color-text: #2C2E35;
  --color-text-rgb: 44,46,53;
  --color-text-h: 226.66667deg;
  --color-text-s: 9.27835%;
  --color-text-l: 19.01961%;
  --color-header: #2C2E35;
  --color-header-rgb: 44,46,53;
  --color-header-h: 226.66667deg;
  --color-header-s: 9.27835%;
  --color-header-l: 19.01961%;
  --color-link: #11515f;
  --color-link-rgb: 17,81,95;
  --color-link-h: 190.76923deg;
  --color-link-s: 69.64286%;
  --color-link-l: 21.96078%;
  --color-link-hover: #11515f;
  --color-link-hover-rgb: 17,81,95;
  --color-link-hover-h: 190.76923deg;
  --color-link-hover-s: 69.64286%;
  --color-link-hover-l: 21.96078%;
  --color-decent-ui: #2C2E35;
  --color-decent-ui-rgb: 44,46,53;
  --color-decent-ui-h: 226.66667deg;
  --color-decent-ui-s: 9.27835%;
  --color-decent-ui-l: 19.01961%; }

.flv-movies {
  --color-main: #0091A5;
  --color-main-rgb: 0,145,165;
  --color-main-h: 187.27273deg;
  --color-main-s: 100%;
  --color-main-l: 32.35294%;
  --color-contrast: #F9B233;
  --color-contrast-rgb: 249,178,51;
  --color-contrast-h: 38.48485deg;
  --color-contrast-s: 94.28571%;
  --color-contrast-l: 58.82353%;
  --color-back: #000000;
  --color-back-rgb: 0,0,0;
  --color-back-h: 0deg;
  --color-back-s: 0%;
  --color-back-l: 0%;
  --color-text: #FFFFFF;
  --color-text-rgb: 255,255,255;
  --color-text-h: 0deg;
  --color-text-s: 0%;
  --color-text-l: 100%;
  --color-header: #FFFFFF;
  --color-header-rgb: 255,255,255;
  --color-header-h: 0deg;
  --color-header-s: 0%;
  --color-header-l: 100%;
  --color-link: #0091A5;
  --color-link-rgb: 0,145,165;
  --color-link-h: 187.27273deg;
  --color-link-s: 100%;
  --color-link-l: 32.35294%;
  --color-link-hover: #0091A5;
  --color-link-hover-rgb: 0,145,165;
  --color-link-hover-h: 187.27273deg;
  --color-link-hover-s: 100%;
  --color-link-hover-l: 32.35294%;
  --color-decent-ui: #FFFFFF;
  --color-decent-ui-rgb: 255,255,255;
  --color-decent-ui-h: 0deg;
  --color-decent-ui-s: 0%;
  --color-decent-ui-l: 100%;
  --color-main: #0091A5;
  --color-contrast: #F9B233;
  --color-back: #000000;
  background-color: #000000;
  --color-text: #FFFFFF;
  color: #FFFFFF; }
  .flv-movies a:not(.decent) {
    color: #0091A5; }
  .flv-movies .bordered {
    border: 1px solid #0091A5; }
  .flv-movies .waves:after {
    background: #0091A5 url("../Images/waves.svg") repeat left top; }
  .flv-movies .waves.-light:after {
    opacity: .15; }
  .flv-movies .waves-inverted:after {
    background: #0091A5 url("../Images/waves-inverted.svg") repeat left top; }
  .flv-movies .waves-inverted.-light:after {
    opacity: .15; }
  .flv-movies .decent {
    color: inherit; }
    .flv-movies .decent a {
      color: indianred; }
  .flv-movies hr.dotted {
    border-bottom-color: #0091A5; }
  .flv-movies .highlighted-text {
    color: #0091A5; }
  .flv-movies .primary-color {
    color: #0091A5; }
  .flv-movies .secondary-color {
    color: #F9B233; }
  .flv-movies .light-bg:before {
    background: #0091A5; }
  .flv-movies .bubble {
    background: #F9B233;
    color: #0091A5; }
    .flv-movies .bubble ._bubble-contrast {
      color: #FFFFFF; }
  .flv-movies .button.default.hollow {
    border: 1px solid #0091A5;
    color: #0091A5; }
    .flv-movies .button.default.hollow:hover, .flv-movies .button.default.hollow:focus {
      border-color: #004953;
      color: #004953; }
      .flv-movies .button.default.hollow:hover.disabled, .flv-movies .button.default.hollow:hover[disabled], .flv-movies .button.default.hollow:focus.disabled, .flv-movies .button.default.hollow:focus[disabled] {
        border: 1px solid #0091A5;
        color: #0091A5; }
  .flv-movies .button.default:not(.hollow) {
    background-color: #0091A5;
    color: #FFFFFF; }
    .flv-movies .button.default:not(.hollow):hover, .flv-movies .button.default:not(.hollow):focus {
      background-color: #007484;
      color: #FFFFFF; }
  .flv-movies .button.contrast.hollow {
    border: 1px solid #FFFFFF;
    color: #FFFFFF; }
    .flv-movies .button.contrast.hollow:hover, .flv-movies .button.contrast.hollow:focus {
      border-color: gray;
      color: gray; }
      .flv-movies .button.contrast.hollow:hover.disabled, .flv-movies .button.contrast.hollow:hover[disabled], .flv-movies .button.contrast.hollow:focus.disabled, .flv-movies .button.contrast.hollow:focus[disabled] {
        border: 1px solid #FFFFFF;
        color: #FFFFFF; }
  .flv-movies .button.contrast:not(.hollow) {
    background-color: #FFFFFF;
    color: #000000; }
    .flv-movies .button.contrast:not(.hollow):hover, .flv-movies .button.contrast:not(.hollow):focus {
      background-color: #cccccc;
      color: #000000; }
  .flv-movies .button.highlight.hollow {
    border: 1px solid #F9B233;
    color: #F9B233; }
    .flv-movies .button.highlight.hollow:hover, .flv-movies .button.highlight.hollow:focus {
      border-color: #925f04;
      color: #925f04; }
      .flv-movies .button.highlight.hollow:hover.disabled, .flv-movies .button.highlight.hollow:hover[disabled], .flv-movies .button.highlight.hollow:focus.disabled, .flv-movies .button.highlight.hollow:focus[disabled] {
        border: 1px solid #F9B233;
        color: #F9B233; }
  .flv-movies .button.highlight:not(.hollow) {
    background-color: #F9B233;
    color: #FFFFFF; }
    .flv-movies .button.highlight:not(.hollow):hover, .flv-movies .button.highlight:not(.hollow):focus {
      background-color: #e99807;
      color: #FFFFFF; }
  .flv-movies .text-color {
    color: #FFFFFF !important; }
    .flv-movies .text-color a {
      color: #FFFFFF !important; }

.ctype-html > .frame-type-html > data-cycle-widget {
  display: block;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto; }

#to-top-link {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  margin: 0;
  transition: all .5s ease;
  opacity: 0;
  transform: translateY(200%) scale(0.5); }
  #to-top-link:hover {
    will-change: transform, opacity; }
  #to-top-link.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1); }

#page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #pre-header {
  display: none !important; }

#page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #main-menu-toggle {
  display: block !important;
  height: 4.25rem !important;
  background-color: #000000 !important; }

#page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #page-header-pseudo {
  height: 4.25rem !important; }

#page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #main-off-canvas-menu .off-canvas-top {
  background-color: #000000 !important; }

#page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #page-header {
  top: 0 !important;
  background-color: #000000;
  height: 4.25rem !important; }
  #page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #page-header #main-menu {
    display: none; }
  #page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #page-header #functions-menu {
    display: none; }
  #page:has(#page-main > .slide.ctype-customer_movie_campaign_header:first-of-type) #page-header #main-logo {
    display: none !important; }

/*# sourceMappingURL=app.css.map */
