@charset "UTF-8";
/*! 
 * OverlayScrollbars
 * Version: 2.10.0
 * 
 * Copyright (c) Rene Haas | KingSora.
 * https://github.com/KingSora
 * 
 * Released under the MIT license.
 */
.os-size-observer,
.os-size-observer-listener {
  scroll-behavior: auto !important;
  direction: inherit;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
  box-sizing: border-box;
}

.os-size-observer,
.os-size-observer-listener,
.os-size-observer-listener-item,
.os-size-observer-listener-item-final {
  writing-mode: horizontal-tb;
  position: absolute;
  left: 0;
  top: 0;
}

.os-size-observer {
  z-index: -1;
  contain: strict;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: inherit;
  border: inherit;
  box-sizing: inherit;
  margin: -133px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0.1);
}

.os-size-observer::before {
  content: "";
  flex: none;
  box-sizing: inherit;
  padding: 10px;
  width: 10px;
  height: 10px;
}

.os-size-observer-appear {
  animation: os-size-observer-appear-animation 1ms forwards;
}

.os-size-observer-listener {
  box-sizing: border-box;
  position: relative;
  flex: auto;
  padding: inherit;
  border: inherit;
  margin: -133px;
  transform: scale(10);
}

.os-size-observer-listener.ltr {
  margin-right: -266px;
  margin-left: 0;
}

.os-size-observer-listener.rtl {
  margin-left: -266px;
  margin-right: 0;
}

.os-size-observer-listener:empty::before {
  content: "";
  width: 100%;
  height: 100%;
}

.os-size-observer-listener:empty::before, .os-size-observer-listener > .os-size-observer-listener-item {
  display: block;
  position: relative;
  padding: inherit;
  border: inherit;
  box-sizing: content-box;
  flex: auto;
}

.os-size-observer-listener-scroll {
  box-sizing: border-box;
  display: flex;
}

.os-size-observer-listener-item {
  right: 0;
  bottom: 0;
  overflow: hidden;
  direction: ltr;
  flex: none;
}

.os-size-observer-listener-item-final {
  transition: none;
}

@keyframes os-size-observer-appear-animation {
  from {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}
.os-trinsic-observer {
  flex: none;
  box-sizing: border-box;
  position: relative;
  max-width: 0px;
  max-height: 1px;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
  z-index: -1;
  height: 0;
  top: calc(100% + 1px);
  contain: strict;
}

.os-trinsic-observer:not(:empty) {
  height: calc(100% + 1px);
  top: -1px;
}

.os-trinsic-observer:not(:empty) > .os-size-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
}

/**
 * hide native scrollbars
 * changes to this styles need to be reflected in the environment styles to correctly detect scrollbar hiding
 */
[data-overlayscrollbars-initialize],
[data-overlayscrollbars-viewport~=scrollbarHidden] {
  scrollbar-width: none !important;
}

[data-overlayscrollbars-initialize]::-webkit-scrollbar,
[data-overlayscrollbars-initialize]::-webkit-scrollbar-corner,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/**
 * elements wont suddenly clip after initialization is done
 */
[data-overlayscrollbars-initialize]:not([data-overlayscrollbars]):not(html):not(body) {
  overflow: auto;
}

/**
 * applied to body 
 */
html[data-overlayscrollbars-body] {
  overflow: hidden;
}

html[data-overlayscrollbars-body],
html[data-overlayscrollbars-body] > body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html[data-overlayscrollbars-body] > body {
  overflow: visible;
  margin: 0;
}

/**
 * structure setup 
 */
[data-overlayscrollbars] {
  position: relative;
}

[data-overlayscrollbars~=host],
[data-overlayscrollbars-padding] {
  display: flex;
  align-items: stretch !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  scroll-behavior: auto !important;
}

[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  box-sizing: inherit;
  position: relative;
  flex: auto !important;
  height: auto;
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: none;
  z-index: 0;
}

[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  --os-vaw: 0;
  --os-vah: 0;
  outline: none;
}

[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]):focus {
  outline: none;
}

[data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  min-width: 1px;
  min-height: 1px;
  width: var(--os-vaw);
  height: var(--os-vah);
}

[data-overlayscrollbars],
[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport] {
  overflow: hidden !important;
}

[data-overlayscrollbars~=noClipping],
[data-overlayscrollbars-padding~=noClipping] {
  overflow: visible !important;
}

[data-overlayscrollbars-viewport~=measuring] {
  overflow: hidden !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

[data-overlayscrollbars-viewport~=overflowXVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
  overflow-x: visible !important;
}

[data-overlayscrollbars-viewport~=overflowXHidden] {
  overflow-x: hidden !important;
}

[data-overlayscrollbars-viewport~=overflowXScroll] {
  overflow-x: scroll !important;
}

[data-overlayscrollbars-viewport~=overflowYVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
  overflow-y: visible !important;
}

[data-overlayscrollbars-viewport~=overflowYHidden] {
  overflow-y: hidden !important;
}

[data-overlayscrollbars-viewport~=overflowYScroll] {
  overflow-y: scroll !important;
}

[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) {
  font-size: 0 !important;
  line-height: 0 !important;
}

[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::before,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::after,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) > * {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

[data-overlayscrollbars-viewport~=scrolling] {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

[data-overlayscrollbars-content] {
  box-sizing: inherit;
}

/**
 * Display contents to bridge any flickering during deferred initialization.
 */
[data-overlayscrollbars-contents]:not(#osFakeId):not([data-overlayscrollbars-padding]):not([data-overlayscrollbars-viewport]):not([data-overlayscrollbars-content]) {
  display: contents;
}

/**
 * optional & experimental grid mode
 */
[data-overlayscrollbars-grid],
[data-overlayscrollbars-grid] [data-overlayscrollbars-padding] {
  display: grid;
  grid-template: 1fr/1fr;
}

[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-viewport],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding] > [data-overlayscrollbars-viewport] {
  height: auto !important;
  width: auto !important;
}

@property --os-scroll-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --os-viewport-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
.os-scrollbar {
  --os-viewport-percent: 0;
  --os-scroll-percent: 0;
  --os-scroll-direction: 0;
  --os-scroll-percent-directional: calc(
    var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) *
      var(--os-scroll-direction)
  );
}

.os-scrollbar {
  contain: size layout;
  contain: size layout style;
  transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body > .os-scrollbar {
  position: fixed;
  z-index: 99999;
}

.os-scrollbar-transitionless {
  transition: none !important;
}

.os-scrollbar-track {
  position: relative;
  padding: 0 !important;
  border: none !important;
}

.os-scrollbar-handle {
  position: absolute;
}

.os-scrollbar-track,
.os-scrollbar-handle {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,
.os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle {
  pointer-events: auto;
  touch-action: none;
}

.os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}

.os-scrollbar-vertical {
  top: 0;
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-horizontal {
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-vertical {
  right: auto;
  left: 0;
}

.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-auto-hide.os-scrollbar-auto-hide-hidden {
  opacity: 0;
  visibility: hidden;
}

.os-scrollbar-interaction.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-unusable,
.os-scrollbar-unusable *,
.os-scrollbar-wheel,
.os-scrollbar-wheel * {
  pointer-events: none !important;
}

.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important;
  transition: none !important;
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  bottom: 0;
  left: calc(var(--os-scroll-percent-directional) * 100%);
  transform: translateX(calc(var(--os-scroll-percent-directional) * -100%));
  width: calc(var(--os-viewport-percent) * 100%);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  right: 0;
  top: calc(var(--os-scroll-percent-directional) * 100%);
  transform: translateY(calc(var(--os-scroll-percent-directional) * -100%));
  height: calc(var(--os-viewport-percent) * 100%);
}

@supports (container-type: size) {
  .os-scrollbar-track {
    container-type: size;
  }
  .os-scrollbar-horizontal .os-scrollbar-handle {
    left: auto;
    transform: translateX(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-vertical .os-scrollbar-handle {
    top: auto;
    transform: translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-rtl.os-scrollbar-horizontal .os-scrollbar-handle {
    right: auto;
    left: 0;
  }
}
.os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle {
  right: auto;
  left: 0;
}

.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl {
  left: 0;
  right: 0;
}

.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl {
  top: 0;
  bottom: 0;
}

@media print {
  .os-scrollbar {
    display: none;
  }
}
.os-scrollbar {
  --os-size: 0;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
  --os-track-border-radius: 0;
  --os-track-bg: none;
  --os-track-bg-hover: none;
  --os-track-bg-active: none;
  --os-track-border: none;
  --os-track-border-hover: none;
  --os-track-border-active: none;
  --os-handle-border-radius: 0;
  --os-handle-bg: none;
  --os-handle-bg-hover: none;
  --os-handle-bg-active: none;
  --os-handle-border: none;
  --os-handle-border-hover: none;
  --os-handle-border-active: none;
  --os-handle-min-size: 33px;
  --os-handle-max-size: none;
  --os-handle-perpendicular-size: 100%;
  --os-handle-perpendicular-size-hover: 100%;
  --os-handle-perpendicular-size-active: 100%;
  --os-handle-interactive-area-offset: 0;
}

.os-scrollbar-track {
  border: var(--os-track-border);
  border-radius: var(--os-track-border-radius);
  background: var(--os-track-bg);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
}

.os-scrollbar-track:hover {
  border: var(--os-track-border-hover);
  background: var(--os-track-bg-hover);
}

.os-scrollbar-track:active {
  border: var(--os-track-border-active);
  background: var(--os-track-bg-active);
}

.os-scrollbar-handle {
  border: var(--os-handle-border);
  border-radius: var(--os-handle-border-radius);
  background: var(--os-handle-bg);
}

.os-scrollbar-handle:hover {
  border: var(--os-handle-border-hover);
  background: var(--os-handle-bg-hover);
}

.os-scrollbar-handle:active {
  border: var(--os-handle-border-active);
  background: var(--os-handle-bg-active);
}

.os-scrollbar-track:before,
.os-scrollbar-handle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.os-scrollbar-horizontal {
  padding: var(--os-padding-perpendicular) var(--os-padding-axis);
  right: var(--os-size);
  height: var(--os-size);
}

.os-scrollbar-horizontal.os-scrollbar-rtl {
  left: var(--os-size);
  right: 0;
}

.os-scrollbar-horizontal .os-scrollbar-track:before {
  top: calc(var(--os-padding-perpendicular) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  min-width: var(--os-handle-min-size);
  max-width: var(--os-handle-max-size);
  height: var(--os-handle-perpendicular-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
}

.os-scrollbar-horizontal .os-scrollbar-handle:before {
  top: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-horizontal:hover .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-horizontal:active .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-active);
}

.os-scrollbar-vertical {
  padding: var(--os-padding-axis) var(--os-padding-perpendicular);
  bottom: var(--os-size);
  width: var(--os-size);
}

.os-scrollbar-vertical .os-scrollbar-track:before {
  left: calc(var(--os-padding-perpendicular) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  min-height: var(--os-handle-min-size);
  max-height: var(--os-handle-max-size);
  width: var(--os-handle-perpendicular-size);
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
}

.os-scrollbar-vertical .os-scrollbar-handle:before {
  left: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle:before {
  right: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  left: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical:hover .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-vertical:active .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-active);
}

/* NONE THEME: */
[data-overlayscrollbars-viewport~=measuring] > .os-scrollbar,
.os-theme-none.os-scrollbar {
  display: none !important;
}

/* DARK & LIGHT THEME: */
.os-theme-dark,
.os-theme-light {
  box-sizing: border-box;
  --os-size: 10px;
  --os-padding-perpendicular: 2px;
  --os-padding-axis: 2px;
  --os-track-border-radius: 10px;
  --os-handle-interactive-area-offset: 4px;
  --os-handle-border-radius: 10px;
}

.os-theme-dark {
  --os-handle-bg: rgba(0, 0, 0, 0.44);
  --os-handle-bg-hover: rgba(0, 0, 0, 0.55);
  --os-handle-bg-active: rgba(0, 0, 0, 0.66);
}

.os-theme-light {
  --os-handle-bg: rgba(255, 255, 255, 0.44);
  --os-handle-bg-hover: rgba(255, 255, 255, 0.55);
  --os-handle-bg-active: rgba(255, 255, 255, 0.66);
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714286%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.choices__list--multiple {
  display: inline;
}

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

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

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

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #004a5c;
  border: 1px solid #003642;
}

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

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

.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  display: block;
}

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

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

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

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

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

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

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

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

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

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

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

.choices__button:focus {
  outline: none;
}

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

.choices__input:focus {
  outline: 0;
}

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

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

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

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */
/*
Adds a tick as a background image to an pseudo element. The image is formatted as an SVG, making it easy to change the color. Because Internet Explorer doesn't support encoded SVGs as background images, a PNG fallback is also included.
The PNG fallbacks is an white square that masks the background color to display the tick.

@param {Color} $color [$black] - Color to use for the tick.
*/
/*
Adds a tick as a background image to an pseudo element. The image is formatted as an SVG, making it easy to change the color. Because Internet Explorer doesn't support encoded SVGs as background images, a PNG fallback is also included.
The PNG fallbacks is an white square that masks the background color to display the tick.

@param {Color} $color [$black] - Color to use for the tick.
*/
:root {
  --breakpoint-small: 0;
  --breakpoint-medium-xs: 360px;
  --breakpoint-medium-s: 390px;
  --breakpoint-medium: 600px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1025px;
  --breakpoint-large: 1200px;
  --breakpoint-xlarge: 1440px;
  --breakpoint-xxlarge: 1600px;
  --breakpoint-xxxlarge: 1920px;
  --breakpoint-uhd: 2560px;
  --breakpoint-four-k: 3840px;
  --web-view-navbar-height: 24px;
}

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansSemiBold";
  src: url("../fonts/OpenSans-Semibold.woff2") format("woff2"), url("../fonts/OpenSans-Semibold.woff") format("woff"), url("../fonts/OpenSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "LatoBold";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/*
Adds a tick as a background image to an pseudo element. The image is formatted as an SVG, making it easy to change the color. Because Internet Explorer doesn't support encoded SVGs as background images, a PNG fallback is also included.
The PNG fallbacks is an white square that masks the background color to display the tick.

@param {Color} $color [$black] - Color to use for the tick.
*/
.text-5xl {
  font-size: 60px;
  line-height: 64px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
.text-4xl {
  font-size: 48px;
  line-height: 56px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
.text-3xl {
  font-size: 36px;
  line-height: 40px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
.text-2xl {
  font-size: 28px;
  line-height: 40px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
.text-xl {
  font-size: 22px;
  line-height: 32px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
.text-lg {
  font-size: 20px;
  line-height: 32px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
.text-md {
  font-size: 18px;
  line-height: 24px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-md {
    font-size: 27px;
    line-height: 36px;
  }
}
.text-sm {
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
.text-xs {
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
.text-xxs {
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 0) {
  .text-small-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 0) {
  .text-small-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 0) {
  .text-small-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 0) {
  .text-small-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 0) {
  .text-small-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 0) {
  .text-small-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 0) {
  .text-small-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 0) {
  .text-small-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 0) {
  .text-small-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 0) {
  .text-small-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-small-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 360px) {
  .text-medium-xs-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 390px) {
  .text-medium-s-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-s-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 600px) {
  .text-medium-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 600px) {
  .text-medium-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 600px) {
  .text-medium-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 600px) {
  .text-medium-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 600px) {
  .text-medium-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 600px) {
  .text-medium-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 600px) {
  .text-medium-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 600px) {
  .text-medium-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 600px) {
  .text-medium-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 600px) {
  .text-medium-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-medium-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .text-tablet-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 768px) {
  .text-tablet-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 768px) {
  .text-tablet-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 768px) {
  .text-tablet-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 768px) {
  .text-tablet-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 768px) {
  .text-tablet-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 768px) {
  .text-tablet-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 768px) {
  .text-tablet-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 768px) {
  .text-tablet-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .text-tablet-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-tablet-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .text-desktop-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-desktop-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .text-large-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 1200px) {
  .text-large-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 1200px) {
  .text-large-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  .text-large-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  .text-large-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 1200px) {
  .text-large-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 1200px) {
  .text-large-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .text-large-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .text-large-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .text-large-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-large-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 1440px) {
  .text-xlarge-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xlarge-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 1600px) {
  .text-xxlarge-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxlarge-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 1920px) {
  .text-xxxlarge-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-xxxlarge-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 2560px) {
  .text-uhd-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-uhd-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-5xl {
    font-size: 60px;
    line-height: 64px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-5xl {
    font-size: 90px;
    line-height: 96px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-4xl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-4xl {
    font-size: 72px;
    line-height: 84px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-3xl {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-3xl {
    font-size: 54px;
    line-height: 60px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-2xl {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-2xl {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-xl {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-xl {
    font-size: 33px;
    line-height: 48px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-lg {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-lg {
    font-size: 30px;
    line-height: 48px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-md {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-md {
    font-size: 27px;
    line-height: 36px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-sm {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-sm {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-xs {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-xs {
    font-size: 21px;
    line-height: 30px;
  }
}
@media (min-width: 3840px) {
  .text-four-k-xxs {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (min-width: 240em) and (min-height: 1900px) {
  .text-four-k-xxs {
    font-size: 18px;
    line-height: 24px;
  }
}
/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 37.5em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*! 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&medium-xs=22.5em&medium-s=24.375em&medium=37.5em&tablet=48em&desktop=64.0625em&large=75em&xlarge=90em&xxlarge=100em&xxxlarge=120em&uhd=160em&four-k=240em";
}

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

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #384750;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.9374625rem;
  margin: 0 0 1rem;
  padding: 0.75rem;
  border: 1px solid #a4b3c1;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: none;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3333;
  color: #384750;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #ffffff;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

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

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

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

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

::placeholder {
  color: #cacaca;
}

[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: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  line-height: 1.5;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: #384750;
}

.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: 8px 0 0 8px;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 8px 8px 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: #0a0a0a;
  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: 1.125rem;
}

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.9374625rem;
  margin: 0 0 1rem;
  padding: 0.75rem;
  appearance: none;
  border: 1px solid #a4b3c1;
  border-radius: 8px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3333;
  color: #384750;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #ffffff;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #fafcff;
  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: #e80f42;
  background-color: #fce6eb;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #e80f42;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 37.5em) {
  h1, .h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h3, .h3 {
    font-size: 1.9375rem;
  }
  h4, .h4 {
    font-size: 1.5625rem;
  }
  h5, .h5 {
    font-size: 1.25rem;
  }
  h6, .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #1468a0;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 90rem;
  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: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

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

ol {
  margin-left: 1.25rem;
}

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

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

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

abbr, abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  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: #0a0a0a;
}

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

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

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

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

.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: #0a0a0a;
  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: #0a0a0a;
  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: 22.5em) {
  .medium-xs-text-left {
    text-align: left;
  }
  .medium-xs-text-right {
    text-align: right;
  }
  .medium-xs-text-center {
    text-align: center;
  }
  .medium-xs-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 24.375em) {
  .medium-s-text-left {
    text-align: left;
  }
  .medium-s-text-right {
    text-align: right;
  }
  .medium-s-text-center {
    text-align: center;
  }
  .medium-s-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .tablet-text-left {
    text-align: left;
  }
  .tablet-text-right {
    text-align: right;
  }
  .tablet-text-center {
    text-align: center;
  }
  .tablet-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .desktop-text-left {
    text-align: left;
  }
  .desktop-text-right {
    text-align: right;
  }
  .desktop-text-center {
    text-align: center;
  }
  .desktop-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-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;
  }
}
.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

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

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

.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1673b1;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1;
  color: #384750;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #fefefe;
  color: #303d45;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: transparent;
  color: #1779ba;
}

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 22.5em) {
  .grid-x > .medium-xs-shrink, .grid-x > .medium-xs-full, .grid-x > .medium-xs-1, .grid-x > .medium-xs-2, .grid-x > .medium-xs-3, .grid-x > .medium-xs-4, .grid-x > .medium-xs-5, .grid-x > .medium-xs-6, .grid-x > .medium-xs-7, .grid-x > .medium-xs-8, .grid-x > .medium-xs-9, .grid-x > .medium-xs-10, .grid-x > .medium-xs-11, .grid-x > .medium-xs-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-x > .medium-s-shrink, .grid-x > .medium-s-full, .grid-x > .medium-s-1, .grid-x > .medium-s-2, .grid-x > .medium-s-3, .grid-x > .medium-s-4, .grid-x > .medium-s-5, .grid-x > .medium-s-6, .grid-x > .medium-s-7, .grid-x > .medium-s-8, .grid-x > .medium-s-9, .grid-x > .medium-s-10, .grid-x > .medium-s-11, .grid-x > .medium-s-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .grid-x > .tablet-shrink, .grid-x > .tablet-full, .grid-x > .tablet-1, .grid-x > .tablet-2, .grid-x > .tablet-3, .grid-x > .tablet-4, .grid-x > .tablet-5, .grid-x > .tablet-6, .grid-x > .tablet-7, .grid-x > .tablet-8, .grid-x > .tablet-9, .grid-x > .tablet-10, .grid-x > .tablet-11, .grid-x > .tablet-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-x > .desktop-shrink, .grid-x > .desktop-full, .grid-x > .desktop-1, .grid-x > .desktop-2, .grid-x > .desktop-3, .grid-x > .desktop-4, .grid-x > .desktop-5, .grid-x > .desktop-6, .grid-x > .desktop-7, .grid-x > .desktop-8, .grid-x > .desktop-9, .grid-x > .desktop-10, .grid-x > .desktop-11, .grid-x > .desktop-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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;
  }
}
.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: 22.5em) {
  .grid-x > .medium-xs-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-xs-12, .grid-x > .medium-xs-11, .grid-x > .medium-xs-10, .grid-x > .medium-xs-9, .grid-x > .medium-xs-8, .grid-x > .medium-xs-7, .grid-x > .medium-xs-6, .grid-x > .medium-xs-5, .grid-x > .medium-xs-4, .grid-x > .medium-xs-3, .grid-x > .medium-xs-2, .grid-x > .medium-xs-1, .grid-x > .medium-xs-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-xs-shrink {
    width: auto;
  }
  .grid-x > .medium-xs-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-xs-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-xs-3 {
    width: 25%;
  }
  .grid-x > .medium-xs-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-xs-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-xs-6 {
    width: 50%;
  }
  .grid-x > .medium-xs-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-xs-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-xs-9 {
    width: 75%;
  }
  .grid-x > .medium-xs-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-xs-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-xs-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-x > .medium-s-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-s-12, .grid-x > .medium-s-11, .grid-x > .medium-s-10, .grid-x > .medium-s-9, .grid-x > .medium-s-8, .grid-x > .medium-s-7, .grid-x > .medium-s-6, .grid-x > .medium-s-5, .grid-x > .medium-s-4, .grid-x > .medium-s-3, .grid-x > .medium-s-2, .grid-x > .medium-s-1, .grid-x > .medium-s-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-s-shrink {
    width: auto;
  }
  .grid-x > .medium-s-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-s-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-s-3 {
    width: 25%;
  }
  .grid-x > .medium-s-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-s-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-s-6 {
    width: 50%;
  }
  .grid-x > .medium-s-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-s-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-s-9 {
    width: 75%;
  }
  .grid-x > .medium-s-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-s-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-s-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .grid-x > .tablet-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .tablet-12, .grid-x > .tablet-11, .grid-x > .tablet-10, .grid-x > .tablet-9, .grid-x > .tablet-8, .grid-x > .tablet-7, .grid-x > .tablet-6, .grid-x > .tablet-5, .grid-x > .tablet-4, .grid-x > .tablet-3, .grid-x > .tablet-2, .grid-x > .tablet-1, .grid-x > .tablet-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .tablet-shrink {
    width: auto;
  }
  .grid-x > .tablet-1 {
    width: 8.3333333333%;
  }
  .grid-x > .tablet-2 {
    width: 16.6666666667%;
  }
  .grid-x > .tablet-3 {
    width: 25%;
  }
  .grid-x > .tablet-4 {
    width: 33.3333333333%;
  }
  .grid-x > .tablet-5 {
    width: 41.6666666667%;
  }
  .grid-x > .tablet-6 {
    width: 50%;
  }
  .grid-x > .tablet-7 {
    width: 58.3333333333%;
  }
  .grid-x > .tablet-8 {
    width: 66.6666666667%;
  }
  .grid-x > .tablet-9 {
    width: 75%;
  }
  .grid-x > .tablet-10 {
    width: 83.3333333333%;
  }
  .grid-x > .tablet-11 {
    width: 91.6666666667%;
  }
  .grid-x > .tablet-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-x > .desktop-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .desktop-12, .grid-x > .desktop-11, .grid-x > .desktop-10, .grid-x > .desktop-9, .grid-x > .desktop-8, .grid-x > .desktop-7, .grid-x > .desktop-6, .grid-x > .desktop-5, .grid-x > .desktop-4, .grid-x > .desktop-3, .grid-x > .desktop-2, .grid-x > .desktop-1, .grid-x > .desktop-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .desktop-shrink {
    width: auto;
  }
  .grid-x > .desktop-1 {
    width: 8.3333333333%;
  }
  .grid-x > .desktop-2 {
    width: 16.6666666667%;
  }
  .grid-x > .desktop-3 {
    width: 25%;
  }
  .grid-x > .desktop-4 {
    width: 33.3333333333%;
  }
  .grid-x > .desktop-5 {
    width: 41.6666666667%;
  }
  .grid-x > .desktop-6 {
    width: 50%;
  }
  .grid-x > .desktop-7 {
    width: 58.3333333333%;
  }
  .grid-x > .desktop-8 {
    width: 66.6666666667%;
  }
  .grid-x > .desktop-9 {
    width: 75%;
  }
  .grid-x > .desktop-10 {
    width: 83.3333333333%;
  }
  .grid-x > .desktop-11 {
    width: 91.6666666667%;
  }
  .grid-x > .desktop-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

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

.grid-margin-x {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-x {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-x {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 0.5rem);
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-x > .cell {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 0.5rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 0.5rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 0.5rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 0.5rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 0.5rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 0.5rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 0.5rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 0.5rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 0.5rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 0.5rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 0.5rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 0.5rem);
}
@media print, screen and (min-width: 22.5em) {
  .grid-margin-x > .medium-xs-auto {
    width: auto;
  }
  .grid-margin-x > .medium-xs-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-xs-1 {
    width: calc(8.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-2 {
    width: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-3 {
    width: calc(25% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-4 {
    width: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-5 {
    width: calc(41.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-6 {
    width: calc(50% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-7 {
    width: calc(58.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-8 {
    width: calc(66.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-9 {
    width: calc(75% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-10 {
    width: calc(83.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-11 {
    width: calc(91.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-xs-12 {
    width: calc(100% - 0.5rem);
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-margin-x > .medium-s-auto {
    width: auto;
  }
  .grid-margin-x > .medium-s-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-s-1 {
    width: calc(8.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-s-2 {
    width: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-s-3 {
    width: calc(25% - 0.5rem);
  }
  .grid-margin-x > .medium-s-4 {
    width: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-s-5 {
    width: calc(41.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-s-6 {
    width: calc(50% - 0.5rem);
  }
  .grid-margin-x > .medium-s-7 {
    width: calc(58.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-s-8 {
    width: calc(66.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-s-9 {
    width: calc(75% - 0.5rem);
  }
  .grid-margin-x > .medium-s-10 {
    width: calc(83.3333333333% - 0.5rem);
  }
  .grid-margin-x > .medium-s-11 {
    width: calc(91.6666666667% - 0.5rem);
  }
  .grid-margin-x > .medium-s-12 {
    width: calc(100% - 0.5rem);
  }
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.5rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-auto {
    width: auto;
  }
  .grid-margin-x > .medium-xs-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-xs-1 {
    width: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-2 {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-3 {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-4 {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-5 {
    width: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-6 {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-7 {
    width: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-8 {
    width: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-9 {
    width: calc(75% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-10 {
    width: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-11 {
    width: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-xs-12 {
    width: calc(100% - 1.5rem);
  }
  .grid-margin-x > .medium-s-auto {
    width: auto;
  }
  .grid-margin-x > .medium-s-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-s-1 {
    width: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-s-2 {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-s-3 {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x > .medium-s-4 {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-s-5 {
    width: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-s-6 {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x > .medium-s-7 {
    width: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-s-8 {
    width: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-s-9 {
    width: calc(75% - 1.5rem);
  }
  .grid-margin-x > .medium-s-10 {
    width: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-s-11 {
    width: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-s-12 {
    width: calc(100% - 1.5rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.5rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x > .tablet-auto {
    width: auto;
  }
  .grid-margin-x > .tablet-shrink {
    width: auto;
  }
  .grid-margin-x > .tablet-1 {
    width: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-x > .tablet-2 {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x > .tablet-3 {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x > .tablet-4 {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x > .tablet-5 {
    width: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-x > .tablet-6 {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x > .tablet-7 {
    width: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-x > .tablet-8 {
    width: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-x > .tablet-9 {
    width: calc(75% - 1.5rem);
  }
  .grid-margin-x > .tablet-10 {
    width: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-x > .tablet-11 {
    width: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-x > .tablet-12 {
    width: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-x > .desktop-auto {
    width: auto;
  }
  .grid-margin-x > .desktop-shrink {
    width: auto;
  }
  .grid-margin-x > .desktop-1 {
    width: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-x > .desktop-2 {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x > .desktop-3 {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x > .desktop-4 {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x > .desktop-5 {
    width: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-x > .desktop-6 {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x > .desktop-7 {
    width: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-x > .desktop-8 {
    width: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-x > .desktop-9 {
    width: calc(75% - 1.5rem);
  }
  .grid-margin-x > .desktop-10 {
    width: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-x > .desktop-11 {
    width: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-x > .desktop-12 {
    width: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .medium-xs-auto {
    width: auto;
  }
  .grid-margin-x > .medium-xs-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-xs-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-xs-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-xs-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .medium-xs-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-xs-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-xs-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .medium-xs-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-xs-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-xs-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .medium-xs-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-xs-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-xs-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .medium-s-auto {
    width: auto;
  }
  .grid-margin-x > .medium-s-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-s-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-s-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-s-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .medium-s-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-s-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-s-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .medium-s-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-s-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-s-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .medium-s-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-s-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-s-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .tablet-auto {
    width: auto;
  }
  .grid-margin-x > .tablet-shrink {
    width: auto;
  }
  .grid-margin-x > .tablet-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .tablet-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .tablet-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .tablet-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .tablet-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .tablet-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .tablet-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .tablet-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .tablet-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .tablet-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .tablet-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .tablet-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .desktop-auto {
    width: auto;
  }
  .grid-margin-x > .desktop-shrink {
    width: auto;
  }
  .grid-margin-x > .desktop-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .desktop-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .desktop-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .desktop-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .desktop-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .desktop-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .desktop-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .desktop-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .desktop-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .desktop-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .desktop-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .desktop-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x > .xlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 2rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.25rem;
  margin-left: -0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.75rem;
    margin-left: -0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-padding-x > .cell {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-padding-x > .cell {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.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: 22.5em) {
  .medium-xs-up-1 > .cell {
    width: 100%;
  }
  .medium-xs-up-2 > .cell {
    width: 50%;
  }
  .medium-xs-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-xs-up-4 > .cell {
    width: 25%;
  }
  .medium-xs-up-5 > .cell {
    width: 20%;
  }
  .medium-xs-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-xs-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-xs-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 24.375em) {
  .medium-s-up-1 > .cell {
    width: 100%;
  }
  .medium-s-up-2 > .cell {
    width: 50%;
  }
  .medium-s-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-s-up-4 > .cell {
    width: 25%;
  }
  .medium-s-up-5 > .cell {
    width: 20%;
  }
  .medium-s-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-s-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-s-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .tablet-up-1 > .cell {
    width: 100%;
  }
  .tablet-up-2 > .cell {
    width: 50%;
  }
  .tablet-up-3 > .cell {
    width: 33.3333333333%;
  }
  .tablet-up-4 > .cell {
    width: 25%;
  }
  .tablet-up-5 > .cell {
    width: 20%;
  }
  .tablet-up-6 > .cell {
    width: 16.6666666667%;
  }
  .tablet-up-7 > .cell {
    width: 14.2857142857%;
  }
  .tablet-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .desktop-up-1 > .cell {
    width: 100%;
  }
  .desktop-up-2 > .cell {
    width: 50%;
  }
  .desktop-up-3 > .cell {
    width: 33.3333333333%;
  }
  .desktop-up-4 > .cell {
    width: 25%;
  }
  .desktop-up-5 > .cell {
    width: 20%;
  }
  .desktop-up-6 > .cell {
    width: 16.6666666667%;
  }
  .desktop-up-7 > .cell {
    width: 14.2857142857%;
  }
  .desktop-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 0.5rem);
}

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

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

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

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

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

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

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

@media print, screen and (min-width: 22.5em) {
  .grid-margin-x.medium-xs-up-1 > .cell {
    width: calc(100% - 0.5rem);
  }
  .grid-margin-x.medium-xs-up-2 > .cell {
    width: calc(50% - 0.5rem);
  }
  .grid-margin-x.medium-xs-up-3 > .cell {
    width: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-x.medium-xs-up-4 > .cell {
    width: calc(25% - 0.5rem);
  }
  .grid-margin-x.medium-xs-up-5 > .cell {
    width: calc(20% - 0.5rem);
  }
  .grid-margin-x.medium-xs-up-6 > .cell {
    width: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-x.medium-xs-up-7 > .cell {
    width: calc(14.2857142857% - 0.5rem);
  }
  .grid-margin-x.medium-xs-up-8 > .cell {
    width: calc(12.5% - 0.5rem);
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-margin-x.medium-s-up-1 > .cell {
    width: calc(100% - 0.5rem);
  }
  .grid-margin-x.medium-s-up-2 > .cell {
    width: calc(50% - 0.5rem);
  }
  .grid-margin-x.medium-s-up-3 > .cell {
    width: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-x.medium-s-up-4 > .cell {
    width: calc(25% - 0.5rem);
  }
  .grid-margin-x.medium-s-up-5 > .cell {
    width: calc(20% - 0.5rem);
  }
  .grid-margin-x.medium-s-up-6 > .cell {
    width: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-x.medium-s-up-7 > .cell {
    width: calc(14.2857142857% - 0.5rem);
  }
  .grid-margin-x.medium-s-up-8 > .cell {
    width: calc(12.5% - 0.5rem);
  }
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.5rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.5rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.5rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.5rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.5rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.5rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.5rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.5rem);
  }
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x.tablet-up-1 > .cell {
    width: calc(100% - 1.5rem);
  }
  .grid-margin-x.tablet-up-2 > .cell {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x.tablet-up-3 > .cell {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x.tablet-up-4 > .cell {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x.tablet-up-5 > .cell {
    width: calc(20% - 1.5rem);
  }
  .grid-margin-x.tablet-up-6 > .cell {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x.tablet-up-7 > .cell {
    width: calc(14.2857142857% - 1.5rem);
  }
  .grid-margin-x.tablet-up-8 > .cell {
    width: calc(12.5% - 1.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-x.desktop-up-1 > .cell {
    width: calc(100% - 1.5rem);
  }
  .grid-margin-x.desktop-up-2 > .cell {
    width: calc(50% - 1.5rem);
  }
  .grid-margin-x.desktop-up-3 > .cell {
    width: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-x.desktop-up-4 > .cell {
    width: calc(25% - 1.5rem);
  }
  .grid-margin-x.desktop-up-5 > .cell {
    width: calc(20% - 1.5rem);
  }
  .grid-margin-x.desktop-up-6 > .cell {
    width: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-x.desktop-up-7 > .cell {
    width: calc(14.2857142857% - 1.5rem);
  }
  .grid-margin-x.desktop-up-8 > .cell {
    width: calc(12.5% - 1.5rem);
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
.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: 22.5em) {
  .small-margin-collapse > .medium-xs-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-xs-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-xs-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-xs-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-xs-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-xs-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-xs-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-xs-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-xs-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-xs-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-xs-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-xs-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 24.375em) {
  .small-margin-collapse > .medium-s-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-s-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-s-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-s-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-s-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-s-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-s-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-s-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-s-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-s-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-s-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-s-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .small-margin-collapse > .tablet-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .tablet-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .tablet-3 {
    width: 25%;
  }
  .small-margin-collapse > .tablet-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .tablet-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .tablet-6 {
    width: 50%;
  }
  .small-margin-collapse > .tablet-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .tablet-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .tablet-9 {
    width: 75%;
  }
  .small-margin-collapse > .tablet-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .tablet-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .tablet-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .small-margin-collapse > .desktop-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .desktop-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .desktop-3 {
    width: 25%;
  }
  .small-margin-collapse > .desktop-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .desktop-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .desktop-6 {
    width: 50%;
  }
  .small-margin-collapse > .desktop-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .desktop-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .desktop-9 {
    width: 75%;
  }
  .small-margin-collapse > .desktop-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .desktop-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .desktop-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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%;
  }
}

.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: 22.5em) {
  .medium-xs-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-xs-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 22.5em) {
  .medium-xs-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 22.5em) {
  .medium-xs-margin-collapse > .medium-xs-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-xs-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-xs-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .medium-xs-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-xs-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-xs-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .medium-xs-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-xs-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-xs-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .medium-xs-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-xs-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-xs-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 24.375em) {
  .medium-xs-margin-collapse > .medium-s-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-s-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-s-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .medium-s-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-s-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-s-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .medium-s-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-s-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-s-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .medium-s-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-s-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-s-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .medium-xs-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .medium-xs-margin-collapse > .tablet-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .tablet-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .tablet-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .tablet-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .tablet-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .tablet-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .tablet-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .tablet-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .tablet-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .tablet-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .tablet-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .tablet-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .medium-xs-margin-collapse > .desktop-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .desktop-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .desktop-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .desktop-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .desktop-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .desktop-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .desktop-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .desktop-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .desktop-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .desktop-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .desktop-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .desktop-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .medium-xs-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .medium-xs-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .medium-xs-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .medium-xs-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .medium-xs-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .medium-xs-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .medium-xs-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .medium-xs-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .medium-xs-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .medium-xs-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .medium-xs-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .medium-xs-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .medium-xs-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

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

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

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

@media print, screen and (min-width: 37.5em) {
  .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: 37.5em) {
  .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: 37.5em) {
  .medium-margin-collapse > .medium-xs-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-xs-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-xs-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-xs-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-xs-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-xs-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-xs-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-xs-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-xs-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-xs-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-xs-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-xs-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .medium-margin-collapse > .medium-s-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-s-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-s-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-s-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-s-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-s-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-s-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-s-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-s-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-s-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-s-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-s-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .medium-margin-collapse > .tablet-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .tablet-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .tablet-3 {
    width: 25%;
  }
  .medium-margin-collapse > .tablet-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .tablet-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .tablet-6 {
    width: 50%;
  }
  .medium-margin-collapse > .tablet-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .tablet-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .tablet-9 {
    width: 75%;
  }
  .medium-margin-collapse > .tablet-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .tablet-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .tablet-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .medium-margin-collapse > .desktop-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .desktop-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .desktop-3 {
    width: 25%;
  }
  .medium-margin-collapse > .desktop-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .desktop-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .desktop-6 {
    width: 50%;
  }
  .medium-margin-collapse > .desktop-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .desktop-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .desktop-9 {
    width: 75%;
  }
  .medium-margin-collapse > .desktop-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .desktop-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .desktop-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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 print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .tablet-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .tablet-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 48em) {
  .tablet-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .small-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .small-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .small-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .tablet-margin-collapse > .medium-xs-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .medium-xs-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .medium-xs-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .medium-xs-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .medium-xs-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .medium-xs-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .medium-xs-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .medium-xs-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .medium-xs-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .medium-xs-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .medium-xs-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .medium-xs-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .tablet-margin-collapse > .medium-s-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .medium-s-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .medium-s-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .medium-s-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .medium-s-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .medium-s-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .medium-s-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .medium-s-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .medium-s-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .medium-s-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .medium-s-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .medium-s-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .tablet-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .medium-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .medium-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .medium-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .tablet-margin-collapse > .tablet-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .tablet-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .tablet-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .tablet-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .tablet-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .tablet-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .tablet-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .tablet-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .tablet-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .tablet-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .tablet-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .tablet-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .tablet-margin-collapse > .desktop-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .desktop-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .desktop-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .desktop-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .desktop-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .desktop-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .desktop-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .desktop-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .desktop-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .desktop-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .desktop-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .desktop-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .tablet-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .large-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .large-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .large-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .tablet-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .tablet-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .tablet-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .tablet-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .tablet-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .tablet-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .tablet-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .tablet-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .tablet-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .tablet-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .tablet-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .tablet-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

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

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

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

@media print, screen and (min-width: 75em) {
  .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: 75em) {
  .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: 75em) {
  .large-margin-collapse > .medium-xs-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-xs-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-xs-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-xs-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-xs-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-xs-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-xs-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-xs-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-xs-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-xs-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-xs-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-xs-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .large-margin-collapse > .medium-s-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-s-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-s-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-s-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-s-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-s-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-s-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-s-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-s-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-s-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-s-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-s-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 75em) {
  .large-margin-collapse > .tablet-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .tablet-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .tablet-3 {
    width: 25%;
  }
  .large-margin-collapse > .tablet-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .tablet-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .tablet-6 {
    width: 50%;
  }
  .large-margin-collapse > .tablet-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .tablet-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .tablet-9 {
    width: 75%;
  }
  .large-margin-collapse > .tablet-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .tablet-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .tablet-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .large-margin-collapse > .desktop-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .desktop-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .desktop-3 {
    width: 25%;
  }
  .large-margin-collapse > .desktop-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .desktop-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .desktop-6 {
    width: 50%;
  }
  .large-margin-collapse > .desktop-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .desktop-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .desktop-9 {
    width: 75%;
  }
  .large-margin-collapse > .desktop-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .desktop-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .desktop-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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 print, screen and (min-width: 75em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 90em) {
  .xlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 90em) {
  .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: 90em) {
  .xlarge-margin-collapse > .medium-xs-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .medium-xs-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .medium-xs-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .medium-xs-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .medium-xs-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .medium-xs-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .medium-xs-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .medium-xs-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .medium-xs-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .medium-xs-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .medium-xs-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .medium-xs-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-margin-collapse > .medium-s-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .medium-s-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .medium-s-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .medium-s-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .medium-s-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .medium-s-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .medium-s-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .medium-s-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .medium-s-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .medium-s-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .medium-s-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .medium-s-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .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: 90em) {
  .xlarge-margin-collapse > .tablet-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .tablet-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .tablet-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .tablet-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .tablet-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .tablet-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .tablet-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .tablet-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .tablet-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .tablet-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .tablet-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .tablet-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-margin-collapse > .desktop-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .desktop-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .desktop-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .desktop-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .desktop-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .desktop-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .desktop-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .desktop-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .desktop-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .desktop-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .desktop-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .desktop-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .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: 90em) {
  .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: 90em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 22.5em) {
  .medium-xs-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-xs-offset-0 {
    margin-left: calc(0% + 0.5rem / 2);
  }
  .medium-xs-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-xs-offset-1 {
    margin-left: calc(8.3333333333% + 0.5rem / 2);
  }
  .medium-xs-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-xs-offset-2 {
    margin-left: calc(16.6666666667% + 0.5rem / 2);
  }
  .medium-xs-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-xs-offset-3 {
    margin-left: calc(25% + 0.5rem / 2);
  }
  .medium-xs-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-xs-offset-4 {
    margin-left: calc(33.3333333333% + 0.5rem / 2);
  }
  .medium-xs-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-xs-offset-5 {
    margin-left: calc(41.6666666667% + 0.5rem / 2);
  }
  .medium-xs-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-xs-offset-6 {
    margin-left: calc(50% + 0.5rem / 2);
  }
  .medium-xs-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-xs-offset-7 {
    margin-left: calc(58.3333333333% + 0.5rem / 2);
  }
  .medium-xs-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-xs-offset-8 {
    margin-left: calc(66.6666666667% + 0.5rem / 2);
  }
  .medium-xs-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-xs-offset-9 {
    margin-left: calc(75% + 0.5rem / 2);
  }
  .medium-xs-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-xs-offset-10 {
    margin-left: calc(83.3333333333% + 0.5rem / 2);
  }
  .medium-xs-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-xs-offset-11 {
    margin-left: calc(91.6666666667% + 0.5rem / 2);
  }
}
@media print, screen and (min-width: 24.375em) {
  .medium-s-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-s-offset-0 {
    margin-left: calc(0% + 0.5rem / 2);
  }
  .medium-s-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-s-offset-1 {
    margin-left: calc(8.3333333333% + 0.5rem / 2);
  }
  .medium-s-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-s-offset-2 {
    margin-left: calc(16.6666666667% + 0.5rem / 2);
  }
  .medium-s-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-s-offset-3 {
    margin-left: calc(25% + 0.5rem / 2);
  }
  .medium-s-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-s-offset-4 {
    margin-left: calc(33.3333333333% + 0.5rem / 2);
  }
  .medium-s-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-s-offset-5 {
    margin-left: calc(41.6666666667% + 0.5rem / 2);
  }
  .medium-s-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-s-offset-6 {
    margin-left: calc(50% + 0.5rem / 2);
  }
  .medium-s-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-s-offset-7 {
    margin-left: calc(58.3333333333% + 0.5rem / 2);
  }
  .medium-s-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-s-offset-8 {
    margin-left: calc(66.6666666667% + 0.5rem / 2);
  }
  .medium-s-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-s-offset-9 {
    margin-left: calc(75% + 0.5rem / 2);
  }
  .medium-s-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-s-offset-10 {
    margin-left: calc(83.3333333333% + 0.5rem / 2);
  }
  .medium-s-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-s-offset-11 {
    margin-left: calc(91.6666666667% + 0.5rem / 2);
  }
}
@media print, screen and (min-width: 37.5em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.5rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1.5rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1.5rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.5rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1.5rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1.5rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.5rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1.5rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1.5rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.5rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1.5rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1.5rem / 2);
  }
}
@media print, screen and (min-width: 48em) {
  .tablet-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .tablet-offset-0 {
    margin-left: calc(0% + 1.5rem / 2);
  }
  .tablet-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .tablet-offset-1 {
    margin-left: calc(8.3333333333% + 1.5rem / 2);
  }
  .tablet-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .tablet-offset-2 {
    margin-left: calc(16.6666666667% + 1.5rem / 2);
  }
  .tablet-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .tablet-offset-3 {
    margin-left: calc(25% + 1.5rem / 2);
  }
  .tablet-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .tablet-offset-4 {
    margin-left: calc(33.3333333333% + 1.5rem / 2);
  }
  .tablet-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .tablet-offset-5 {
    margin-left: calc(41.6666666667% + 1.5rem / 2);
  }
  .tablet-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .tablet-offset-6 {
    margin-left: calc(50% + 1.5rem / 2);
  }
  .tablet-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .tablet-offset-7 {
    margin-left: calc(58.3333333333% + 1.5rem / 2);
  }
  .tablet-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .tablet-offset-8 {
    margin-left: calc(66.6666666667% + 1.5rem / 2);
  }
  .tablet-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .tablet-offset-9 {
    margin-left: calc(75% + 1.5rem / 2);
  }
  .tablet-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .tablet-offset-10 {
    margin-left: calc(83.3333333333% + 1.5rem / 2);
  }
  .tablet-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .tablet-offset-11 {
    margin-left: calc(91.6666666667% + 1.5rem / 2);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .desktop-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .desktop-offset-0 {
    margin-left: calc(0% + 1.5rem / 2);
  }
  .desktop-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .desktop-offset-1 {
    margin-left: calc(8.3333333333% + 1.5rem / 2);
  }
  .desktop-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .desktop-offset-2 {
    margin-left: calc(16.6666666667% + 1.5rem / 2);
  }
  .desktop-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .desktop-offset-3 {
    margin-left: calc(25% + 1.5rem / 2);
  }
  .desktop-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .desktop-offset-4 {
    margin-left: calc(33.3333333333% + 1.5rem / 2);
  }
  .desktop-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .desktop-offset-5 {
    margin-left: calc(41.6666666667% + 1.5rem / 2);
  }
  .desktop-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .desktop-offset-6 {
    margin-left: calc(50% + 1.5rem / 2);
  }
  .desktop-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .desktop-offset-7 {
    margin-left: calc(58.3333333333% + 1.5rem / 2);
  }
  .desktop-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .desktop-offset-8 {
    margin-left: calc(66.6666666667% + 1.5rem / 2);
  }
  .desktop-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .desktop-offset-9 {
    margin-left: calc(75% + 1.5rem / 2);
  }
  .desktop-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .desktop-offset-10 {
    margin-left: calc(83.3333333333% + 1.5rem / 2);
  }
  .desktop-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .desktop-offset-11 {
    margin-left: calc(91.6666666667% + 1.5rem / 2);
  }
}
@media print, screen and (min-width: 75em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 2rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 2rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 2rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 2rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 2rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 2rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 2rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 2rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 2rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 2rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 2rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 2rem / 2);
  }
}
@media screen and (min-width: 90em) {
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 2rem / 2);
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.3333333333% + 2rem / 2);
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.6666666667% + 2rem / 2);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 2rem / 2);
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.3333333333% + 2rem / 2);
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.6666666667% + 2rem / 2);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 2rem / 2);
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.3333333333% + 2rem / 2);
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.6666666667% + 2rem / 2);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 2rem / 2);
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.3333333333% + 2rem / 2);
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.6666666667% + 2rem / 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: 22.5em) {
  .grid-y > .medium-xs-shrink, .grid-y > .medium-xs-full, .grid-y > .medium-xs-1, .grid-y > .medium-xs-2, .grid-y > .medium-xs-3, .grid-y > .medium-xs-4, .grid-y > .medium-xs-5, .grid-y > .medium-xs-6, .grid-y > .medium-xs-7, .grid-y > .medium-xs-8, .grid-y > .medium-xs-9, .grid-y > .medium-xs-10, .grid-y > .medium-xs-11, .grid-y > .medium-xs-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-y > .medium-s-shrink, .grid-y > .medium-s-full, .grid-y > .medium-s-1, .grid-y > .medium-s-2, .grid-y > .medium-s-3, .grid-y > .medium-s-4, .grid-y > .medium-s-5, .grid-y > .medium-s-6, .grid-y > .medium-s-7, .grid-y > .medium-s-8, .grid-y > .medium-s-9, .grid-y > .medium-s-10, .grid-y > .medium-s-11, .grid-y > .medium-s-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .grid-y > .tablet-shrink, .grid-y > .tablet-full, .grid-y > .tablet-1, .grid-y > .tablet-2, .grid-y > .tablet-3, .grid-y > .tablet-4, .grid-y > .tablet-5, .grid-y > .tablet-6, .grid-y > .tablet-7, .grid-y > .tablet-8, .grid-y > .tablet-9, .grid-y > .tablet-10, .grid-y > .tablet-11, .grid-y > .tablet-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-y > .desktop-shrink, .grid-y > .desktop-full, .grid-y > .desktop-1, .grid-y > .desktop-2, .grid-y > .desktop-3, .grid-y > .desktop-4, .grid-y > .desktop-5, .grid-y > .desktop-6, .grid-y > .desktop-7, .grid-y > .desktop-8, .grid-y > .desktop-9, .grid-y > .desktop-10, .grid-y > .desktop-11, .grid-y > .desktop-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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;
  }
}
.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: 22.5em) {
  .grid-y > .medium-xs-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-xs-12, .grid-y > .medium-xs-11, .grid-y > .medium-xs-10, .grid-y > .medium-xs-9, .grid-y > .medium-xs-8, .grid-y > .medium-xs-7, .grid-y > .medium-xs-6, .grid-y > .medium-xs-5, .grid-y > .medium-xs-4, .grid-y > .medium-xs-3, .grid-y > .medium-xs-2, .grid-y > .medium-xs-1, .grid-y > .medium-xs-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-xs-shrink {
    height: auto;
  }
  .grid-y > .medium-xs-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-xs-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-xs-3 {
    height: 25%;
  }
  .grid-y > .medium-xs-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-xs-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-xs-6 {
    height: 50%;
  }
  .grid-y > .medium-xs-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-xs-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-xs-9 {
    height: 75%;
  }
  .grid-y > .medium-xs-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-xs-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-xs-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-y > .medium-s-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-s-12, .grid-y > .medium-s-11, .grid-y > .medium-s-10, .grid-y > .medium-s-9, .grid-y > .medium-s-8, .grid-y > .medium-s-7, .grid-y > .medium-s-6, .grid-y > .medium-s-5, .grid-y > .medium-s-4, .grid-y > .medium-s-3, .grid-y > .medium-s-2, .grid-y > .medium-s-1, .grid-y > .medium-s-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-s-shrink {
    height: auto;
  }
  .grid-y > .medium-s-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-s-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-s-3 {
    height: 25%;
  }
  .grid-y > .medium-s-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-s-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-s-6 {
    height: 50%;
  }
  .grid-y > .medium-s-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-s-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-s-9 {
    height: 75%;
  }
  .grid-y > .medium-s-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-s-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-s-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .grid-y > .tablet-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .tablet-12, .grid-y > .tablet-11, .grid-y > .tablet-10, .grid-y > .tablet-9, .grid-y > .tablet-8, .grid-y > .tablet-7, .grid-y > .tablet-6, .grid-y > .tablet-5, .grid-y > .tablet-4, .grid-y > .tablet-3, .grid-y > .tablet-2, .grid-y > .tablet-1, .grid-y > .tablet-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .tablet-shrink {
    height: auto;
  }
  .grid-y > .tablet-1 {
    height: 8.3333333333%;
  }
  .grid-y > .tablet-2 {
    height: 16.6666666667%;
  }
  .grid-y > .tablet-3 {
    height: 25%;
  }
  .grid-y > .tablet-4 {
    height: 33.3333333333%;
  }
  .grid-y > .tablet-5 {
    height: 41.6666666667%;
  }
  .grid-y > .tablet-6 {
    height: 50%;
  }
  .grid-y > .tablet-7 {
    height: 58.3333333333%;
  }
  .grid-y > .tablet-8 {
    height: 66.6666666667%;
  }
  .grid-y > .tablet-9 {
    height: 75%;
  }
  .grid-y > .tablet-10 {
    height: 83.3333333333%;
  }
  .grid-y > .tablet-11 {
    height: 91.6666666667%;
  }
  .grid-y > .tablet-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-y > .desktop-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .desktop-12, .grid-y > .desktop-11, .grid-y > .desktop-10, .grid-y > .desktop-9, .grid-y > .desktop-8, .grid-y > .desktop-7, .grid-y > .desktop-6, .grid-y > .desktop-5, .grid-y > .desktop-4, .grid-y > .desktop-3, .grid-y > .desktop-2, .grid-y > .desktop-1, .grid-y > .desktop-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .desktop-shrink {
    height: auto;
  }
  .grid-y > .desktop-1 {
    height: 8.3333333333%;
  }
  .grid-y > .desktop-2 {
    height: 16.6666666667%;
  }
  .grid-y > .desktop-3 {
    height: 25%;
  }
  .grid-y > .desktop-4 {
    height: 33.3333333333%;
  }
  .grid-y > .desktop-5 {
    height: 41.6666666667%;
  }
  .grid-y > .desktop-6 {
    height: 50%;
  }
  .grid-y > .desktop-7 {
    height: 58.3333333333%;
  }
  .grid-y > .desktop-8 {
    height: 66.6666666667%;
  }
  .grid-y > .desktop-9 {
    height: 75%;
  }
  .grid-y > .desktop-10 {
    height: 83.3333333333%;
  }
  .grid-y > .desktop-11 {
    height: 91.6666666667%;
  }
  .grid-y > .desktop-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-padding-y > .cell {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-padding-y > .cell {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.grid-margin-y {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 0.5rem);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.5rem);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 0.5rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 0.5rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 0.5rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 0.5rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 0.5rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 0.5rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 0.5rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 0.5rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 0.5rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 0.5rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 0.5rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 0.5rem);
}
@media print, screen and (min-width: 22.5em) {
  .grid-margin-y > .medium-xs-auto {
    height: auto;
  }
  .grid-margin-y > .medium-xs-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-xs-1 {
    height: calc(8.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-2 {
    height: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-3 {
    height: calc(25% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-4 {
    height: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-5 {
    height: calc(41.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-6 {
    height: calc(50% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-7 {
    height: calc(58.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-8 {
    height: calc(66.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-9 {
    height: calc(75% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-10 {
    height: calc(83.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-11 {
    height: calc(91.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-12 {
    height: calc(100% - 0.5rem);
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-margin-y > .medium-s-auto {
    height: auto;
  }
  .grid-margin-y > .medium-s-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-s-1 {
    height: calc(8.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-2 {
    height: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-3 {
    height: calc(25% - 0.5rem);
  }
  .grid-margin-y > .medium-s-4 {
    height: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-5 {
    height: calc(41.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-6 {
    height: calc(50% - 0.5rem);
  }
  .grid-margin-y > .medium-s-7 {
    height: calc(58.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-8 {
    height: calc(66.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-9 {
    height: calc(75% - 0.5rem);
  }
  .grid-margin-y > .medium-s-10 {
    height: calc(83.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-11 {
    height: calc(91.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-12 {
    height: calc(100% - 0.5rem);
  }
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-auto {
    height: auto;
  }
  .grid-margin-y > .medium-xs-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-xs-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-12 {
    height: calc(100% - 1.5rem);
  }
  .grid-margin-y > .medium-s-auto {
    height: auto;
  }
  .grid-margin-y > .medium-s-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-s-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .medium-s-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .medium-s-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .medium-s-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-12 {
    height: calc(100% - 1.5rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .tablet-auto {
    height: auto;
  }
  .grid-margin-y > .tablet-shrink {
    height: auto;
  }
  .grid-margin-y > .tablet-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .tablet-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .tablet-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .tablet-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-12 {
    height: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-y > .desktop-auto {
    height: auto;
  }
  .grid-margin-y > .desktop-shrink {
    height: auto;
  }
  .grid-margin-y > .desktop-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .desktop-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .desktop-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .desktop-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-12 {
    height: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-xs-auto {
    height: auto;
  }
  .grid-margin-y > .medium-xs-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-xs-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-xs-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-xs-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-xs-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-s-auto {
    height: auto;
  }
  .grid-margin-y > .medium-s-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-s-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-s-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-s-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-s-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .tablet-auto {
    height: auto;
  }
  .grid-margin-y > .tablet-shrink {
    height: auto;
  }
  .grid-margin-y > .tablet-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .tablet-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .tablet-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .tablet-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .desktop-auto {
    height: auto;
  }
  .grid-margin-y > .desktop-shrink {
    height: auto;
  }
  .grid-margin-y > .desktop-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .desktop-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .desktop-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .desktop-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2rem);
  }
}

.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: 22.5em) {
  .medium-xs-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-xs-grid-frame {
    width: 100%;
  }
  .medium-xs-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-xs-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-xs-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-xs-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: 24.375em) {
  .medium-s-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-s-grid-frame {
    width: 100%;
  }
  .medium-s-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-s-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-s-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-s-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: 37.5em) {
  .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: 48em) {
  .tablet-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .tablet-grid-frame {
    width: 100%;
  }
  .tablet-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .tablet-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .tablet-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .tablet-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) {
  .desktop-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .desktop-grid-frame {
    width: 100%;
  }
  .desktop-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .desktop-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .desktop-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .desktop-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: 75em) {
  .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: 90em) {
  .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;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 22.5em) {
  .grid-y.medium-xs-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-y.medium-s-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .grid-y.tablet-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.desktop-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media screen and (min-width: 90em) {
  .grid-y.xlarge-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: 22.5em) {
  .cell .grid-y.medium-xs-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 24.375em) {
  .cell .grid-y.medium-s-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 37.5em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .cell .grid-y.tablet-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .cell .grid-y.desktop-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 75em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 90em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 0.5rem);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.5rem);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 0.5rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 0.5rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 0.5rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 0.5rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 0.5rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 0.5rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 0.5rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 0.5rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 0.5rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 0.5rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 0.5rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 0.5rem);
}
@media print, screen and (min-width: 22.5em) {
  .grid-margin-y > .medium-xs-auto {
    height: auto;
  }
  .grid-margin-y > .medium-xs-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-xs-1 {
    height: calc(8.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-2 {
    height: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-3 {
    height: calc(25% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-4 {
    height: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-5 {
    height: calc(41.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-6 {
    height: calc(50% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-7 {
    height: calc(58.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-8 {
    height: calc(66.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-9 {
    height: calc(75% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-10 {
    height: calc(83.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-11 {
    height: calc(91.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-xs-12 {
    height: calc(100% - 0.5rem);
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-margin-y > .medium-s-auto {
    height: auto;
  }
  .grid-margin-y > .medium-s-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-s-1 {
    height: calc(8.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-2 {
    height: calc(16.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-3 {
    height: calc(25% - 0.5rem);
  }
  .grid-margin-y > .medium-s-4 {
    height: calc(33.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-5 {
    height: calc(41.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-6 {
    height: calc(50% - 0.5rem);
  }
  .grid-margin-y > .medium-s-7 {
    height: calc(58.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-8 {
    height: calc(66.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-9 {
    height: calc(75% - 0.5rem);
  }
  .grid-margin-y > .medium-s-10 {
    height: calc(83.3333333333% - 0.5rem);
  }
  .grid-margin-y > .medium-s-11 {
    height: calc(91.6666666667% - 0.5rem);
  }
  .grid-margin-y > .medium-s-12 {
    height: calc(100% - 0.5rem);
  }
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-auto {
    height: auto;
  }
  .grid-margin-y > .medium-xs-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-xs-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-xs-12 {
    height: calc(100% - 1.5rem);
  }
  .grid-margin-y > .medium-s-auto {
    height: auto;
  }
  .grid-margin-y > .medium-s-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-s-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .medium-s-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .medium-s-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .medium-s-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-s-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-s-12 {
    height: calc(100% - 1.5rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .tablet-auto {
    height: auto;
  }
  .grid-margin-y > .tablet-shrink {
    height: auto;
  }
  .grid-margin-y > .tablet-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .tablet-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .tablet-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .tablet-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .tablet-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .tablet-12 {
    height: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-y > .desktop-auto {
    height: auto;
  }
  .grid-margin-y > .desktop-shrink {
    height: auto;
  }
  .grid-margin-y > .desktop-1 {
    height: calc(8.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-2 {
    height: calc(16.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-3 {
    height: calc(25% - 1.5rem);
  }
  .grid-margin-y > .desktop-4 {
    height: calc(33.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-5 {
    height: calc(41.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-6 {
    height: calc(50% - 1.5rem);
  }
  .grid-margin-y > .desktop-7 {
    height: calc(58.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-8 {
    height: calc(66.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-9 {
    height: calc(75% - 1.5rem);
  }
  .grid-margin-y > .desktop-10 {
    height: calc(83.3333333333% - 1.5rem);
  }
  .grid-margin-y > .desktop-11 {
    height: calc(91.6666666667% - 1.5rem);
  }
  .grid-margin-y > .desktop-12 {
    height: calc(100% - 1.5rem);
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-xs-auto {
    height: auto;
  }
  .grid-margin-y > .medium-xs-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-xs-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-xs-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-xs-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-xs-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-xs-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-xs-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-s-auto {
    height: auto;
  }
  .grid-margin-y > .medium-s-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-s-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-s-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-s-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-s-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-s-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-s-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .tablet-auto {
    height: auto;
  }
  .grid-margin-y > .tablet-shrink {
    height: auto;
  }
  .grid-margin-y > .tablet-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .tablet-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .tablet-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .tablet-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .tablet-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .tablet-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .desktop-auto {
    height: auto;
  }
  .grid-margin-y > .desktop-shrink {
    height: auto;
  }
  .grid-margin-y > .desktop-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .desktop-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .desktop-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .desktop-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .desktop-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .desktop-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 2rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 0.5rem);
}
@media print, screen and (min-width: 22.5em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 0.5rem);
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 0.5rem);
  }
}
@media print, screen and (min-width: 37.5em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.5rem);
  }
}
@media print, screen and (min-width: 48em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.5rem);
  }
}
@media print, screen and (min-width: 75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}

@media print, screen and (min-width: 22.5em) {
  .grid-margin-y.medium-xs-grid-frame {
    height: calc(100vh + 0.5rem);
  }
}
@media print, screen and (min-width: 24.375em) {
  .grid-margin-y.medium-s-grid-frame {
    height: calc(100vh + 0.5rem);
  }
}
@media print, screen and (min-width: 37.5em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.5rem);
  }
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y.tablet-grid-frame {
    height: calc(100vh + 1.5rem);
  }
}
@media print, screen and (min-width: 64.0625em) {
  .grid-margin-y.desktop-grid-frame {
    height: calc(100vh + 1.5rem);
  }
}
@media print, screen and (min-width: 75em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 2rem);
  }
}
.align-left {
  justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 22.5em) {
  .medium-xs-order-1 {
    order: 1;
  }
  .medium-xs-order-2 {
    order: 2;
  }
  .medium-xs-order-3 {
    order: 3;
  }
  .medium-xs-order-4 {
    order: 4;
  }
  .medium-xs-order-5 {
    order: 5;
  }
  .medium-xs-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 24.375em) {
  .medium-s-order-1 {
    order: 1;
  }
  .medium-s-order-2 {
    order: 2;
  }
  .medium-s-order-3 {
    order: 3;
  }
  .medium-s-order-4 {
    order: 4;
  }
  .medium-s-order-5 {
    order: 5;
  }
  .medium-s-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .tablet-order-1 {
    order: 1;
  }
  .tablet-order-2 {
    order: 2;
  }
  .tablet-order-3 {
    order: 3;
  }
  .tablet-order-4 {
    order: 4;
  }
  .tablet-order-5 {
    order: 5;
  }
  .tablet-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .desktop-order-1 {
    order: 1;
  }
  .desktop-order-2 {
    order: 2;
  }
  .desktop-order-3 {
    order: 3;
  }
  .desktop-order-4 {
    order: 4;
  }
  .desktop-order-5 {
    order: 5;
  }
  .desktop-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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;
  }
}
.flex-container {
  display: flex;
}

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

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

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

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

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

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

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

@media print, screen and (min-width: 22.5em) {
  .medium-xs-flex-container {
    display: flex;
  }
  .medium-xs-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-xs-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-xs-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-xs-flex-dir-row {
    flex-direction: row;
  }
  .medium-xs-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-xs-flex-dir-column {
    flex-direction: column;
  }
  .medium-xs-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 24.375em) {
  .medium-s-flex-container {
    display: flex;
  }
  .medium-s-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-s-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-s-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-s-flex-dir-row {
    flex-direction: row;
  }
  .medium-s-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-s-flex-dir-column {
    flex-direction: column;
  }
  .medium-s-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 37.5em) {
  .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: 48em) {
  .tablet-flex-container {
    display: flex;
  }
  .tablet-flex-child-auto {
    flex: 1 1 auto;
  }
  .tablet-flex-child-grow {
    flex: 1 0 auto;
  }
  .tablet-flex-child-shrink {
    flex: 0 1 auto;
  }
  .tablet-flex-dir-row {
    flex-direction: row;
  }
  .tablet-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .tablet-flex-dir-column {
    flex-direction: column;
  }
  .tablet-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .desktop-flex-container {
    display: flex;
  }
  .desktop-flex-child-auto {
    flex: 1 1 auto;
  }
  .desktop-flex-child-grow {
    flex: 1 0 auto;
  }
  .desktop-flex-child-shrink {
    flex: 0 1 auto;
  }
  .desktop-flex-dir-row {
    flex-direction: row;
  }
  .desktop-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .desktop-flex-dir-column {
    flex-direction: column;
  }
  .desktop-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 75em) {
  .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: 90em) {
  .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;
  }
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: rgba(255, 255, 255, 0);
  color: #fefefe;
}
.button:hover, .button:focus {
  background-color: rgba(217, 217, 217, 0);
  color: #fefefe;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
  background-color: #126195;
  color: #fefefe;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button.success, .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: #0a0a0a;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button.warning, .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: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #e80f42;
  color: #0a0a0a;
}
.button.alert:hover, .button.alert:focus {
  background-color: #ba0c35;
  color: #0a0a0a;
}
.button.hollow, .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, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 0);
}
.button.hollow:hover, .button.hollow:focus {
  border-color: rgba(128, 128, 128, 0);
  color: rgba(128, 128, 128, 0);
}
.button.hollow.primary, .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: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.secondary, .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: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .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: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning, .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: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert, .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: 1px solid #e80f42;
  color: #e80f42;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #740821;
  color: #740821;
}
.button.clear, .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, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: rgba(255, 255, 255, 0);
}
.button.clear:hover, .button.clear:focus {
  color: rgba(128, 128, 128, 0);
}
.button.clear.primary, .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: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: #0c3d5d;
}
.button.clear.secondary, .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: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .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, .button.clear.success:focus {
  color: #157539;
}
.button.clear.warning, .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, .button.clear.warning:focus {
  color: #805700;
}
.button.clear.alert, .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: #e80f42;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: #740821;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: rgba(255, 255, 255, 0);
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #e80f42;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

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

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-grow: 1;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group::before, .button-group::after {
  display: none;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #126195;
  color: #fefefe;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
  background-color: #e80f42;
  color: #0a0a0a;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #ba0c35;
  color: #0a0a0a;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
  background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
  border: 1px solid rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 0);
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: rgba(128, 128, 128, 0);
  color: rgba(128, 128, 128, 0);
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: #157539;
  color: #157539;
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #e80f42;
  color: #e80f42;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: #740821;
  color: #740821;
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: rgba(255, 255, 255, 0);
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: rgba(128, 128, 128, 0);
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: #1779ba;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: #0c3d5d;
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: #767676;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: #157539;
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: #805700;
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #e80f42;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: #740821;
}
.button-group.no-gaps .button {
  margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
}
@media print, screen and (min-width: 37.5em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 75em) {
  .button-group.stacked-for-medium .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 22.49875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 47.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.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: #0a0a0a;
}
.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;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #384750;
}
.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;
}

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(254, 254, 254, 0.5);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 89.99875em), screen and (min-width: 100em) {
  .show-for-xlarge-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;
}

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

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

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

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 22.5em) {
  .dropdown.menu.medium-xs-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-xs-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-xs-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-xs-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: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-xs-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-xs-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-xs-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-xs-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-xs-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 #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-xs-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 #1779ba;
  }
}
@media print, screen and (min-width: 24.375em) {
  .dropdown.menu.medium-s-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-s-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-s-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-s-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: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-s-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-s-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-s-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-s-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-s-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 #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-s-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 #1779ba;
  }
}
@media print, screen and (min-width: 37.5em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media print, screen and (min-width: 48em) {
  .dropdown.menu.tablet-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.tablet-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.tablet-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.tablet-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: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.tablet-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.tablet-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.tablet-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.tablet-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.tablet-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 #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.tablet-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 #1779ba;
  }
}
@media print, screen and (min-width: 64.0625em) {
  .dropdown.menu.desktop-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.desktop-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.desktop-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.desktop-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: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.desktop-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.desktop-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.desktop-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.desktop-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.desktop-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 #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.desktop-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 #1779ba;
  }
}
@media print, screen and (min-width: 75em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media screen and (min-width: 90em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.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 {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.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 #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.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 #1779ba;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

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

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

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba 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 #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

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

.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: #0a0a0a 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 #0a0a0a;
}

.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 #0a0a0a;
}

.arrow-left {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-left-width: 0;
  border-color: transparent #0a0a0a 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 #1779ba;
  margin: 1rem auto 0;
}

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

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

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

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

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

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

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

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

.overflow-scroll {
  overflow: scroll !important;
  -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 {
  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: 1rem !important;
}

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

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

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

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

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

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

.padding-1 {
  padding: 1rem !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: 2rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.padding-3 {
  padding: 3rem !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;
}
/*# sourceMappingURL=base.css.map */
