@charset "UTF-8";
.dimbox-container {
  position: fixed;
  inset: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 56px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 99999;
}

.dimbox-container.dimbox-light {
  color: #000;
}

.dimbox-container.show {
  opacity: 1;
}

.dimbox-container.close-on-overlay-click,
.dimbox-container.close-on-overlay-click .dimbox-figure,
.dimbox-container.close-on-overlay-click .dimbox-video-container,
.dimbox-container.close-on-overlay-click .dimbox-iframe-container,
.dimbox-container.close-on-overlay-click .dimbox-ajax-container,
.dimbox-container.close-on-overlay-click:not(.dimbox-loaded) .dimbox-image {
  cursor: pointer;
}

.dimbox-container * {
  box-sizing: border-box;
}

.dimbox-container::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  background-color: #000;
  opacity: 0.75;
}

.dimbox-container.dimbox-light::before {
  background-color: #fff;
}

.dimbox-container *:active,
.dimbox-container *:focus,
.dimbox-container *:focus-visible {
  outline-style: dotted;
  outline-color: #fff;
  outline-offset: 4px;
}

.dimbox-container.dimbox-light *:active,
.dimbox-container.dimbox-light *:focus,
.dimbox-container.dimbox-light *:focus-visible {
  outline-color: #000;
}

.dimbox-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  border: 4px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0.5;
  animation: spin 1s linear infinite;
}

.dimbox-container.dimbox-light .dimbox-loader {
  border-color: #000;
  border-right-color: transparent;
}

.dimbox-container.dimbox-loaded .dimbox-loader {
  display: none;
}

[class^=dimbox-btn] {
  position: absolute;
  width: 32px;
  height: 32px;
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 0;
  border: none;
  opacity: 0.5;
  cursor: pointer;
}

.dimbox-container.dimbox-light [class^=dimbox-btn] {
  color: #000;
}

.dimbox-buttons {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
}

.dimbox-buttons [class^=dimbox-btn] {
  position: static;
  margin: 0 8px;
}

.dimbox-btn-download {
  order: 1;
}

.dimbox-btn-fullscreen {
  order: 2;
}

.dimbox-btn-close {
  order: 3;
}

[class^=dimbox-btn]:hover,
[class^=dimbox-btn]:active,
[class^=dimbox-btn]:focus {
  color: #fff;
  opacity: 1;
}

.dimbox-container.dimbox-light [class^=dimbox-btn]:hover,
.dimbox-container.dimbox-light [class^=dimbox-btn]:active,
.dimbox-container.dimbox-light [class^=dimbox-btn]:focus {
  color: #000;
}

.dimbox-btn-prev,
.dimbox-btn-next {
  top: 50%;
}

.dimbox-btn-prev {
  left: 8px;
  transform: rotate(180deg) translateY(50%);
}

.dimbox-btn-next {
  right: 8px;
  transform: translateY(-50%);
}

[class^=dimbox-btn] svg {
  width: 32px;
  height: 32px;
}

.dimbox-sequence {
  position: absolute;
  top: 16px;
  left: 16px;
}

.dimbox-thumbnails {
  position: absolute;
  bottom: 16px;
  left: 50%;
  display: flex;
  justify-content: center;
  transition: margin-left 0.5s;
}

.dimbox-thumbnails a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  height: 60px;
  aspect-ratio: 1;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-left: 1rem;
}

.dimbox-thumbnails a:first-child {
  margin-left: 0;
}

.dimbox-thumbnails img,
.dimbox-thumbnails svg {
  height: 60px;
  aspect-ratio: 1;
  object-fit: cover;
}

.dimbox-thumbnails svg {
  width: 2rem;
  height: 2rem;
}

.dimbox-thumbnails > a.current {
  outline: 3px solid #fff;
  outline-offset: 0;
}

.dimbox-thumbnails > a.current:active,
.dimbox-thumbnails > a.current:focus,
.dimbox-thumbnails > a.current:focus-visible {
  outline-width: 1px;
  outline-style: dotted;
  outline-color: #fff;
  outline-offset: 4px;
}

.dimbox-thumbnails > a.current img,
.dimbox-thumbnails > a.current svg {
  opacity: 1;
}

.dimbox-content {
  position: relative;
  max-height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
  cursor: default;
}

.dimbox-container.show .dimbox-content {
  opacity: 1;
}

.dimbox-container.dimbox-gallery .dimbox-content.dimbox-transition-left {
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.dimbox-container.dimbox-gallery .dimbox-content.dimbox-transition-right {
  transform: translateX(50%);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.dimbox-figure,
.dimbox-video-container,
.dimbox-iframe-container {
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: calc(100vh - 88px);
  transition: width 0.5s, height 0.5s;
}

.dimbox-container.has-thumbnails .dimbox-figure,
.dimbox-container.has-thumbnails .dimbox-video-container,
.dimbox-container.has-thumbnails .dimbox-iframe-container {
  max-height: calc(100vh - 88px - 60px);
  margin-top: -30px;
}

.dimbox-iframe-container {
  width: calc(100vw - 112px);
  height: calc(100vh - 88px);
}

.dimbox-ajax-container {
  display: flex;
  flex-direction: column;
}

.dimbox-container.dimbox-loaded .dimbox-figure,
.dimbox-container.dimbox-loaded .dimbox-video-container,
.dimbox-container.dimbox-loaded .dimbox-iframe-container {
  opacity: 1;
}

.dimbox-ajax-content,
.dimbox-inline-content {
  background-color: #fff;
  color: #000;
  max-width: 768px;
  max-height: calc(100vh - 88px);
  padding: 16px;
  overflow: auto;
}

.dimbox-image,
.dimbox-video,
.dimbox-iframe {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  cursor: default;
  transition: width 0.5s, height 0.5s;
}

.dimbox-image,
.dimbox-video {
  object-fit: contain;
}

.dimbox-caption {
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  margin: 8px auto 0 auto;
  cursor: default;
}

.dimbox-container.dimbox-light .dimbox-caption {
  color: #000;
}

.dimbox-iframe {
  border: none;
}

.dimbox-iframe.ratio-16x9 {
  aspect-ratio: 16/9;
}

.dimbox-iframe.ratio-4x3 {
  aspect-ratio: 4/3;
}

.dimbox-iframe.ratio-1x1 {
  aspect-ratio: 1/1;
}

.dimbox-iframe.ratio-9x16 {
  aspect-ratio: 9/16;
}

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

.dimbox-error {
  position: relative;
}

@media (orientation: portrait) {
  .dimbox-container {
    padding: 56px 16px;
  }
  .dimbox-figure,
  .dimbox-video-container {
    max-width: 100%;
    height: 100%;
  }
  .dimbox-iframe-container,
  .dimbox-ajax-container {
    width: 100%;
    height: calc(100vh - 112px);
  }
  .dimbox-inline-content {
    max-height: calc(100vh - 112px);
  }
  .dimbox-image,
  .dimbox-video {
    width: 100%;
    height: auto;
  }
  .dimbox-btn-prev,
  .dimbox-btn-next {
    top: auto;
    bottom: 0;
  }
  .dimbox-container.has-thumbnails .dimbox-btn-prev,
  .dimbox-container.has-thumbnails .dimbox-btn-next {
    bottom: 68px;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-black-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-black-webfont.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-blackitalic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-blackitalic-webfont.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-bold-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-bolditalic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-bolditalic-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-light-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-lightitalic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-lightitalic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-medium-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-mediumitalic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-mediumitalic-webfont.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-regular-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-regularitalic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-regularitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-thin-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-thin-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../fonts/cera-pro/cerapro-thinitalic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cerapro-thinitalic-webfont.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}
/**
 * Fonts
 *
 */
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/**
 * Foundation for Sites
 * Version 6.7.4
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 48.0625em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

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

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

a {
  background-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

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

.foundation-mq {
  font-family: "small=0em&smedium=23.5em&medium=48.0625em&large=64.0625em&xlarge=75.0625em&xxlarge=87.5625em&xxxlarge=100.0625em";
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Cera Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #30363A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.9375rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(13, 17, 18, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0D1112;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
[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 #8a8a8a;
  background-color: #ffffff;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

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

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

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

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

::placeholder {
  color: #8a8a8a !important;
}

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

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

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

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

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #0D1112;
}
label.middle {
  margin: 0 0 1rem;
  line-height: 1.5;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0D1112;
}

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

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

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0D1112;
  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.5rem;
}

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

select {
  height: 2.9375rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1.25rem;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0D1112;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
}
@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 #8a8a8a;
  background-color: #ffffff;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

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

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

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

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

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

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

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

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6, .widget-title {
  font-family: "Cera Pro";
  font-style: normal;
  font-weight: 300;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small, .widget-title small {
  line-height: 0;
  color: #cacaca;
}

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

h2, .h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 2rem;
}

h3, .h3 {
  font-size: 2rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 2rem;
}

h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.1666666667;
  margin-top: 0;
  margin-bottom: 2rem;
}

h5, .h5 {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 2rem;
}

h6, .h6, .widget-title {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 2rem;
}

@media print, screen and (min-width: 48.0625em) {
  h1, .h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
  h2, .h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
  h3, .h3 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
  h4, .h4 {
    font-size: 1.5rem;
    line-height: 1.1666666667;
    margin-bottom: 2rem;
  }
  h5, .h5 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  h6, .h6, .widget-title {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
a {
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: inherit;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 1440px;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

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

li {
  font-size: inherit;
}

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

ol {
  margin-left: 0;
}

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

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

blockquote {
  margin: 0 0 1.5rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
  line-height: 1.5;
  color: #8a8a8a;
}

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

figure {
  margin: 0;
}

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

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

.lead {
  font-size: 20px;
  line-height: 1.6;
}

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

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

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

.code-inline, code {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: #0D1112;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

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

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

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

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

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

@media print, screen and (min-width: 23.5em) {
  .smedium-text-left {
    text-align: left;
  }
  .smedium-text-right {
    text-align: right;
  }
  .smedium-text-center {
    text-align: center;
  }
  .smedium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .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: 64.0625em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 75.0625em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 87.5625em) {
  .xxlarge-text-left {
    text-align: left;
  }
  .xxlarge-text-right {
    text-align: right;
  }
  .xxlarge-text-center {
    text-align: center;
  }
  .xxlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 100.0625em) {
  .xxxlarge-text-left {
    text-align: left;
  }
  .xxxlarge-text-right {
    text-align: right;
  }
  .xxxlarge-text-center {
    text-align: center;
  }
  .xxxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

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

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

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

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

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

@media print, screen and (min-width: 23.5em) {
  .grid-x > .smedium-shrink, .grid-x > .smedium-full, .grid-x > .smedium-1, .grid-x > .smedium-2, .grid-x > .smedium-3, .grid-x > .smedium-4, .grid-x > .smedium-5, .grid-x > .smedium-6, .grid-x > .smedium-7, .grid-x > .smedium-8, .grid-x > .smedium-9, .grid-x > .smedium-10, .grid-x > .smedium-11, .grid-x > .smedium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .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: 64.0625em) {
  .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;
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-x > .xlarge-shrink, .grid-x > .xlarge-full, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-x > .xxlarge-shrink, .grid-x > .xxlarge-full, .grid-x > .xxlarge-1, .grid-x > .xxlarge-2, .grid-x > .xxlarge-3, .grid-x > .xxlarge-4, .grid-x > .xxlarge-5, .grid-x > .xxlarge-6, .grid-x > .xxlarge-7, .grid-x > .xxlarge-8, .grid-x > .xxlarge-9, .grid-x > .xxlarge-10, .grid-x > .xxlarge-11, .grid-x > .xxlarge-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-x > .xxxlarge-shrink, .grid-x > .xxxlarge-full, .grid-x > .xxxlarge-1, .grid-x > .xxxlarge-2, .grid-x > .xxxlarge-3, .grid-x > .xxxlarge-4, .grid-x > .xxxlarge-5, .grid-x > .xxxlarge-6, .grid-x > .xxxlarge-7, .grid-x > .xxxlarge-8, .grid-x > .xxxlarge-9, .grid-x > .xxxlarge-10, .grid-x > .xxxlarge-11, .grid-x > .xxxlarge-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 23.5em) {
  .grid-x > .smedium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .smedium-12, .grid-x > .smedium-11, .grid-x > .smedium-10, .grid-x > .smedium-9, .grid-x > .smedium-8, .grid-x > .smedium-7, .grid-x > .smedium-6, .grid-x > .smedium-5, .grid-x > .smedium-4, .grid-x > .smedium-3, .grid-x > .smedium-2, .grid-x > .smedium-1, .grid-x > .smedium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .smedium-shrink {
    width: auto;
  }
  .grid-x > .smedium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .smedium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .smedium-3 {
    width: 25%;
  }
  .grid-x > .smedium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .smedium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .smedium-6 {
    width: 50%;
  }
  .grid-x > .smedium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .smedium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .smedium-9 {
    width: 75%;
  }
  .grid-x > .smedium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .smedium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .smedium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-x > .xlarge-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .xlarge-12, .grid-x > .xlarge-11, .grid-x > .xlarge-10, .grid-x > .xlarge-9, .grid-x > .xlarge-8, .grid-x > .xlarge-7, .grid-x > .xlarge-6, .grid-x > .xlarge-5, .grid-x > .xlarge-4, .grid-x > .xlarge-3, .grid-x > .xlarge-2, .grid-x > .xlarge-1, .grid-x > .xlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .xlarge-shrink {
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-x > .xxlarge-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .xxlarge-12, .grid-x > .xxlarge-11, .grid-x > .xxlarge-10, .grid-x > .xxlarge-9, .grid-x > .xxlarge-8, .grid-x > .xxlarge-7, .grid-x > .xxlarge-6, .grid-x > .xxlarge-5, .grid-x > .xxlarge-4, .grid-x > .xxlarge-3, .grid-x > .xxlarge-2, .grid-x > .xxlarge-1, .grid-x > .xxlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-x > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-x > .xxxlarge-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .xxxlarge-12, .grid-x > .xxxlarge-11, .grid-x > .xxxlarge-10, .grid-x > .xxxlarge-9, .grid-x > .xxxlarge-8, .grid-x > .xxxlarge-7, .grid-x > .xxxlarge-6, .grid-x > .xxxlarge-5, .grid-x > .xxxlarge-4, .grid-x > .xxxlarge-3, .grid-x > .xxxlarge-2, .grid-x > .xxxlarge-1, .grid-x > .xxxlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .xxxlarge-shrink {
    width: auto;
  }
  .grid-x > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xxxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xxxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xxxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xxxlarge-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: 48.0625em) {
  .grid-margin-x {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-x > .cell {
    width: calc(100% - 2.5rem);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.25rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.25rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.25rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.25rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.25rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.25rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.25rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.25rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 23.5em) {
  .grid-margin-x > .smedium-auto {
    width: auto;
  }
  .grid-margin-x > .smedium-shrink {
    width: auto;
  }
  .grid-margin-x > .smedium-1 {
    width: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-x > .smedium-2 {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x > .smedium-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x > .smedium-4 {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x > .smedium-5 {
    width: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-x > .smedium-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x > .smedium-7 {
    width: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-x > .smedium-8 {
    width: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-x > .smedium-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x > .smedium-10 {
    width: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-x > .smedium-11 {
    width: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-x > .smedium-12 {
    width: calc(100% - 1.25rem);
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 2.5rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x > .smedium-auto {
    width: auto;
  }
  .grid-margin-x > .smedium-shrink {
    width: auto;
  }
  .grid-margin-x > .smedium-1 {
    width: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-x > .smedium-2 {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x > .smedium-3 {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x > .smedium-4 {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x > .smedium-5 {
    width: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-x > .smedium-6 {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x > .smedium-7 {
    width: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-x > .smedium-8 {
    width: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-x > .smedium-9 {
    width: calc(75% - 2.5rem);
  }
  .grid-margin-x > .smedium-10 {
    width: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-x > .smedium-11 {
    width: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-x > .smedium-12 {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 2.5rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 2.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 2.5rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-margin-x > .xlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 2.5rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-margin-x > .xxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxlarge-1 {
    width: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-2 {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-3 {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-4 {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-5 {
    width: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-6 {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-7 {
    width: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-8 {
    width: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-9 {
    width: calc(75% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-10 {
    width: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-11 {
    width: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxlarge-12 {
    width: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-margin-x > .xxxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxxlarge-1 {
    width: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-2 {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-3 {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-4 {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-5 {
    width: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-6 {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-7 {
    width: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-8 {
    width: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-9 {
    width: calc(75% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-10 {
    width: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-11 {
    width: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-x > .xxxlarge-12 {
    width: calc(100% - 2.5rem);
  }
}

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 23.5em) {
  .smedium-up-1 > .cell {
    width: 100%;
  }
  .smedium-up-2 > .cell {
    width: 50%;
  }
  .smedium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .smedium-up-4 > .cell {
    width: 25%;
  }
  .smedium-up-5 > .cell {
    width: 20%;
  }
  .smedium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .smedium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .smedium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 75.0625em) {
  .xlarge-up-1 > .cell {
    width: 100%;
  }
  .xlarge-up-2 > .cell {
    width: 50%;
  }
  .xlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xlarge-up-4 > .cell {
    width: 25%;
  }
  .xlarge-up-5 > .cell {
    width: 20%;
  }
  .xlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 87.5625em) {
  .xxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xxlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xxlarge-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 100.0625em) {
  .xxxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxxlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xxxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxxlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xxxlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xxxlarge-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.3333333333% - 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.6666666667% - 1.25rem);
}

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

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

@media print, screen and (min-width: 23.5em) {
  .grid-margin-x.smedium-up-1 > .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.smedium-up-2 > .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.smedium-up-3 > .cell {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x.smedium-up-4 > .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.smedium-up-5 > .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.smedium-up-6 > .cell {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x.smedium-up-7 > .cell {
    width: calc(14.2857142857% - 1.25rem);
  }
  .grid-margin-x.smedium-up-8 > .cell {
    width: calc(12.5% - 1.25rem);
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 2.5rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 2.5rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 2.5rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 2.5rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 2.5rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 2.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 2.5rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 2.5rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 2.5rem);
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 2.5rem);
  }
  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2.5rem);
  }
  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 2.5rem);
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-margin-x.xxlarge-up-1 > .cell {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x.xxlarge-up-2 > .cell {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x.xxlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x.xxlarge-up-4 > .cell {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x.xxlarge-up-5 > .cell {
    width: calc(20% - 2.5rem);
  }
  .grid-margin-x.xxlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x.xxlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2.5rem);
  }
  .grid-margin-x.xxlarge-up-8 > .cell {
    width: calc(12.5% - 2.5rem);
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-margin-x.xxxlarge-up-1 > .cell {
    width: calc(100% - 2.5rem);
  }
  .grid-margin-x.xxxlarge-up-2 > .cell {
    width: calc(50% - 2.5rem);
  }
  .grid-margin-x.xxxlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-x.xxxlarge-up-4 > .cell {
    width: calc(25% - 2.5rem);
  }
  .grid-margin-x.xxxlarge-up-5 > .cell {
    width: calc(20% - 2.5rem);
  }
  .grid-margin-x.xxxlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-x.xxxlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2.5rem);
  }
  .grid-margin-x.xxxlarge-up-8 > .cell {
    width: calc(12.5% - 2.5rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 23.5em) {
  .small-margin-collapse > .smedium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .smedium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .smedium-3 {
    width: 25%;
  }
  .small-margin-collapse > .smedium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .smedium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .smedium-6 {
    width: 50%;
  }
  .small-margin-collapse > .smedium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .smedium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .smedium-9 {
    width: 75%;
  }
  .small-margin-collapse > .smedium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .smedium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .smedium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75.0625em) {
  .small-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5625em) {
  .small-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 100.0625em) {
  .small-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xxxlarge-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: 23.5em) {
  .smedium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .smedium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 23.5em) {
  .smedium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .smedium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .smedium-margin-collapse > .small-3 {
    width: 25%;
  }
  .smedium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .smedium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .smedium-margin-collapse > .small-6 {
    width: 50%;
  }
  .smedium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .smedium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .smedium-margin-collapse > .small-9 {
    width: 75%;
  }
  .smedium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .smedium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .smedium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 23.5em) {
  .smedium-margin-collapse > .smedium-1 {
    width: 8.3333333333%;
  }
  .smedium-margin-collapse > .smedium-2 {
    width: 16.6666666667%;
  }
  .smedium-margin-collapse > .smedium-3 {
    width: 25%;
  }
  .smedium-margin-collapse > .smedium-4 {
    width: 33.3333333333%;
  }
  .smedium-margin-collapse > .smedium-5 {
    width: 41.6666666667%;
  }
  .smedium-margin-collapse > .smedium-6 {
    width: 50%;
  }
  .smedium-margin-collapse > .smedium-7 {
    width: 58.3333333333%;
  }
  .smedium-margin-collapse > .smedium-8 {
    width: 66.6666666667%;
  }
  .smedium-margin-collapse > .smedium-9 {
    width: 75%;
  }
  .smedium-margin-collapse > .smedium-10 {
    width: 83.3333333333%;
  }
  .smedium-margin-collapse > .smedium-11 {
    width: 91.6666666667%;
  }
  .smedium-margin-collapse > .smedium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .smedium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .smedium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .smedium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .smedium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .smedium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .smedium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .smedium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .smedium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .smedium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .smedium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .smedium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .smedium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .smedium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .smedium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .smedium-margin-collapse > .large-3 {
    width: 25%;
  }
  .smedium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .smedium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .smedium-margin-collapse > .large-6 {
    width: 50%;
  }
  .smedium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .smedium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .smedium-margin-collapse > .large-9 {
    width: 75%;
  }
  .smedium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .smedium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .smedium-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75.0625em) {
  .smedium-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .smedium-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .smedium-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .smedium-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .smedium-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .smedium-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .smedium-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .smedium-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .smedium-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .smedium-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .smedium-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .smedium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5625em) {
  .smedium-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .smedium-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .smedium-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .smedium-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .smedium-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .smedium-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .smedium-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .smedium-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .smedium-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .smedium-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .smedium-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .smedium-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 100.0625em) {
  .smedium-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .smedium-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .smedium-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .smedium-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .smedium-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .smedium-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .smedium-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .smedium-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .smedium-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .smedium-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .smedium-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .smedium-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}

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

@media print, screen and (min-width: 48.0625em) {
  .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: 48.0625em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .medium-margin-collapse > .smedium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .smedium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .smedium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .smedium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .smedium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .smedium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .smedium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .smedium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .smedium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .smedium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .smedium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .smedium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75.0625em) {
  .medium-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5625em) {
  .medium-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 100.0625em) {
  .medium-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 48.0625em) {
  .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: 64.0625em) {
  .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: 64.0625em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .large-margin-collapse > .smedium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .smedium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .smedium-3 {
    width: 25%;
  }
  .large-margin-collapse > .smedium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .smedium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .smedium-6 {
    width: 50%;
  }
  .large-margin-collapse > .smedium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .smedium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .smedium-9 {
    width: 75%;
  }
  .large-margin-collapse > .smedium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .smedium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .smedium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75.0625em) {
  .large-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5625em) {
  .large-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 100.0625em) {
  .large-margin-collapse > .xxxlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxxlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxxlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxxlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xxxlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xxxlarge-12 {
    width: 100%;
  }
}

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

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

@media screen and (min-width: 75.0625em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

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

@media screen and (min-width: 87.5625em) {
  .xxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

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

@media screen and (min-width: 100.0625em) {
  .xxxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 23.5em) {
  .smedium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .smedium-offset-0 {
    margin-left: calc(0% + 1.25rem / 2);
  }
  .smedium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .smedium-offset-1 {
    margin-left: calc(8.3333333333% + 1.25rem / 2);
  }
  .smedium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .smedium-offset-2 {
    margin-left: calc(16.6666666667% + 1.25rem / 2);
  }
  .smedium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .smedium-offset-3 {
    margin-left: calc(25% + 1.25rem / 2);
  }
  .smedium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .smedium-offset-4 {
    margin-left: calc(33.3333333333% + 1.25rem / 2);
  }
  .smedium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .smedium-offset-5 {
    margin-left: calc(41.6666666667% + 1.25rem / 2);
  }
  .smedium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .smedium-offset-6 {
    margin-left: calc(50% + 1.25rem / 2);
  }
  .smedium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .smedium-offset-7 {
    margin-left: calc(58.3333333333% + 1.25rem / 2);
  }
  .smedium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .smedium-offset-8 {
    margin-left: calc(66.6666666667% + 1.25rem / 2);
  }
  .smedium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .smedium-offset-9 {
    margin-left: calc(75% + 1.25rem / 2);
  }
  .smedium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .smedium-offset-10 {
    margin-left: calc(83.3333333333% + 1.25rem / 2);
  }
  .smedium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .smedium-offset-11 {
    margin-left: calc(91.6666666667% + 1.25rem / 2);
  }
}
@media print, screen and (min-width: 48.0625em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 2.5rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 2.5rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 2.5rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 2.5rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 2.5rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 2.5rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 2.5rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 2.5rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 2.5rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 2.5rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 2.5rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 2.5rem / 2);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 2.5rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 2.5rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 2.5rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 2.5rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 2.5rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 2.5rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 2.5rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 2.5rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 2.5rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 2.5rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 2.5rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 2.5rem / 2);
  }
}
@media screen and (min-width: 75.0625em) {
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 2.5rem / 2);
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.3333333333% + 2.5rem / 2);
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.6666666667% + 2.5rem / 2);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 2.5rem / 2);
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.3333333333% + 2.5rem / 2);
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.6666666667% + 2.5rem / 2);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 2.5rem / 2);
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.3333333333% + 2.5rem / 2);
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.6666666667% + 2.5rem / 2);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 2.5rem / 2);
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.3333333333% + 2.5rem / 2);
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.6666666667% + 2.5rem / 2);
  }
}
@media screen and (min-width: 87.5625em) {
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxlarge-offset-0 {
    margin-left: calc(0% + 2.5rem / 2);
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-1 {
    margin-left: calc(8.3333333333% + 2.5rem / 2);
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-2 {
    margin-left: calc(16.6666666667% + 2.5rem / 2);
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxlarge-offset-3 {
    margin-left: calc(25% + 2.5rem / 2);
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-4 {
    margin-left: calc(33.3333333333% + 2.5rem / 2);
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-5 {
    margin-left: calc(41.6666666667% + 2.5rem / 2);
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxlarge-offset-6 {
    margin-left: calc(50% + 2.5rem / 2);
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-7 {
    margin-left: calc(58.3333333333% + 2.5rem / 2);
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-8 {
    margin-left: calc(66.6666666667% + 2.5rem / 2);
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxlarge-offset-9 {
    margin-left: calc(75% + 2.5rem / 2);
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-10 {
    margin-left: calc(83.3333333333% + 2.5rem / 2);
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-11 {
    margin-left: calc(91.6666666667% + 2.5rem / 2);
  }
}
@media screen and (min-width: 100.0625em) {
  .xxxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxxlarge-offset-0 {
    margin-left: calc(0% + 2.5rem / 2);
  }
  .xxxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-1 {
    margin-left: calc(8.3333333333% + 2.5rem / 2);
  }
  .xxxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-2 {
    margin-left: calc(16.6666666667% + 2.5rem / 2);
  }
  .xxxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxxlarge-offset-3 {
    margin-left: calc(25% + 2.5rem / 2);
  }
  .xxxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-4 {
    margin-left: calc(33.3333333333% + 2.5rem / 2);
  }
  .xxxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-5 {
    margin-left: calc(41.6666666667% + 2.5rem / 2);
  }
  .xxxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxxlarge-offset-6 {
    margin-left: calc(50% + 2.5rem / 2);
  }
  .xxxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-7 {
    margin-left: calc(58.3333333333% + 2.5rem / 2);
  }
  .xxxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-8 {
    margin-left: calc(66.6666666667% + 2.5rem / 2);
  }
  .xxxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxxlarge-offset-9 {
    margin-left: calc(75% + 2.5rem / 2);
  }
  .xxxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xxxlarge-offset-10 {
    margin-left: calc(83.3333333333% + 2.5rem / 2);
  }
  .xxxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xxxlarge-offset-11 {
    margin-left: calc(91.6666666667% + 2.5rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 23.5em) {
  .grid-y > .smedium-shrink, .grid-y > .smedium-full, .grid-y > .smedium-1, .grid-y > .smedium-2, .grid-y > .smedium-3, .grid-y > .smedium-4, .grid-y > .smedium-5, .grid-y > .smedium-6, .grid-y > .smedium-7, .grid-y > .smedium-8, .grid-y > .smedium-9, .grid-y > .smedium-10, .grid-y > .smedium-11, .grid-y > .smedium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .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: 64.0625em) {
  .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;
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-y > .xlarge-shrink, .grid-y > .xlarge-full, .grid-y > .xlarge-1, .grid-y > .xlarge-2, .grid-y > .xlarge-3, .grid-y > .xlarge-4, .grid-y > .xlarge-5, .grid-y > .xlarge-6, .grid-y > .xlarge-7, .grid-y > .xlarge-8, .grid-y > .xlarge-9, .grid-y > .xlarge-10, .grid-y > .xlarge-11, .grid-y > .xlarge-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-y > .xxlarge-shrink, .grid-y > .xxlarge-full, .grid-y > .xxlarge-1, .grid-y > .xxlarge-2, .grid-y > .xxlarge-3, .grid-y > .xxlarge-4, .grid-y > .xxlarge-5, .grid-y > .xxlarge-6, .grid-y > .xxlarge-7, .grid-y > .xxlarge-8, .grid-y > .xxlarge-9, .grid-y > .xxlarge-10, .grid-y > .xxlarge-11, .grid-y > .xxlarge-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-y > .xxxlarge-shrink, .grid-y > .xxxlarge-full, .grid-y > .xxxlarge-1, .grid-y > .xxxlarge-2, .grid-y > .xxxlarge-3, .grid-y > .xxxlarge-4, .grid-y > .xxxlarge-5, .grid-y > .xxxlarge-6, .grid-y > .xxxlarge-7, .grid-y > .xxxlarge-8, .grid-y > .xxxlarge-9, .grid-y > .xxxlarge-10, .grid-y > .xxxlarge-11, .grid-y > .xxxlarge-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 23.5em) {
  .grid-y > .smedium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .smedium-12, .grid-y > .smedium-11, .grid-y > .smedium-10, .grid-y > .smedium-9, .grid-y > .smedium-8, .grid-y > .smedium-7, .grid-y > .smedium-6, .grid-y > .smedium-5, .grid-y > .smedium-4, .grid-y > .smedium-3, .grid-y > .smedium-2, .grid-y > .smedium-1, .grid-y > .smedium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .smedium-shrink {
    height: auto;
  }
  .grid-y > .smedium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .smedium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .smedium-3 {
    height: 25%;
  }
  .grid-y > .smedium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .smedium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .smedium-6 {
    height: 50%;
  }
  .grid-y > .smedium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .smedium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .smedium-9 {
    height: 75%;
  }
  .grid-y > .smedium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .smedium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .smedium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-y > .xlarge-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .xlarge-12, .grid-y > .xlarge-11, .grid-y > .xlarge-10, .grid-y > .xlarge-9, .grid-y > .xlarge-8, .grid-y > .xlarge-7, .grid-y > .xlarge-6, .grid-y > .xlarge-5, .grid-y > .xlarge-4, .grid-y > .xlarge-3, .grid-y > .xlarge-2, .grid-y > .xlarge-1, .grid-y > .xlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .xlarge-shrink {
    height: auto;
  }
  .grid-y > .xlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xlarge-3 {
    height: 25%;
  }
  .grid-y > .xlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xlarge-6 {
    height: 50%;
  }
  .grid-y > .xlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xlarge-9 {
    height: 75%;
  }
  .grid-y > .xlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xlarge-12 {
    height: 100%;
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-y > .xxlarge-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .xxlarge-12, .grid-y > .xxlarge-11, .grid-y > .xxlarge-10, .grid-y > .xxlarge-9, .grid-y > .xxlarge-8, .grid-y > .xxlarge-7, .grid-y > .xxlarge-6, .grid-y > .xxlarge-5, .grid-y > .xxlarge-4, .grid-y > .xxlarge-3, .grid-y > .xxlarge-2, .grid-y > .xxlarge-1, .grid-y > .xxlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xxlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xxlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xxlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xxlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xxlarge-12 {
    height: 100%;
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-y > .xxxlarge-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .xxxlarge-12, .grid-y > .xxxlarge-11, .grid-y > .xxxlarge-10, .grid-y > .xxxlarge-9, .grid-y > .xxxlarge-8, .grid-y > .xxxlarge-7, .grid-y > .xxxlarge-6, .grid-y > .xxxlarge-5, .grid-y > .xxxlarge-4, .grid-y > .xxxlarge-3, .grid-y > .xxxlarge-2, .grid-y > .xxxlarge-1, .grid-y > .xxxlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxxlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xxxlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xxxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxxlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xxxlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xxxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxxlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xxxlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xxxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxxlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xxxlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xxxlarge-12 {
    height: 100%;
  }
}

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

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-y {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2.5rem);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 23.5em) {
  .grid-margin-y > .smedium-auto {
    height: auto;
  }
  .grid-margin-y > .smedium-shrink {
    height: auto;
  }
  .grid-margin-y > .smedium-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y > .smedium-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y > .smedium-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y > .smedium-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-12 {
    height: calc(100% - 1.25rem);
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2.5rem);
  }
  .grid-margin-y > .smedium-auto {
    height: auto;
  }
  .grid-margin-y > .smedium-shrink {
    height: auto;
  }
  .grid-margin-y > .smedium-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .smedium-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .smedium-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .smedium-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-12 {
    height: calc(100% - 2.5rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-margin-y > .xxxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-12 {
    height: calc(100% - 2.5rem);
  }
}

.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: 23.5em) {
  .smedium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .smedium-grid-frame {
    width: 100%;
  }
  .smedium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .smedium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .smedium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .smedium-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: 48.0625em) {
  .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: 64.0625em) {
  .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;
  }
}
@media screen and (min-width: 75.0625em) {
  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xlarge-grid-frame {
    width: 100%;
  }
  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xlarge-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .xlarge-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 87.5625em) {
  .xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xxlarge-grid-frame {
    width: 100%;
  }
  .xxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xxlarge-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .xxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .xxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 100.0625em) {
  .xxxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xxxlarge-grid-frame {
    width: 100%;
  }
  .xxxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xxxlarge-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .xxxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .xxxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 23.5em) {
  .grid-y.smedium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-y.xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-y.xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-y.xxxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 23.5em) {
  .cell .grid-y.smedium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 75.0625em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 87.5625em) {
  .cell .grid-y.xxlarge-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 100.0625em) {
  .cell .grid-y.xxxlarge-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-y {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2.5rem);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 23.5em) {
  .grid-margin-y > .smedium-auto {
    height: auto;
  }
  .grid-margin-y > .smedium-shrink {
    height: auto;
  }
  .grid-margin-y > .smedium-1 {
    height: calc(8.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-2 {
    height: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y > .smedium-4 {
    height: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-5 {
    height: calc(41.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y > .smedium-7 {
    height: calc(58.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-8 {
    height: calc(66.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y > .smedium-10 {
    height: calc(83.3333333333% - 1.25rem);
  }
  .grid-margin-y > .smedium-11 {
    height: calc(91.6666666667% - 1.25rem);
  }
  .grid-margin-y > .smedium-12 {
    height: calc(100% - 1.25rem);
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2.5rem);
  }
  .grid-margin-y > .smedium-auto {
    height: auto;
  }
  .grid-margin-y > .smedium-shrink {
    height: auto;
  }
  .grid-margin-y > .smedium-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .smedium-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .smedium-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .smedium-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .smedium-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .smedium-12 {
    height: calc(100% - 2.5rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-margin-y > .xxxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxxlarge-1 {
    height: calc(8.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-2 {
    height: calc(16.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-3 {
    height: calc(25% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-4 {
    height: calc(33.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-5 {
    height: calc(41.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-6 {
    height: calc(50% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-7 {
    height: calc(58.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-8 {
    height: calc(66.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-9 {
    height: calc(75% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-10 {
    height: calc(83.3333333333% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-11 {
    height: calc(91.6666666667% - 2.5rem);
  }
  .grid-margin-y > .xxxlarge-12 {
    height: calc(100% - 2.5rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 23.5em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.25rem);
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2.5rem);
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2.5rem);
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2.5rem);
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2.5rem);
  }
}

@media print, screen and (min-width: 23.5em) {
  .grid-margin-y.smedium-grid-frame {
    height: calc(100vh + 1.25rem);
  }
}
@media print, screen and (min-width: 48.0625em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 2.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 2.5rem);
  }
}
@media screen and (min-width: 75.0625em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 2.5rem);
  }
}
@media screen and (min-width: 87.5625em) {
  .grid-margin-y.xxlarge-grid-frame {
    height: calc(100vh + 2.5rem);
  }
}
@media screen and (min-width: 100.0625em) {
  .grid-margin-y.xxxlarge-grid-frame {
    height: calc(100vh + 2.5rem);
  }
}
.button, .searchform [type=submit] {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  border: none;
  border-radius: 0.25rem;
  transition: background-color 0.1s ease-out, color 0.1s ease-out;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  padding: 0.75rem;
}
[data-whatinput=mouse] .button, [data-whatinput=mouse] .searchform [type=submit], .searchform [data-whatinput=mouse] [type=submit] {
  outline: 0;
}
.button.tiny, .searchform .tiny[type=submit] {
  font-size: 0.6rem;
}
.button.small, .searchform .small[type=submit] {
  font-size: 0.75rem;
}
.button.large, .searchform .large[type=submit] {
  font-size: 1.25rem;
}
.button.expanded, .searchform .expanded[type=submit] {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .searchform [type=submit], .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #FC003B;
  color: #ffffff;
}
.button:hover, .searchform [type=submit]:hover, .button:focus, .searchform [type=submit]:focus {
  background-color: #FC003B;
  color: #ffffff;
}
.button.primary, .searchform .primary[type=submit], .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #FC003B;
  color: #ffffff;
}
.button.primary:hover, .searchform .primary[type=submit]:hover, .button.primary:focus, .searchform .primary[type=submit]:focus {
  background-color: #fc003b;
  color: #ffffff;
}
.button.secondary, .searchform .secondary[type=submit], .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #30363A;
  color: #ffffff;
}
.button.secondary:hover, .searchform .secondary[type=submit]:hover, .button.secondary:focus, .searchform .secondary[type=submit]:focus {
  background-color: #30363a;
  color: #ffffff;
}
.button.tertiary, .searchform .tertiary[type=submit], .button.tertiary.disabled, .button.tertiary[disabled], .button.tertiary.disabled:hover, .button.tertiary[disabled]:hover, .button.tertiary.disabled:focus, .button.tertiary[disabled]:focus {
  background-color: #FFFFFF;
  color: #FC003B;
}
.button.tertiary:hover, .searchform .tertiary[type=submit]:hover, .button.tertiary:focus, .searchform .tertiary[type=submit]:focus {
  background-color: white;
  color: #FC003B;
}
.button.success, .searchform .success[type=submit], .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: #3adb76;
  color: #FC003B;
}
.button.success:hover, .searchform .success[type=submit]:hover, .button.success:focus, .searchform .success[type=submit]:focus {
  background-color: #3adb76;
  color: #FC003B;
}
.button.warning, .searchform .warning[type=submit], .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #FC003B;
}
.button.warning:hover, .searchform .warning[type=submit]:hover, .button.warning:focus, .searchform .warning[type=submit]:focus {
  background-color: #ffae00;
  color: #FC003B;
}
.button.alert, .searchform .alert[type=submit], .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #ffffff;
}
.button.alert:hover, .searchform .alert[type=submit]:hover, .button.alert:focus, .searchform .alert[type=submit]:focus {
  background-color: #cc4b37;
  color: #ffffff;
}
.button.hollow, .searchform .hollow[type=submit], .button.hollow:hover, .button.hollow:focus, .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, .searchform .hollow[type=submit], .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 2px solid #FC003B;
  color: #FC003B;
}
.button.hollow:hover, .searchform .hollow[type=submit]:hover, .button.hollow:focus, .searchform .hollow[type=submit]:focus {
  border-color: #fc003b;
  color: #fc003b;
}
.button.hollow.primary, .searchform .hollow.primary[type=submit], .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 2px solid #FC003B;
  color: #FC003B;
}
.button.hollow.primary:hover, .searchform .hollow.primary[type=submit]:hover, .button.hollow.primary:focus, .searchform .hollow.primary[type=submit]:focus {
  border-color: #fc003b;
  color: #fc003b;
}
.button.hollow.secondary, .searchform .hollow.secondary[type=submit], .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 2px solid #30363A;
  color: #30363A;
}
.button.hollow.secondary:hover, .searchform .hollow.secondary[type=submit]:hover, .button.hollow.secondary:focus, .searchform .hollow.secondary[type=submit]:focus {
  border-color: #30363a;
  color: #30363a;
}
.button.hollow.tertiary, .searchform .hollow.tertiary[type=submit], .button.hollow.tertiary.disabled, .button.hollow.tertiary[disabled], .button.hollow.tertiary.disabled:hover, .button.hollow.tertiary[disabled]:hover, .button.hollow.tertiary.disabled:focus, .button.hollow.tertiary[disabled]:focus {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.button.hollow.tertiary:hover, .searchform .hollow.tertiary[type=submit]:hover, .button.hollow.tertiary:focus, .searchform .hollow.tertiary[type=submit]:focus {
  border-color: white;
  color: white;
}
.button.hollow.success, .searchform .hollow.success[type=submit], .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 2px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .searchform .hollow.success[type=submit]:hover, .button.hollow.success:focus, .searchform .hollow.success[type=submit]:focus {
  border-color: #3adb76;
  color: #3adb76;
}
.button.hollow.warning, .searchform .hollow.warning[type=submit], .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 2px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .searchform .hollow.warning[type=submit]:hover, .button.hollow.warning:focus, .searchform .hollow.warning[type=submit]:focus {
  border-color: #ffae00;
  color: #ffae00;
}
.button.hollow.alert, .searchform .hollow.alert[type=submit], .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 2px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .searchform .hollow.alert[type=submit]:hover, .button.hollow.alert:focus, .searchform .hollow.alert[type=submit]:focus {
  border-color: #cc4b37;
  color: #cc4b37;
}
.button.clear, .searchform .clear[type=submit], .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .searchform .clear[type=submit], .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #FC003B;
}
.button.clear:hover, .searchform .clear[type=submit]:hover, .button.clear:focus, .searchform .clear[type=submit]:focus {
  color: #fc003b;
}
.button.clear.primary, .searchform .clear.primary[type=submit], .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #FC003B;
}
.button.clear.primary:hover, .searchform .clear.primary[type=submit]:hover, .button.clear.primary:focus, .searchform .clear.primary[type=submit]:focus {
  color: #fc003b;
}
.button.clear.secondary, .searchform .clear.secondary[type=submit], .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #30363A;
}
.button.clear.secondary:hover, .searchform .clear.secondary[type=submit]:hover, .button.clear.secondary:focus, .searchform .clear.secondary[type=submit]:focus {
  color: #30363a;
}
.button.clear.tertiary, .searchform .clear.tertiary[type=submit], .button.clear.tertiary.disabled, .button.clear.tertiary[disabled], .button.clear.tertiary.disabled:hover, .button.clear.tertiary[disabled]:hover, .button.clear.tertiary.disabled:focus, .button.clear.tertiary[disabled]:focus {
  color: #FFFFFF;
}
.button.clear.tertiary:hover, .searchform .clear.tertiary[type=submit]:hover, .button.clear.tertiary:focus, .searchform .clear.tertiary[type=submit]:focus {
  color: white;
}
.button.clear.success, .searchform .clear.success[type=submit], .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .searchform .clear.success[type=submit]:hover, .button.clear.success:focus, .searchform .clear.success[type=submit]:focus {
  color: #3adb76;
}
.button.clear.warning, .searchform .clear.warning[type=submit], .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .searchform .clear.warning[type=submit]:hover, .button.clear.warning:focus, .searchform .clear.warning[type=submit]:focus {
  color: #ffae00;
}
.button.clear.alert, .searchform .clear.alert[type=submit], .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .searchform .clear.alert[type=submit]:hover, .button.clear.alert:focus, .searchform .clear.alert[type=submit]:focus {
  color: #cc4b37;
}
.button.disabled, .searchform .disabled[type=submit], .button[disabled], .searchform [disabled][type=submit] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after, .searchform .dropdown[type=submit]::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 0.75rem;
}
.button.dropdown.hollow::after, .searchform .dropdown.hollow[type=submit]::after, .button.dropdown.clear::after, .searchform .dropdown.clear[type=submit]::after {
  border-top-color: #FC003B;
}
.button.dropdown.hollow.primary::after, .searchform .dropdown.hollow.primary[type=submit]::after, .button.dropdown.clear.primary::after, .searchform .dropdown.clear.primary[type=submit]::after {
  border-top-color: #FC003B;
}
.button.dropdown.hollow.secondary::after, .searchform .dropdown.hollow.secondary[type=submit]::after, .button.dropdown.clear.secondary::after, .searchform .dropdown.clear.secondary[type=submit]::after {
  border-top-color: #30363A;
}
.button.dropdown.hollow.tertiary::after, .searchform .dropdown.hollow.tertiary[type=submit]::after, .button.dropdown.clear.tertiary::after, .searchform .dropdown.clear.tertiary[type=submit]::after {
  border-top-color: #FFFFFF;
}
.button.dropdown.hollow.success::after, .searchform .dropdown.hollow.success[type=submit]::after, .button.dropdown.clear.success::after, .searchform .dropdown.clear.success[type=submit]::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .searchform .dropdown.hollow.warning[type=submit]::after, .button.dropdown.clear.warning::after, .searchform .dropdown.clear.warning[type=submit]::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .searchform .dropdown.hollow.alert[type=submit]::after, .button.dropdown.clear.alert::after, .searchform .dropdown.clear.alert[type=submit]::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after, .searchform .arrow-only[type=submit]::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, .searchform a[type=submit]:hover, a.button:focus, .searchform a[type=submit]:focus {
  text-decoration: none;
}

.close-button {
  position: absolute;
  z-index: 10;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #0D1112;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

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

.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: #FC003B;
  color: #ffffff;
}
.label.primary {
  background: #FC003B;
  color: #ffffff;
}
.label.secondary {
  background: #30363A;
  color: #ffffff;
}
.label.tertiary {
  background: #FFFFFF;
  color: #0D1112;
}
.label.success {
  background: #3adb76;
  color: #0D1112;
}
.label.warning {
  background: #ffae00;
  color: #0D1112;
}
.label.alert {
  background: #cc4b37;
  color: #ffffff;
}

.progress {
  height: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0;
  background-color: #cacaca;
}
.progress.primary .progress-meter {
  background-color: #FC003B;
}
.progress.secondary .progress-meter {
  background-color: #30363A;
}
.progress.tertiary .progress-meter {
  background-color: #FFFFFF;
}
.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: #FC003B;
}

.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: #e6e6e6;
  cursor: pointer;
  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: #cacaca;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

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

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

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

.switch {
  position: relative;
  margin-bottom: 1.5rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
  user-select: none;
  height: 2rem;
}

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

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #cacaca;
  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: #FC003B;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
input:focus-visible ~ .switch-paddle {
  background: rgb(181.8, 181.8, 181.8);
}
input:focus-visible ~ .switch-paddle::after {
  background: #ffffff;
}
input:checked:focus-visible ~ .switch-paddle {
  background: rgb(214.2, 0, 50.15);
}
input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  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: 1.5rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid rgb(244.8, 244.8, 244.8);
  background-color: #ffffff;
}

caption {
  padding: 0.625rem;
  font-weight: 700;
}

thead {
  background: rgb(244.8, 244.8, 244.8);
  color: #30363A;
}

tfoot {
  background: rgb(244.8, 244.8, 244.8);
  color: #30363A;
}

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

tbody th,
tbody td {
  padding: 0.625rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: rgb(244.8, 244.8, 244.8);
}

table.unstriped tbody {
  background-color: #ffffff;
}
table.unstriped tbody tr {
  border-bottom: 1px solid rgb(244.8, 244.8, 244.8);
  background-color: #ffffff;
}

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

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

table.hover thead tr:hover {
  background-color: rgb(239.7, 239.7, 239.7);
}
table.hover tfoot tr:hover {
  background-color: rgb(239.7, 239.7, 239.7);
}
table.hover tbody tr:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: rgb(242.25, 242.25, 242.25);
}

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

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #FC003B;
  color: #ffffff;
}
.badge.primary {
  background: #FC003B;
  color: #ffffff;
}
.badge.secondary {
  background: #30363A;
  color: #ffffff;
}
.badge.tertiary {
  background: #FFFFFF;
  color: #0D1112;
}
.badge.success {
  background: #3adb76;
  color: #0D1112;
}
.badge.warning {
  background: #ffae00;
  color: #0D1112;
}
.badge.alert {
  background: #cc4b37;
  color: #ffffff;
}

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

.callout {
  background-color: white;
  color: #30363A;
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(13, 17, 18, 0.25);
  border-radius: 0;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: rgb(255, 216.3, 225.3607142857);
  color: #30363A;
}
.callout.secondary {
  background-color: rgb(221.841509434, 225.2716981132, 227.558490566);
  color: #30363A;
}
.callout.tertiary {
  background-color: white;
  color: #30363A;
}
.callout.success {
  background-color: rgb(225.45, 249.6, 234.45);
  color: #30363A;
}
.callout.warning {
  background-color: rgb(255, 242.85, 216.75);
  color: #30363A;
}
.callout.alert {
  background-color: rgb(247.35, 228, 225);
  color: #30363A;
}
.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;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  color: #30363A;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6;
}
.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;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  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;
}

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

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

.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 #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #FC003B;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #e6e6e6;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #ffffff;
  color: #30363A;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.media-object {
  display: flex;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media print, screen and (max-width: 23.49875em) {
  .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 print, screen and (max-width: 23.49875em) {
  .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;
}

.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(13, 17, 18, 0.5);
  color: #ffffff;
}

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

.orbit-previous {
  left: 0;
}

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

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

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 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%;
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  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, .widget ul.tabs > li {
  display: block;
  float: none;
  width: auto;
}

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

.tabs.primary {
  background: #FC003B;
}
.tabs.primary > li > a {
  color: #ffffff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: rgb(239.4, 0, 56.05);
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #FC003B;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #ffffff;
  color: rgb(216.72, 0, 50.74);
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #e6e6e6;
  color: #FC003B;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #ffffff;
  color: #30363A;
  transition: all 0.5s ease;
}

.tabs-content.vertical, .widget ul.tabs-content {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

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

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1.5rem;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(13, 17, 18, 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(252, 0, 59, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.menu, .widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li, [data-whatinput=mouse] .widget ul li, .widget [data-whatinput=mouse] ul li {
  outline: 0;
}
.menu a, .widget ul a,
.menu .button,
.menu .searchform [type=submit],
.searchform .menu [type=submit],
.widget ul .button,
.widget ul .searchform [type=submit],
.searchform .widget ul [type=submit] {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.9375rem;
}
.menu input, .widget ul input,
.menu select,
.widget ul select,
.menu a,
.widget ul a,
.menu button,
.widget ul button {
  margin-bottom: 0;
}
.menu input, .widget ul input {
  display: inline-block;
}
.menu, .widget ul, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical, .widget ul {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.vertical.icon-top li a img, .widget ul.icon-top li a img,
.menu.vertical.icon-top li a i,
.widget ul.icon-top li a i,
.menu.vertical.icon-top li a svg,
.widget ul.icon-top li a svg, .menu.vertical.icon-bottom li a img, .widget ul.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.widget ul.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg,
.widget ul.icon-bottom li a svg {
  text-align: left;
}
.menu.expanded li, .widget ul.expanded li {
  flex: 1 1 0px;
}
.menu.expanded.icon-top li a img, .widget ul.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.widget ul.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg,
.widget ul.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img, .widget ul.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.widget ul.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg,
.widget ul.expanded.icon-bottom li a svg {
  text-align: left;
}
.menu.simple, .widget ul.simple {
  align-items: center;
}
.menu.simple li + li, .widget ul.simple li + li {
  margin-left: 1rem;
}
.menu.simple a, .widget ul.simple a {
  padding: 0;
}
@media print, screen and (min-width: 23.5em) {
  .menu.smedium-horizontal, .widget ul.smedium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.smedium-vertical, .widget ul.smedium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.smedium-expanded li, .widget ul.smedium-expanded li {
    flex: 1 1 0px;
  }
  .menu.smedium-simple li, .widget ul.smedium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .menu.medium-horizontal, .widget ul.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical, .widget ul.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li, .widget ul.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li, .widget ul.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .menu.large-horizontal, .widget ul.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical, .widget ul.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li, .widget ul.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li, .widget ul.large-simple li {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 75.0625em) {
  .menu.xlarge-horizontal, .widget ul.xlarge-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.xlarge-vertical, .widget ul.xlarge-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.xlarge-expanded li, .widget ul.xlarge-expanded li {
    flex: 1 1 0px;
  }
  .menu.xlarge-simple li, .widget ul.xlarge-simple li {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 87.5625em) {
  .menu.xxlarge-horizontal, .widget ul.xxlarge-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.xxlarge-vertical, .widget ul.xxlarge-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.xxlarge-expanded li, .widget ul.xxlarge-expanded li {
    flex: 1 1 0px;
  }
  .menu.xxlarge-simple li, .widget ul.xxlarge-simple li {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 100.0625em) {
  .menu.xxxlarge-horizontal, .widget ul.xxxlarge-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.xxxlarge-vertical, .widget ul.xxxlarge-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.xxxlarge-expanded li, .widget ul.xxxlarge-expanded li {
    flex: 1 1 0px;
  }
  .menu.xxxlarge-simple li, .widget ul.xxxlarge-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested, .widget ul.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a, .widget ul.icons a {
  display: flex;
}
.menu.icon-top a, .widget ul.icon-top a, .menu.icon-right a, .widget ul.icon-right a, .menu.icon-bottom a, .widget ul.icon-bottom a, .menu.icon-left a, .widget ul.icon-left a {
  display: flex;
}
.menu.icon-left li a, .widget ul.icon-left li a, .menu.nested.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img, .widget ul.icon-left li a img,
.menu.icon-left li a i,
.widget ul.icon-left li a i,
.menu.icon-left li a svg,
.widget ul.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a, .widget ul.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img, .widget ul.icon-right li a img,
.menu.icon-right li a i,
.widget ul.icon-right li a i,
.menu.icon-right li a svg,
.widget ul.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a, .widget ul.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img, .widget ul.icon-top li a img,
.menu.icon-top li a i,
.widget ul.icon-top li a i,
.menu.icon-top li a svg,
.widget ul.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a, .widget ul.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img, .widget ul.icon-bottom li a img,
.menu.icon-bottom li a i,
.widget ul.icon-bottom li a i,
.menu.icon-bottom li a svg,
.widget ul.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a, .widget ul .is-active > a {
  background: #FC003B;
  color: #ffffff;
}
.menu .active > a, .widget ul .active > a {
  background: #FC003B;
  color: #ffffff;
}
.menu.align-left, .widget ul.align-left {
  justify-content: flex-start;
}
.menu.align-right li, .widget ul.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li, .widget ul.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li, .widget ul.align-right li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li, .widget ul.align-right li .submenu li {
  text-align: right;
}
.menu.align-right.icon-top li a img, .widget ul.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.widget ul.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg,
.widget ul.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img, .widget ul.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.widget ul.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg,
.widget ul.align-right.icon-bottom li a svg {
  text-align: right;
}
.menu.align-right .nested, .widget ul.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li, .widget ul.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li, .widget ul.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text, .widget ul .menu-text {
  padding: 0.9375rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

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

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

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
  content: "";
}
.menu-icon:hover::after {
  background: #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0D1112;
  box-shadow: 0 7px 0 #0D1112, 0 14px 0 #0D1112;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

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

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

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

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

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

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

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

.drilldown a {
  padding: 0.9375rem;
  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.9375rem;
}
.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-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #FC003B;
  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-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent inherit;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent inherit transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #FC003B transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a, .widget ul.dropdown > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after, .widget ul.dropdown > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: inherit transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a, [data-whatinput=mouse] .widget ul.dropdown a, .widget [data-whatinput=mouse] ul.dropdown a {
  outline: 0;
}
.dropdown.menu > li > a, .widget ul.dropdown > li > a {
  padding: 0.9375rem;
}
.dropdown.menu > li.is-active > a, .widget ul.dropdown > li.is-active > a {
  background: transparent;
  color: #FC003B;
}
.no-js .dropdown.menu ul, .no-js .widget ul.dropdown ul, .widget .no-js ul.dropdown ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu, .widget ul.dropdown .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu, .widget ul.dropdown > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after, .widget ul.dropdown > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after, .widget ul.dropdown > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent inherit transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after, .widget ul.dropdown > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent inherit;
}
@media print, screen and (min-width: 23.5em) {
  .dropdown.menu.smedium-horizontal > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.smedium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.smedium-horizontal > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.smedium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.smedium-horizontal > li.is-dropdown-submenu-parent > a, .widget ul.dropdown.smedium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.smedium-horizontal > li.is-dropdown-submenu-parent > a::after, .widget ul.dropdown.smedium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: inherit transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.smedium-vertical > li .is-dropdown-submenu, .widget ul.dropdown.smedium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.smedium-vertical > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.smedium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.smedium-vertical > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.smedium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.smedium-vertical > li > a::after, .widget ul.dropdown.smedium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.smedium-vertical > li.opens-left > a::after, .widget ul.dropdown.smedium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent inherit transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.smedium-vertical > li.opens-right > a::after, .widget ul.dropdown.smedium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent inherit;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a, .widget ul.dropdown.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, .widget ul.dropdown.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: inherit transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu, .widget ul.dropdown.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after, .widget ul.dropdown.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after, .widget ul.dropdown.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent inherit transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after, .widget ul.dropdown.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent inherit;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a, .widget ul.dropdown.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, .widget ul.dropdown.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: inherit transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu, .widget ul.dropdown.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after, .widget ul.dropdown.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after, .widget ul.dropdown.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent inherit transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after, .widget ul.dropdown.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent inherit;
  }
}
@media screen and (min-width: 75.0625em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a, .widget ul.dropdown.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after, .widget ul.dropdown.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: inherit transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu, .widget ul.dropdown.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after, .widget ul.dropdown.xlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after, .widget ul.dropdown.xlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent inherit transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after, .widget ul.dropdown.xlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent inherit;
  }
}
@media screen and (min-width: 87.5625em) {
  .dropdown.menu.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a, .widget ul.dropdown.xxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a::after, .widget ul.dropdown.xxlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: inherit transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xxlarge-vertical > li .is-dropdown-submenu, .widget ul.dropdown.xxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.xxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.xxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li > a::after, .widget ul.dropdown.xxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > a::after, .widget ul.dropdown.xxlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent inherit transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > a::after, .widget ul.dropdown.xxlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent inherit;
  }
}
@media screen and (min-width: 100.0625em) {
  .dropdown.menu.xxxlarge-horizontal > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.xxxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxxlarge-horizontal > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.xxxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxxlarge-horizontal > li.is-dropdown-submenu-parent > a, .widget ul.dropdown.xxxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxxlarge-horizontal > li.is-dropdown-submenu-parent > a::after, .widget ul.dropdown.xxxlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: inherit transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xxxlarge-vertical > li .is-dropdown-submenu, .widget ul.dropdown.xxxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-left > .is-dropdown-submenu, .widget ul.dropdown.xxxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-right > .is-dropdown-submenu, .widget ul.dropdown.xxxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxxlarge-vertical > li > a::after, .widget ul.dropdown.xxxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-left > a::after, .widget ul.dropdown.xxxlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent inherit transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xxxlarge-vertical > li.opens-right > a::after, .widget ul.dropdown.xxxlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent inherit;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub, .widget ul.dropdown.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

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

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

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

.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 {
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
  position: fixed;
}
[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(13, 17, 18, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}

.off-canvas-absolute {
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
  position: absolute;
}
[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(13, 17, 18, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-250px);
}
.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(250px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(13, 17, 18, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 250px;
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(250px);
}
.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(-250px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(13, 17, 18, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  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(13, 17, 18, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  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(13, 17, 18, 0.25);
}

.off-canvas-content {
  transform: none;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform 0.5s ease;
}
.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: 23.5em) {
  .position-left.reveal-for-smedium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-smedium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-smedium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-smedium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-smedium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-smedium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-smedium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-smedium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-smedium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-smedium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-smedium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-smedium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-smedium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-smedium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-smedium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-smedium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .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: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .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: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .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: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .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: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .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: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .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: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .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: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .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: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 75.0625em) {
  .position-left.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 87.5625em) {
  .position-left.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xxlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xxlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 100.0625em) {
  .position-left.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xxxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xxxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xxxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xxxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xxxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-xxxlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 23.5em) {
  .off-canvas.in-canvas-for-smedium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-smedium.position-left, .off-canvas.in-canvas-for-smedium.position-right, .off-canvas.in-canvas-for-smedium.position-top, .off-canvas.in-canvas-for-smedium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-smedium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .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: 64.0625em) {
  .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;
  }
}
@media screen and (min-width: 75.0625em) {
  .off-canvas.in-canvas-for-xlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-xlarge.position-left, .off-canvas.in-canvas-for-xlarge.position-right, .off-canvas.in-canvas-for-xlarge.position-top, .off-canvas.in-canvas-for-xlarge.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xlarge .close-button {
    display: none;
  }
}
@media screen and (min-width: 87.5625em) {
  .off-canvas.in-canvas-for-xxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-xxlarge.position-left, .off-canvas.in-canvas-for-xxlarge.position-right, .off-canvas.in-canvas-for-xxlarge.position-top, .off-canvas.in-canvas-for-xxlarge.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xxlarge .close-button {
    display: none;
  }
}
@media screen and (min-width: 100.0625em) {
  .off-canvas.in-canvas-for-xxxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-xxxlarge.position-left, .off-canvas.in-canvas-for-xxxlarge.position-right, .off-canvas.in-canvas-for-xxxlarge.position-top, .off-canvas.in-canvas-for-xxxlarge.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xxxlarge .close-button {
    display: none;
  }
}
html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

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

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

.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;
}

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

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

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

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

.top-bar {
  padding: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button, .top-bar .searchform input[type=submit], .searchform .top-bar input[type=submit] {
  width: auto;
}

.top-bar {
  flex-wrap: wrap;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}

@media print, screen and (min-width: 48.0625em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media print, screen and (max-width: 48.06125em) {
  .top-bar.stacked-for-smedium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-smedium .top-bar-left,
  .top-bar.stacked-for-smedium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 64.06125em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 75.06125em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 87.56125em) {
  .top-bar.stacked-for-xlarge {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 100.06125em) {
  .top-bar.stacked-for-xxlarge {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xxlarge .top-bar-left,
  .top-bar.stacked-for-xxlarge .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.top-bar.stacked-for-xxxlarge {
  flex-wrap: wrap;
}
.top-bar.stacked-for-xxxlarge .top-bar-left,
.top-bar.stacked-for-xxxlarge .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-center.vertical.menu > li > a, .widget ul.align-center > 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: 23.5em) {
  .smedium-order-1 {
    order: 1;
  }
  .smedium-order-2 {
    order: 2;
  }
  .smedium-order-3 {
    order: 3;
  }
  .smedium-order-4 {
    order: 4;
  }
  .smedium-order-5 {
    order: 5;
  }
  .smedium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .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: 64.0625em) {
  .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;
  }
}
@media screen and (min-width: 75.0625em) {
  .xlarge-order-1 {
    order: 1;
  }
  .xlarge-order-2 {
    order: 2;
  }
  .xlarge-order-3 {
    order: 3;
  }
  .xlarge-order-4 {
    order: 4;
  }
  .xlarge-order-5 {
    order: 5;
  }
  .xlarge-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 87.5625em) {
  .xxlarge-order-1 {
    order: 1;
  }
  .xxlarge-order-2 {
    order: 2;
  }
  .xxlarge-order-3 {
    order: 3;
  }
  .xxlarge-order-4 {
    order: 4;
  }
  .xxlarge-order-5 {
    order: 5;
  }
  .xxlarge-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 100.0625em) {
  .xxxlarge-order-1 {
    order: 1;
  }
  .xxxlarge-order-2 {
    order: 2;
  }
  .xxxlarge-order-3 {
    order: 3;
  }
  .xxxlarge-order-4 {
    order: 4;
  }
  .xxxlarge-order-5 {
    order: 5;
  }
  .xxxlarge-order-6 {
    order: 6;
  }
}
.flex-container, .searchform > div {
  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: 23.5em) {
  .smedium-flex-container {
    display: flex;
  }
  .smedium-flex-child-auto {
    flex: 1 1 auto;
  }
  .smedium-flex-child-grow {
    flex: 1 0 auto;
  }
  .smedium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .smedium-flex-dir-row {
    flex-direction: row;
  }
  .smedium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .smedium-flex-dir-column {
    flex-direction: column;
  }
  .smedium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 48.0625em) {
  .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: 64.0625em) {
  .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;
  }
}
@media screen and (min-width: 75.0625em) {
  .xlarge-flex-container {
    display: flex;
  }
  .xlarge-flex-child-auto {
    flex: 1 1 auto;
  }
  .xlarge-flex-child-grow {
    flex: 1 0 auto;
  }
  .xlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
  .xlarge-flex-dir-row {
    flex-direction: row;
  }
  .xlarge-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .xlarge-flex-dir-column {
    flex-direction: column;
  }
  .xlarge-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 87.5625em) {
  .xxlarge-flex-container {
    display: flex;
  }
  .xxlarge-flex-child-auto {
    flex: 1 1 auto;
  }
  .xxlarge-flex-child-grow {
    flex: 1 0 auto;
  }
  .xxlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
  .xxlarge-flex-dir-row {
    flex-direction: row;
  }
  .xxlarge-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .xxlarge-flex-dir-column {
    flex-direction: column;
  }
  .xxlarge-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 100.0625em) {
  .xxxlarge-flex-container {
    display: flex;
  }
  .xxxlarge-flex-child-auto {
    flex: 1 1 auto;
  }
  .xxxlarge-flex-child-grow {
    flex: 1 0 auto;
  }
  .xxxlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
  .xxxlarge-flex-dir-row {
    flex-direction: row;
  }
  .xxxlarge-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .xxxlarge-flex-dir-column {
    flex-direction: column;
  }
  .xxxlarge-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.hide, .searchform .screen-reader-text {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 75.0625em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

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

@media screen and (min-width: 75.0625em) and (max-width: 87.56125em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

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

@media screen and (min-width: 87.5625em) {
  .hide-for-xxlarge {
    display: none !important;
  }
}

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

@media screen and (min-width: 87.5625em) and (max-width: 100.06125em) {
  .hide-for-xxlarge-only {
    display: none !important;
  }
}

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

@media screen and (min-width: 100.0625em) {
  .hide-for-xxxlarge {
    display: none !important;
  }
}

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

@media screen and (min-width: 100.0625em) {
  .hide-for-xxxlarge-only {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.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: 400;
}

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

.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 .switch-paddle {
  border-radius: 5000px !important;
}
.rounded .switch-paddle:after {
  border-radius: 50%;
}

.radius {
  border-radius: 0.1875rem;
}

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

.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-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-bottom-width: 0;
  border-color: #0D1112 transparent transparent;
}

.arrow-up {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-top-width: 0;
  border-color: transparent transparent #0D1112;
}

.arrow-right {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #0D1112;
}

.arrow-left {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-left-width: 0;
  border-color: transparent #0D1112 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 #FC003B;
  margin: 1.5rem 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 #FC003B;
  margin: 1.5rem 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 #FC003B;
  margin: 1.5rem 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;
  -webkit-overflow-scrolling: touch;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: touch;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
}

.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: 0 !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 !important;
}

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

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

.margin-bottom-0, .searchform [type=submit], .searchform [type=text] {
  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 !important;
}

.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: 1.5rem !important;
}

.margin-top-1, .widget:not(:first-child), #main {
  margin-top: 1.5rem !important;
}

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

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

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

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

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

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

.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: 3rem !important;
}

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

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

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

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

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

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

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

.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: 4.5rem !important;
}

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

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

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

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

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

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

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

.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;
}

#wpadminbar {
  position: fixed;
  margin: -32px 0 0;
}
@media screen and (max-width: 782px) {
  #wpadminbar {
    margin: -46px 0 0;
  }
}
#wpadminbar:hover {
  margin: 0;
}
#wpadminbar ul li#wp-admin-bar-wp-logo {
  margin: 32px 0 0;
}
#wpadminbar:hover ul li#wp-admin-bar-wp-logo {
  margin: 0;
}
@media screen and (max-width: 782px) {
  #wpadminbar ul li#wp-admin-bar-site-name {
    margin: 46px 0 0;
  }
}
#wpadminbar:hover ul li#wp-admin-bar-site-name {
  margin: 0;
}

.color-white {
  color: #FFFFFF;
}

a.color-white:hover,
a.color-white:focus {
  color: #FFFFFF;
}

.button.color-white:hover, .searchform .color-white[type=submit]:hover {
  color: #FFFFFF;
}

.color-black {
  color: #0D1112;
}

a.color-black:hover,
a.color-black:focus {
  color: #0D1112;
}

.button.color-black:hover, .searchform .color-black[type=submit]:hover {
  color: #0D1112;
}

.color-red {
  color: #FC003C;
}

a.color-red:hover,
a.color-red:focus {
  color: #FC003C;
}

.button.color-red:hover, .searchform .color-red[type=submit]:hover {
  color: #FC003C;
}

.color-dark-red {
  color: #B02336;
}

a.color-dark-red:hover,
a.color-dark-red:focus {
  color: #B02336;
}

.button.color-dark-red:hover, .searchform .color-dark-red[type=submit]:hover {
  color: #B02336;
}

.color-light-red {
  color: #FC003B;
}

a.color-light-red:hover,
a.color-light-red:focus {
  color: #FC003B;
}

.button.color-light-red:hover, .searchform .color-light-red[type=submit]:hover {
  color: #FC003B;
}

.color-dark-blue {
  color: #5D666C;
}

a.color-dark-blue:hover,
a.color-dark-blue:focus {
  color: #5D666C;
}

.button.color-dark-blue:hover, .searchform .color-dark-blue[type=submit]:hover {
  color: #5D666C;
}

.color-enterprise-grey {
  color: #434343;
}

a.color-enterprise-grey:hover,
a.color-enterprise-grey:focus {
  color: #434343;
}

.button.color-enterprise-grey:hover, .searchform .color-enterprise-grey[type=submit]:hover {
  color: #434343;
}

.color-rich-black {
  color: #30363A;
}

a.color-rich-black:hover,
a.color-rich-black:focus {
  color: #30363A;
}

.button.color-rich-black:hover, .searchform .color-rich-black[type=submit]:hover {
  color: #30363A;
}

.color-greys-light {
  color: #EBEBEB;
}

a.color-greys-light:hover,
a.color-greys-light:focus {
  color: #EBEBEB;
}

.button.color-greys-light:hover, .searchform .color-greys-light[type=submit]:hover {
  color: #EBEBEB;
}

.color-greys-dark {
  color: #555555;
}

a.color-greys-dark:hover,
a.color-greys-dark:focus {
  color: #555555;
}

.button.color-greys-dark:hover, .searchform .color-greys-dark[type=submit]:hover {
  color: #555555;
}

.color-greys-medium {
  color: #B2B2B2;
}

a.color-greys-medium:hover,
a.color-greys-medium:focus {
  color: #B2B2B2;
}

.button.color-greys-medium:hover, .searchform .color-greys-medium[type=submit]:hover {
  color: #B2B2B2;
}

.color-light-blue {
  color: #B0C3D2;
}

a.color-light-blue:hover,
a.color-light-blue:focus {
  color: #B0C3D2;
}

.button.color-light-blue:hover, .searchform .color-light-blue[type=submit]:hover {
  color: #B0C3D2;
}

.color-enterprise-gold {
  color: #D0B585;
}

a.color-enterprise-gold:hover,
a.color-enterprise-gold:focus {
  color: #D0B585;
}

.button.color-enterprise-gold:hover, .searchform .color-enterprise-gold[type=submit]:hover {
  color: #D0B585;
}

.color-green {
  color: #478843;
}

a.color-green:hover,
a.color-green:focus {
  color: #478843;
}

.button.color-green:hover, .searchform .color-green[type=submit]:hover {
  color: #478843;
}

.border-color-white {
  border-color: #FFFFFF;
}

.border-color-black {
  border-color: #0D1112;
}

.border-color-red {
  border-color: #FC003C;
}

.border-color-dark-red {
  border-color: #B02336;
}

.border-color-light-red {
  border-color: #FC003B;
}

.border-color-dark-blue {
  border-color: #5D666C;
}

.border-color-enterprise-grey {
  border-color: #434343;
}

.border-color-rich-black {
  border-color: #30363A;
}

.border-color-greys-light {
  border-color: #EBEBEB;
}

.border-color-greys-dark {
  border-color: #555555;
}

.border-color-greys-medium {
  border-color: #B2B2B2;
}

.border-color-light-blue {
  border-color: #B0C3D2;
}

.border-color-enterprise-gold {
  border-color: #D0B585;
}

.border-color-green {
  border-color: #478843;
}

.background-color-white {
  background-color: #FFFFFF;
}

.background-color-hover-white:hover {
  background-color: #FFFFFF;
}

.background-color-active-white:active,
.background-color-active-white:hover:active {
  background-color: #FFFFFF;
}

.background-color-black {
  background-color: #0D1112;
}

.background-color-hover-black:hover {
  background-color: #0D1112;
}

.background-color-active-black:active,
.background-color-active-black:hover:active {
  background-color: #0D1112;
}

.background-color-red {
  background-color: #FC003C;
}

.background-color-hover-red:hover {
  background-color: #FC003C;
}

.background-color-active-red:active,
.background-color-active-red:hover:active {
  background-color: #FC003C;
}

.background-color-dark-red {
  background-color: #B02336;
}

.background-color-hover-dark-red:hover {
  background-color: #B02336;
}

.background-color-active-dark-red:active,
.background-color-active-dark-red:hover:active {
  background-color: #B02336;
}

.background-color-light-red {
  background-color: #FC003B;
}

.background-color-hover-light-red:hover {
  background-color: #FC003B;
}

.background-color-active-light-red:active,
.background-color-active-light-red:hover:active {
  background-color: #FC003B;
}

.background-color-dark-blue {
  background-color: #5D666C;
}

.background-color-hover-dark-blue:hover {
  background-color: #5D666C;
}

.background-color-active-dark-blue:active,
.background-color-active-dark-blue:hover:active {
  background-color: #5D666C;
}

.background-color-enterprise-grey {
  background-color: #434343;
}

.background-color-hover-enterprise-grey:hover {
  background-color: #434343;
}

.background-color-active-enterprise-grey:active,
.background-color-active-enterprise-grey:hover:active {
  background-color: #434343;
}

.background-color-rich-black {
  background-color: #30363A;
}

.background-color-hover-rich-black:hover {
  background-color: #30363A;
}

.background-color-active-rich-black:active,
.background-color-active-rich-black:hover:active {
  background-color: #30363A;
}

.background-color-greys-light {
  background-color: #EBEBEB;
}

.background-color-hover-greys-light:hover {
  background-color: #EBEBEB;
}

.background-color-active-greys-light:active,
.background-color-active-greys-light:hover:active {
  background-color: #EBEBEB;
}

.background-color-greys-dark {
  background-color: #555555;
}

.background-color-hover-greys-dark:hover {
  background-color: #555555;
}

.background-color-active-greys-dark:active,
.background-color-active-greys-dark:hover:active {
  background-color: #555555;
}

.background-color-greys-medium {
  background-color: #B2B2B2;
}

.background-color-hover-greys-medium:hover {
  background-color: #B2B2B2;
}

.background-color-active-greys-medium:active,
.background-color-active-greys-medium:hover:active {
  background-color: #B2B2B2;
}

.background-color-light-blue {
  background-color: #B0C3D2;
}

.background-color-hover-light-blue:hover {
  background-color: #B0C3D2;
}

.background-color-active-light-blue:active,
.background-color-active-light-blue:hover:active {
  background-color: #B0C3D2;
}

.background-color-enterprise-gold {
  background-color: #D0B585;
}

.background-color-hover-enterprise-gold:hover {
  background-color: #D0B585;
}

.background-color-active-enterprise-gold:active,
.background-color-active-enterprise-gold:hover:active {
  background-color: #D0B585;
}

.background-color-green {
  background-color: #478843;
}

.background-color-hover-green:hover {
  background-color: #478843;
}

.background-color-active-green:active,
.background-color-active-green:hover:active {
  background-color: #478843;
}

.border-color-white {
  border-color: #FFFFFF;
}

.border-color-black {
  border-color: #0D1112;
}

.border-color-red {
  border-color: #FC003C;
}

.border-color-dark-red {
  border-color: #B02336;
}

.border-color-light-red {
  border-color: #FC003B;
}

.border-color-dark-blue {
  border-color: #5D666C;
}

.border-color-enterprise-grey {
  border-color: #434343;
}

.border-color-rich-black {
  border-color: #30363A;
}

.border-color-greys-light {
  border-color: #EBEBEB;
}

.border-color-greys-dark {
  border-color: #555555;
}

.border-color-greys-medium {
  border-color: #B2B2B2;
}

.border-color-light-blue {
  border-color: #B0C3D2;
}

.border-color-enterprise-gold {
  border-color: #D0B585;
}

.border-color-green {
  border-color: #478843;
}

html {
  height: 100%;
}

body {
  overflow-x: hidden;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main {
  flex-grow: 1;
}

h1, .h1 {
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 0;
}

h2, .h2 {
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

h3, .h3 {
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

h4, .h4 {
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0;
}

h5, .h5 {
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0;
}

h6, .h6, .widget-title {
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0;
}

@media print, screen and (min-width: 48.0625em) {
  h1, .h1 {
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: 0;
  }
  h2, .h2 {
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -1px;
  }
  h3, .h3 {
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -1px;
  }
  h4, .h4 {
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: 0;
  }
  h5, .h5 {
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: 0;
  }
  h6, .h6, .widget-title {
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: 0;
  }
}
.h1 strong, h1 strong {
  font-weight: 500;
}

.h3.text-uppercase, h3.text-uppercase {
  letter-spacing: 0.5rem;
}

address {
  font-style: normal;
}

p.large {
  margin-bottom: 2.5rem;
}

p.large, span.large {
  font-size: 1.5rem;
  line-height: 1.1666666667;
}
@media print, screen and (min-width: 64.0625em) {
  p.large, span.large {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
}

section {
  margin-bottom: 4rem;
}
section > *:last-child {
  margin-bottom: 0;
}

.button, .searchform [type=submit] {
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
}
.button.hollow, .searchform .hollow[type=submit] {
  padding: 0.8125rem;
  background-color: #ffffff;
}
.button.primary:hover, .searchform .primary[type=submit]:hover {
  background-color: #B02336;
}
.button.primary.hollow:hover, .searchform .primary.hollow[type=submit]:hover {
  background-color: transparent;
  border-color: #B02336;
  color: #B02336;
}
.button.primary.active, .searchform .primary.active[type=submit] {
  background-color: #30363A;
}
.button.primary.hollow.active, .searchform .primary.hollow.active[type=submit] {
  background-color: transparent;
  border-color: #30363A;
  color: #30363A;
}
.button.button--icon-arrow-right:after, .searchform .button--icon-arrow-right[type=submit]:after {
  display: inline-block;
  content: "";
  width: 0.375rem;
  height: 0.75rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: 0.75rem;
}
.button.button--icon-arrow-left:before, .searchform .button--icon-arrow-left[type=submit]:before {
  display: inline-block;
  content: "";
  width: 0.375rem;
  height: 0.75rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 0.75rem;
}
.button.primary.button--icon-arrow-right:after, .searchform .primary.button--icon-arrow-right[type=submit]:after {
  background-image: url(../images/icon-arrow-right-white.svg);
}
.button.primary.button--icon-arrow-right:hover:after, .searchform .primary.button--icon-arrow-right[type=submit]:hover:after, .button.primary.button--icon-arrow-right:focus:after, .searchform .primary.button--icon-arrow-right[type=submit]:focus:after {
  background-image: url(../images/icon-arrow-right-white.svg);
}
.button.primary.button--icon-arrow-left:before, .searchform .primary.button--icon-arrow-left[type=submit]:before {
  background-image: url(../images/icon-arrow-left-white.svg);
}
.button.primary.button--icon-arrow-right:hover:before, .searchform .primary.button--icon-arrow-right[type=submit]:hover:before, .button.primary.button--icon-arrow-right:focus:before, .searchform .primary.button--icon-arrow-right[type=submit]:focus:before {
  background-image: url(../images/icon-arrow-left-white.svg);
}
.button.secondary, .searchform .secondary[type=submit] {
  background-color: #ffffff;
  color: #FC003B;
}
.button.secondary:hover, .searchform .secondary[type=submit]:hover {
  background-color: #30363A;
  color: #ffffff;
}
.button.secondary.button--icon-arrow-right:after, .searchform .secondary.button--icon-arrow-right[type=submit]:after {
  background-image: url(../images/icon-arrow-right-light-red.svg);
}
.button.secondary.button--icon-arrow-right:hover:after, .searchform .secondary.button--icon-arrow-right[type=submit]:hover:after, .button.secondary.button--icon-arrow-right:focus:after, .searchform .secondary.button--icon-arrow-right[type=submit]:focus:after {
  background-image: url(../images/icon-arrow-right-white.svg);
}
.button.secondary.button--icon-arrow-left:before, .searchform .secondary.button--icon-arrow-left[type=submit]:before {
  background-image: url(../images/icon-arrow-left-light-red.svg);
}
.button.secondary.button--icon-arrow-left:hover:before, .searchform .secondary.button--icon-arrow-left[type=submit]:hover:before, .button.secondary.button--icon-arrow-left:focus:before, .searchform .secondary.button--icon-arrow-left[type=submit]:focus:before {
  background-image: url(../images/icon-arrow-left-white.svg);
}

.button-link {
  position: relative;
  display: inline-flex;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  color: #FC003B;
  align-items: center;
}
.button-link:hover, .button-link:focus {
  color: #30363A;
}
.button-link--disabled {
  opacity: 0.5;
}
.button-link--icon-arrow-right:after {
  display: inline-block;
  content: "";
  width: 0.375rem;
  height: 0.75rem;
  background-image: url(../images/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: 0.75rem;
}
.button-link:hover.button-link--icon-arrow-right:after, .button-link:focus.button-link--icon-arrow-right:after {
  background-image: url(../images/icon-arrow-right-rich-black.svg);
}
.button-link--icon-arrow-left:before {
  display: inline-block;
  content: "";
  width: 0.375rem;
  height: 0.75rem;
  background-image: url(../images/icon-arrow-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 0.75rem;
}
.button-link:hover.button-link--icon-arrow-left:before, .button-link:focus.button-link--icon-arrow-left:before {
  background-image: url(../images/icon-arrow-left-rich-black.svg);
}

ul:not(.social, .accordion, .tabs, .site-selector__nav-sm, .site-selector__secondary-menu, .header__primary-main-menu, .header__secondary-main-menu, .header__cta-menu, .footer__main-menu, .footer__miscellaneous-menu, .footer__cta-menu, .site-menu, .mobile-header__main-menu, .mobile-header__primary-main-menu, .mobile-header__cta-menu, .mobile-header__secondary-main-menu) {
  font-size: 16px;
  line-height: 1.5;
  list-style-type: none;
  margin-top: 0;
  margin-left: 0;
  padding: 0;
}
ul:not(.social, .accordion, .tabs, .site-selector__nav-sm, .site-selector__secondary-menu, .header__primary-main-menu, .header__secondary-main-menu, .header__cta-menu, .footer__main-menu, .footer__miscellaneous-menu, .footer__cta-menu, .site-menu, .mobile-header__main-menu, .mobile-header__primary-main-menu, .mobile-header__cta-menu, .mobile-header__secondary-main-menu) > li {
  position: relative;
  padding: 0 0 0 1.125rem;
  margin: 0 0 1.25rem;
  font-size: inherit;
  line-height: inherit;
}
ul:not(.social, .accordion, .tabs, .site-selector__nav-sm, .site-selector__secondary-menu, .header__primary-main-menu, .header__secondary-main-menu, .header__cta-menu, .footer__main-menu, .footer__miscellaneous-menu, .footer__cta-menu, .site-menu, .mobile-header__main-menu, .mobile-header__primary-main-menu, .mobile-header__cta-menu, .mobile-header__secondary-main-menu) > li:last-child {
  margin: 0;
}
ul:not(.social, .accordion, .tabs, .site-selector__nav-sm, .site-selector__secondary-menu, .header__primary-main-menu, .header__secondary-main-menu, .header__cta-menu, .footer__main-menu, .footer__miscellaneous-menu, .footer__cta-menu, .site-menu, .mobile-header__main-menu, .mobile-header__primary-main-menu, .mobile-header__cta-menu, .mobile-header__secondary-main-menu) > li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.375rem;
  height: 1.5rem;
  background-image: url(../images/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 0.375rem 0.75rem;
  background-position: center center;
}

ol {
  padding-left: 1rem;
}
ol > li {
  margin: 0 0 1.25rem;
}
ol > li:last-child {
  margin: 0;
}

#cookie-notice {
  padding: 0;
  background-color: transparent !important;
}
#cookie-notice.cn-position-bottom {
  bottom: 2.5rem;
}
#cookie-notice .cookie-notice__inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  height: 0;
}
@media print, screen and (min-width: 48.0625em) {
  #cookie-notice .cookie-notice__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
#cookie-notice .cookie-notice-container {
  position: relative;
  max-width: 27.5rem;
  width: 100%;
  margin-left: auto;
  font-family: "Cera Pro";
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(20px);
  text-align: left;
  transform: translateY(-100%);
}
#cookie-notice .cn-text-container {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
#cookie-notice .cn-text-container h1, #cookie-notice .cn-text-container .h1,
#cookie-notice .cn-text-container h2, #cookie-notice .cn-text-container .h2,
#cookie-notice .cn-text-container h3, #cookie-notice .cn-text-container .h3,
#cookie-notice .cn-text-container h4, #cookie-notice .cn-text-container .h4,
#cookie-notice .cn-text-container h5, #cookie-notice .cn-text-container .h5,
#cookie-notice .cn-text-container h6, #cookie-notice .cn-text-container .h6, #cookie-notice .cn-text-container .widget-title {
  margin: 0 0 1.5rem;
}
#cookie-notice .cn-button:not(.cn-button-custom) {
  position: relative;
  font-family: "Cera Pro";
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  padding: 0 0 0.375rem;
  background-color: transparent;
  border-radius: 0;
  margin: 0;
}
#cookie-notice .cn-button:not(.cn-button-custom):after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #ffffff;
}
#cookie-notice #cn-close-notice {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-image: url(../images/icon-cn-times.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 0.75rem;
  height: 0.75rem;
  opacity: 1;
  padding: 0;
  margin: 0.5rem 0;
  z-index: 1;
}
#cookie-notice #cn-close-notice:after, #cookie-notice #cn-close-notice:before {
  display: none;
}

.accordion .accordion-title {
  position: relative;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  color: #30363A;
  border: none;
  border-top: 1px solid #EBEBEB;
}
.accordion .accordion-title:hover, .accordion .accordion-title:focus {
  background-color: transparent;
}
.accordion .accordion-title:before {
  display: block;
  content: "";
  top: 50%;
  right: 0;
  margin: 0;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  background-image: url(../images/a-plus.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.accordion .accordion-item.is-active > .accordion-title {
  font-weight: 700;
}
.accordion .accordion-item.is-active > .accordion-title:before {
  content: "";
  background-image: url(../images/a-minus-rich-black.svg);
}
.accordion .accordion-item:hover > .accordion-title {
  color: #FC003B;
}
.accordion .accordion-item:hover > .accordion-title:before {
  background-image: url(../images/a-plus-rich-black.svg);
}
.accordion .accordion-item.is-active:hover > .accordion-title {
  color: #30363A;
}
.accordion .accordion-item.is-active:hover > .accordion-title:before {
  background-image: url(../images/a-minus-rich-black.svg);
}
.accordion .accordion-content {
  border: none;
  padding: 0 0 1.5rem;
}

.dimbox-noscroll {
  padding-right: 0 !important;
}

.dimbox-noscroll body {
  overflow: hidden;
}

.component-card-group__item {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  border: 2px solid #EBEBEB;
  background-color: #EBEBEB;
  overflow: hidden;
  height: 100%;
}
.component-card-group__item-image-container {
  position: relative;
  padding: 75% 0 0;
  background-color: #ffffff;
}
.component-card-group__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.component-card-group__item-body {
  padding: 1.5rem 1.5rem 0.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.component-card-group__item-link {
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url(../images/a-plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: auto;
  text-decoration: none;
  margin-top: auto;
}

.component-tagline-group {
  display: inline-flex;
  flex-direction: column;
  list-style-type: none;
  padding: 0;
  margin: 0 0 1rem;
}
.component-tagline-group li {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
@media print, screen and (min-width: 48.0625em) {
  .component-tagline-group li {
    font-size: 4rem;
  }
}
.component-tagline-group li strong {
  font-weight: 500;
}

.component-big-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.component-big-list li {
  position: relative;
  padding-left: 4.625rem;
  margin: 0 0 5.3125rem;
}
.component-big-list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 2.125rem;
  height: 3.3125rem;
  background-image: url(../images/icon-cbl-marker.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.component-big-list li:last-child {
  margin-bottom: 0;
}

.component-accordion {
  background-color: transparent;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.component-accordion li {
  position: relative;
  margin: 0;
}
.component-accordion li:last-child {
  margin-bottom: 0;
}
.component-accordion li:last-child:not(.is-active) {
  border-bottom: none;
}
.component-accordion li > a {
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  border: none;
  padding: 0 0 0 3.125rem;
  color: #B02336;
}
.component-accordion li > a:hover, .component-accordion li > a:focus {
  background-color: transparent;
}
.component-accordion li > a:before {
  margin: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 1.625rem;
  height: 2.5rem;
  background-image: url(../images/icon-cbl-marker-dark-red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.component-accordion li.is-active > a {
  color: inherit;
}
.component-accordion li.is-active > a:before {
  content: "";
  background-image: url(../images/icon-cbl-marker-rich-black.svg);
}
.component-accordion li:last-child:not(.is-active) > a {
  border-bottom: none;
}
.component-accordion li > div {
  padding: 1.5rem 0 1.5rem 3.125rem;
  border: none;
  background-color: transparent;
  color: #30363A;
  font-weight: 500;
}
.component-accordion li > div > *:last-child {
  margin-bottom: 0;
}
.component-accordion li:last-child > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.component-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(48, 54, 58, 0.8);
  cursor: pointer;
  justify-content: center;
}
.component-modal-open {
  overflow: hidden;
}

.component-modal__inner {
  cursor: auto;
  position: absolute;
  top: 3.75rem;
  bottom: 3.75rem;
  background-color: #B02336;
  max-width: 1920px;
  width: 100%;
}
.component-modal__content {
  height: 100%;
  color: #ffffff;
}
.component-modal--open {
  display: flex;
}
.component-modal__close-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/icon-times.svg);
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  z-index: 4;
}
@media print, screen and (min-width: 48.0625em) {
  .component-modal__close-button {
    top: 1.875rem;
    right: 1.875rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.component-nav-menu {
  list-style-type: none;
  padding: 0;
  margin: 0 0 2.5rem;
  font-size: 1rem;
  line-height: 1.25;
}
@media print, screen and (min-width: 48.0625em) {
  .component-nav-menu {
    line-height: 2;
  }
}
.component-nav-menu li {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .component-nav-menu li {
    margin: 0 0 1.25rem;
  }
}
.component-nav-menu li a {
  font-weight: 300;
  font-size: inherit;
  line-height: inherit;
  color: #30363A;
}
.component-nav-menu li.current-menu-item a, .component-nav-menu li.current_page_parent a {
  text-decoration: underline;
}
.component-nav-menu li:last-child {
  margin-bottom: 0;
}

.component-select {
  position: relative;
  display: block;
  background-color: #5D666C;
  width: 100%;
  cursor: pointer;
  line-height: normal;
  letter-spacing: 0.25rem;
  color: #ffffff;
  text-transform: uppercase;
}
.component-select--open {
  height: auto;
}
.component-select__selected {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem;
  overflow: hidden;
  font-weight: 700;
}
.component-select__selected:before {
  display: block;
  content: "";
  position: absolute;
  top: 0.125rem;
  right: 0;
  width: 2.5rem;
  height: 100%;
  background-image: url(../images/icon-arrow-down-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 0.625rem;
}
.component-select--open .component-select__selected {
  border-bottom: 1px solid #ffffff;
}
.component-select__option-group {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 12.5rem;
  overflow-y: auto;
  background-color: #5D666C;
  padding-bottom: 0.625rem;
  z-index: 9;
}
.component-select--open .component-select__option-group {
  display: block;
}
.component-select__option {
  display: flex;
  align-items: center;
  padding: 1rem;
  transition: background-color 0.1s ease-out;
}
.component-select__option:hover {
  background-color: #30363A;
}

.component-button-group {
  display: flex;
}
.component-button-group .button, .component-button-group .searchform [type=submit], .searchform .component-button-group [type=submit] {
  margin-right: 1.75rem;
}
.component-button-group .button:last-child, .component-button-group .searchform [type=submit]:last-child, .searchform .component-button-group [type=submit]:last-child {
  margin-right: 0;
}

.social {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.social > li {
  display: block;
  margin: 0 0 1rem;
}
.social > li:last-child {
  margin: 0;
}
.social > li > a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #FC003B;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}
.social > li > a svg {
  margin-right: 0.75rem;
}
.social > li > a svg .fill {
  fill: #FC003B;
}
.social > li > a:hover {
  color: #30363A;
}
.social > li > a:hover svg .fill {
  fill: #30363A;
}

.language-selector {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1rem;
  line-height: 1;
}
.language-selector > li {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
}
.language-selector > li:after {
  content: "/";
  color: #B2B2B2;
  font-weight: 500;
}
.language-selector > li:last-child:after {
  display: none;
}
.language-selector > li > a {
  font-size: inherit;
  line-height: inherit;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.language-selector > li.active > a {
  color: #ffffff;
}
.language-selector > li.disabled > a {
  cursor: not-allowed;
}
.language-selector > li:not(.active, .disabled):hover > a {
  color: #B0C3D2;
}
.language-selector--alt > li > a {
  color: rgba(48, 54, 58, 0.4);
}
.language-selector--alt > li.active > a {
  color: #30363A;
}

.site-nav .site-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1rem;
  line-height: 1;
}
.site-nav .site-menu__item {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  margin: 0 1rem 0 0;
}
.site-nav .site-menu__item > a {
  display: inline-flex;
  align-items: center;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #ffffff;
}
.site-nav .site-menu__item--type-icon > a > img {
  margin-right: 0.5rem;
}
.site-nav .site-menu__item--type-external > a {
  padding-right: 0.875rem;
  background-image: url(../images/icon-external.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.site-nav .site-menu__item--active > a, .site-nav .site-menu__item:hover > a {
  text-decoration: underline;
}

.pagination .nav-links {
  display: flex;
  justify-content: space-between;
}
.pagination .button-link {
  color: #30363A;
}
.pagination .button-link:hover,
.pagination .button-link:focus {
  color: #30363A;
}
.pagination .button-link--icon-arrow-right:after {
  background-image: url(../images/icon-arrow-right-light-red.svg);
}
.pagination .button-link:hover.button-link--icon-arrow-right:after,
.pagination .button-link:focus.button-link--icon-arrow-right:after {
  background-image: url(../images/icon-arrow-right-light-red.svg);
}
.pagination .button-link--icon-arrow-left:before {
  background-image: url(../images/icon-arrow-left-light-red.svg);
}
.pagination .button-link:hover.button-link--icon-arrow-left:before,
.pagination .button-link:focus.button-link--icon-arrow-left:before {
  background-image: url(../images/icon-arrow-left-light-red.svg);
}
.pagination .pages {
  display: flex;
  margin: 0 0.25rem;
  flex-flow: row wrap;
}
.pagination .page-numbers {
  margin: 0 0.25rem;
  height: 2.1875rem;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}
.pagination .page-numbers.current {
  background-color: #30363A;
  color: #ffffff;
}

.block-index__inner > *:last-child {
  margin-bottom: 0;
}
.block-index__body {
  margin-bottom: 2.5rem;
}
.block-index .component-card-group__item-title {
  font-weight: 700;
}

.block-blog__inner {
  padding: 5rem 0;
}
.block-blog__inner > *:last-child {
  margin-bottom: 0;
}
.block-blog__header {
  display: flex;
  margin-bottom: 2.5rem;
}
.block-blog__title {
  margin: 0;
}
.block-blog__button-link {
  margin-left: auto;
  align-self: self-start;
}

.block-big-hero {
  position: relative;
  background-color: #B02336;
  overflow: hidden;
}
.block-big-hero__inner {
  padding: 10.625rem 0 0;
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero__inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 50rem;
    z-index: 1;
    padding: 0;
  }
}
.block-big-hero--align-right .block-big-hero__inner {
  justify-content: flex-end;
}
.block-big-hero__content {
  position: relative;
  z-index: 1;
  max-width: 35rem;
  width: 100%;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero__content {
    margin-bottom: 0;
  }
}
.block-big-hero__content > *:last-child {
  margin-bottom: 0;
}
.block-big-hero--align-right .block-big-hero__content {
  max-width: 42.5rem;
}
.block-big-hero__footer {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero__footer {
    position: absolute;
    z-index: 1;
    bottom: 2.5rem;
    left: 0;
    max-width: 35rem;
    width: 100%;
    margin-bottom: 0;
  }
}
.block-big-hero__footer > *:last-child {
  margin-bottom: 0;
}
.block-big-hero__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero__image-container {
    display: block;
  }
}
.block-big-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero__shape-container {
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 73.125rem;
    margin-right: -56.875rem;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero--align-right .block-big-hero__shape-container {
    margin-right: -42.5rem;
  }
}
.block-big-hero__shape {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero__shape {
    display: block;
  }
}
.block-big-hero__shape-mobile {
  display: block;
  margin: 0 auto;
}
@media print, screen and (min-width: 64.0625em) {
  .block-big-hero__shape-mobile {
    display: none;
  }
}

.block-card-groups__header {
  margin-bottom: 5rem;
}
.block-card-groups__header-inner {
  display: flex;
  margin-bottom: 5rem;
  flex-direction: column;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.block-card-groups__title {
  margin: 0 0 2rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__title {
    margin: 0 2rem 0 0;
  }
}
.block-card-groups__tabs {
  border: none;
  background-color: transparent;
}
.block-card-groups__tabs .tabs-title a {
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #EBEBEB;
  padding: 0.75rem;
  color: #30363A;
}
.block-card-groups__tabs .tabs-title:first-child a {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.block-card-groups__tabs .tabs-title:last-child a {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.block-card-groups__tabs .tabs-title.is-active a {
  background-color: #FC003B;
  color: #ffffff;
}
.block-card-groups__tabs .tabs-title:hover a {
  background-color: #30363A;
  color: #ffffff;
}
.block-card-groups__tabs .tabs-title.is-active:hover a {
  background-color: #B02336;
  color: #ffffff;
}
.block-card-groups__tabs-content {
  border: none;
  background-color: transparent;
}
.block-card-groups__tabs-content .tabs-panel {
  position: relative;
  padding: 0 0.625rem 3.125rem;
  overflow-x: auto;
  overflow-y: hidden;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__tabs-content .tabs-panel {
    padding: 0 1.25rem 5rem;
  }
}
@media screen and (min-width: 120em) {
  .block-card-groups__tabs-content .tabs-panel {
    padding: 0 16.25rem 5rem;
  }
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar {
  display: block;
  height: 0.25rem;
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track {
  background-color: transparent;
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-thumb {
  background-color: #B2B2B2;
  border-radius: 0.25rem;
  border-right: none;
  border-left: none;
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:end {
  background: #EBEBEB;
  border-radius: 0.25rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:end {
    margin-right: 1.25rem;
  }
}
@media screen and (min-width: 120em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:end {
    margin-right: 16.25rem;
  }
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:start {
  background: #EBEBEB;
  border-radius: 0.25rem;
  margin-left: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:start {
    margin-left: 1.25rem;
  }
}
@media screen and (min-width: 120em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:start {
    margin-left: 16.25rem;
  }
}
.block-card-groups__g {
  display: flex;
}
.block-card-groups__gi {
  flex: 0 0 auto;
  width: 13.75rem;
  margin-right: 1.875rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__gi {
    width: 15.5rem;
    margin-right: 2.5rem;
  }
}
.block-card-groups__gi--last {
  margin-right: 0;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__gi--last {
    margin-right: 0;
  }
}
.block-card-groups__gi--empty {
  display: none;
  margin-right: 0;
}
@media screen and (min-width: 120em) {
  .block-card-groups__gi--empty {
    display: block;
  }
}
.block-card-groups__gi-header {
  margin-bottom: 2rem;
}
.block-card-groups__gi-header > *:last-child {
  margin-bottom: 0;
}
.block-card-groups__gi-image-container {
  margin-bottom: 2.5rem;
}
.block-card-groups__gi-title {
  color: #30363A;
}
.block-card-groups__gi-body {
  margin-bottom: 2rem;
}
.block-card-groups__gi-body > *:last-child {
  margin-bottom: 0;
}
.block-card-groups__gi-content {
  color: #30363A;
}
.block-card-groups__gi-content > *:last-child {
  margin-bottom: 0;
}

.block-hero {
  position: relative;
  background-color: #FC003B;
  background-image: url(../images/bh-mobile-bg.svg);
  background-size: cover;
  background-position: center bottom;
  padding: 10.625rem 0 0;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero {
    padding: 0;
    background-image: url(../images/bh-bg.svg);
    background-position: center center;
    background-size: 120rem 40rem;
    height: 20.625rem;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero--large {
    height: 40rem;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero .grid-container {
    height: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero__inner {
    height: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero .grid-x {
    height: 100%;
  }
}
.block-hero__primary {
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero__primary {
    padding: 7.5rem 0 3.125rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    height: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero--large .block-hero__primary {
    padding: 7.5rem 0 5rem;
  }
}
.block-hero__title {
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero__title {
    text-align: right;
  }
}
@media print, screen and (max-width: 48.06125em) {
  .block-hero--title-small-on-mobile .block-hero__title {
    font-size: 2.5rem;
  }
}
.block-hero__secondary {
  position: relative;
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero__secondary {
    height: 100%;
  }
}
.block-hero__back-button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  /*
  .button, .button:hover {
  	background-color:transparent;
  	color:$white;
  	border-color:$white;
  }

  .button--icon-arrow-left:before,
  .button--icon-arrow-left:hover:before {
  	display:inline-block;
  	content:'';
  	width:rem-calc(6px);
  	height:rem-calc(12px);
  	background-image:url(../images/icon-arrow-left-white.svg);
  	background-repeat:no-repeat;
  	background-size:contain;
  	background-position:center center;
  	margin-right:rem-calc(12px);
  }
  */
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero__back-button-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    margin-top: 3.75rem;
    margin-bottom: 0;
  }
}
.block-hero__image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 43.75rem;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
}
.block-hero--has-image.block-hero--has-mobile-image .block-hero__image {
  display: none;
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero--has-image.block-hero--has-mobile-image .block-hero__image {
    display: block;
  }
}
.block-hero__mobile-image-container {
  display: flex;
  justify-content: center;
}
.block-hero--has-image.block-hero--has-mobile-image .block-hero__mobile-image {
  display: block;
}
@media print, screen and (min-width: 64.0625em) {
  .block-hero--has-image.block-hero--has-mobile-image .block-hero__mobile-image {
    display: none;
  }
}

.block-contact {
  padding: 5rem 0;
}
@media print, screen and (min-width: 64.0625em) {
  .block-contact {
    padding: 10rem 0;
  }
}
.block-contact__header {
  margin: 0 0 5rem;
}
.block-contact__header > *:last-child {
  margin: 0;
}
.block-contact__map {
  background-color: #5D666C;
}
.block-contact__map-image-container {
  padding: 78.4090909091% 0 0;
  position: relative;
}
.block-contact__map-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.block-contact__map-content {
  color: #ffffff;
  padding: 1.5rem;
}
.block-contact__map-content > *:last-child {
  margin: 0;
}
.block-contact__details {
  background-color: #434343;
  padding: 5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.block-contact__details-title {
  color: #ffffff;
}
.block-contact__details-content {
  color: #ffffff;
}
.block-contact__details-content > *:last-child {
  margin: 0;
}

.block-card-group__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 8.75rem;
  height: 100%;
  border-radius: 0.5rem;
}
.block-card-group__item--has-background {
  background-color: #EBEBEB;
  padding: 1.5rem;
}
.block-card-group__item > *:last-child {
  margin-bottom: 0;
}
.block-card-group__item-header > *:last-child {
  margin-bottom: 0;
}
.block-card-group__item-body > *:last-child {
  margin-bottom: 0;
}
.block-card-group__item-content > *:last-child {
  margin-bottom: 0;
}

.block-card-groups__header {
  margin-bottom: 5rem;
}
.block-card-groups__header-inner {
  display: flex;
  margin-bottom: 5rem;
  flex-direction: column;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.block-card-groups__title {
  margin: 0 0 2rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__title {
    margin: 0 2rem 0 0;
  }
}
.block-card-groups__tabs {
  border: none;
  background-color: transparent;
}
.block-card-groups__tabs .tabs-title a {
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #EBEBEB;
  padding: 0.75rem;
  color: #30363A;
}
.block-card-groups__tabs .tabs-title:first-child a {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.block-card-groups__tabs .tabs-title:last-child a {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.block-card-groups__tabs .tabs-title.is-active a {
  background-color: #FC003B;
  color: #ffffff;
}
.block-card-groups__tabs .tabs-title:hover a {
  background-color: #30363A;
  color: #ffffff;
}
.block-card-groups__tabs .tabs-title.is-active:hover a {
  background-color: #B02336;
  color: #ffffff;
}
.block-card-groups__tabs-content {
  border: none;
  background-color: transparent;
}
.block-card-groups__tabs-content .tabs-panel {
  position: relative;
  padding: 0 0.625rem 3.125rem;
  overflow-x: auto;
  overflow-y: hidden;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__tabs-content .tabs-panel {
    padding: 0 1.25rem 5rem;
  }
}
@media screen and (min-width: 120em) {
  .block-card-groups__tabs-content .tabs-panel {
    padding: 0 16.25rem 5rem;
  }
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar {
  display: block;
  height: 0.25rem;
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track {
  background-color: transparent;
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-thumb {
  background-color: #B2B2B2;
  border-radius: 0.25rem;
  border-right: none;
  border-left: none;
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:end {
  background: #EBEBEB;
  border-radius: 0.25rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:end {
    margin-right: 1.25rem;
  }
}
@media screen and (min-width: 120em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:end {
    margin-right: 16.25rem;
  }
}
.block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:start {
  background: #EBEBEB;
  border-radius: 0.25rem;
  margin-left: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:start {
    margin-left: 1.25rem;
  }
}
@media screen and (min-width: 120em) {
  .block-card-groups__tabs-content .tabs-panel::-webkit-scrollbar-track-piece:start {
    margin-left: 16.25rem;
  }
}
.block-card-groups__g {
  display: flex;
}
.block-card-groups__gi {
  flex: 0 0 auto;
  width: 13.75rem;
  margin-right: 1.875rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__gi {
    width: 15.5rem;
    margin-right: 2.5rem;
  }
}
.block-card-groups__gi--last {
  margin-right: 0;
}
@media print, screen and (min-width: 48.0625em) {
  .block-card-groups__gi--last {
    margin-right: 0;
  }
}
.block-card-groups__gi--empty {
  display: none;
  margin-right: 0;
}
@media screen and (min-width: 120em) {
  .block-card-groups__gi--empty {
    display: block;
  }
}
.block-card-groups__gi-header {
  margin-bottom: 2rem;
}
.block-card-groups__gi-header > *:last-child {
  margin-bottom: 0;
}
.block-card-groups__gi-image-container {
  margin-bottom: 2.5rem;
}
.block-card-groups__gi-title {
  color: #30363A;
}
.block-card-groups__gi-body {
  margin-bottom: 2rem;
}
.block-card-groups__gi-body > *:last-child {
  margin-bottom: 0;
}
.block-card-groups__gi-content {
  color: #30363A;
}
.block-card-groups__gi-content > *:last-child {
  margin-bottom: 0;
}

.block-contact-form {
  position: relative;
  background-color: #B02336;
  overflow: hidden;
}
.block-contact-form__inner {
  position: relative;
  padding: 5rem 0 0;
  max-width: 40.75rem;
  width: 100%;
  margin: 0 auto;
}
@media print, screen and (min-width: 64.0625em) {
  .block-contact-form__inner {
    padding: 7.5rem 0;
    max-width: none;
    margin: 0;
    min-height: 50rem;
  }
}
.block-contact-form__header {
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.block-contact-form__body {
  position: relative;
  z-index: 1;
  margin-bottom: 5rem;
}
@media print, screen and (min-width: 64.0625em) {
  .block-contact-form__body {
    margin-bottom: 0;
  }
}
.block-contact-form .gform_confirmation_message {
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 1.25rem;
}
.block-contact-form .gform_validation_errors {
  background-color: #ffffff !important;
}
.block-contact-form .gform-field-label {
  display: flex;
  justify-content: space-between;
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 500 !important;
}
.block-contact-form .gform-field-label--type-sub {
  text-transform: none;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 500 !important;
}
.block-contact-form .gfield_required,
.block-contact-form .gfield_required_text {
  color: rgba(255, 255, 255, 0.64);
  text-transform: none;
}
.block-contact-form .gform_required_legend {
  display: none;
}
.block-contact-form .ginput_container input,
.block-contact-form .ginput_container select,
.block-contact-form .ginput_container textarea {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 0.25rem !important;
  padding: 1rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  color: #ffffff !important;
  outline: none !important;
}
.block-contact-form .ginput_container input::-webkit-input-placeholder,
.block-contact-form .ginput_container select::-webkit-input-placeholder,
.block-contact-form .ginput_container textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.64) !important;
}
.block-contact-form .ginput_container input::-moz-placeholder,
.block-contact-form .ginput_container select::-moz-placeholder,
.block-contact-form .ginput_container textarea::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.64) !important;
}
.block-contact-form .ginput_container input:-ms-input-placeholder,
.block-contact-form .ginput_container select:-ms-input-placeholder,
.block-contact-form .ginput_container textarea:-ms-input-placeholder { /* IE 10+ */
  color: rgba(255, 255, 255, 0.64) !important;
}
.block-contact-form .ginput_container input:-moz-placeholder,
.block-contact-form .ginput_container select:-moz-placeholder,
.block-contact-form .ginput_container textarea:-moz-placeholder { /* Firefox 18- */
  color: rgba(255, 255, 255, 0.64) !important;
}
.block-contact-form .ginput_container input:hover,
.block-contact-form .ginput_container select:hover,
.block-contact-form .ginput_container textarea:hover {
  border: 3px solid #ffffff !important;
}
.block-contact-form .ginput_container input:focus,
.block-contact-form .ginput_container select:focus,
.block-contact-form .ginput_container textarea:focus {
  background-color: #ffffff !important;
  color: #30363A !important;
}
.block-contact-form .gfield_error .ginput_container input,
.block-contact-form .gfield_error .ginput_container select,
.block-contact-form .gfield_error .ginput_container textarea {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.block-contact-form .ginput_container input,
.block-contact-form .ginput_container select {
  height: 2.6875rem !important;
}
.block-contact-form .ginput_container select {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.64) !important;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%225%22%20viewBox%3D%220%200%208%205%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.26528e-07%200.5L4%204.5L8%200.5L8.26528e-07%200.5Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  padding: 0 1rem !important;
}
.block-contact-form .ginput_container select:hover, .block-contact-form .ginput_container select:focus {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%225%22%20viewBox%3D%220%200%208%205%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.26528e-07%200.5L4%204.5L8%200.5L8.26528e-07%200.5Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
}
.block-contact-form .ginput_container select option {
  color: #30363A !important;
}
.block-contact-form .ginput_container textarea {
  height: 7.5rem !important;
  resize: none;
}
.block-contact-form .gform_button {
  background-color: #ffffff !important;
  color: #FC003B !important;
  text-transform: uppercase !important;
  border-radius: 0.25rem !important;
  padding: 0.75rem !important;
  font-weight: 500 !important;
}
.block-contact-form .gform-field-label--type-sub {
  color: rgba(255, 255, 255, 0.64) !important;
  font-size: 0.75rem !important;
  line-height: 1 !important;
  margin-top: 0.75rem !important;
}
.block-contact-form .gfield_description {
  color: rgba(255, 255, 255, 0.64) !important;
  font-size: 0.75rem !important;
  line-height: 1 !important;
  margin-top: 0.75rem !important;
}
.block-contact-form .gfield_error .gfield_validation_message {
  background-color: #ffffff;
  padding: 0.75rem 1rem;
  color: #FC003B !important;
  font-weight: 700;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  margin-top: 0 !important;
}
@media print, screen and (min-width: 64.0625em) {
  .block-contact-form__shape-container {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-50%);
    max-width: 58.125rem;
    width: 100%;
  }
}

.block-feature-1 {
  position: relative;
  background-color: #B02336;
  overflow: hidden;
}
.block-feature-1__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #ffffff;
  padding: 2.5rem 0;
}
@media print, screen and (min-width: 48.0625em) {
  .block-feature-1__inner {
    min-height: 31.25rem;
  }
}
.block-feature-1__inner > *:last-child {
  margin-bottom: 0;
}
.block-feature-1__inner h1, .block-feature-1__inner h2, .block-feature-1__inner h3, .block-feature-1__inner h4, .block-feature-1__inner h5, .block-feature-1__inner h6 {
  color: inherit;
}
.block-feature-1__header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  max-width: 35rem;
}
.block-feature-1__header > *:last-child {
  margin-bottom: 0;
}
.block-feature-1__body {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  max-width: 35rem;
}
.block-feature-1__body > *:last-child {
  margin-bottom: 0;
}
.block-feature-1__content > *:last-child {
  margin-bottom: 0;
}
.block-feature-1__footer {
  position: relative;
  z-index: 1;
  max-width: 35rem;
}
.block-feature-1__footer > *:last-child {
  margin-bottom: 0;
}
.block-feature-1__shape-container {
  display: none;
  position: absolute;
  bottom: 0;
  right: -8.125rem;
  width: 58.125rem;
}
@media print, screen and (min-width: 64.0625em) {
  .block-feature-1__shape-container {
    display: block;
  }
}

.block-spacer--height-1, .block-spacer--height-1.is-preview {
  height: 0.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-1, .block-spacer--height-1.is-preview {
    height: 0.625rem;
  }
}
.block-spacer--height-2, .block-spacer--height-2.is-preview {
  height: 1.25rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-2, .block-spacer--height-2.is-preview {
    height: 1.25rem;
  }
}
.block-spacer--height-3, .block-spacer--height-3.is-preview {
  height: 1.875rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-3, .block-spacer--height-3.is-preview {
    height: 1.875rem;
  }
}
.block-spacer--height-4, .block-spacer--height-4.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-4, .block-spacer--height-4.is-preview {
    height: 2.5rem;
  }
}
.block-spacer--height-5, .block-spacer--height-5.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-5, .block-spacer--height-5.is-preview {
    height: 3.125rem;
  }
}
.block-spacer--height-6, .block-spacer--height-6.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-6, .block-spacer--height-6.is-preview {
    height: 3.75rem;
  }
}
.block-spacer--height-7, .block-spacer--height-7.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-7, .block-spacer--height-7.is-preview {
    height: 4.375rem;
  }
}
.block-spacer--height-8, .block-spacer--height-8.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-8, .block-spacer--height-8.is-preview {
    height: 5rem;
  }
}
.block-spacer--height-9, .block-spacer--height-9.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-9, .block-spacer--height-9.is-preview {
    height: 5.625rem;
  }
}
.block-spacer--height-10, .block-spacer--height-10.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-10, .block-spacer--height-10.is-preview {
    height: 6.25rem;
  }
}
.block-spacer--height-11, .block-spacer--height-11.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-11, .block-spacer--height-11.is-preview {
    height: 6.875rem;
  }
}
.block-spacer--height-12, .block-spacer--height-12.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-12, .block-spacer--height-12.is-preview {
    height: 7.5rem;
  }
}
.block-spacer--height-13, .block-spacer--height-13.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-13, .block-spacer--height-13.is-preview {
    height: 8.125rem;
  }
}
.block-spacer--height-14, .block-spacer--height-14.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-14, .block-spacer--height-14.is-preview {
    height: 8.75rem;
  }
}
.block-spacer--height-15, .block-spacer--height-15.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-15, .block-spacer--height-15.is-preview {
    height: 9.375rem;
  }
}
.block-spacer--height-16, .block-spacer--height-16.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-16, .block-spacer--height-16.is-preview {
    height: 10rem;
  }
}
.block-spacer--height-17, .block-spacer--height-17.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-17, .block-spacer--height-17.is-preview {
    height: 10.625rem;
  }
}
.block-spacer--height-18, .block-spacer--height-18.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-18, .block-spacer--height-18.is-preview {
    height: 11.25rem;
  }
}
.block-spacer--height-19, .block-spacer--height-19.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-19, .block-spacer--height-19.is-preview {
    height: 11.875rem;
  }
}
.block-spacer--height-20, .block-spacer--height-20.is-preview {
  height: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--height-20, .block-spacer--height-20.is-preview {
    height: 12.5rem;
  }
}
.block-spacer--size-small {
  height: 2.5rem;
}
.block-spacer--size-medium {
  height: 5rem;
}
.block-spacer--size-large {
  height: 5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-spacer--size-large {
    height: 7.5rem;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-spacer--size-large {
    height: 10rem;
  }
}
.block-spacer.is-preview {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='2' height='2' fill='%23000000' fill-opacity='0.1' /%3E%3Crect x='2' y='0' width='6' height='2' fill='%23000000' fill-opacity='0' /%3E%3Crect x='0' y='2' width='6' height='2' fill='%23000000' fill-opacity='0' /%3E%3Crect x='6' y='2' width='2' height='2' fill='%23000000' fill-opacity='0.1' /%3E%3Crect x='0' y='4' width='4' height='2' fill='%23000000' fill-opacity='0' /%3E%3Crect x='4' y='4' width='2' height='2' fill='%23000000' fill-opacity='0.1' /%3E%3Crect x='6' y='4' width='2' height='2' fill='%23000000' fill-opacity='0' /%3E%3Crect x='0' y='6' width='2' height='2' fill='%23000000' fill-opacity='0' /%3E%3Crect x='2' y='6' width='2' height='2' fill='%23000000' fill-opacity='0.1' /%3E%3Crect x='4' y='6' width='4' height='2' fill='%23000000' fill-opacity='0' /%3E%3C/svg%3E");
  background-size: 8px 8px;
}

.block-two-column--has-background .block-two-column__inner {
  background-color: #EBEBEB;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 2.5rem;
  border-radius: 0.5rem;
}
.block-two-column--has-background-image .block-two-column__inner {
  border-radius: 0.5rem;
  padding: 2.5rem 1.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .block-two-column--has-background-image .block-two-column__inner {
    padding: 5rem;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .block-two-column--has-background-image .block-two-column__inner {
    padding: 7.5rem;
  }
}
.block-two-column__column {
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 64.0625em) {
  .block-two-column__column {
    margin-bottom: 0;
    height: 100%;
  }
}
.block-two-column__column > *:last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 64.06125em) {
  .block-two-column__inner > .grid-x > .cell {
    margin: 0 auto;
  }
}
.block-two-column__inner > .grid-x > .cell:last-child .block-two-column__column {
  margin-bottom: 0;
}
.block-two-column__content > *:last-child {
  margin-bottom: 0;
}

.btc-layout-accordion {
  display: flex;
  height: 100%;
}
.btc-layout-accordion__inner > *:last-child {
  margin-bottom: 0;
}
.btc-layout-accordion__header {
  margin-bottom: 2.5rem;
}
.btc-layout-accordion__header > *:last-child {
  margin-bottom: 0;
}
.btc-layout-accordion__image-container {
  margin-bottom: 2.5rem;
}
.btc-layout-accordion__body {
  margin-bottom: 2.5rem;
}
.btc-layout-accordion__body > *:last-child {
  margin-bottom: 0;
}
.btc-layout-accordion__content {
  margin-bottom: 2.5rem;
}
.btc-layout-accordion__content > *:last-child {
  margin-bottom: 0;
}
.btc-layout-accordion__accordion {
  margin: 0;
}
.btc-layout-accordion__item-title {
  max-width: 10.9375rem;
}
.btc-layout-accordion__item-footer-image-container {
  display: flex;
  justify-content: flex-end;
}

.btc-layout-grid {
  display: flex;
  height: 100%;
}
.btc-layout-grid__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0.5rem;
}
.btc-layout-grid__item--has-background {
  background-color: #EBEBEB;
  padding: 1.5rem;
}
.btc-layout-grid__item > *:last-child {
  margin-bottom: 0;
}
.btc-layout-grid__item-header {
  margin-bottom: 2rem;
}
.btc-layout-grid__item-header > *:last-child {
  margin-bottom: 0;
}
.btc-layout-grid__item-title {
  max-width: 10.9375rem;
}
.btc-layout-grid__item--has-background .btc-layout-grid__item-title {
  font-weight: 700;
}
.btc-layout-grid__item-body {
  margin-bottom: 2rem;
}
.btc-layout-grid__item-body > *:last-child {
  margin-bottom: 0;
}
.btc-layout-grid__item-content > *:last-child {
  margin-bottom: 0;
}
.btc-layout-grid__item-footer:not(:first-child) {
  margin-top: -2rem;
}
.btc-layout-grid__item-footer > *:last-child {
  margin-bottom: 0;
}
.btc-layout-grid__item--align-footer-image-to-bottom .btc-layout-grid__item-footer:not(:first-child) {
  margin-top: auto;
}
.btc-layout-grid__item-footer-image-container {
  display: flex;
  justify-content: flex-end;
}

.btc-layout-image__image-container {
  border-radius: 8px;
  overflow: hidden;
}

.btc-layout-text {
  display: flex;
  height: 100%;
}
.btc-layout-text--color-type-light {
  color: #ffffff;
}
.btc-layout-text--color-type-dark {
  color: #30363A;
}
.btc-layout-text__inner > *:last-child {
  margin-bottom: 0;
}
.btc-layout-text__header {
  margin-bottom: 2.5rem;
}
.btc-layout-text__header > *:last-child {
  margin-bottom: 0;
}
.btc-layout-text--title-heading-h3 .btc-layout-text__header {
  margin-bottom: 1.5rem;
}
.btc-layout-text__image-container {
  margin-bottom: 2.5rem;
}
.btc-layout-text__body {
  margin-bottom: 2.5rem;
}
.btc-layout-text__body > *:last-child {
  margin-bottom: 0;
}
.btc-layout-text__body p a {
  color: #FC003B;
}
.btc-layout-text__content {
  margin-bottom: 2.5rem;
}
.btc-layout-text__content > *:last-child {
  margin-bottom: 0;
}
.btc-layout-text--color-type-light .button-link {
  color: #ffffff;
}
.btc-layout-text--color-type-light .button-link:after, .btc-layout-text--color-type-light .button-link:hover:after, .btc-layout-text--color-type-light .button-link:focus:after {
  background-image: url(../images/icon-arrow-right-white.svg);
}

.btc-layout-map {
  height: 100%;
}
.btc-layout-map__wrap {
  position: relative;
  height: 28.125rem;
}
@media print, screen and (min-width: 64.0625em) {
  .btc-layout-map__wrap {
    height: 100%;
  }
}
.btc-layout-map__map {
  height: 100%;
  border-radius: 0.5rem;
}
.btc-layout-map__overlay {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 1.25rem;
}
@media print, screen and (min-width: 64.0625em) {
  .btc-layout-map__overlay {
    top: 2.5rem;
    left: 2.5rem;
    padding: 2.5rem;
  }
}
.btc-layout-map__overlay p {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.block-text__inner {
  max-width: 51.1111111111rem;
  width: 100%;
}
.block-text--align-left .block-text__inner {
  margin-right: auto;
}
.block-text--align-center .block-text__inner {
  margin: 0 auto;
}
.block-text--align-right .block-text__inner {
  margin-left: auto;
}
.block-text__content > *:last-child {
  margin-bottom: 0;
}

.block-three-column__column {
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 64.0625em) {
  .block-three-column__column {
    margin-bottom: 0;
  }
}
.block-three-column__column > *:last-child {
  margin-bottom: 0;
}
.block-three-column__column-title {
  margin: 0 0 1.5rem;
  line-height: 1;
}
.block-three-column__column-content > *:last-child {
  margin-bottom: 0;
}
.block-three-column__inner > .grid-x > .cell:last-child .block-three-column__column {
  margin-bottom: 0;
}

.block-gallery__item-image-container {
  position: relative;
  padding: 100% 0 0;
}
.block-gallery__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.block-phone-grid__title {
  margin-bottom: 5rem;
}
.block-phone-grid__item {
  padding: 1.5rem;
  background-color: #EBEBEB;
  height: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.5rem;
}
.block-phone-grid__item p {
  margin-bottom: 0;
}
.block-phone-grid__item-title {
  font-weight: 700;
}
.block-four-column__title {
  margin-bottom: 5rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 7.5rem;
  transition: transform ease-out 0.1s;
  display: none;
}
@media screen and (min-width: 75.0625em) {
  .header {
    display: block;
  }
}
.header--collapse {
  transform: translateY(-3rem);
}
.header__top {
  height: 3rem;
  display: flex;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.header .language-selector {
  margin-left: auto;
}
.header__bottom {
  display: flex;
  background-color: #ffffff;
  padding: 0 1rem;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  border-radius: 0.5rem;
}
.header--collapse .header__bottom {
  box-shadow: 0px 0.375rem 1.5rem 0px rgba(0, 0, 0, 0.08);
}
.header__primary-main-menu li {
  margin-right: 2rem;
}
.header__primary-main-menu li:last-child {
  margin-right: 0;
}
.header__primary-main-menu li a {
  color: #30363A;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0;
}
.header__primary-main-menu li a:hover {
  color: #B02336;
}
.header__primary-main-menu li.current-menu-item a, .header__primary-main-menu li.current_page_parent a {
  color: #FC003B;
}
.header__secondary-main-menu li {
  margin-right: 2rem;
}
.header__secondary-main-menu li:last-child {
  margin-right: 0;
}
.header__secondary-main-menu li a {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  padding: 0;
}
.header__secondary-main-menu li a:hover {
  text-decoration: underline;
}
.header__secondary-main-menu li.current-menu-item a, .header__secondary-main-menu li.current_page_parent a {
  text-decoration: underline;
}
.header--alt .header__secondary-main-menu li a {
  color: #30363A;
}
.header--alt .header__secondary-main-menu li a:hover {
  color: #FC003B;
  text-decoration: none;
}
.header__cta-menu li {
  margin-right: 1rem;
}
.header__cta-menu li:last-child {
  margin-right: 0;
}

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 7.5rem;
  transition: transform ease-out 0.1s;
}
.mobile-header--collapse {
  transform: translateY(-3rem);
}
@media screen and (min-width: 75.0625em) {
  .mobile-header {
    display: none;
  }
}
.mobile-header__header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
.mobile-header__menu-open {
  display: flex;
}
.mobile-header--open .mobile-header__menu-open {
  display: none;
}
.mobile-header__menu-close {
  display: none;
}
.mobile-header--open .mobile-header__menu-close {
  display: flex;
}
.mobile-header__body {
  display: flex;
  background-color: #ffffff;
  padding: 0 0.75rem;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  border-radius: 0.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .mobile-header__body {
    padding: 0 1rem;
  }
}
.mobile-header--collapse .mobile-header__body {
  box-shadow: 0px 0.375rem 1.5rem 0px rgba(0, 0, 0, 0.08);
}
.mobile-header--open .mobile-header__body {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #EBEBEB;
}
.mobile-header--open.mobile-header--collapse .mobile-header__body {
  box-shadow: none;
}
.mobile-header__logo-container {
  margin-right: 0.75rem;
  max-width: 15.625rem;
}
@media print, screen and (min-width: 48.0625em) {
  .mobile-header__logo-container {
    max-width: none;
  }
}
.mobile-header__footer {
  background-color: #EBEBEB;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding: 3rem 0.75rem 0.75rem;
  display: none;
}
.mobile-header__footer > *:last-child {
  margin-bottom: 0;
}
.mobile-header--open .mobile-header__footer {
  display: block;
}
.mobile-header__primary-main-nav {
  margin-bottom: 3rem;
}
.mobile-header__primary-main-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 1.5rem;
  line-height: 1;
}
.mobile-header__primary-main-menu > li {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 1.5rem;
}
.mobile-header__primary-main-menu > li:last-child {
  margin: 0;
}
.mobile-header__primary-main-menu > li > a {
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
  text-transform: uppercase;
}
.mobile-header__primary-main-menu > li.current-menu-item a, .mobile-header__primary-main-menu > li.current_page_parent a {
  color: #FC003B;
}
.mobile-header__secondary-main-nav {
  margin-bottom: 3rem;
}
.mobile-header__secondary-main-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-size: 1rem;
  line-height: 1;
}
.mobile-header__secondary-main-menu > li {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 1.5rem;
}
.mobile-header__secondary-main-menu > li:last-child {
  margin: 0;
}
.mobile-header__secondary-main-menu > li > a {
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}
.mobile-header__secondary-main-menu > li > a:hover {
  color: #FC003B;
}
.mobile-header__secondary-main-menu > li.current-menu-item a, .mobile-header__secondary-main-menu > li.current_page_parent a {
  color: #FC003B;
}
.mobile-header__cta-menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.mobile-header__cta-menu > li {
  margin: 0 0 1rem;
}
.mobile-header__cta-menu > li:last-child {
  margin: 0;
}

/*

.post-type-archive-va_rse .header__secondary-main-menu > li.current_page_parent > a:not(:hover),
.single-va_rse .header__secondary-main-menu > li.current_page_parent > a:not(:hover) {
	text-decoration:none;
}


.post-type-archive-va_rse .mobile-header__secondary-main-menu > li.current_page_parent > a:not(:hover),
.single-va_rse .mobile-header__secondary-main-menu > li.current_page_parent > a:not(:hover) {
	color:$rich-black;
}
*/
.footer__inner {
  padding: 0 0 2.5rem;
}
.footer__secondary {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 48.0625em) {
  .footer__secondary {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 75.0625em) {
  .footer__primary-top {
    margin-bottom: 2rem;
  }
}
.footer__main-nav {
  width: 100%;
}
.footer__main-menu {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 75.0625em) {
  .footer__main-menu {
    flex-flow: row wrap;
  }
}
.footer__main-menu > li {
  width: 50%;
  margin: 0 0 1.5rem;
}
@media screen and (min-width: 75.0625em) {
  .footer__main-menu > li {
    width: auto;
  }
}
.footer__main-menu > li > a {
  padding: 0;
  font-weight: 700;
  color: #30363A;
}
.footer__main-menu > li > a:hover, .footer__main-menu > li > a.active {
  color: #FC003B;
}
@media screen and (min-width: 75.0625em) {
  .footer__primary-bottom {
    display: flex;
    align-items: center;
  }
}
.footer__miscellaneous-nav {
  margin-bottom: 1rem;
}
@media screen and (min-width: 75.0625em) {
  .footer__miscellaneous-nav {
    order: 1;
    margin-right: 2.5rem;
    margin-bottom: 0;
  }
}
.footer__miscellaneous-menu > li > a {
  color: #999999;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0;
}
.footer__credits {
  font-size: 0.75rem;
  line-height: 1;
  color: #999999;
}
@media screen and (min-width: 75.0625em) {
  .footer__credits {
    order: 2;
  }
}
.footer__credits > *:last-child {
  margin-bottom: 0;
}
.footer__credits p {
  line-height: inherit;
}
.footer__cta-nav {
  margin-bottom: 3rem;
}
@media screen and (min-width: 75.0625em) {
  .footer__cta-nav {
    order: 3;
    margin-bottom: 0;
    margin-left: auto;
  }
}

.site-selector {
  background-color: #B02336;
}
.site-selector #cookie-notice .cookie-notice-container {
  margin-left: 0;
  margin-right: auto;
}
.site-selector .header {
  padding: 1rem 0 0;
  height: auto;
}
@media print, screen and (max-width: 75.06125em) {
  .site-selector .header {
    display: block;
  }
}
@media print, screen and (max-width: 64.06125em) {
  .site-selector .header {
    position: static;
    margin-bottom: 5rem;
  }
}
@media print, screen and (max-width: 48.06125em) {
  .site-selector .header {
    margin-bottom: 2.5rem;
  }
}
.site-selector .header--collapse {
  transform: none;
}
.site-selector__secondary-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1rem;
  line-height: 1;
}
.site-selector__secondary-menu li {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  margin: 0 1rem 0 0;
}
.site-selector__secondary-menu li > a {
  display: inline-flex;
  align-items: center;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #ffffff;
  padding-right: 0.875rem;
  background-image: url(../images/icon-external.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.site-selector__secondary-menu li--active > a, .site-selector__secondary-menu li:hover > a {
  text-decoration: underline;
}
.site-selector__primary {
  margin: 0 0 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .site-selector__primary {
    margin: 0 0 5rem;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .site-selector__primary {
    padding: 7.5rem 0;
    margin: 0;
    height: 100%;
  }
}
.site-selector__primary > *:last-child {
  margin-bottom: 0;
}
.site-selector__logo-container {
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .site-selector__logo-container {
    margin-bottom: 4rem;
  }
}
.site-selector__title {
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .site-selector__title {
    margin-bottom: 4rem;
  }
}
.site-selector__content {
  font-size: 1.5rem;
  line-height: 1.1666666667;
  font-weight: 300;
  color: #ffffff;
}
@media print, screen and (min-width: 64.0625em) {
  .site-selector__content {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.site-selector__content > *:last-child {
  margin-bottom: 0;
}
.site-selector__content p {
  font-size: inherit;
  line-height: inherit;
}
.site-selector__secondary {
  position: relative;
  height: 100%;
  flex-direction: column;
  display: flex;
}
@media print, screen and (min-width: 64.0625em) {
  .site-selector__secondary {
    display: block;
    padding: 7.5rem 0;
  }
}
.site-selector__nav {
  position: relative;
  z-index: 1;
  margin: 0 0 2.5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .site-selector__nav {
    margin: 0 0 5rem;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .site-selector__nav {
    margin: 0;
  }
}
.site-selector__nav-title {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 1rem;
}
.site-selector__nav-remember {
  margin: 0 0 1rem;
  overflow: hidden;
  position: relative;
}
.site-selector__nav-remember input {
  position: absolute;
  bottom: 100%;
  right: 100%;
}
.site-selector__nav-remember label {
  display: flex;
  font-size: 1rem;
  line-height: 2;
  color: #ffffff;
  align-items: center;
  margin: 0;
}
.site-selector__nav-remember label:before {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  border: 2px solid #ffffff;
  margin-right: 0.5rem;
}
.site-selector__nav-remember input:checked + label:before {
  background-color: #ffffff;
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.site-selector__nav-sm {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.site-selector__nav-sm-item {
  margin: 0 0 0.5rem;
}
.site-selector__nav-sm-item:last-child {
  margin: 0;
}
.site-selector__nav-sm-button {
  display: flex;
  background-color: #EBEBEB;
  padding: 1rem;
  align-items: center;
  color: #30363A;
}
.site-selector__nav-sm-button:hover {
  background-color: #30363A;
  color: #ffffff;
}
.site-selector__nav-sm-button-icon {
  width: 3rem;
  height: 2rem;
  object-fit: cover;
  object-position: center center;
}
.site-selector__nav-sm-button-label {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 1rem;
}
.site-selector__shape-container {
  margin-top: auto;
}
@media print, screen and (min-width: 64.0625em) {
  .site-selector__shape-container {
    position: absolute;
    bottom: 0;
    right: -15.3125rem;
    width: 58.125rem;
    padding: 0;
  }
}
.site-selector__shape {
  width: 100%;
  height: auto;
}

.error404 .block-big-hero__inner {
  padding: 12.5rem 0 0;
  align-items: flex-start;
}
.error404 .block-big-hero__content h1 {
  margin: 0 0 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1666666667;
  color: #ffffff;
}
.error404 .block-big-hero__content h2 {
  margin: 0 0 2rem;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.0625rem;
  color: #ffffff;
}
@media print, screen and (min-width: 48.0625em) {
  .error404 .block-big-hero__content h2 {
    font-size: 3rem;
  }
}
.error404 .block-big-hero__content h3 {
  margin: 0 0 5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}
@media print, screen and (min-width: 48.0625em) {
  .error404 .block-big-hero__content h3 {
    font-size: 4rem;
  }
}
.error404 .block-big-hero__content p {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.0625rem;
  color: #ffffff;
  margin: 0 0 5rem;
}
@media print, screen and (min-width: 48.0625em) {
  .error404 .block-big-hero__content p {
    font-size: 2rem;
  }
}
.error404 .footer {
  padding-top: 1.5rem;
}

/*# sourceMappingURL=main.css.map */
