@charset "UTF-8";
@import "/static/javascript/vendor/packages/choices.js/public/assets/styles/choices.css";
@import "/static/javascript/vendor/packages/foundation-datepicker/css/foundation-datepicker.css";
@import "/static/javascript/vendor/packages/cropper/dist/cropper.css";
@import "/static/scss/components/datatables/dataTables.foundation.css";
#main-wrapper, .main-section {
  position: static;
}

.stand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stand-constructor {
  display: flex;
  width: 100%;
  height: 500px;
}

.stand-components {
  position: relative;
  width: 360px;
  background: grey;
}

.canvas-container {
  overflow: auto;
  width: 100%;
  height: 100%;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.canvas-container::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.canvas-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

canvas {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.canvas-over {
  background-color: rgba(90, 120, 200, 0.5);
}

.stand-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.stand-buttons .button {
  margin-bottom: 0;
  outline: none;
}
.stand-buttons .button + .button {
  margin-left: 8px;
}

#full-screen-out-btn {
  position: absolute;
  font-size: 2rem;
  right: 20px;
  top: 20px;
  display: none;
}

.full-screen #full-screen-out-btn {
  display: block;
}

.sk-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 600px;
  margin-bottom: 1.125rem;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sk-sidebar {
  position: relative;
  display: flex;
  width: 360px;
  height: 100%;
  background-color: white;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.sk-sidebar__titlebar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3rem;
  background-color: #C5C5C5;
  border-top-left-radius: 3px;
  color: #333;
  line-height: 3rem;
  font-size: 0.8125rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
}

.sk-canvas-container {
  width: calc(100% - 360px);
  height: 100%;
  border: none;
  background-color: white;
}

.canvas-controls {
  position: absolute;
}

@media screen and (max-width: 1280px) {
  .sk-sidebar {
    width: 200px;
  }
  .sk-sidebar .stand-components__components-list li {
    width: 100%;
    border-right: none;
  }
  .sk-canvas-container {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 64.0625em) {
  #standskizze .sk-container {
    height: auto;
  }
  #standskizze .sk-container .sk-sidebar {
    width: 100%;
    height: calc(130px + 3rem);
  }
  #standskizze .sk-container .sk-sidebar .stand-components__components-list {
    flex-direction: row;
    align-items: stretch;
    overflow-x: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  #standskizze .sk-container .sk-sidebar .stand-components__components-list li {
    width: auto;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 0;
    flex: 0 0 auto;
  }
  #standskizze .sk-container .sk-sidebar .stand-components__components-list li img {
    height: 100%;
  }
  #standskizze .sk-container .sk-canvas-container {
    width: 100%;
  }
}
.stand-components__preview-container {
  position: relative;
}
.stand-components__preview-container::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.stand-components__preview-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.stand-components__preview {
  width: 100%;
  height: 80%;
  object-fit: contain;
  transition: opacity 0.8s;
  opacity: 1;
}

.stand-components__preview--hidden {
  opacity: 0;
  height: 0;
}

.stand-components__components-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  position: absolute;
  top: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: none;
  border-right: none;
  bottom: 0;
  overflow: auto;
}
.stand-components__components-list li {
  position: relative;
  width: 50%;
  padding: 32px;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.stand-components__components-list li:nth-child(even) {
  border-right-color: transparent;
}
.stand-components__components-list img {
  display: block;
  width: auto;
  margin: 0 auto;
  height: auto;
  max-height: 120px;
  opacity: 0.5;
}
.stand-components__components-list [draggable=true] {
  user-select: none;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  opacity: 1;
}
.stand-components__components-list .img-dragging {
  cursor: move;
}

.component__name {
  display: block;
  text-align: center;
  margin-bottom: 0;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #495057;
}

.component__quantity {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #ced4da;
  border-radius: 50%;
  color: #343a40;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: bold;
}

.stand-border {
  background-color: #343a40;
}

.top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
}

.left-border {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
}

.right-border {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
}

.bottom-border {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
}

.stand-component-controls {
  position: absolute;
  width: 100px;
  display: flex;
  justify-content: center;
}
.stand-component-controls div {
  text-align: center;
}

#standskizze button {
  outline: none;
}

.stand-component-controls--hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.stand-component-controls {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.stand-component-controls button {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  text-align: center;
}
.stand-component-controls .component-remove {
  background-color: #343A40;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.stand-component-controls .component-note {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
.stand-component-controls.hidden {
  display: flex;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

.hidden {
  position: absolute;
  top: -99999rem;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.full-screen {
  position: fixed;
  z-index: 991;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: auto;
  margin: 0;
}

.grab-canvas {
  cursor: grabbing !important;
  cursor: -moz-grabbing !important;
  cursor: -webkit-grabbing !important;
}

.zoom-x2 {
  transform: scale(2);
  transform-origin: 0 0;
}

/*!
 * Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "\30 ";
}

.fa-1::before {
  content: "\31 ";
}

.fa-2::before {
  content: "\32 ";
}

.fa-3::before {
  content: "\33 ";
}

.fa-4::before {
  content: "\34 ";
}

.fa-5::before {
  content: "\35 ";
}

.fa-6::before {
  content: "\36 ";
}

.fa-7::before {
  content: "\37 ";
}

.fa-8::before {
  content: "\38 ";
}

.fa-9::before {
  content: "\39 ";
}

.fa-fill-drip::before {
  content: "\f576";
}

.fa-arrows-to-circle::before {
  content: "\e4bd";
}

.fa-circle-chevron-right::before {
  content: "\f138";
}

.fa-chevron-circle-right::before {
  content: "\f138";
}

.fa-at::before {
  content: "\@";
}

.fa-trash-can::before {
  content: "\f2ed";
}

.fa-trash-alt::before {
  content: "\f2ed";
}

.fa-text-height::before {
  content: "\f034";
}

.fa-user-xmark::before {
  content: "\f235";
}

.fa-user-times::before {
  content: "\f235";
}

.fa-stethoscope::before {
  content: "\f0f1";
}

.fa-message::before {
  content: "\f27a";
}

.fa-comment-alt::before {
  content: "\f27a";
}

.fa-info::before {
  content: "\f129";
}

.fa-down-left-and-up-right-to-center::before {
  content: "\f422";
}

.fa-compress-alt::before {
  content: "\f422";
}

.fa-explosion::before {
  content: "\e4e9";
}

.fa-file-lines::before {
  content: "\f15c";
}

.fa-file-alt::before {
  content: "\f15c";
}

.fa-file-text::before {
  content: "\f15c";
}

.fa-wave-square::before {
  content: "\f83e";
}

.fa-ring::before {
  content: "\f70b";
}

.fa-building-un::before {
  content: "\e4d9";
}

.fa-dice-three::before {
  content: "\f527";
}

.fa-calendar-days::before {
  content: "\f073";
}

.fa-calendar-alt::before {
  content: "\f073";
}

.fa-anchor-circle-check::before {
  content: "\e4aa";
}

.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}

.fa-volleyball::before {
  content: "\f45f";
}

.fa-volleyball-ball::before {
  content: "\f45f";
}

.fa-arrows-up-to-line::before {
  content: "\e4c2";
}

.fa-sort-down::before {
  content: "\f0dd";
}

.fa-sort-desc::before {
  content: "\f0dd";
}

.fa-circle-minus::before {
  content: "\f056";
}

.fa-minus-circle::before {
  content: "\f056";
}

.fa-door-open::before {
  content: "\f52b";
}

.fa-right-from-bracket::before {
  content: "\f2f5";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

.fa-atom::before {
  content: "\f5d2";
}

.fa-soap::before {
  content: "\e06e";
}

.fa-icons::before {
  content: "\f86d";
}

.fa-heart-music-camera-bolt::before {
  content: "\f86d";
}

.fa-microphone-lines-slash::before {
  content: "\f539";
}

.fa-microphone-alt-slash::before {
  content: "\f539";
}

.fa-bridge-circle-check::before {
  content: "\e4c9";
}

.fa-pump-medical::before {
  content: "\e06a";
}

.fa-fingerprint::before {
  content: "\f577";
}

.fa-hand-point-right::before {
  content: "\f0a4";
}

.fa-magnifying-glass-location::before {
  content: "\f689";
}

.fa-search-location::before {
  content: "\f689";
}

.fa-forward-step::before {
  content: "\f051";
}

.fa-step-forward::before {
  content: "\f051";
}

.fa-face-smile-beam::before {
  content: "\f5b8";
}

.fa-smile-beam::before {
  content: "\f5b8";
}

.fa-flag-checkered::before {
  content: "\f11e";
}

.fa-football::before {
  content: "\f44e";
}

.fa-football-ball::before {
  content: "\f44e";
}

.fa-school-circle-exclamation::before {
  content: "\e56c";
}

.fa-crop::before {
  content: "\f125";
}

.fa-angles-down::before {
  content: "\f103";
}

.fa-angle-double-down::before {
  content: "\f103";
}

.fa-users-rectangle::before {
  content: "\e594";
}

.fa-people-roof::before {
  content: "\e537";
}

.fa-people-line::before {
  content: "\e534";
}

.fa-beer-mug-empty::before {
  content: "\f0fc";
}

.fa-beer::before {
  content: "\f0fc";
}

.fa-diagram-predecessor::before {
  content: "\e477";
}

.fa-arrow-up-long::before {
  content: "\f176";
}

.fa-long-arrow-up::before {
  content: "\f176";
}

.fa-fire-flame-simple::before {
  content: "\f46a";
}

.fa-burn::before {
  content: "\f46a";
}

.fa-person::before {
  content: "\f183";
}

.fa-male::before {
  content: "\f183";
}

.fa-laptop::before {
  content: "\f109";
}

.fa-file-csv::before {
  content: "\f6dd";
}

.fa-menorah::before {
  content: "\f676";
}

.fa-truck-plane::before {
  content: "\e58f";
}

.fa-record-vinyl::before {
  content: "\f8d9";
}

.fa-face-grin-stars::before {
  content: "\f587";
}

.fa-grin-stars::before {
  content: "\f587";
}

.fa-bong::before {
  content: "\f55c";
}

.fa-spaghetti-monster-flying::before {
  content: "\f67b";
}

.fa-pastafarianism::before {
  content: "\f67b";
}

.fa-arrow-down-up-across-line::before {
  content: "\e4af";
}

.fa-spoon::before {
  content: "\f2e5";
}

.fa-utensil-spoon::before {
  content: "\f2e5";
}

.fa-jar-wheat::before {
  content: "\e517";
}

.fa-envelopes-bulk::before {
  content: "\f674";
}

.fa-mail-bulk::before {
  content: "\f674";
}

.fa-file-circle-exclamation::before {
  content: "\e4eb";
}

.fa-circle-h::before {
  content: "\f47e";
}

.fa-hospital-symbol::before {
  content: "\f47e";
}

.fa-pager::before {
  content: "\f815";
}

.fa-address-book::before {
  content: "\f2b9";
}

.fa-contact-book::before {
  content: "\f2b9";
}

.fa-strikethrough::before {
  content: "\f0cc";
}

.fa-k::before {
  content: "K";
}

.fa-landmark-flag::before {
  content: "\e51c";
}

.fa-pencil::before {
  content: "\f303";
}

.fa-pencil-alt::before {
  content: "\f303";
}

.fa-backward::before {
  content: "\f04a";
}

.fa-caret-right::before {
  content: "\f0da";
}

.fa-comments::before {
  content: "\f086";
}

.fa-paste::before {
  content: "\f0ea";
}

.fa-file-clipboard::before {
  content: "\f0ea";
}

.fa-code-pull-request::before {
  content: "\e13c";
}

.fa-clipboard-list::before {
  content: "\f46d";
}

.fa-truck-ramp-box::before {
  content: "\f4de";
}

.fa-truck-loading::before {
  content: "\f4de";
}

.fa-user-check::before {
  content: "\f4fc";
}

.fa-vial-virus::before {
  content: "\e597";
}

.fa-sheet-plastic::before {
  content: "\e571";
}

.fa-blog::before {
  content: "\f781";
}

.fa-user-ninja::before {
  content: "\f504";
}

.fa-person-arrow-up-from-line::before {
  content: "\e539";
}

.fa-scroll-torah::before {
  content: "\f6a0";
}

.fa-torah::before {
  content: "\f6a0";
}

.fa-broom-ball::before {
  content: "\f458";
}

.fa-quidditch::before {
  content: "\f458";
}

.fa-quidditch-broom-ball::before {
  content: "\f458";
}

.fa-toggle-off::before {
  content: "\f204";
}

.fa-box-archive::before {
  content: "\f187";
}

.fa-archive::before {
  content: "\f187";
}

.fa-person-drowning::before {
  content: "\e545";
}

.fa-arrow-down-9-1::before {
  content: "\f886";
}

.fa-sort-numeric-desc::before {
  content: "\f886";
}

.fa-sort-numeric-down-alt::before {
  content: "\f886";
}

.fa-face-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-spray-can::before {
  content: "\f5bd";
}

.fa-truck-monster::before {
  content: "\f63b";
}

.fa-w::before {
  content: "W";
}

.fa-earth-africa::before {
  content: "\f57c";
}

.fa-globe-africa::before {
  content: "\f57c";
}

.fa-rainbow::before {
  content: "\f75b";
}

.fa-circle-notch::before {
  content: "\f1ce";
}

.fa-tablet-screen-button::before {
  content: "\f3fa";
}

.fa-tablet-alt::before {
  content: "\f3fa";
}

.fa-paw::before {
  content: "\f1b0";
}

.fa-cloud::before {
  content: "\f0c2";
}

.fa-trowel-bricks::before {
  content: "\e58a";
}

.fa-face-flushed::before {
  content: "\f579";
}

.fa-flushed::before {
  content: "\f579";
}

.fa-hospital-user::before {
  content: "\f80d";
}

.fa-tent-arrow-left-right::before {
  content: "\e57f";
}

.fa-gavel::before {
  content: "\f0e3";
}

.fa-legal::before {
  content: "\f0e3";
}

.fa-binoculars::before {
  content: "\f1e5";
}

.fa-microphone-slash::before {
  content: "\f131";
}

.fa-box-tissue::before {
  content: "\e05b";
}

.fa-motorcycle::before {
  content: "\f21c";
}

.fa-bell-concierge::before {
  content: "\f562";
}

.fa-concierge-bell::before {
  content: "\f562";
}

.fa-pen-ruler::before {
  content: "\f5ae";
}

.fa-pencil-ruler::before {
  content: "\f5ae";
}

.fa-people-arrows::before {
  content: "\e068";
}

.fa-people-arrows-left-right::before {
  content: "\e068";
}

.fa-mars-and-venus-burst::before {
  content: "\e523";
}

.fa-square-caret-right::before {
  content: "\f152";
}

.fa-caret-square-right::before {
  content: "\f152";
}

.fa-scissors::before {
  content: "\f0c4";
}

.fa-cut::before {
  content: "\f0c4";
}

.fa-sun-plant-wilt::before {
  content: "\e57a";
}

.fa-toilets-portable::before {
  content: "\e584";
}

.fa-hockey-puck::before {
  content: "\f453";
}

.fa-table::before {
  content: "\f0ce";
}

.fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}

.fa-tachograph-digital::before {
  content: "\f566";
}

.fa-digital-tachograph::before {
  content: "\f566";
}

.fa-users-slash::before {
  content: "\e073";
}

.fa-clover::before {
  content: "\e139";
}

.fa-reply::before {
  content: "\f3e5";
}

.fa-mail-reply::before {
  content: "\f3e5";
}

.fa-star-and-crescent::before {
  content: "\f699";
}

.fa-house-fire::before {
  content: "\e50c";
}

.fa-square-minus::before {
  content: "\f146";
}

.fa-minus-square::before {
  content: "\f146";
}

.fa-helicopter::before {
  content: "\f533";
}

.fa-compass::before {
  content: "\f14e";
}

.fa-square-caret-down::before {
  content: "\f150";
}

.fa-caret-square-down::before {
  content: "\f150";
}

.fa-file-circle-question::before {
  content: "\e4ef";
}

.fa-laptop-code::before {
  content: "\f5fc";
}

.fa-swatchbook::before {
  content: "\f5c3";
}

.fa-prescription-bottle::before {
  content: "\f485";
}

.fa-bars::before {
  content: "\f0c9";
}

.fa-navicon::before {
  content: "\f0c9";
}

.fa-people-group::before {
  content: "\e533";
}

.fa-hourglass-end::before {
  content: "\f253";
}

.fa-hourglass-3::before {
  content: "\f253";
}

.fa-heart-crack::before {
  content: "\f7a9";
}

.fa-heart-broken::before {
  content: "\f7a9";
}

.fa-square-up-right::before {
  content: "\f360";
}

.fa-external-link-square-alt::before {
  content: "\f360";
}

.fa-face-kiss-beam::before {
  content: "\f597";
}

.fa-kiss-beam::before {
  content: "\f597";
}

.fa-film::before {
  content: "\f008";
}

.fa-ruler-horizontal::before {
  content: "\f547";
}

.fa-people-robbery::before {
  content: "\e536";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

.fa-caret-left::before {
  content: "\f0d9";
}

.fa-circle-exclamation::before {
  content: "\f06a";
}

.fa-exclamation-circle::before {
  content: "\f06a";
}

.fa-school-circle-xmark::before {
  content: "\e56d";
}

.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}

.fa-sign-out::before {
  content: "\f08b";
}

.fa-circle-chevron-down::before {
  content: "\f13a";
}

.fa-chevron-circle-down::before {
  content: "\f13a";
}

.fa-unlock-keyhole::before {
  content: "\f13e";
}

.fa-unlock-alt::before {
  content: "\f13e";
}

.fa-cloud-showers-heavy::before {
  content: "\f740";
}

.fa-headphones-simple::before {
  content: "\f58f";
}

.fa-headphones-alt::before {
  content: "\f58f";
}

.fa-sitemap::before {
  content: "\f0e8";
}

.fa-circle-dollar-to-slot::before {
  content: "\f4b9";
}

.fa-donate::before {
  content: "\f4b9";
}

.fa-memory::before {
  content: "\f538";
}

.fa-road-spikes::before {
  content: "\e568";
}

.fa-fire-burner::before {
  content: "\e4f1";
}

.fa-flag::before {
  content: "\f024";
}

.fa-hanukiah::before {
  content: "\f6e6";
}

.fa-feather::before {
  content: "\f52d";
}

.fa-volume-low::before {
  content: "\f027";
}

.fa-volume-down::before {
  content: "\f027";
}

.fa-comment-slash::before {
  content: "\f4b3";
}

.fa-cloud-sun-rain::before {
  content: "\f743";
}

.fa-compress::before {
  content: "\f066";
}

.fa-wheat-awn::before {
  content: "\e2cd";
}

.fa-wheat-alt::before {
  content: "\e2cd";
}

.fa-ankh::before {
  content: "\f644";
}

.fa-hands-holding-child::before {
  content: "\e4fa";
}

.fa-asterisk::before {
  content: "\*";
}

.fa-square-check::before {
  content: "\f14a";
}

.fa-check-square::before {
  content: "\f14a";
}

.fa-peseta-sign::before {
  content: "\e221";
}

.fa-heading::before {
  content: "\f1dc";
}

.fa-header::before {
  content: "\f1dc";
}

.fa-ghost::before {
  content: "\f6e2";
}

.fa-list::before {
  content: "\f03a";
}

.fa-list-squares::before {
  content: "\f03a";
}

.fa-square-phone-flip::before {
  content: "\f87b";
}

.fa-phone-square-alt::before {
  content: "\f87b";
}

.fa-cart-plus::before {
  content: "\f217";
}

.fa-gamepad::before {
  content: "\f11b";
}

.fa-circle-dot::before {
  content: "\f192";
}

.fa-dot-circle::before {
  content: "\f192";
}

.fa-face-dizzy::before {
  content: "\f567";
}

.fa-dizzy::before {
  content: "\f567";
}

.fa-egg::before {
  content: "\f7fb";
}

.fa-house-medical-circle-xmark::before {
  content: "\e513";
}

.fa-campground::before {
  content: "\f6bb";
}

.fa-folder-plus::before {
  content: "\f65e";
}

.fa-futbol::before {
  content: "\f1e3";
}

.fa-futbol-ball::before {
  content: "\f1e3";
}

.fa-soccer-ball::before {
  content: "\f1e3";
}

.fa-paintbrush::before {
  content: "\f1fc";
}

.fa-paint-brush::before {
  content: "\f1fc";
}

.fa-lock::before {
  content: "\f023";
}

.fa-gas-pump::before {
  content: "\f52f";
}

.fa-hot-tub-person::before {
  content: "\f593";
}

.fa-hot-tub::before {
  content: "\f593";
}

.fa-map-location::before {
  content: "\f59f";
}

.fa-map-marked::before {
  content: "\f59f";
}

.fa-house-flood-water::before {
  content: "\e50e";
}

.fa-tree::before {
  content: "\f1bb";
}

.fa-bridge-lock::before {
  content: "\e4cc";
}

.fa-sack-dollar::before {
  content: "\f81d";
}

.fa-pen-to-square::before {
  content: "\f044";
}

.fa-edit::before {
  content: "\f044";
}

.fa-car-side::before {
  content: "\f5e4";
}

.fa-share-nodes::before {
  content: "\f1e0";
}

.fa-share-alt::before {
  content: "\f1e0";
}

.fa-heart-circle-minus::before {
  content: "\e4ff";
}

.fa-hourglass-half::before {
  content: "\f252";
}

.fa-hourglass-2::before {
  content: "\f252";
}

.fa-microscope::before {
  content: "\f610";
}

.fa-sink::before {
  content: "\e06d";
}

.fa-bag-shopping::before {
  content: "\f290";
}

.fa-shopping-bag::before {
  content: "\f290";
}

.fa-arrow-down-z-a::before {
  content: "\f881";
}

.fa-sort-alpha-desc::before {
  content: "\f881";
}

.fa-sort-alpha-down-alt::before {
  content: "\f881";
}

.fa-mitten::before {
  content: "\f7b5";
}

.fa-person-rays::before {
  content: "\e54d";
}

.fa-users::before {
  content: "\f0c0";
}

.fa-eye-slash::before {
  content: "\f070";
}

.fa-flask-vial::before {
  content: "\e4f3";
}

.fa-hand::before {
  content: "\f256";
}

.fa-hand-paper::before {
  content: "\f256";
}

.fa-om::before {
  content: "\f679";
}

.fa-worm::before {
  content: "\e599";
}

.fa-house-circle-xmark::before {
  content: "\e50b";
}

.fa-plug::before {
  content: "\f1e6";
}

.fa-chevron-up::before {
  content: "\f077";
}

.fa-hand-spock::before {
  content: "\f259";
}

.fa-stopwatch::before {
  content: "\f2f2";
}

.fa-face-kiss::before {
  content: "\f596";
}

.fa-kiss::before {
  content: "\f596";
}

.fa-bridge-circle-xmark::before {
  content: "\e4cb";
}

.fa-face-grin-tongue::before {
  content: "\f589";
}

.fa-grin-tongue::before {
  content: "\f589";
}

.fa-chess-bishop::before {
  content: "\f43a";
}

.fa-face-grin-wink::before {
  content: "\f58c";
}

.fa-grin-wink::before {
  content: "\f58c";
}

.fa-ear-deaf::before {
  content: "\f2a4";
}

.fa-deaf::before {
  content: "\f2a4";
}

.fa-deafness::before {
  content: "\f2a4";
}

.fa-hard-of-hearing::before {
  content: "\f2a4";
}

.fa-road-circle-check::before {
  content: "\e564";
}

.fa-dice-five::before {
  content: "\f523";
}

.fa-square-rss::before {
  content: "\f143";
}

.fa-rss-square::before {
  content: "\f143";
}

.fa-land-mine-on::before {
  content: "\e51b";
}

.fa-i-cursor::before {
  content: "\f246";
}

.fa-stamp::before {
  content: "\f5bf";
}

.fa-stairs::before {
  content: "\e289";
}

.fa-i::before {
  content: "I";
}

.fa-hryvnia-sign::before {
  content: "\f6f2";
}

.fa-hryvnia::before {
  content: "\f6f2";
}

.fa-pills::before {
  content: "\f484";
}

.fa-face-grin-wide::before {
  content: "\f581";
}

.fa-grin-alt::before {
  content: "\f581";
}

.fa-tooth::before {
  content: "\f5c9";
}

.fa-v::before {
  content: "V";
}

.fa-bicycle::before {
  content: "\f206";
}

.fa-staff-snake::before {
  content: "\e579";
}

.fa-rod-asclepius::before {
  content: "\e579";
}

.fa-rod-snake::before {
  content: "\e579";
}

.fa-staff-aesculapius::before {
  content: "\e579";
}

.fa-head-side-cough-slash::before {
  content: "\e062";
}

.fa-truck-medical::before {
  content: "\f0f9";
}

.fa-ambulance::before {
  content: "\f0f9";
}

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}

.fa-snowman::before {
  content: "\f7d0";
}

.fa-mortar-pestle::before {
  content: "\f5a7";
}

.fa-road-barrier::before {
  content: "\e562";
}

.fa-school::before {
  content: "\f549";
}

.fa-igloo::before {
  content: "\f7ae";
}

.fa-joint::before {
  content: "\f595";
}

.fa-angle-right::before {
  content: "\f105";
}

.fa-horse::before {
  content: "\f6f0";
}

.fa-q::before {
  content: "Q";
}

.fa-g::before {
  content: "G";
}

.fa-notes-medical::before {
  content: "\f481";
}

.fa-temperature-half::before {
  content: "\f2c9";
}

.fa-temperature-2::before {
  content: "\f2c9";
}

.fa-thermometer-2::before {
  content: "\f2c9";
}

.fa-thermometer-half::before {
  content: "\f2c9";
}

.fa-dong-sign::before {
  content: "\e169";
}

.fa-capsules::before {
  content: "\f46b";
}

.fa-poo-storm::before {
  content: "\f75a";
}

.fa-poo-bolt::before {
  content: "\f75a";
}

.fa-face-frown-open::before {
  content: "\f57a";
}

.fa-frown-open::before {
  content: "\f57a";
}

.fa-hand-point-up::before {
  content: "\f0a6";
}

.fa-money-bill::before {
  content: "\f0d6";
}

.fa-bookmark::before {
  content: "\f02e";
}

.fa-align-justify::before {
  content: "\f039";
}

.fa-umbrella-beach::before {
  content: "\f5ca";
}

.fa-helmet-un::before {
  content: "\e503";
}

.fa-bullseye::before {
  content: "\f140";
}

.fa-bacon::before {
  content: "\f7e5";
}

.fa-hand-point-down::before {
  content: "\f0a7";
}

.fa-arrow-up-from-bracket::before {
  content: "\e09a";
}

.fa-folder::before {
  content: "\f07b";
}

.fa-folder-blank::before {
  content: "\f07b";
}

.fa-file-waveform::before {
  content: "\f478";
}

.fa-file-medical-alt::before {
  content: "\f478";
}

.fa-radiation::before {
  content: "\f7b9";
}

.fa-chart-simple::before {
  content: "\e473";
}

.fa-mars-stroke::before {
  content: "\f229";
}

.fa-vial::before {
  content: "\f492";
}

.fa-gauge::before {
  content: "\f624";
}

.fa-dashboard::before {
  content: "\f624";
}

.fa-gauge-med::before {
  content: "\f624";
}

.fa-tachometer-alt-average::before {
  content: "\f624";
}

.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}

.fa-magic-wand-sparkles::before {
  content: "\e2ca";
}

.fa-e::before {
  content: "E";
}

.fa-pen-clip::before {
  content: "\f305";
}

.fa-pen-alt::before {
  content: "\f305";
}

.fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}

.fa-user::before {
  content: "\f007";
}

.fa-school-circle-check::before {
  content: "\e56b";
}

.fa-dumpster::before {
  content: "\f793";
}

.fa-van-shuttle::before {
  content: "\f5b6";
}

.fa-shuttle-van::before {
  content: "\f5b6";
}

.fa-building-user::before {
  content: "\e4da";
}

.fa-square-caret-left::before {
  content: "\f191";
}

.fa-caret-square-left::before {
  content: "\f191";
}

.fa-highlighter::before {
  content: "\f591";
}

.fa-key::before {
  content: "\f084";
}

.fa-bullhorn::before {
  content: "\f0a1";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-synagogue::before {
  content: "\f69b";
}

.fa-person-half-dress::before {
  content: "\e548";
}

.fa-road-bridge::before {
  content: "\e563";
}

.fa-location-arrow::before {
  content: "\f124";
}

.fa-c::before {
  content: "C";
}

.fa-tablet-button::before {
  content: "\f10a";
}

.fa-building-lock::before {
  content: "\e4d6";
}

.fa-pizza-slice::before {
  content: "\f818";
}

.fa-money-bill-wave::before {
  content: "\f53a";
}

.fa-chart-area::before {
  content: "\f1fe";
}

.fa-area-chart::before {
  content: "\f1fe";
}

.fa-house-flag::before {
  content: "\e50d";
}

.fa-person-circle-minus::before {
  content: "\e540";
}

.fa-ban::before {
  content: "\f05e";
}

.fa-cancel::before {
  content: "\f05e";
}

.fa-camera-rotate::before {
  content: "\e0d8";
}

.fa-spray-can-sparkles::before {
  content: "\f5d0";
}

.fa-air-freshener::before {
  content: "\f5d0";
}

.fa-star::before {
  content: "\f005";
}

.fa-repeat::before {
  content: "\f363";
}

.fa-cross::before {
  content: "\f654";
}

.fa-box::before {
  content: "\f466";
}

.fa-venus-mars::before {
  content: "\f228";
}

.fa-arrow-pointer::before {
  content: "\f245";
}

.fa-mouse-pointer::before {
  content: "\f245";
}

.fa-maximize::before {
  content: "\f31e";
}

.fa-expand-arrows-alt::before {
  content: "\f31e";
}

.fa-charging-station::before {
  content: "\f5e7";
}

.fa-shapes::before {
  content: "\f61f";
}

.fa-triangle-circle-square::before {
  content: "\f61f";
}

.fa-shuffle::before {
  content: "\f074";
}

.fa-random::before {
  content: "\f074";
}

.fa-person-running::before {
  content: "\f70c";
}

.fa-running::before {
  content: "\f70c";
}

.fa-mobile-retro::before {
  content: "\e527";
}

.fa-grip-lines-vertical::before {
  content: "\f7a5";
}

.fa-spider::before {
  content: "\f717";
}

.fa-hands-bound::before {
  content: "\e4f9";
}

.fa-file-invoice-dollar::before {
  content: "\f571";
}

.fa-plane-circle-exclamation::before {
  content: "\e556";
}

.fa-x-ray::before {
  content: "\f497";
}

.fa-spell-check::before {
  content: "\f891";
}

.fa-slash::before {
  content: "\f715";
}

.fa-computer-mouse::before {
  content: "\f8cc";
}

.fa-mouse::before {
  content: "\f8cc";
}

.fa-arrow-right-to-bracket::before {
  content: "\f090";
}

.fa-sign-in::before {
  content: "\f090";
}

.fa-shop-slash::before {
  content: "\e070";
}

.fa-store-alt-slash::before {
  content: "\e070";
}

.fa-server::before {
  content: "\f233";
}

.fa-virus-covid-slash::before {
  content: "\e4a9";
}

.fa-shop-lock::before {
  content: "\e4a5";
}

.fa-hourglass-start::before {
  content: "\f251";
}

.fa-hourglass-1::before {
  content: "\f251";
}

.fa-blender-phone::before {
  content: "\f6b6";
}

.fa-building-wheat::before {
  content: "\e4db";
}

.fa-person-breastfeeding::before {
  content: "\e53a";
}

.fa-right-to-bracket::before {
  content: "\f2f6";
}

.fa-sign-in-alt::before {
  content: "\f2f6";
}

.fa-venus::before {
  content: "\f221";
}

.fa-passport::before {
  content: "\f5ab";
}

.fa-heart-pulse::before {
  content: "\f21e";
}

.fa-heartbeat::before {
  content: "\f21e";
}

.fa-people-carry-box::before {
  content: "\f4ce";
}

.fa-people-carry::before {
  content: "\f4ce";
}

.fa-temperature-high::before {
  content: "\f769";
}

.fa-microchip::before {
  content: "\f2db";
}

.fa-crown::before {
  content: "\f521";
}

.fa-weight-hanging::before {
  content: "\f5cd";
}

.fa-xmarks-lines::before {
  content: "\e59a";
}

.fa-file-prescription::before {
  content: "\f572";
}

.fa-weight-scale::before {
  content: "\f496";
}

.fa-weight::before {
  content: "\f496";
}

.fa-user-group::before {
  content: "\f500";
}

.fa-user-friends::before {
  content: "\f500";
}

.fa-arrow-up-a-z::before {
  content: "\f15e";
}

.fa-sort-alpha-up::before {
  content: "\f15e";
}

.fa-chess-knight::before {
  content: "\f441";
}

.fa-face-laugh-squint::before {
  content: "\f59b";
}

.fa-laugh-squint::before {
  content: "\f59b";
}

.fa-wheelchair::before {
  content: "\f193";
}

.fa-circle-arrow-up::before {
  content: "\f0aa";
}

.fa-arrow-circle-up::before {
  content: "\f0aa";
}

.fa-toggle-on::before {
  content: "\f205";
}

.fa-person-walking::before {
  content: "\f554";
}

.fa-walking::before {
  content: "\f554";
}

.fa-l::before {
  content: "L";
}

.fa-fire::before {
  content: "\f06d";
}

.fa-bed-pulse::before {
  content: "\f487";
}

.fa-procedures::before {
  content: "\f487";
}

.fa-shuttle-space::before {
  content: "\f197";
}

.fa-space-shuttle::before {
  content: "\f197";
}

.fa-face-laugh::before {
  content: "\f599";
}

.fa-laugh::before {
  content: "\f599";
}

.fa-folder-open::before {
  content: "\f07c";
}

.fa-heart-circle-plus::before {
  content: "\e500";
}

.fa-code-fork::before {
  content: "\e13b";
}

.fa-city::before {
  content: "\f64f";
}

.fa-microphone-lines::before {
  content: "\f3c9";
}

.fa-microphone-alt::before {
  content: "\f3c9";
}

.fa-pepper-hot::before {
  content: "\f816";
}

.fa-unlock::before {
  content: "\f09c";
}

.fa-colon-sign::before {
  content: "\e140";
}

.fa-headset::before {
  content: "\f590";
}

.fa-store-slash::before {
  content: "\e071";
}

.fa-road-circle-xmark::before {
  content: "\e566";
}

.fa-user-minus::before {
  content: "\f503";
}

.fa-mars-stroke-up::before {
  content: "\f22a";
}

.fa-mars-stroke-v::before {
  content: "\f22a";
}

.fa-champagne-glasses::before {
  content: "\f79f";
}

.fa-glass-cheers::before {
  content: "\f79f";
}

.fa-clipboard::before {
  content: "\f328";
}

.fa-house-circle-exclamation::before {
  content: "\e50a";
}

.fa-file-arrow-up::before {
  content: "\f574";
}

.fa-file-upload::before {
  content: "\f574";
}

.fa-wifi::before {
  content: "\f1eb";
}

.fa-wifi-3::before {
  content: "\f1eb";
}

.fa-wifi-strong::before {
  content: "\f1eb";
}

.fa-bath::before {
  content: "\f2cd";
}

.fa-bathtub::before {
  content: "\f2cd";
}

.fa-underline::before {
  content: "\f0cd";
}

.fa-user-pen::before {
  content: "\f4ff";
}

.fa-user-edit::before {
  content: "\f4ff";
}

.fa-signature::before {
  content: "\f5b7";
}

.fa-stroopwafel::before {
  content: "\f551";
}

.fa-bold::before {
  content: "\f032";
}

.fa-anchor-lock::before {
  content: "\e4ad";
}

.fa-building-ngo::before {
  content: "\e4d7";
}

.fa-manat-sign::before {
  content: "\e1d5";
}

.fa-not-equal::before {
  content: "\f53e";
}

.fa-border-top-left::before {
  content: "\f853";
}

.fa-border-style::before {
  content: "\f853";
}

.fa-map-location-dot::before {
  content: "\f5a0";
}

.fa-map-marked-alt::before {
  content: "\f5a0";
}

.fa-jedi::before {
  content: "\f669";
}

.fa-square-poll-vertical::before {
  content: "\f681";
}

.fa-poll::before {
  content: "\f681";
}

.fa-mug-hot::before {
  content: "\f7b6";
}

.fa-car-battery::before {
  content: "\f5df";
}

.fa-battery-car::before {
  content: "\f5df";
}

.fa-gift::before {
  content: "\f06b";
}

.fa-dice-two::before {
  content: "\f528";
}

.fa-chess-queen::before {
  content: "\f445";
}

.fa-glasses::before {
  content: "\f530";
}

.fa-chess-board::before {
  content: "\f43c";
}

.fa-building-circle-check::before {
  content: "\e4d2";
}

.fa-person-chalkboard::before {
  content: "\e53d";
}

.fa-mars-stroke-right::before {
  content: "\f22b";
}

.fa-mars-stroke-h::before {
  content: "\f22b";
}

.fa-hand-back-fist::before {
  content: "\f255";
}

.fa-hand-rock::before {
  content: "\f255";
}

.fa-square-caret-up::before {
  content: "\f151";
}

.fa-caret-square-up::before {
  content: "\f151";
}

.fa-cloud-showers-water::before {
  content: "\e4e4";
}

.fa-chart-bar::before {
  content: "\f080";
}

.fa-bar-chart::before {
  content: "\f080";
}

.fa-hands-bubbles::before {
  content: "\e05e";
}

.fa-hands-wash::before {
  content: "\e05e";
}

.fa-less-than-equal::before {
  content: "\f537";
}

.fa-train::before {
  content: "\f238";
}

.fa-eye-low-vision::before {
  content: "\f2a8";
}

.fa-low-vision::before {
  content: "\f2a8";
}

.fa-crow::before {
  content: "\f520";
}

.fa-sailboat::before {
  content: "\e445";
}

.fa-window-restore::before {
  content: "\f2d2";
}

.fa-square-plus::before {
  content: "\f0fe";
}

.fa-plus-square::before {
  content: "\f0fe";
}

.fa-torii-gate::before {
  content: "\f6a1";
}

.fa-frog::before {
  content: "\f52e";
}

.fa-bucket::before {
  content: "\e4cf";
}

.fa-image::before {
  content: "\f03e";
}

.fa-microphone::before {
  content: "\f130";
}

.fa-cow::before {
  content: "\f6c8";
}

.fa-caret-up::before {
  content: "\f0d8";
}

.fa-screwdriver::before {
  content: "\f54a";
}

.fa-folder-closed::before {
  content: "\e185";
}

.fa-house-tsunami::before {
  content: "\e515";
}

.fa-square-nfi::before {
  content: "\e576";
}

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}

.fa-martini-glass::before {
  content: "\f57b";
}

.fa-glass-martini-alt::before {
  content: "\f57b";
}

.fa-rotate-left::before {
  content: "\f2ea";
}

.fa-rotate-back::before {
  content: "\f2ea";
}

.fa-rotate-backward::before {
  content: "\f2ea";
}

.fa-undo-alt::before {
  content: "\f2ea";
}

.fa-table-columns::before {
  content: "\f0db";
}

.fa-columns::before {
  content: "\f0db";
}

.fa-lemon::before {
  content: "\f094";
}

.fa-head-side-mask::before {
  content: "\e063";
}

.fa-handshake::before {
  content: "\f2b5";
}

.fa-gem::before {
  content: "\f3a5";
}

.fa-dolly::before {
  content: "\f472";
}

.fa-dolly-box::before {
  content: "\f472";
}

.fa-smoking::before {
  content: "\f48d";
}

.fa-minimize::before {
  content: "\f78c";
}

.fa-compress-arrows-alt::before {
  content: "\f78c";
}

.fa-monument::before {
  content: "\f5a6";
}

.fa-snowplow::before {
  content: "\f7d2";
}

.fa-angles-right::before {
  content: "\f101";
}

.fa-angle-double-right::before {
  content: "\f101";
}

.fa-cannabis::before {
  content: "\f55f";
}

.fa-circle-play::before {
  content: "\f144";
}

.fa-play-circle::before {
  content: "\f144";
}

.fa-tablets::before {
  content: "\f490";
}

.fa-ethernet::before {
  content: "\f796";
}

.fa-euro-sign::before {
  content: "\f153";
}

.fa-eur::before {
  content: "\f153";
}

.fa-euro::before {
  content: "\f153";
}

.fa-chair::before {
  content: "\f6c0";
}

.fa-circle-check::before {
  content: "\f058";
}

.fa-check-circle::before {
  content: "\f058";
}

.fa-circle-stop::before {
  content: "\f28d";
}

.fa-stop-circle::before {
  content: "\f28d";
}

.fa-compass-drafting::before {
  content: "\f568";
}

.fa-drafting-compass::before {
  content: "\f568";
}

.fa-plate-wheat::before {
  content: "\e55a";
}

.fa-icicles::before {
  content: "\f7ad";
}

.fa-person-shelter::before {
  content: "\e54f";
}

.fa-neuter::before {
  content: "\f22c";
}

.fa-id-badge::before {
  content: "\f2c1";
}

.fa-marker::before {
  content: "\f5a1";
}

.fa-face-laugh-beam::before {
  content: "\f59a";
}

.fa-laugh-beam::before {
  content: "\f59a";
}

.fa-helicopter-symbol::before {
  content: "\e502";
}

.fa-universal-access::before {
  content: "\f29a";
}

.fa-circle-chevron-up::before {
  content: "\f139";
}

.fa-chevron-circle-up::before {
  content: "\f139";
}

.fa-lari-sign::before {
  content: "\e1c8";
}

.fa-volcano::before {
  content: "\f770";
}

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}

.fa-sterling-sign::before {
  content: "\f154";
}

.fa-gbp::before {
  content: "\f154";
}

.fa-pound-sign::before {
  content: "\f154";
}

.fa-viruses::before {
  content: "\e076";
}

.fa-square-person-confined::before {
  content: "\e577";
}

.fa-user-tie::before {
  content: "\f508";
}

.fa-arrow-down-long::before {
  content: "\f175";
}

.fa-long-arrow-down::before {
  content: "\f175";
}

.fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}

.fa-certificate::before {
  content: "\f0a3";
}

.fa-reply-all::before {
  content: "\f122";
}

.fa-mail-reply-all::before {
  content: "\f122";
}

.fa-suitcase::before {
  content: "\f0f2";
}

.fa-person-skating::before {
  content: "\f7c5";
}

.fa-skating::before {
  content: "\f7c5";
}

.fa-filter-circle-dollar::before {
  content: "\f662";
}

.fa-funnel-dollar::before {
  content: "\f662";
}

.fa-camera-retro::before {
  content: "\f083";
}

.fa-circle-arrow-down::before {
  content: "\f0ab";
}

.fa-arrow-circle-down::before {
  content: "\f0ab";
}

.fa-file-import::before {
  content: "\f56f";
}

.fa-arrow-right-to-file::before {
  content: "\f56f";
}

.fa-square-arrow-up-right::before {
  content: "\f14c";
}

.fa-external-link-square::before {
  content: "\f14c";
}

.fa-box-open::before {
  content: "\f49e";
}

.fa-scroll::before {
  content: "\f70e";
}

.fa-spa::before {
  content: "\f5bb";
}

.fa-location-pin-lock::before {
  content: "\e51f";
}

.fa-pause::before {
  content: "\f04c";
}

.fa-hill-avalanche::before {
  content: "\e507";
}

.fa-temperature-empty::before {
  content: "\f2cb";
}

.fa-temperature-0::before {
  content: "\f2cb";
}

.fa-thermometer-0::before {
  content: "\f2cb";
}

.fa-thermometer-empty::before {
  content: "\f2cb";
}

.fa-bomb::before {
  content: "\f1e2";
}

.fa-registered::before {
  content: "\f25d";
}

.fa-address-card::before {
  content: "\f2bb";
}

.fa-contact-card::before {
  content: "\f2bb";
}

.fa-vcard::before {
  content: "\f2bb";
}

.fa-scale-unbalanced-flip::before {
  content: "\f516";
}

.fa-balance-scale-right::before {
  content: "\f516";
}

.fa-subscript::before {
  content: "\f12c";
}

.fa-diamond-turn-right::before {
  content: "\f5eb";
}

.fa-directions::before {
  content: "\f5eb";
}

.fa-burst::before {
  content: "\e4dc";
}

.fa-house-laptop::before {
  content: "\e066";
}

.fa-laptop-house::before {
  content: "\e066";
}

.fa-face-tired::before {
  content: "\f5c8";
}

.fa-tired::before {
  content: "\f5c8";
}

.fa-money-bills::before {
  content: "\e1f3";
}

.fa-smog::before {
  content: "\f75f";
}

.fa-crutch::before {
  content: "\f7f7";
}

.fa-cloud-arrow-up::before {
  content: "\f0ee";
}

.fa-cloud-upload::before {
  content: "\f0ee";
}

.fa-cloud-upload-alt::before {
  content: "\f0ee";
}

.fa-palette::before {
  content: "\f53f";
}

.fa-arrows-turn-right::before {
  content: "\e4c0";
}

.fa-vest::before {
  content: "\e085";
}

.fa-ferry::before {
  content: "\e4ea";
}

.fa-arrows-down-to-people::before {
  content: "\e4b9";
}

.fa-seedling::before {
  content: "\f4d8";
}

.fa-sprout::before {
  content: "\f4d8";
}

.fa-left-right::before {
  content: "\f337";
}

.fa-arrows-alt-h::before {
  content: "\f337";
}

.fa-boxes-packing::before {
  content: "\e4c7";
}

.fa-circle-arrow-left::before {
  content: "\f0a8";
}

.fa-arrow-circle-left::before {
  content: "\f0a8";
}

.fa-group-arrows-rotate::before {
  content: "\e4f6";
}

.fa-bowl-food::before {
  content: "\e4c6";
}

.fa-candy-cane::before {
  content: "\f786";
}

.fa-arrow-down-wide-short::before {
  content: "\f160";
}

.fa-sort-amount-asc::before {
  content: "\f160";
}

.fa-sort-amount-down::before {
  content: "\f160";
}

.fa-cloud-bolt::before {
  content: "\f76c";
}

.fa-thunderstorm::before {
  content: "\f76c";
}

.fa-text-slash::before {
  content: "\f87d";
}

.fa-remove-format::before {
  content: "\f87d";
}

.fa-face-smile-wink::before {
  content: "\f4da";
}

.fa-smile-wink::before {
  content: "\f4da";
}

.fa-file-word::before {
  content: "\f1c2";
}

.fa-file-powerpoint::before {
  content: "\f1c4";
}

.fa-arrows-left-right::before {
  content: "\f07e";
}

.fa-arrows-h::before {
  content: "\f07e";
}

.fa-house-lock::before {
  content: "\e510";
}

.fa-cloud-arrow-down::before {
  content: "\f0ed";
}

.fa-cloud-download::before {
  content: "\f0ed";
}

.fa-cloud-download-alt::before {
  content: "\f0ed";
}

.fa-children::before {
  content: "\e4e1";
}

.fa-chalkboard::before {
  content: "\f51b";
}

.fa-blackboard::before {
  content: "\f51b";
}

.fa-user-large-slash::before {
  content: "\f4fa";
}

.fa-user-alt-slash::before {
  content: "\f4fa";
}

.fa-envelope-open::before {
  content: "\f2b6";
}

.fa-handshake-simple-slash::before {
  content: "\e05f";
}

.fa-handshake-alt-slash::before {
  content: "\e05f";
}

.fa-mattress-pillow::before {
  content: "\e525";
}

.fa-guarani-sign::before {
  content: "\e19a";
}

.fa-arrows-rotate::before {
  content: "\f021";
}

.fa-refresh::before {
  content: "\f021";
}

.fa-sync::before {
  content: "\f021";
}

.fa-fire-extinguisher::before {
  content: "\f134";
}

.fa-cruzeiro-sign::before {
  content: "\e152";
}

.fa-greater-than-equal::before {
  content: "\f532";
}

.fa-shield-halved::before {
  content: "\f3ed";
}

.fa-shield-alt::before {
  content: "\f3ed";
}

.fa-book-atlas::before {
  content: "\f558";
}

.fa-atlas::before {
  content: "\f558";
}

.fa-virus::before {
  content: "\e074";
}

.fa-envelope-circle-check::before {
  content: "\e4e8";
}

.fa-layer-group::before {
  content: "\f5fd";
}

.fa-arrows-to-dot::before {
  content: "\e4be";
}

.fa-archway::before {
  content: "\f557";
}

.fa-heart-circle-check::before {
  content: "\e4fd";
}

.fa-house-chimney-crack::before {
  content: "\f6f1";
}

.fa-house-damage::before {
  content: "\f6f1";
}

.fa-file-zipper::before {
  content: "\f1c6";
}

.fa-file-archive::before {
  content: "\f1c6";
}

.fa-square::before {
  content: "\f0c8";
}

.fa-martini-glass-empty::before {
  content: "\f000";
}

.fa-glass-martini::before {
  content: "\f000";
}

.fa-couch::before {
  content: "\f4b8";
}

.fa-cedi-sign::before {
  content: "\e0df";
}

.fa-italic::before {
  content: "\f033";
}

.fa-church::before {
  content: "\f51d";
}

.fa-comments-dollar::before {
  content: "\f653";
}

.fa-democrat::before {
  content: "\f747";
}

.fa-z::before {
  content: "Z";
}

.fa-person-skiing::before {
  content: "\f7c9";
}

.fa-skiing::before {
  content: "\f7c9";
}

.fa-road-lock::before {
  content: "\e567";
}

.fa-a::before {
  content: "A";
}

.fa-temperature-arrow-down::before {
  content: "\e03f";
}

.fa-temperature-down::before {
  content: "\e03f";
}

.fa-feather-pointed::before {
  content: "\f56b";
}

.fa-feather-alt::before {
  content: "\f56b";
}

.fa-p::before {
  content: "P";
}

.fa-snowflake::before {
  content: "\f2dc";
}

.fa-newspaper::before {
  content: "\f1ea";
}

.fa-rectangle-ad::before {
  content: "\f641";
}

.fa-ad::before {
  content: "\f641";
}

.fa-circle-arrow-right::before {
  content: "\f0a9";
}

.fa-arrow-circle-right::before {
  content: "\f0a9";
}

.fa-filter-circle-xmark::before {
  content: "\e17b";
}

.fa-locust::before {
  content: "\e520";
}

.fa-sort::before {
  content: "\f0dc";
}

.fa-unsorted::before {
  content: "\f0dc";
}

.fa-list-ol::before {
  content: "\f0cb";
}

.fa-list-1-2::before {
  content: "\f0cb";
}

.fa-list-numeric::before {
  content: "\f0cb";
}

.fa-person-dress-burst::before {
  content: "\e544";
}

.fa-money-check-dollar::before {
  content: "\f53d";
}

.fa-money-check-alt::before {
  content: "\f53d";
}

.fa-vector-square::before {
  content: "\f5cb";
}

.fa-bread-slice::before {
  content: "\f7ec";
}

.fa-language::before {
  content: "\f1ab";
}

.fa-face-kiss-wink-heart::before {
  content: "\f598";
}

.fa-kiss-wink-heart::before {
  content: "\f598";
}

.fa-filter::before {
  content: "\f0b0";
}

.fa-question::before {
  content: "\?";
}

.fa-file-signature::before {
  content: "\f573";
}

.fa-up-down-left-right::before {
  content: "\f0b2";
}

.fa-arrows-alt::before {
  content: "\f0b2";
}

.fa-house-chimney-user::before {
  content: "\e065";
}

.fa-hand-holding-heart::before {
  content: "\f4be";
}

.fa-puzzle-piece::before {
  content: "\f12e";
}

.fa-money-check::before {
  content: "\f53c";
}

.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-star-half-alt::before {
  content: "\f5c0";
}

.fa-code::before {
  content: "\f121";
}

.fa-whiskey-glass::before {
  content: "\f7a0";
}

.fa-glass-whiskey::before {
  content: "\f7a0";
}

.fa-building-circle-exclamation::before {
  content: "\e4d3";
}

.fa-magnifying-glass-chart::before {
  content: "\e522";
}

.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}

.fa-external-link::before {
  content: "\f08e";
}

.fa-cubes-stacked::before {
  content: "\e4e6";
}

.fa-won-sign::before {
  content: "\f159";
}

.fa-krw::before {
  content: "\f159";
}

.fa-won::before {
  content: "\f159";
}

.fa-virus-covid::before {
  content: "\e4a8";
}

.fa-austral-sign::before {
  content: "\e0a9";
}

.fa-f::before {
  content: "F";
}

.fa-leaf::before {
  content: "\f06c";
}

.fa-road::before {
  content: "\f018";
}

.fa-taxi::before {
  content: "\f1ba";
}

.fa-cab::before {
  content: "\f1ba";
}

.fa-person-circle-plus::before {
  content: "\e541";
}

.fa-chart-pie::before {
  content: "\f200";
}

.fa-pie-chart::before {
  content: "\f200";
}

.fa-bolt-lightning::before {
  content: "\e0b7";
}

.fa-sack-xmark::before {
  content: "\e56a";
}

.fa-file-excel::before {
  content: "\f1c3";
}

.fa-file-contract::before {
  content: "\f56c";
}

.fa-fish-fins::before {
  content: "\e4f2";
}

.fa-building-flag::before {
  content: "\e4d5";
}

.fa-face-grin-beam::before {
  content: "\f582";
}

.fa-grin-beam::before {
  content: "\f582";
}

.fa-object-ungroup::before {
  content: "\f248";
}

.fa-poop::before {
  content: "\f619";
}

.fa-location-pin::before {
  content: "\f041";
}

.fa-map-marker::before {
  content: "\f041";
}

.fa-kaaba::before {
  content: "\f66b";
}

.fa-toilet-paper::before {
  content: "\f71e";
}

.fa-helmet-safety::before {
  content: "\f807";
}

.fa-hard-hat::before {
  content: "\f807";
}

.fa-hat-hard::before {
  content: "\f807";
}

.fa-eject::before {
  content: "\f052";
}

.fa-circle-right::before {
  content: "\f35a";
}

.fa-arrow-alt-circle-right::before {
  content: "\f35a";
}

.fa-plane-circle-check::before {
  content: "\e555";
}

.fa-face-rolling-eyes::before {
  content: "\f5a5";
}

.fa-meh-rolling-eyes::before {
  content: "\f5a5";
}

.fa-object-group::before {
  content: "\f247";
}

.fa-chart-line::before {
  content: "\f201";
}

.fa-line-chart::before {
  content: "\f201";
}

.fa-mask-ventilator::before {
  content: "\e524";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-signs-post::before {
  content: "\f277";
}

.fa-map-signs::before {
  content: "\f277";
}

.fa-cash-register::before {
  content: "\f788";
}

.fa-person-circle-question::before {
  content: "\e542";
}

.fa-h::before {
  content: "H";
}

.fa-tarp::before {
  content: "\e57b";
}

.fa-screwdriver-wrench::before {
  content: "\f7d9";
}

.fa-tools::before {
  content: "\f7d9";
}

.fa-arrows-to-eye::before {
  content: "\e4bf";
}

.fa-plug-circle-bolt::before {
  content: "\e55b";
}

.fa-heart::before {
  content: "\f004";
}

.fa-mars-and-venus::before {
  content: "\f224";
}

.fa-house-user::before {
  content: "\e1b0";
}

.fa-home-user::before {
  content: "\e1b0";
}

.fa-dumpster-fire::before {
  content: "\f794";
}

.fa-house-crack::before {
  content: "\e3b1";
}

.fa-martini-glass-citrus::before {
  content: "\f561";
}

.fa-cocktail::before {
  content: "\f561";
}

.fa-face-surprise::before {
  content: "\f5c2";
}

.fa-surprise::before {
  content: "\f5c2";
}

.fa-bottle-water::before {
  content: "\e4c5";
}

.fa-circle-pause::before {
  content: "\f28b";
}

.fa-pause-circle::before {
  content: "\f28b";
}

.fa-toilet-paper-slash::before {
  content: "\e072";
}

.fa-apple-whole::before {
  content: "\f5d1";
}

.fa-apple-alt::before {
  content: "\f5d1";
}

.fa-kitchen-set::before {
  content: "\e51a";
}

.fa-r::before {
  content: "R";
}

.fa-temperature-quarter::before {
  content: "\f2ca";
}

.fa-temperature-1::before {
  content: "\f2ca";
}

.fa-thermometer-1::before {
  content: "\f2ca";
}

.fa-thermometer-quarter::before {
  content: "\f2ca";
}

.fa-cube::before {
  content: "\f1b2";
}

.fa-bitcoin-sign::before {
  content: "\e0b4";
}

.fa-shield-dog::before {
  content: "\e573";
}

.fa-solar-panel::before {
  content: "\f5ba";
}

.fa-lock-open::before {
  content: "\f3c1";
}

.fa-elevator::before {
  content: "\e16d";
}

.fa-money-bill-transfer::before {
  content: "\e528";
}

.fa-money-bill-trend-up::before {
  content: "\e529";
}

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}

.fa-square-poll-horizontal::before {
  content: "\f682";
}

.fa-poll-h::before {
  content: "\f682";
}

.fa-circle::before {
  content: "\f111";
}

.fa-backward-fast::before {
  content: "\f049";
}

.fa-fast-backward::before {
  content: "\f049";
}

.fa-recycle::before {
  content: "\f1b8";
}

.fa-user-astronaut::before {
  content: "\f4fb";
}

.fa-plane-slash::before {
  content: "\e069";
}

.fa-trademark::before {
  content: "\f25c";
}

.fa-basketball::before {
  content: "\f434";
}

.fa-basketball-ball::before {
  content: "\f434";
}

.fa-satellite-dish::before {
  content: "\f7c0";
}

.fa-circle-up::before {
  content: "\f35b";
}

.fa-arrow-alt-circle-up::before {
  content: "\f35b";
}

.fa-mobile-screen-button::before {
  content: "\f3cd";
}

.fa-mobile-alt::before {
  content: "\f3cd";
}

.fa-volume-high::before {
  content: "\f028";
}

.fa-volume-up::before {
  content: "\f028";
}

.fa-users-rays::before {
  content: "\e593";
}

.fa-wallet::before {
  content: "\f555";
}

.fa-clipboard-check::before {
  content: "\f46c";
}

.fa-file-audio::before {
  content: "\f1c7";
}

.fa-burger::before {
  content: "\f805";
}

.fa-hamburger::before {
  content: "\f805";
}

.fa-wrench::before {
  content: "\f0ad";
}

.fa-bugs::before {
  content: "\e4d0";
}

.fa-rupee-sign::before {
  content: "\f156";
}

.fa-rupee::before {
  content: "\f156";
}

.fa-file-image::before {
  content: "\f1c5";
}

.fa-circle-question::before {
  content: "\f059";
}

.fa-question-circle::before {
  content: "\f059";
}

.fa-plane-departure::before {
  content: "\f5b0";
}

.fa-handshake-slash::before {
  content: "\e060";
}

.fa-book-bookmark::before {
  content: "\e0bb";
}

.fa-code-branch::before {
  content: "\f126";
}

.fa-hat-cowboy::before {
  content: "\f8c0";
}

.fa-bridge::before {
  content: "\e4c8";
}

.fa-phone-flip::before {
  content: "\f879";
}

.fa-phone-alt::before {
  content: "\f879";
}

.fa-truck-front::before {
  content: "\e2b7";
}

.fa-cat::before {
  content: "\f6be";
}

.fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}

.fa-truck-field::before {
  content: "\e58d";
}

.fa-route::before {
  content: "\f4d7";
}

.fa-clipboard-question::before {
  content: "\e4e3";
}

.fa-panorama::before {
  content: "\e209";
}

.fa-comment-medical::before {
  content: "\f7f5";
}

.fa-teeth-open::before {
  content: "\f62f";
}

.fa-file-circle-minus::before {
  content: "\e4ed";
}

.fa-tags::before {
  content: "\f02c";
}

.fa-wine-glass::before {
  content: "\f4e3";
}

.fa-forward-fast::before {
  content: "\f050";
}

.fa-fast-forward::before {
  content: "\f050";
}

.fa-face-meh-blank::before {
  content: "\f5a4";
}

.fa-meh-blank::before {
  content: "\f5a4";
}

.fa-square-parking::before {
  content: "\f540";
}

.fa-parking::before {
  content: "\f540";
}

.fa-house-signal::before {
  content: "\e012";
}

.fa-bars-progress::before {
  content: "\f828";
}

.fa-tasks-alt::before {
  content: "\f828";
}

.fa-faucet-drip::before {
  content: "\e006";
}

.fa-cart-flatbed::before {
  content: "\f474";
}

.fa-dolly-flatbed::before {
  content: "\f474";
}

.fa-ban-smoking::before {
  content: "\f54d";
}

.fa-smoking-ban::before {
  content: "\f54d";
}

.fa-terminal::before {
  content: "\f120";
}

.fa-mobile-button::before {
  content: "\f10b";
}

.fa-house-medical-flag::before {
  content: "\e514";
}

.fa-basket-shopping::before {
  content: "\f291";
}

.fa-shopping-basket::before {
  content: "\f291";
}

.fa-tape::before {
  content: "\f4db";
}

.fa-bus-simple::before {
  content: "\f55e";
}

.fa-bus-alt::before {
  content: "\f55e";
}

.fa-eye::before {
  content: "\f06e";
}

.fa-face-sad-cry::before {
  content: "\f5b3";
}

.fa-sad-cry::before {
  content: "\f5b3";
}

.fa-audio-description::before {
  content: "\f29e";
}

.fa-person-military-to-person::before {
  content: "\e54c";
}

.fa-file-shield::before {
  content: "\e4f0";
}

.fa-user-slash::before {
  content: "\f506";
}

.fa-pen::before {
  content: "\f304";
}

.fa-tower-observation::before {
  content: "\e586";
}

.fa-file-code::before {
  content: "\f1c9";
}

.fa-signal::before {
  content: "\f012";
}

.fa-signal-5::before {
  content: "\f012";
}

.fa-signal-perfect::before {
  content: "\f012";
}

.fa-bus::before {
  content: "\f207";
}

.fa-heart-circle-xmark::before {
  content: "\e501";
}

.fa-house-chimney::before {
  content: "\e3af";
}

.fa-home-lg::before {
  content: "\e3af";
}

.fa-window-maximize::before {
  content: "\f2d0";
}

.fa-face-frown::before {
  content: "\f119";
}

.fa-frown::before {
  content: "\f119";
}

.fa-prescription::before {
  content: "\f5b1";
}

.fa-shop::before {
  content: "\f54f";
}

.fa-store-alt::before {
  content: "\f54f";
}

.fa-floppy-disk::before {
  content: "\f0c7";
}

.fa-save::before {
  content: "\f0c7";
}

.fa-vihara::before {
  content: "\f6a7";
}

.fa-scale-unbalanced::before {
  content: "\f515";
}

.fa-balance-scale-left::before {
  content: "\f515";
}

.fa-sort-up::before {
  content: "\f0de";
}

.fa-sort-asc::before {
  content: "\f0de";
}

.fa-comment-dots::before {
  content: "\f4ad";
}

.fa-commenting::before {
  content: "\f4ad";
}

.fa-plant-wilt::before {
  content: "\e5aa";
}

.fa-diamond::before {
  content: "\f219";
}

.fa-face-grin-squint::before {
  content: "\f585";
}

.fa-grin-squint::before {
  content: "\f585";
}

.fa-hand-holding-dollar::before {
  content: "\f4c0";
}

.fa-hand-holding-usd::before {
  content: "\f4c0";
}

.fa-bacterium::before {
  content: "\e05a";
}

.fa-hand-pointer::before {
  content: "\f25a";
}

.fa-drum-steelpan::before {
  content: "\f56a";
}

.fa-hand-scissors::before {
  content: "\f257";
}

.fa-hands-praying::before {
  content: "\f684";
}

.fa-praying-hands::before {
  content: "\f684";
}

.fa-arrow-rotate-right::before {
  content: "\f01e";
}

.fa-arrow-right-rotate::before {
  content: "\f01e";
}

.fa-arrow-rotate-forward::before {
  content: "\f01e";
}

.fa-redo::before {
  content: "\f01e";
}

.fa-biohazard::before {
  content: "\f780";
}

.fa-location-crosshairs::before {
  content: "\f601";
}

.fa-location::before {
  content: "\f601";
}

.fa-mars-double::before {
  content: "\f227";
}

.fa-child-dress::before {
  content: "\e59c";
}

.fa-users-between-lines::before {
  content: "\e591";
}

.fa-lungs-virus::before {
  content: "\e067";
}

.fa-face-grin-tears::before {
  content: "\f588";
}

.fa-grin-tears::before {
  content: "\f588";
}

.fa-phone::before {
  content: "\f095";
}

.fa-calendar-xmark::before {
  content: "\f273";
}

.fa-calendar-times::before {
  content: "\f273";
}

.fa-child-reaching::before {
  content: "\e59d";
}

.fa-head-side-virus::before {
  content: "\e064";
}

.fa-user-gear::before {
  content: "\f4fe";
}

.fa-user-cog::before {
  content: "\f4fe";
}

.fa-arrow-up-1-9::before {
  content: "\f163";
}

.fa-sort-numeric-up::before {
  content: "\f163";
}

.fa-door-closed::before {
  content: "\f52a";
}

.fa-shield-virus::before {
  content: "\e06c";
}

.fa-dice-six::before {
  content: "\f526";
}

.fa-mosquito-net::before {
  content: "\e52c";
}

.fa-bridge-water::before {
  content: "\e4ce";
}

.fa-person-booth::before {
  content: "\f756";
}

.fa-text-width::before {
  content: "\f035";
}

.fa-hat-wizard::before {
  content: "\f6e8";
}

.fa-pen-fancy::before {
  content: "\f5ac";
}

.fa-person-digging::before {
  content: "\f85e";
}

.fa-digging::before {
  content: "\f85e";
}

.fa-trash::before {
  content: "\f1f8";
}

.fa-gauge-simple::before {
  content: "\f629";
}

.fa-gauge-simple-med::before {
  content: "\f629";
}

.fa-tachometer-average::before {
  content: "\f629";
}

.fa-book-medical::before {
  content: "\f7e6";
}

.fa-poo::before {
  content: "\f2fe";
}

.fa-quote-right::before {
  content: "\f10e";
}

.fa-quote-right-alt::before {
  content: "\f10e";
}

.fa-shirt::before {
  content: "\f553";
}

.fa-t-shirt::before {
  content: "\f553";
}

.fa-tshirt::before {
  content: "\f553";
}

.fa-cubes::before {
  content: "\f1b3";
}

.fa-divide::before {
  content: "\f529";
}

.fa-tenge-sign::before {
  content: "\f7d7";
}

.fa-tenge::before {
  content: "\f7d7";
}

.fa-headphones::before {
  content: "\f025";
}

.fa-hands-holding::before {
  content: "\f4c2";
}

.fa-hands-clapping::before {
  content: "\e1a8";
}

.fa-republican::before {
  content: "\f75e";
}

.fa-arrow-left::before {
  content: "\f060";
}

.fa-person-circle-xmark::before {
  content: "\e543";
}

.fa-ruler::before {
  content: "\f545";
}

.fa-align-left::before {
  content: "\f036";
}

.fa-dice-d6::before {
  content: "\f6d1";
}

.fa-restroom::before {
  content: "\f7bd";
}

.fa-j::before {
  content: "J";
}

.fa-users-viewfinder::before {
  content: "\e595";
}

.fa-file-video::before {
  content: "\f1c8";
}

.fa-up-right-from-square::before {
  content: "\f35d";
}

.fa-external-link-alt::before {
  content: "\f35d";
}

.fa-table-cells::before {
  content: "\f00a";
}

.fa-th::before {
  content: "\f00a";
}

.fa-file-pdf::before {
  content: "\f1c1";
}

.fa-book-bible::before {
  content: "\f647";
}

.fa-bible::before {
  content: "\f647";
}

.fa-o::before {
  content: "O";
}

.fa-suitcase-medical::before {
  content: "\f0fa";
}

.fa-medkit::before {
  content: "\f0fa";
}

.fa-user-secret::before {
  content: "\f21b";
}

.fa-otter::before {
  content: "\f700";
}

.fa-person-dress::before {
  content: "\f182";
}

.fa-female::before {
  content: "\f182";
}

.fa-comment-dollar::before {
  content: "\f651";
}

.fa-business-time::before {
  content: "\f64a";
}

.fa-briefcase-clock::before {
  content: "\f64a";
}

.fa-table-cells-large::before {
  content: "\f009";
}

.fa-th-large::before {
  content: "\f009";
}

.fa-book-tanakh::before {
  content: "\f827";
}

.fa-tanakh::before {
  content: "\f827";
}

.fa-phone-volume::before {
  content: "\f2a0";
}

.fa-volume-control-phone::before {
  content: "\f2a0";
}

.fa-hat-cowboy-side::before {
  content: "\f8c1";
}

.fa-clipboard-user::before {
  content: "\f7f3";
}

.fa-child::before {
  content: "\f1ae";
}

.fa-lira-sign::before {
  content: "\f195";
}

.fa-satellite::before {
  content: "\f7bf";
}

.fa-plane-lock::before {
  content: "\e558";
}

.fa-tag::before {
  content: "\f02b";
}

.fa-comment::before {
  content: "\f075";
}

.fa-cake-candles::before {
  content: "\f1fd";
}

.fa-birthday-cake::before {
  content: "\f1fd";
}

.fa-cake::before {
  content: "\f1fd";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-angles-up::before {
  content: "\f102";
}

.fa-angle-double-up::before {
  content: "\f102";
}

.fa-paperclip::before {
  content: "\f0c6";
}

.fa-arrow-right-to-city::before {
  content: "\e4b3";
}

.fa-ribbon::before {
  content: "\f4d6";
}

.fa-lungs::before {
  content: "\f604";
}

.fa-arrow-up-9-1::before {
  content: "\f887";
}

.fa-sort-numeric-up-alt::before {
  content: "\f887";
}

.fa-litecoin-sign::before {
  content: "\e1d3";
}

.fa-border-none::before {
  content: "\f850";
}

.fa-circle-nodes::before {
  content: "\e4e2";
}

.fa-parachute-box::before {
  content: "\f4cd";
}

.fa-indent::before {
  content: "\f03c";
}

.fa-truck-field-un::before {
  content: "\e58e";
}

.fa-hourglass::before {
  content: "\f254";
}

.fa-hourglass-empty::before {
  content: "\f254";
}

.fa-mountain::before {
  content: "\f6fc";
}

.fa-user-doctor::before {
  content: "\f0f0";
}

.fa-user-md::before {
  content: "\f0f0";
}

.fa-circle-info::before {
  content: "\f05a";
}

.fa-info-circle::before {
  content: "\f05a";
}

.fa-cloud-meatball::before {
  content: "\f73b";
}

.fa-camera::before {
  content: "\f030";
}

.fa-camera-alt::before {
  content: "\f030";
}

.fa-square-virus::before {
  content: "\e578";
}

.fa-meteor::before {
  content: "\f753";
}

.fa-car-on::before {
  content: "\e4dd";
}

.fa-sleigh::before {
  content: "\f7cc";
}

.fa-arrow-down-1-9::before {
  content: "\f162";
}

.fa-sort-numeric-asc::before {
  content: "\f162";
}

.fa-sort-numeric-down::before {
  content: "\f162";
}

.fa-hand-holding-droplet::before {
  content: "\f4c1";
}

.fa-hand-holding-water::before {
  content: "\f4c1";
}

.fa-water::before {
  content: "\f773";
}

.fa-calendar-check::before {
  content: "\f274";
}

.fa-braille::before {
  content: "\f2a1";
}

.fa-prescription-bottle-medical::before {
  content: "\f486";
}

.fa-prescription-bottle-alt::before {
  content: "\f486";
}

.fa-landmark::before {
  content: "\f66f";
}

.fa-truck::before {
  content: "\f0d1";
}

.fa-crosshairs::before {
  content: "\f05b";
}

.fa-person-cane::before {
  content: "\e53c";
}

.fa-tent::before {
  content: "\e57d";
}

.fa-vest-patches::before {
  content: "\e086";
}

.fa-check-double::before {
  content: "\f560";
}

.fa-arrow-down-a-z::before {
  content: "\f15d";
}

.fa-sort-alpha-asc::before {
  content: "\f15d";
}

.fa-sort-alpha-down::before {
  content: "\f15d";
}

.fa-money-bill-wheat::before {
  content: "\e52a";
}

.fa-cookie::before {
  content: "\f563";
}

.fa-arrow-rotate-left::before {
  content: "\f0e2";
}

.fa-arrow-left-rotate::before {
  content: "\f0e2";
}

.fa-arrow-rotate-back::before {
  content: "\f0e2";
}

.fa-arrow-rotate-backward::before {
  content: "\f0e2";
}

.fa-undo::before {
  content: "\f0e2";
}

.fa-hard-drive::before {
  content: "\f0a0";
}

.fa-hdd::before {
  content: "\f0a0";
}

.fa-face-grin-squint-tears::before {
  content: "\f586";
}

.fa-grin-squint-tears::before {
  content: "\f586";
}

.fa-dumbbell::before {
  content: "\f44b";
}

.fa-rectangle-list::before {
  content: "\f022";
}

.fa-list-alt::before {
  content: "\f022";
}

.fa-tarp-droplet::before {
  content: "\e57c";
}

.fa-house-medical-circle-check::before {
  content: "\e511";
}

.fa-person-skiing-nordic::before {
  content: "\f7ca";
}

.fa-skiing-nordic::before {
  content: "\f7ca";
}

.fa-calendar-plus::before {
  content: "\f271";
}

.fa-plane-arrival::before {
  content: "\f5af";
}

.fa-circle-left::before {
  content: "\f359";
}

.fa-arrow-alt-circle-left::before {
  content: "\f359";
}

.fa-train-subway::before {
  content: "\f239";
}

.fa-subway::before {
  content: "\f239";
}

.fa-chart-gantt::before {
  content: "\e0e4";
}

.fa-indian-rupee-sign::before {
  content: "\e1bc";
}

.fa-indian-rupee::before {
  content: "\e1bc";
}

.fa-inr::before {
  content: "\e1bc";
}

.fa-crop-simple::before {
  content: "\f565";
}

.fa-crop-alt::before {
  content: "\f565";
}

.fa-money-bill-1::before {
  content: "\f3d1";
}

.fa-money-bill-alt::before {
  content: "\f3d1";
}

.fa-left-long::before {
  content: "\f30a";
}

.fa-long-arrow-alt-left::before {
  content: "\f30a";
}

.fa-dna::before {
  content: "\f471";
}

.fa-virus-slash::before {
  content: "\e075";
}

.fa-minus::before {
  content: "\f068";
}

.fa-subtract::before {
  content: "\f068";
}

.fa-child-rifle::before {
  content: "\e4e0";
}

.fa-chess::before {
  content: "\f439";
}

.fa-arrow-left-long::before {
  content: "\f177";
}

.fa-long-arrow-left::before {
  content: "\f177";
}

.fa-plug-circle-check::before {
  content: "\e55c";
}

.fa-street-view::before {
  content: "\f21d";
}

.fa-franc-sign::before {
  content: "\e18f";
}

.fa-volume-off::before {
  content: "\f026";
}

.fa-hands-asl-interpreting::before {
  content: "\f2a3";
}

.fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-asl-interpreting::before {
  content: "\f2a3";
}

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-gear::before {
  content: "\f013";
}

.fa-cog::before {
  content: "\f013";
}

.fa-droplet-slash::before {
  content: "\f5c7";
}

.fa-tint-slash::before {
  content: "\f5c7";
}

.fa-mosque::before {
  content: "\f678";
}

.fa-mosquito::before {
  content: "\e52b";
}

.fa-star-of-david::before {
  content: "\f69a";
}

.fa-person-military-rifle::before {
  content: "\e54b";
}

.fa-cart-shopping::before {
  content: "\f07a";
}

.fa-shopping-cart::before {
  content: "\f07a";
}

.fa-vials::before {
  content: "\f493";
}

.fa-plug-circle-plus::before {
  content: "\e55f";
}

.fa-place-of-worship::before {
  content: "\f67f";
}

.fa-grip-vertical::before {
  content: "\f58e";
}

.fa-arrow-turn-up::before {
  content: "\f148";
}

.fa-level-up::before {
  content: "\f148";
}

.fa-u::before {
  content: "U";
}

.fa-square-root-variable::before {
  content: "\f698";
}

.fa-square-root-alt::before {
  content: "\f698";
}

.fa-clock::before {
  content: "\f017";
}

.fa-clock-four::before {
  content: "\f017";
}

.fa-backward-step::before {
  content: "\f048";
}

.fa-step-backward::before {
  content: "\f048";
}

.fa-pallet::before {
  content: "\f482";
}

.fa-faucet::before {
  content: "\e005";
}

.fa-baseball-bat-ball::before {
  content: "\f432";
}

.fa-s::before {
  content: "S";
}

.fa-timeline::before {
  content: "\e29c";
}

.fa-keyboard::before {
  content: "\f11c";
}

.fa-caret-down::before {
  content: "\f0d7";
}

.fa-house-chimney-medical::before {
  content: "\f7f2";
}

.fa-clinic-medical::before {
  content: "\f7f2";
}

.fa-temperature-three-quarters::before {
  content: "\f2c8";
}

.fa-temperature-3::before {
  content: "\f2c8";
}

.fa-thermometer-3::before {
  content: "\f2c8";
}

.fa-thermometer-three-quarters::before {
  content: "\f2c8";
}

.fa-mobile-screen::before {
  content: "\f3cf";
}

.fa-mobile-android-alt::before {
  content: "\f3cf";
}

.fa-plane-up::before {
  content: "\e22d";
}

.fa-piggy-bank::before {
  content: "\f4d3";
}

.fa-battery-half::before {
  content: "\f242";
}

.fa-battery-3::before {
  content: "\f242";
}

.fa-mountain-city::before {
  content: "\e52e";
}

.fa-coins::before {
  content: "\f51e";
}

.fa-khanda::before {
  content: "\f66d";
}

.fa-sliders::before {
  content: "\f1de";
}

.fa-sliders-h::before {
  content: "\f1de";
}

.fa-folder-tree::before {
  content: "\f802";
}

.fa-network-wired::before {
  content: "\f6ff";
}

.fa-map-pin::before {
  content: "\f276";
}

.fa-hamsa::before {
  content: "\f665";
}

.fa-cent-sign::before {
  content: "\e3f5";
}

.fa-flask::before {
  content: "\f0c3";
}

.fa-person-pregnant::before {
  content: "\e31e";
}

.fa-wand-sparkles::before {
  content: "\f72b";
}

.fa-ellipsis-vertical::before {
  content: "\f142";
}

.fa-ellipsis-v::before {
  content: "\f142";
}

.fa-ticket::before {
  content: "\f145";
}

.fa-power-off::before {
  content: "\f011";
}

.fa-right-long::before {
  content: "\f30b";
}

.fa-long-arrow-alt-right::before {
  content: "\f30b";
}

.fa-flag-usa::before {
  content: "\f74d";
}

.fa-laptop-file::before {
  content: "\e51d";
}

.fa-tty::before {
  content: "\f1e4";
}

.fa-teletype::before {
  content: "\f1e4";
}

.fa-diagram-next::before {
  content: "\e476";
}

.fa-person-rifle::before {
  content: "\e54e";
}

.fa-house-medical-circle-exclamation::before {
  content: "\e512";
}

.fa-closed-captioning::before {
  content: "\f20a";
}

.fa-person-hiking::before {
  content: "\f6ec";
}

.fa-hiking::before {
  content: "\f6ec";
}

.fa-venus-double::before {
  content: "\f226";
}

.fa-images::before {
  content: "\f302";
}

.fa-calculator::before {
  content: "\f1ec";
}

.fa-people-pulling::before {
  content: "\e535";
}

.fa-n::before {
  content: "N";
}

.fa-cable-car::before {
  content: "\f7da";
}

.fa-tram::before {
  content: "\f7da";
}

.fa-cloud-rain::before {
  content: "\f73d";
}

.fa-building-circle-xmark::before {
  content: "\e4d4";
}

.fa-ship::before {
  content: "\f21a";
}

.fa-arrows-down-to-line::before {
  content: "\e4b8";
}

.fa-download::before {
  content: "\f019";
}

.fa-face-grin::before {
  content: "\f580";
}

.fa-grin::before {
  content: "\f580";
}

.fa-delete-left::before {
  content: "\f55a";
}

.fa-backspace::before {
  content: "\f55a";
}

.fa-eye-dropper::before {
  content: "\f1fb";
}

.fa-eye-dropper-empty::before {
  content: "\f1fb";
}

.fa-eyedropper::before {
  content: "\f1fb";
}

.fa-file-circle-check::before {
  content: "\e5a0";
}

.fa-forward::before {
  content: "\f04e";
}

.fa-mobile::before {
  content: "\f3ce";
}

.fa-mobile-android::before {
  content: "\f3ce";
}

.fa-mobile-phone::before {
  content: "\f3ce";
}

.fa-face-meh::before {
  content: "\f11a";
}

.fa-meh::before {
  content: "\f11a";
}

.fa-align-center::before {
  content: "\f037";
}

.fa-book-skull::before {
  content: "\f6b7";
}

.fa-book-dead::before {
  content: "\f6b7";
}

.fa-id-card::before {
  content: "\f2c2";
}

.fa-drivers-license::before {
  content: "\f2c2";
}

.fa-outdent::before {
  content: "\f03b";
}

.fa-dedent::before {
  content: "\f03b";
}

.fa-heart-circle-exclamation::before {
  content: "\e4fe";
}

.fa-house::before {
  content: "\f015";
}

.fa-home::before {
  content: "\f015";
}

.fa-home-alt::before {
  content: "\f015";
}

.fa-home-lg-alt::before {
  content: "\f015";
}

.fa-calendar-week::before {
  content: "\f784";
}

.fa-laptop-medical::before {
  content: "\f812";
}

.fa-b::before {
  content: "B";
}

.fa-file-medical::before {
  content: "\f477";
}

.fa-dice-one::before {
  content: "\f525";
}

.fa-kiwi-bird::before {
  content: "\f535";
}

.fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}

.fa-exchange::before {
  content: "\f0ec";
}

.fa-rotate-right::before {
  content: "\f2f9";
}

.fa-redo-alt::before {
  content: "\f2f9";
}

.fa-rotate-forward::before {
  content: "\f2f9";
}

.fa-utensils::before {
  content: "\f2e7";
}

.fa-cutlery::before {
  content: "\f2e7";
}

.fa-arrow-up-wide-short::before {
  content: "\f161";
}

.fa-sort-amount-up::before {
  content: "\f161";
}

.fa-mill-sign::before {
  content: "\e1ed";
}

.fa-bowl-rice::before {
  content: "\e2eb";
}

.fa-skull::before {
  content: "\f54c";
}

.fa-tower-broadcast::before {
  content: "\f519";
}

.fa-broadcast-tower::before {
  content: "\f519";
}

.fa-truck-pickup::before {
  content: "\f63c";
}

.fa-up-long::before {
  content: "\f30c";
}

.fa-long-arrow-alt-up::before {
  content: "\f30c";
}

.fa-stop::before {
  content: "\f04d";
}

.fa-code-merge::before {
  content: "\f387";
}

.fa-upload::before {
  content: "\f093";
}

.fa-hurricane::before {
  content: "\f751";
}

.fa-mound::before {
  content: "\e52d";
}

.fa-toilet-portable::before {
  content: "\e583";
}

.fa-compact-disc::before {
  content: "\f51f";
}

.fa-file-arrow-down::before {
  content: "\f56d";
}

.fa-file-download::before {
  content: "\f56d";
}

.fa-caravan::before {
  content: "\f8ff";
}

.fa-shield-cat::before {
  content: "\e572";
}

.fa-bolt::before {
  content: "\f0e7";
}

.fa-zap::before {
  content: "\f0e7";
}

.fa-glass-water::before {
  content: "\e4f4";
}

.fa-oil-well::before {
  content: "\e532";
}

.fa-vault::before {
  content: "\e2c5";
}

.fa-mars::before {
  content: "\f222";
}

.fa-toilet::before {
  content: "\f7d8";
}

.fa-plane-circle-xmark::before {
  content: "\e557";
}

.fa-yen-sign::before {
  content: "\f157";
}

.fa-cny::before {
  content: "\f157";
}

.fa-jpy::before {
  content: "\f157";
}

.fa-rmb::before {
  content: "\f157";
}

.fa-yen::before {
  content: "\f157";
}

.fa-ruble-sign::before {
  content: "\f158";
}

.fa-rouble::before {
  content: "\f158";
}

.fa-rub::before {
  content: "\f158";
}

.fa-ruble::before {
  content: "\f158";
}

.fa-sun::before {
  content: "\f185";
}

.fa-guitar::before {
  content: "\f7a6";
}

.fa-face-laugh-wink::before {
  content: "\f59c";
}

.fa-laugh-wink::before {
  content: "\f59c";
}

.fa-horse-head::before {
  content: "\f7ab";
}

.fa-bore-hole::before {
  content: "\e4c3";
}

.fa-industry::before {
  content: "\f275";
}

.fa-circle-down::before {
  content: "\f358";
}

.fa-arrow-alt-circle-down::before {
  content: "\f358";
}

.fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}

.fa-florin-sign::before {
  content: "\e184";
}

.fa-arrow-down-short-wide::before {
  content: "\f884";
}

.fa-sort-amount-desc::before {
  content: "\f884";
}

.fa-sort-amount-down-alt::before {
  content: "\f884";
}

.fa-less-than::before {
  content: "\<";
}

.fa-angle-down::before {
  content: "\f107";
}

.fa-car-tunnel::before {
  content: "\e4de";
}

.fa-head-side-cough::before {
  content: "\e061";
}

.fa-grip-lines::before {
  content: "\f7a4";
}

.fa-thumbs-down::before {
  content: "\f165";
}

.fa-user-lock::before {
  content: "\f502";
}

.fa-arrow-right-long::before {
  content: "\f178";
}

.fa-long-arrow-right::before {
  content: "\f178";
}

.fa-anchor-circle-xmark::before {
  content: "\e4ac";
}

.fa-ellipsis::before {
  content: "\f141";
}

.fa-ellipsis-h::before {
  content: "\f141";
}

.fa-chess-pawn::before {
  content: "\f443";
}

.fa-kit-medical::before {
  content: "\f479";
}

.fa-first-aid::before {
  content: "\f479";
}

.fa-person-through-window::before {
  content: "\e5a9";
}

.fa-toolbox::before {
  content: "\f552";
}

.fa-hands-holding-circle::before {
  content: "\e4fb";
}

.fa-bug::before {
  content: "\f188";
}

.fa-credit-card::before {
  content: "\f09d";
}

.fa-credit-card-alt::before {
  content: "\f09d";
}

.fa-car::before {
  content: "\f1b9";
}

.fa-automobile::before {
  content: "\f1b9";
}

.fa-hand-holding-hand::before {
  content: "\e4f7";
}

.fa-book-open-reader::before {
  content: "\f5da";
}

.fa-book-reader::before {
  content: "\f5da";
}

.fa-mountain-sun::before {
  content: "\e52f";
}

.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}

.fa-dice-d20::before {
  content: "\f6cf";
}

.fa-truck-droplet::before {
  content: "\e58c";
}

.fa-file-circle-xmark::before {
  content: "\e5a1";
}

.fa-temperature-arrow-up::before {
  content: "\e040";
}

.fa-temperature-up::before {
  content: "\e040";
}

.fa-medal::before {
  content: "\f5a2";
}

.fa-bed::before {
  content: "\f236";
}

.fa-square-h::before {
  content: "\f0fd";
}

.fa-h-square::before {
  content: "\f0fd";
}

.fa-podcast::before {
  content: "\f2ce";
}

.fa-temperature-full::before {
  content: "\f2c7";
}

.fa-temperature-4::before {
  content: "\f2c7";
}

.fa-thermometer-4::before {
  content: "\f2c7";
}

.fa-thermometer-full::before {
  content: "\f2c7";
}

.fa-bell::before {
  content: "\f0f3";
}

.fa-superscript::before {
  content: "\f12b";
}

.fa-plug-circle-xmark::before {
  content: "\e560";
}

.fa-star-of-life::before {
  content: "\f621";
}

.fa-phone-slash::before {
  content: "\f3dd";
}

.fa-paint-roller::before {
  content: "\f5aa";
}

.fa-handshake-angle::before {
  content: "\f4c4";
}

.fa-hands-helping::before {
  content: "\f4c4";
}

.fa-location-dot::before {
  content: "\f3c5";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

.fa-file::before {
  content: "\f15b";
}

.fa-greater-than::before {
  content: "\>";
}

.fa-person-swimming::before {
  content: "\f5c4";
}

.fa-swimmer::before {
  content: "\f5c4";
}

.fa-arrow-down::before {
  content: "\f063";
}

.fa-droplet::before {
  content: "\f043";
}

.fa-tint::before {
  content: "\f043";
}

.fa-eraser::before {
  content: "\f12d";
}

.fa-earth-americas::before {
  content: "\f57d";
}

.fa-earth::before {
  content: "\f57d";
}

.fa-earth-america::before {
  content: "\f57d";
}

.fa-globe-americas::before {
  content: "\f57d";
}

.fa-person-burst::before {
  content: "\e53b";
}

.fa-dove::before {
  content: "\f4ba";
}

.fa-battery-empty::before {
  content: "\f244";
}

.fa-battery-0::before {
  content: "\f244";
}

.fa-socks::before {
  content: "\f696";
}

.fa-inbox::before {
  content: "\f01c";
}

.fa-section::before {
  content: "\e447";
}

.fa-gauge-high::before {
  content: "\f625";
}

.fa-tachometer-alt::before {
  content: "\f625";
}

.fa-tachometer-alt-fast::before {
  content: "\f625";
}

.fa-envelope-open-text::before {
  content: "\f658";
}

.fa-hospital::before {
  content: "\f0f8";
}

.fa-hospital-alt::before {
  content: "\f0f8";
}

.fa-hospital-wide::before {
  content: "\f0f8";
}

.fa-wine-bottle::before {
  content: "\f72f";
}

.fa-chess-rook::before {
  content: "\f447";
}

.fa-bars-staggered::before {
  content: "\f550";
}

.fa-reorder::before {
  content: "\f550";
}

.fa-stream::before {
  content: "\f550";
}

.fa-dharmachakra::before {
  content: "\f655";
}

.fa-hotdog::before {
  content: "\f80f";
}

.fa-person-walking-with-cane::before {
  content: "\f29d";
}

.fa-blind::before {
  content: "\f29d";
}

.fa-drum::before {
  content: "\f569";
}

.fa-ice-cream::before {
  content: "\f810";
}

.fa-heart-circle-bolt::before {
  content: "\e4fc";
}

.fa-fax::before {
  content: "\f1ac";
}

.fa-paragraph::before {
  content: "\f1dd";
}

.fa-check-to-slot::before {
  content: "\f772";
}

.fa-vote-yea::before {
  content: "\f772";
}

.fa-star-half::before {
  content: "\f089";
}

.fa-boxes-stacked::before {
  content: "\f468";
}

.fa-boxes::before {
  content: "\f468";
}

.fa-boxes-alt::before {
  content: "\f468";
}

.fa-link::before {
  content: "\f0c1";
}

.fa-chain::before {
  content: "\f0c1";
}

.fa-ear-listen::before {
  content: "\f2a2";
}

.fa-assistive-listening-systems::before {
  content: "\f2a2";
}

.fa-tree-city::before {
  content: "\e587";
}

.fa-play::before {
  content: "\f04b";
}

.fa-font::before {
  content: "\f031";
}

.fa-rupiah-sign::before {
  content: "\e23d";
}

.fa-magnifying-glass::before {
  content: "\f002";
}

.fa-search::before {
  content: "\f002";
}

.fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}

.fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}

.fa-table-tennis::before {
  content: "\f45d";
}

.fa-person-dots-from-line::before {
  content: "\f470";
}

.fa-diagnoses::before {
  content: "\f470";
}

.fa-trash-can-arrow-up::before {
  content: "\f82a";
}

.fa-trash-restore-alt::before {
  content: "\f82a";
}

.fa-naira-sign::before {
  content: "\e1f6";
}

.fa-cart-arrow-down::before {
  content: "\f218";
}

.fa-walkie-talkie::before {
  content: "\f8ef";
}

.fa-file-pen::before {
  content: "\f31c";
}

.fa-file-edit::before {
  content: "\f31c";
}

.fa-receipt::before {
  content: "\f543";
}

.fa-square-pen::before {
  content: "\f14b";
}

.fa-pen-square::before {
  content: "\f14b";
}

.fa-pencil-square::before {
  content: "\f14b";
}

.fa-suitcase-rolling::before {
  content: "\f5c1";
}

.fa-person-circle-exclamation::before {
  content: "\e53f";
}

.fa-chevron-down::before {
  content: "\f078";
}

.fa-battery-full::before {
  content: "\f240";
}

.fa-battery::before {
  content: "\f240";
}

.fa-battery-5::before {
  content: "\f240";
}

.fa-skull-crossbones::before {
  content: "\f714";
}

.fa-code-compare::before {
  content: "\e13a";
}

.fa-list-ul::before {
  content: "\f0ca";
}

.fa-list-dots::before {
  content: "\f0ca";
}

.fa-school-lock::before {
  content: "\e56f";
}

.fa-tower-cell::before {
  content: "\e585";
}

.fa-down-long::before {
  content: "\f309";
}

.fa-long-arrow-alt-down::before {
  content: "\f309";
}

.fa-ranking-star::before {
  content: "\e561";
}

.fa-chess-king::before {
  content: "\f43f";
}

.fa-person-harassing::before {
  content: "\e549";
}

.fa-brazilian-real-sign::before {
  content: "\e46c";
}

.fa-landmark-dome::before {
  content: "\f752";
}

.fa-landmark-alt::before {
  content: "\f752";
}

.fa-arrow-up::before {
  content: "\f062";
}

.fa-tv::before {
  content: "\f26c";
}

.fa-television::before {
  content: "\f26c";
}

.fa-tv-alt::before {
  content: "\f26c";
}

.fa-shrimp::before {
  content: "\e448";
}

.fa-list-check::before {
  content: "\f0ae";
}

.fa-tasks::before {
  content: "\f0ae";
}

.fa-jug-detergent::before {
  content: "\e519";
}

.fa-circle-user::before {
  content: "\f2bd";
}

.fa-user-circle::before {
  content: "\f2bd";
}

.fa-user-shield::before {
  content: "\f505";
}

.fa-wind::before {
  content: "\f72e";
}

.fa-car-burst::before {
  content: "\f5e1";
}

.fa-car-crash::before {
  content: "\f5e1";
}

.fa-y::before {
  content: "Y";
}

.fa-person-snowboarding::before {
  content: "\f7ce";
}

.fa-snowboarding::before {
  content: "\f7ce";
}

.fa-truck-fast::before {
  content: "\f48b";
}

.fa-shipping-fast::before {
  content: "\f48b";
}

.fa-fish::before {
  content: "\f578";
}

.fa-user-graduate::before {
  content: "\f501";
}

.fa-circle-half-stroke::before {
  content: "\f042";
}

.fa-adjust::before {
  content: "\f042";
}

.fa-clapperboard::before {
  content: "\e131";
}

.fa-circle-radiation::before {
  content: "\f7ba";
}

.fa-radiation-alt::before {
  content: "\f7ba";
}

.fa-baseball::before {
  content: "\f433";
}

.fa-baseball-ball::before {
  content: "\f433";
}

.fa-jet-fighter-up::before {
  content: "\e518";
}

.fa-diagram-project::before {
  content: "\f542";
}

.fa-project-diagram::before {
  content: "\f542";
}

.fa-copy::before {
  content: "\f0c5";
}

.fa-volume-xmark::before {
  content: "\f6a9";
}

.fa-volume-mute::before {
  content: "\f6a9";
}

.fa-volume-times::before {
  content: "\f6a9";
}

.fa-hand-sparkles::before {
  content: "\e05d";
}

.fa-grip::before {
  content: "\f58d";
}

.fa-grip-horizontal::before {
  content: "\f58d";
}

.fa-share-from-square::before {
  content: "\f14d";
}

.fa-share-square::before {
  content: "\f14d";
}

.fa-gun::before {
  content: "\e19b";
}

.fa-square-phone::before {
  content: "\f098";
}

.fa-phone-square::before {
  content: "\f098";
}

.fa-plus::before {
  content: "\+";
}

.fa-add::before {
  content: "\+";
}

.fa-expand::before {
  content: "\f065";
}

.fa-computer::before {
  content: "\e4e5";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-close::before {
  content: "\f00d";
}

.fa-multiply::before {
  content: "\f00d";
}

.fa-remove::before {
  content: "\f00d";
}

.fa-times::before {
  content: "\f00d";
}

.fa-arrows-up-down-left-right::before {
  content: "\f047";
}

.fa-arrows::before {
  content: "\f047";
}

.fa-chalkboard-user::before {
  content: "\f51c";
}

.fa-chalkboard-teacher::before {
  content: "\f51c";
}

.fa-peso-sign::before {
  content: "\e222";
}

.fa-building-shield::before {
  content: "\e4d8";
}

.fa-baby::before {
  content: "\f77c";
}

.fa-users-line::before {
  content: "\e592";
}

.fa-quote-left::before {
  content: "\f10d";
}

.fa-quote-left-alt::before {
  content: "\f10d";
}

.fa-tractor::before {
  content: "\f722";
}

.fa-trash-arrow-up::before {
  content: "\f829";
}

.fa-trash-restore::before {
  content: "\f829";
}

.fa-arrow-down-up-lock::before {
  content: "\e4b0";
}

.fa-lines-leaning::before {
  content: "\e51e";
}

.fa-ruler-combined::before {
  content: "\f546";
}

.fa-copyright::before {
  content: "\f1f9";
}

.fa-equals::before {
  content: "\=";
}

.fa-blender::before {
  content: "\f517";
}

.fa-teeth::before {
  content: "\f62e";
}

.fa-shekel-sign::before {
  content: "\f20b";
}

.fa-ils::before {
  content: "\f20b";
}

.fa-shekel::before {
  content: "\f20b";
}

.fa-sheqel::before {
  content: "\f20b";
}

.fa-sheqel-sign::before {
  content: "\f20b";
}

.fa-map::before {
  content: "\f279";
}

.fa-rocket::before {
  content: "\f135";
}

.fa-photo-film::before {
  content: "\f87c";
}

.fa-photo-video::before {
  content: "\f87c";
}

.fa-folder-minus::before {
  content: "\f65d";
}

.fa-store::before {
  content: "\f54e";
}

.fa-arrow-trend-up::before {
  content: "\e098";
}

.fa-plug-circle-minus::before {
  content: "\e55e";
}

.fa-sign-hanging::before {
  content: "\f4d9";
}

.fa-sign::before {
  content: "\f4d9";
}

.fa-bezier-curve::before {
  content: "\f55b";
}

.fa-bell-slash::before {
  content: "\f1f6";
}

.fa-tablet::before {
  content: "\f3fb";
}

.fa-tablet-android::before {
  content: "\f3fb";
}

.fa-school-flag::before {
  content: "\e56e";
}

.fa-fill::before {
  content: "\f575";
}

.fa-angle-up::before {
  content: "\f106";
}

.fa-drumstick-bite::before {
  content: "\f6d7";
}

.fa-holly-berry::before {
  content: "\f7aa";
}

.fa-chevron-left::before {
  content: "\f053";
}

.fa-bacteria::before {
  content: "\e059";
}

.fa-hand-lizard::before {
  content: "\f258";
}

.fa-disease::before {
  content: "\f7fa";
}

.fa-briefcase-medical::before {
  content: "\f469";
}

.fa-genderless::before {
  content: "\f22d";
}

.fa-chevron-right::before {
  content: "\f054";
}

.fa-retweet::before {
  content: "\f079";
}

.fa-car-rear::before {
  content: "\f5de";
}

.fa-car-alt::before {
  content: "\f5de";
}

.fa-pump-soap::before {
  content: "\e06b";
}

.fa-video-slash::before {
  content: "\f4e2";
}

.fa-battery-quarter::before {
  content: "\f243";
}

.fa-battery-2::before {
  content: "\f243";
}

.fa-radio::before {
  content: "\f8d7";
}

.fa-baby-carriage::before {
  content: "\f77d";
}

.fa-carriage-baby::before {
  content: "\f77d";
}

.fa-traffic-light::before {
  content: "\f637";
}

.fa-thermometer::before {
  content: "\f491";
}

.fa-vr-cardboard::before {
  content: "\f729";
}

.fa-hand-middle-finger::before {
  content: "\f806";
}

.fa-percent::before {
  content: "\%";
}

.fa-percentage::before {
  content: "\%";
}

.fa-truck-moving::before {
  content: "\f4df";
}

.fa-glass-water-droplet::before {
  content: "\e4f5";
}

.fa-display::before {
  content: "\e163";
}

.fa-face-smile::before {
  content: "\f118";
}

.fa-smile::before {
  content: "\f118";
}

.fa-thumbtack::before {
  content: "\f08d";
}

.fa-thumb-tack::before {
  content: "\f08d";
}

.fa-trophy::before {
  content: "\f091";
}

.fa-person-praying::before {
  content: "\f683";
}

.fa-pray::before {
  content: "\f683";
}

.fa-hammer::before {
  content: "\f6e3";
}

.fa-hand-peace::before {
  content: "\f25b";
}

.fa-rotate::before {
  content: "\f2f1";
}

.fa-sync-alt::before {
  content: "\f2f1";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-robot::before {
  content: "\f544";
}

.fa-peace::before {
  content: "\f67c";
}

.fa-gears::before {
  content: "\f085";
}

.fa-cogs::before {
  content: "\f085";
}

.fa-warehouse::before {
  content: "\f494";
}

.fa-arrow-up-right-dots::before {
  content: "\e4b7";
}

.fa-splotch::before {
  content: "\f5bc";
}

.fa-face-grin-hearts::before {
  content: "\f584";
}

.fa-grin-hearts::before {
  content: "\f584";
}

.fa-dice-four::before {
  content: "\f524";
}

.fa-sim-card::before {
  content: "\f7c4";
}

.fa-transgender::before {
  content: "\f225";
}

.fa-transgender-alt::before {
  content: "\f225";
}

.fa-mercury::before {
  content: "\f223";
}

.fa-arrow-turn-down::before {
  content: "\f149";
}

.fa-level-down::before {
  content: "\f149";
}

.fa-person-falling-burst::before {
  content: "\e547";
}

.fa-award::before {
  content: "\f559";
}

.fa-ticket-simple::before {
  content: "\f3ff";
}

.fa-ticket-alt::before {
  content: "\f3ff";
}

.fa-building::before {
  content: "\f1ad";
}

.fa-angles-left::before {
  content: "\f100";
}

.fa-angle-double-left::before {
  content: "\f100";
}

.fa-qrcode::before {
  content: "\f029";
}

.fa-clock-rotate-left::before {
  content: "\f1da";
}

.fa-history::before {
  content: "\f1da";
}

.fa-face-grin-beam-sweat::before {
  content: "\f583";
}

.fa-grin-beam-sweat::before {
  content: "\f583";
}

.fa-file-export::before {
  content: "\f56e";
}

.fa-arrow-right-from-file::before {
  content: "\f56e";
}

.fa-shield::before {
  content: "\f132";
}

.fa-shield-blank::before {
  content: "\f132";
}

.fa-arrow-up-short-wide::before {
  content: "\f885";
}

.fa-sort-amount-up-alt::before {
  content: "\f885";
}

.fa-house-medical::before {
  content: "\e3b2";
}

.fa-golf-ball-tee::before {
  content: "\f450";
}

.fa-golf-ball::before {
  content: "\f450";
}

.fa-circle-chevron-left::before {
  content: "\f137";
}

.fa-chevron-circle-left::before {
  content: "\f137";
}

.fa-house-chimney-window::before {
  content: "\e00d";
}

.fa-pen-nib::before {
  content: "\f5ad";
}

.fa-tent-arrow-turn-left::before {
  content: "\e580";
}

.fa-tents::before {
  content: "\e582";
}

.fa-wand-magic::before {
  content: "\f0d0";
}

.fa-magic::before {
  content: "\f0d0";
}

.fa-dog::before {
  content: "\f6d3";
}

.fa-carrot::before {
  content: "\f787";
}

.fa-moon::before {
  content: "\f186";
}

.fa-wine-glass-empty::before {
  content: "\f5ce";
}

.fa-wine-glass-alt::before {
  content: "\f5ce";
}

.fa-cheese::before {
  content: "\f7ef";
}

.fa-yin-yang::before {
  content: "\f6ad";
}

.fa-music::before {
  content: "\f001";
}

.fa-code-commit::before {
  content: "\f386";
}

.fa-temperature-low::before {
  content: "\f76b";
}

.fa-person-biking::before {
  content: "\f84a";
}

.fa-biking::before {
  content: "\f84a";
}

.fa-broom::before {
  content: "\f51a";
}

.fa-shield-heart::before {
  content: "\e574";
}

.fa-gopuram::before {
  content: "\f664";
}

.fa-earth-oceania::before {
  content: "\e47b";
}

.fa-globe-oceania::before {
  content: "\e47b";
}

.fa-square-xmark::before {
  content: "\f2d3";
}

.fa-times-square::before {
  content: "\f2d3";
}

.fa-xmark-square::before {
  content: "\f2d3";
}

.fa-hashtag::before {
  content: "\#";
}

.fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}

.fa-expand-alt::before {
  content: "\f424";
}

.fa-oil-can::before {
  content: "\f613";
}

.fa-t::before {
  content: "T";
}

.fa-hippo::before {
  content: "\f6ed";
}

.fa-chart-column::before {
  content: "\e0e3";
}

.fa-infinity::before {
  content: "\f534";
}

.fa-vial-circle-check::before {
  content: "\e596";
}

.fa-person-arrow-down-to-line::before {
  content: "\e538";
}

.fa-voicemail::before {
  content: "\f897";
}

.fa-fan::before {
  content: "\f863";
}

.fa-person-walking-luggage::before {
  content: "\e554";
}

.fa-up-down::before {
  content: "\f338";
}

.fa-arrows-alt-v::before {
  content: "\f338";
}

.fa-cloud-moon-rain::before {
  content: "\f73c";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-trailer::before {
  content: "\e041";
}

.fa-bahai::before {
  content: "\f666";
}

.fa-haykal::before {
  content: "\f666";
}

.fa-sd-card::before {
  content: "\f7c2";
}

.fa-dragon::before {
  content: "\f6d5";
}

.fa-shoe-prints::before {
  content: "\f54b";
}

.fa-circle-plus::before {
  content: "\f055";
}

.fa-plus-circle::before {
  content: "\f055";
}

.fa-face-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-hand-holding::before {
  content: "\f4bd";
}

.fa-plug-circle-exclamation::before {
  content: "\e55d";
}

.fa-link-slash::before {
  content: "\f127";
}

.fa-chain-broken::before {
  content: "\f127";
}

.fa-chain-slash::before {
  content: "\f127";
}

.fa-unlink::before {
  content: "\f127";
}

.fa-clone::before {
  content: "\f24d";
}

.fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}

.fa-arrow-up-z-a::before {
  content: "\f882";
}

.fa-sort-alpha-up-alt::before {
  content: "\f882";
}

.fa-fire-flame-curved::before {
  content: "\f7e4";
}

.fa-fire-alt::before {
  content: "\f7e4";
}

.fa-tornado::before {
  content: "\f76f";
}

.fa-file-circle-plus::before {
  content: "\e494";
}

.fa-book-quran::before {
  content: "\f687";
}

.fa-quran::before {
  content: "\f687";
}

.fa-anchor::before {
  content: "\f13d";
}

.fa-border-all::before {
  content: "\f84c";
}

.fa-face-angry::before {
  content: "\f556";
}

.fa-angry::before {
  content: "\f556";
}

.fa-cookie-bite::before {
  content: "\f564";
}

.fa-arrow-trend-down::before {
  content: "\e097";
}

.fa-rss::before {
  content: "\f09e";
}

.fa-feed::before {
  content: "\f09e";
}

.fa-draw-polygon::before {
  content: "\f5ee";
}

.fa-scale-balanced::before {
  content: "\f24e";
}

.fa-balance-scale::before {
  content: "\f24e";
}

.fa-gauge-simple-high::before {
  content: "\f62a";
}

.fa-tachometer::before {
  content: "\f62a";
}

.fa-tachometer-fast::before {
  content: "\f62a";
}

.fa-shower::before {
  content: "\f2cc";
}

.fa-desktop::before {
  content: "\f390";
}

.fa-desktop-alt::before {
  content: "\f390";
}

.fa-m::before {
  content: "M";
}

.fa-table-list::before {
  content: "\f00b";
}

.fa-th-list::before {
  content: "\f00b";
}

.fa-comment-sms::before {
  content: "\f7cd";
}

.fa-sms::before {
  content: "\f7cd";
}

.fa-book::before {
  content: "\f02d";
}

.fa-user-plus::before {
  content: "\f234";
}

.fa-check::before {
  content: "\f00c";
}

.fa-battery-three-quarters::before {
  content: "\f241";
}

.fa-battery-4::before {
  content: "\f241";
}

.fa-house-circle-check::before {
  content: "\e509";
}

.fa-angle-left::before {
  content: "\f104";
}

.fa-diagram-successor::before {
  content: "\e47a";
}

.fa-truck-arrow-right::before {
  content: "\e58b";
}

.fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}

.fa-hand-fist::before {
  content: "\f6de";
}

.fa-fist-raised::before {
  content: "\f6de";
}

.fa-cloud-moon::before {
  content: "\f6c3";
}

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-person-falling::before {
  content: "\e546";
}

.fa-image-portrait::before {
  content: "\f3e0";
}

.fa-portrait::before {
  content: "\f3e0";
}

.fa-user-tag::before {
  content: "\f507";
}

.fa-rug::before {
  content: "\e569";
}

.fa-earth-europe::before {
  content: "\f7a2";
}

.fa-globe-europe::before {
  content: "\f7a2";
}

.fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}

.fa-luggage-cart::before {
  content: "\f59d";
}

.fa-rectangle-xmark::before {
  content: "\f410";
}

.fa-rectangle-times::before {
  content: "\f410";
}

.fa-times-rectangle::before {
  content: "\f410";
}

.fa-window-close::before {
  content: "\f410";
}

.fa-baht-sign::before {
  content: "\e0ac";
}

.fa-book-open::before {
  content: "\f518";
}

.fa-book-journal-whills::before {
  content: "\f66a";
}

.fa-journal-whills::before {
  content: "\f66a";
}

.fa-handcuffs::before {
  content: "\e4f8";
}

.fa-triangle-exclamation::before {
  content: "\f071";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-warning::before {
  content: "\f071";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-share::before {
  content: "\f064";
}

.fa-arrow-turn-right::before {
  content: "\f064";
}

.fa-mail-forward::before {
  content: "\f064";
}

.fa-bottle-droplet::before {
  content: "\e4c4";
}

.fa-mask-face::before {
  content: "\e1d7";
}

.fa-hill-rockslide::before {
  content: "\e508";
}

.fa-right-left::before {
  content: "\f362";
}

.fa-exchange-alt::before {
  content: "\f362";
}

.fa-paper-plane::before {
  content: "\f1d8";
}

.fa-road-circle-exclamation::before {
  content: "\e565";
}

.fa-dungeon::before {
  content: "\f6d9";
}

.fa-align-right::before {
  content: "\f038";
}

.fa-money-bill-1-wave::before {
  content: "\f53b";
}

.fa-money-bill-wave-alt::before {
  content: "\f53b";
}

.fa-life-ring::before {
  content: "\f1cd";
}

.fa-hands::before {
  content: "\f2a7";
}

.fa-sign-language::before {
  content: "\f2a7";
}

.fa-signing::before {
  content: "\f2a7";
}

.fa-calendar-day::before {
  content: "\f783";
}

.fa-water-ladder::before {
  content: "\f5c5";
}

.fa-ladder-water::before {
  content: "\f5c5";
}

.fa-swimming-pool::before {
  content: "\f5c5";
}

.fa-arrows-up-down::before {
  content: "\f07d";
}

.fa-arrows-v::before {
  content: "\f07d";
}

.fa-face-grimace::before {
  content: "\f57f";
}

.fa-grimace::before {
  content: "\f57f";
}

.fa-wheelchair-move::before {
  content: "\e2ce";
}

.fa-wheelchair-alt::before {
  content: "\e2ce";
}

.fa-turn-down::before {
  content: "\f3be";
}

.fa-level-down-alt::before {
  content: "\f3be";
}

.fa-person-walking-arrow-right::before {
  content: "\e552";
}

.fa-square-envelope::before {
  content: "\f199";
}

.fa-envelope-square::before {
  content: "\f199";
}

.fa-dice::before {
  content: "\f522";
}

.fa-bowling-ball::before {
  content: "\f436";
}

.fa-brain::before {
  content: "\f5dc";
}

.fa-bandage::before {
  content: "\f462";
}

.fa-band-aid::before {
  content: "\f462";
}

.fa-calendar-minus::before {
  content: "\f272";
}

.fa-circle-xmark::before {
  content: "\f057";
}

.fa-times-circle::before {
  content: "\f057";
}

.fa-xmark-circle::before {
  content: "\f057";
}

.fa-gifts::before {
  content: "\f79c";
}

.fa-hotel::before {
  content: "\f594";
}

.fa-earth-asia::before {
  content: "\f57e";
}

.fa-globe-asia::before {
  content: "\f57e";
}

.fa-id-card-clip::before {
  content: "\f47f";
}

.fa-id-card-alt::before {
  content: "\f47f";
}

.fa-magnifying-glass-plus::before {
  content: "\f00e";
}

.fa-search-plus::before {
  content: "\f00e";
}

.fa-thumbs-up::before {
  content: "\f164";
}

.fa-user-clock::before {
  content: "\f4fd";
}

.fa-hand-dots::before {
  content: "\f461";
}

.fa-allergies::before {
  content: "\f461";
}

.fa-file-invoice::before {
  content: "\f570";
}

.fa-window-minimize::before {
  content: "\f2d1";
}

.fa-mug-saucer::before {
  content: "\f0f4";
}

.fa-coffee::before {
  content: "\f0f4";
}

.fa-brush::before {
  content: "\f55d";
}

.fa-mask::before {
  content: "\f6fa";
}

.fa-magnifying-glass-minus::before {
  content: "\f010";
}

.fa-search-minus::before {
  content: "\f010";
}

.fa-ruler-vertical::before {
  content: "\f548";
}

.fa-user-large::before {
  content: "\f406";
}

.fa-user-alt::before {
  content: "\f406";
}

.fa-train-tram::before {
  content: "\e5b4";
}

.fa-user-nurse::before {
  content: "\f82f";
}

.fa-syringe::before {
  content: "\f48e";
}

.fa-cloud-sun::before {
  content: "\f6c4";
}

.fa-stopwatch-20::before {
  content: "\e06f";
}

.fa-square-full::before {
  content: "\f45c";
}

.fa-magnet::before {
  content: "\f076";
}

.fa-jar::before {
  content: "\e516";
}

.fa-note-sticky::before {
  content: "\f249";
}

.fa-sticky-note::before {
  content: "\f249";
}

.fa-bug-slash::before {
  content: "\e490";
}

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}

.fa-bone::before {
  content: "\f5d7";
}

.fa-user-injured::before {
  content: "\f728";
}

.fa-face-sad-tear::before {
  content: "\f5b4";
}

.fa-sad-tear::before {
  content: "\f5b4";
}

.fa-plane::before {
  content: "\f072";
}

.fa-tent-arrows-down::before {
  content: "\e581";
}

.fa-exclamation::before {
  content: "\!";
}

.fa-arrows-spin::before {
  content: "\e4bb";
}

.fa-print::before {
  content: "\f02f";
}

.fa-turkish-lira-sign::before {
  content: "\e2bb";
}

.fa-try::before {
  content: "\e2bb";
}

.fa-turkish-lira::before {
  content: "\e2bb";
}

.fa-dollar-sign::before {
  content: "\$";
}

.fa-dollar::before {
  content: "\$";
}

.fa-usd::before {
  content: "\$";
}

.fa-x::before {
  content: "X";
}

.fa-magnifying-glass-dollar::before {
  content: "\f688";
}

.fa-search-dollar::before {
  content: "\f688";
}

.fa-users-gear::before {
  content: "\f509";
}

.fa-users-cog::before {
  content: "\f509";
}

.fa-person-military-pointing::before {
  content: "\e54a";
}

.fa-building-columns::before {
  content: "\f19c";
}

.fa-bank::before {
  content: "\f19c";
}

.fa-institution::before {
  content: "\f19c";
}

.fa-museum::before {
  content: "\f19c";
}

.fa-university::before {
  content: "\f19c";
}

.fa-umbrella::before {
  content: "\f0e9";
}

.fa-trowel::before {
  content: "\e589";
}

.fa-d::before {
  content: "D";
}

.fa-stapler::before {
  content: "\e5af";
}

.fa-masks-theater::before {
  content: "\f630";
}

.fa-theater-masks::before {
  content: "\f630";
}

.fa-kip-sign::before {
  content: "\e1c4";
}

.fa-hand-point-left::before {
  content: "\f0a5";
}

.fa-handshake-simple::before {
  content: "\f4c6";
}

.fa-handshake-alt::before {
  content: "\f4c6";
}

.fa-jet-fighter::before {
  content: "\f0fb";
}

.fa-fighter-jet::before {
  content: "\f0fb";
}

.fa-square-share-nodes::before {
  content: "\f1e1";
}

.fa-share-alt-square::before {
  content: "\f1e1";
}

.fa-barcode::before {
  content: "\f02a";
}

.fa-plus-minus::before {
  content: "\e43c";
}

.fa-video::before {
  content: "\f03d";
}

.fa-video-camera::before {
  content: "\f03d";
}

.fa-graduation-cap::before {
  content: "\f19d";
}

.fa-mortar-board::before {
  content: "\f19d";
}

.fa-hand-holding-medical::before {
  content: "\e05c";
}

.fa-person-circle-check::before {
  content: "\e53e";
}

.fa-turn-up::before {
  content: "\f3bf";
}

.fa-level-up-alt::before {
  content: "\f3bf";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/static/javascript/vendor/packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2") format("woff2"), url("/static/javascript/vendor/packages/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/static/javascript/vendor/packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2") format("woff2"), url("/static/javascript/vendor/packages/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

/* MY STUFF */
meta.foundation-version {
  font-family: "/5.5.3/";
}

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0;
}

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0;
}

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em;
}

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  width: 40.0625em;
}

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.0625em)/";
  width: 64.0625em;
}

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  width: 64.0625em;
}

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.0625em)/";
  width: 90.0625em;
}

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  width: 90.0625em;
}

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.0625em)/";
  width: 120.0625em;
}

meta.foundation-data-attribute-namespace {
  font-family: false;
}

html, body {
  height: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-size: 100%;
}

body {
  background: #FAFAFA;
  color: #222;
  cursor: auto;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.clearfix:before, .cf:before, .clearfix:after, .cf:after {
  content: " ";
  display: table;
}
.clearfix:after, .cf:after {
  clear: both;
}

.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.row {
  margin: 0 auto;
  max-width: 123.75rem;
  width: 100%;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}
.row .row {
  margin: 0 -0.625rem;
  max-width: none;
  width: auto;
}
.row .row:before, .row .row:after {
  content: " ";
  display: table;
}
.row .row:after {
  clear: both;
}
.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}
.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}
.row .row.collapse:after {
  clear: both;
}

.column,
.columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 100%;
  float: left;
}

.column + .column:last-child,
.column + .columns:last-child,
.columns + .column:last-child,
.columns + .columns:last-child {
  float: right;
}
.column + .column.end,
.column + .columns.end,
.columns + .column.end,
.columns + .columns.end {
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 6.25%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 6.25%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 18.75%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 18.75%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 31.25%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 31.25%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 43.75%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 43.75%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 56.25%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 56.25%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 68.75%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 68.75%;
    left: auto;
  }
  .small-push-12 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-12 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-13 {
    position: relative;
    left: 81.25%;
    right: auto;
  }
  .small-pull-13 {
    position: relative;
    right: 81.25%;
    left: auto;
  }
  .small-push-14 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .small-pull-14 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .small-push-15 {
    position: relative;
    left: 93.75%;
    right: auto;
  }
  .small-pull-15 {
    position: relative;
    right: 93.75%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
  .small-1 {
    width: 6.25%;
  }
  .small-2 {
    width: 12.5%;
  }
  .small-3 {
    width: 18.75%;
  }
  .small-4 {
    width: 25%;
  }
  .small-5 {
    width: 31.25%;
  }
  .small-6 {
    width: 37.5%;
  }
  .small-7 {
    width: 43.75%;
  }
  .small-8 {
    width: 50%;
  }
  .small-9 {
    width: 56.25%;
  }
  .small-10 {
    width: 62.5%;
  }
  .small-11 {
    width: 68.75%;
  }
  .small-12 {
    width: 75%;
  }
  .small-13 {
    width: 81.25%;
  }
  .small-14 {
    width: 87.5%;
  }
  .small-15 {
    width: 93.75%;
  }
  .small-16 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 6.25% !important;
  }
  .small-offset-2 {
    margin-left: 12.5% !important;
  }
  .small-offset-3 {
    margin-left: 18.75% !important;
  }
  .small-offset-4 {
    margin-left: 25% !important;
  }
  .small-offset-5 {
    margin-left: 31.25% !important;
  }
  .small-offset-6 {
    margin-left: 37.5% !important;
  }
  .small-offset-7 {
    margin-left: 43.75% !important;
  }
  .small-offset-8 {
    margin-left: 50% !important;
  }
  .small-offset-9 {
    margin-left: 56.25% !important;
  }
  .small-offset-10 {
    margin-left: 62.5% !important;
  }
  .small-offset-11 {
    margin-left: 68.75% !important;
  }
  .small-offset-12 {
    margin-left: 75% !important;
  }
  .small-offset-13 {
    margin-left: 81.25% !important;
  }
  .small-offset-14 {
    margin-left: 87.5% !important;
  }
  .small-offset-15 {
    margin-left: 93.75% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 6.25%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 6.25%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 18.75%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 18.75%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 31.25%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 31.25%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 43.75%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 43.75%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 56.25%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 56.25%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 68.75%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 68.75%;
    left: auto;
  }
  .medium-push-12 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-12 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-13 {
    position: relative;
    left: 81.25%;
    right: auto;
  }
  .medium-pull-13 {
    position: relative;
    right: 81.25%;
    left: auto;
  }
  .medium-push-14 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .medium-pull-14 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .medium-push-15 {
    position: relative;
    left: 93.75%;
    right: auto;
  }
  .medium-pull-15 {
    position: relative;
    right: 93.75%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
  .medium-1 {
    width: 6.25%;
  }
  .medium-2 {
    width: 12.5%;
  }
  .medium-3 {
    width: 18.75%;
  }
  .medium-4 {
    width: 25%;
  }
  .medium-5 {
    width: 31.25%;
  }
  .medium-6 {
    width: 37.5%;
  }
  .medium-7 {
    width: 43.75%;
  }
  .medium-8 {
    width: 50%;
  }
  .medium-9 {
    width: 56.25%;
  }
  .medium-10 {
    width: 62.5%;
  }
  .medium-11 {
    width: 68.75%;
  }
  .medium-12 {
    width: 75%;
  }
  .medium-13 {
    width: 81.25%;
  }
  .medium-14 {
    width: 87.5%;
  }
  .medium-15 {
    width: 93.75%;
  }
  .medium-16 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 6.25% !important;
  }
  .medium-offset-2 {
    margin-left: 12.5% !important;
  }
  .medium-offset-3 {
    margin-left: 18.75% !important;
  }
  .medium-offset-4 {
    margin-left: 25% !important;
  }
  .medium-offset-5 {
    margin-left: 31.25% !important;
  }
  .medium-offset-6 {
    margin-left: 37.5% !important;
  }
  .medium-offset-7 {
    margin-left: 43.75% !important;
  }
  .medium-offset-8 {
    margin-left: 50% !important;
  }
  .medium-offset-9 {
    margin-left: 56.25% !important;
  }
  .medium-offset-10 {
    margin-left: 62.5% !important;
  }
  .medium-offset-11 {
    margin-left: 68.75% !important;
  }
  .medium-offset-12 {
    margin-left: 75% !important;
  }
  .medium-offset-13 {
    margin-left: 81.25% !important;
  }
  .medium-offset-14 {
    margin-left: 87.5% !important;
  }
  .medium-offset-15 {
    margin-left: 93.75% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 6.25%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 6.25%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 18.75%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 18.75%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 31.25%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 31.25%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 43.75%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 43.75%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 56.25%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 56.25%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 68.75%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 68.75%;
    left: auto;
  }
  .push-12 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-12 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-13 {
    position: relative;
    left: 81.25%;
    right: auto;
  }
  .pull-13 {
    position: relative;
    right: 81.25%;
    left: auto;
  }
  .push-14 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-14 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .push-15 {
    position: relative;
    left: 93.75%;
    right: auto;
  }
  .pull-15 {
    position: relative;
    right: 93.75%;
    left: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 6.25%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 6.25%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 18.75%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 18.75%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 31.25%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 31.25%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 43.75%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 43.75%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 56.25%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 56.25%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 68.75%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 68.75%;
    left: auto;
  }
  .large-push-12 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-12 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-13 {
    position: relative;
    left: 81.25%;
    right: auto;
  }
  .large-pull-13 {
    position: relative;
    right: 81.25%;
    left: auto;
  }
  .large-push-14 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .large-pull-14 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .large-push-15 {
    position: relative;
    left: 93.75%;
    right: auto;
  }
  .large-pull-15 {
    position: relative;
    right: 93.75%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
  .large-1 {
    width: 6.25%;
  }
  .large-2 {
    width: 12.5%;
  }
  .large-3 {
    width: 18.75%;
  }
  .large-4 {
    width: 25%;
  }
  .large-5 {
    width: 31.25%;
  }
  .large-6 {
    width: 37.5%;
  }
  .large-7 {
    width: 43.75%;
  }
  .large-8 {
    width: 50%;
  }
  .large-9 {
    width: 56.25%;
  }
  .large-10 {
    width: 62.5%;
  }
  .large-11 {
    width: 68.75%;
  }
  .large-12 {
    width: 75%;
  }
  .large-13 {
    width: 81.25%;
  }
  .large-14 {
    width: 87.5%;
  }
  .large-15 {
    width: 93.75%;
  }
  .large-16 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 6.25% !important;
  }
  .large-offset-2 {
    margin-left: 12.5% !important;
  }
  .large-offset-3 {
    margin-left: 18.75% !important;
  }
  .large-offset-4 {
    margin-left: 25% !important;
  }
  .large-offset-5 {
    margin-left: 31.25% !important;
  }
  .large-offset-6 {
    margin-left: 37.5% !important;
  }
  .large-offset-7 {
    margin-left: 43.75% !important;
  }
  .large-offset-8 {
    margin-left: 50% !important;
  }
  .large-offset-9 {
    margin-left: 56.25% !important;
  }
  .large-offset-10 {
    margin-left: 62.5% !important;
  }
  .large-offset-11 {
    margin-left: 68.75% !important;
  }
  .large-offset-12 {
    margin-left: 75% !important;
  }
  .large-offset-13 {
    margin-left: 81.25% !important;
  }
  .large-offset-14 {
    margin-left: 87.5% !important;
  }
  .large-offset-15 {
    margin-left: 93.75% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 6.25%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 6.25%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 18.75%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 18.75%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 31.25%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 31.25%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 43.75%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 43.75%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 56.25%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 56.25%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 68.75%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 68.75%;
    left: auto;
  }
  .push-12 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-12 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-13 {
    position: relative;
    left: 81.25%;
    right: auto;
  }
  .pull-13 {
    position: relative;
    right: 81.25%;
    left: auto;
  }
  .push-14 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-14 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .push-15 {
    position: relative;
    left: 93.75%;
    right: auto;
  }
  .pull-15 {
    position: relative;
    right: 93.75%;
    left: auto;
  }
}
@media only screen and (min-width:90.0625em) {
  .xlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xlarge-push-1 {
    position: relative;
    left: 6.25%;
    right: auto;
  }
  .xlarge-pull-1 {
    position: relative;
    right: 6.25%;
    left: auto;
  }
  .xlarge-push-2 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xlarge-pull-2 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xlarge-push-3 {
    position: relative;
    left: 18.75%;
    right: auto;
  }
  .xlarge-pull-3 {
    position: relative;
    right: 18.75%;
    left: auto;
  }
  .xlarge-push-4 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xlarge-pull-4 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xlarge-push-5 {
    position: relative;
    left: 31.25%;
    right: auto;
  }
  .xlarge-pull-5 {
    position: relative;
    right: 31.25%;
    left: auto;
  }
  .xlarge-push-6 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xlarge-pull-6 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xlarge-push-7 {
    position: relative;
    left: 43.75%;
    right: auto;
  }
  .xlarge-pull-7 {
    position: relative;
    right: 43.75%;
    left: auto;
  }
  .xlarge-push-8 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xlarge-pull-8 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xlarge-push-9 {
    position: relative;
    left: 56.25%;
    right: auto;
  }
  .xlarge-pull-9 {
    position: relative;
    right: 56.25%;
    left: auto;
  }
  .xlarge-push-10 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xlarge-pull-10 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xlarge-push-11 {
    position: relative;
    left: 68.75%;
    right: auto;
  }
  .xlarge-pull-11 {
    position: relative;
    right: 68.75%;
    left: auto;
  }
  .xlarge-push-12 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xlarge-pull-12 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xlarge-push-13 {
    position: relative;
    left: 81.25%;
    right: auto;
  }
  .xlarge-pull-13 {
    position: relative;
    right: 81.25%;
    left: auto;
  }
  .xlarge-push-14 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xlarge-pull-14 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xlarge-push-15 {
    position: relative;
    left: 93.75%;
    right: auto;
  }
  .xlarge-pull-15 {
    position: relative;
    right: 93.75%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
  .xlarge-1 {
    width: 6.25%;
  }
  .xlarge-2 {
    width: 12.5%;
  }
  .xlarge-3 {
    width: 18.75%;
  }
  .xlarge-4 {
    width: 25%;
  }
  .xlarge-5 {
    width: 31.25%;
  }
  .xlarge-6 {
    width: 37.5%;
  }
  .xlarge-7 {
    width: 43.75%;
  }
  .xlarge-8 {
    width: 50%;
  }
  .xlarge-9 {
    width: 56.25%;
  }
  .xlarge-10 {
    width: 62.5%;
  }
  .xlarge-11 {
    width: 68.75%;
  }
  .xlarge-12 {
    width: 75%;
  }
  .xlarge-13 {
    width: 81.25%;
  }
  .xlarge-14 {
    width: 87.5%;
  }
  .xlarge-15 {
    width: 93.75%;
  }
  .xlarge-16 {
    width: 100%;
  }
  .xlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xlarge-offset-1 {
    margin-left: 6.25% !important;
  }
  .xlarge-offset-2 {
    margin-left: 12.5% !important;
  }
  .xlarge-offset-3 {
    margin-left: 18.75% !important;
  }
  .xlarge-offset-4 {
    margin-left: 25% !important;
  }
  .xlarge-offset-5 {
    margin-left: 31.25% !important;
  }
  .xlarge-offset-6 {
    margin-left: 37.5% !important;
  }
  .xlarge-offset-7 {
    margin-left: 43.75% !important;
  }
  .xlarge-offset-8 {
    margin-left: 50% !important;
  }
  .xlarge-offset-9 {
    margin-left: 56.25% !important;
  }
  .xlarge-offset-10 {
    margin-left: 62.5% !important;
  }
  .xlarge-offset-11 {
    margin-left: 68.75% !important;
  }
  .xlarge-offset-12 {
    margin-left: 75% !important;
  }
  .xlarge-offset-13 {
    margin-left: 81.25% !important;
  }
  .xlarge-offset-14 {
    margin-left: 87.5% !important;
  }
  .xlarge-offset-15 {
    margin-left: 93.75% !important;
  }
  .xlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xlarge-centered,
  .columns.xlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xlarge-uncentered,
  .columns.xlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xlarge-centered:last-child,
  .columns.xlarge-centered:last-child {
    float: none;
  }
  .column.xlarge-uncentered:last-child,
  .columns.xlarge-uncentered:last-child {
    float: left;
  }
  .column.xlarge-uncentered.opposite,
  .columns.xlarge-uncentered.opposite {
    float: right;
  }
  .row.xlarge-collapse > .column,
  .row.xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xlarge-uncollapse > .column,
  .row.xlarge-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
}
@media only screen and (min-width:120.0625em) {
  .xxlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xxlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 6.25%;
    right: auto;
  }
  .xxlarge-pull-1 {
    position: relative;
    right: 6.25%;
    left: auto;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xxlarge-pull-2 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 18.75%;
    right: auto;
  }
  .xxlarge-pull-3 {
    position: relative;
    right: 18.75%;
    left: auto;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xxlarge-pull-4 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 31.25%;
    right: auto;
  }
  .xxlarge-pull-5 {
    position: relative;
    right: 31.25%;
    left: auto;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xxlarge-pull-6 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 43.75%;
    right: auto;
  }
  .xxlarge-pull-7 {
    position: relative;
    right: 43.75%;
    left: auto;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xxlarge-pull-8 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 56.25%;
    right: auto;
  }
  .xxlarge-pull-9 {
    position: relative;
    right: 56.25%;
    left: auto;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xxlarge-pull-10 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 68.75%;
    right: auto;
  }
  .xxlarge-pull-11 {
    position: relative;
    right: 68.75%;
    left: auto;
  }
  .xxlarge-push-12 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xxlarge-pull-12 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xxlarge-push-13 {
    position: relative;
    left: 81.25%;
    right: auto;
  }
  .xxlarge-pull-13 {
    position: relative;
    right: 81.25%;
    left: auto;
  }
  .xxlarge-push-14 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xxlarge-pull-14 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xxlarge-push-15 {
    position: relative;
    left: 93.75%;
    right: auto;
  }
  .xxlarge-pull-15 {
    position: relative;
    right: 93.75%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
  .xxlarge-1 {
    width: 6.25%;
  }
  .xxlarge-2 {
    width: 12.5%;
  }
  .xxlarge-3 {
    width: 18.75%;
  }
  .xxlarge-4 {
    width: 25%;
  }
  .xxlarge-5 {
    width: 31.25%;
  }
  .xxlarge-6 {
    width: 37.5%;
  }
  .xxlarge-7 {
    width: 43.75%;
  }
  .xxlarge-8 {
    width: 50%;
  }
  .xxlarge-9 {
    width: 56.25%;
  }
  .xxlarge-10 {
    width: 62.5%;
  }
  .xxlarge-11 {
    width: 68.75%;
  }
  .xxlarge-12 {
    width: 75%;
  }
  .xxlarge-13 {
    width: 81.25%;
  }
  .xxlarge-14 {
    width: 87.5%;
  }
  .xxlarge-15 {
    width: 93.75%;
  }
  .xxlarge-16 {
    width: 100%;
  }
  .xxlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xxlarge-offset-1 {
    margin-left: 6.25% !important;
  }
  .xxlarge-offset-2 {
    margin-left: 12.5% !important;
  }
  .xxlarge-offset-3 {
    margin-left: 18.75% !important;
  }
  .xxlarge-offset-4 {
    margin-left: 25% !important;
  }
  .xxlarge-offset-5 {
    margin-left: 31.25% !important;
  }
  .xxlarge-offset-6 {
    margin-left: 37.5% !important;
  }
  .xxlarge-offset-7 {
    margin-left: 43.75% !important;
  }
  .xxlarge-offset-8 {
    margin-left: 50% !important;
  }
  .xxlarge-offset-9 {
    margin-left: 56.25% !important;
  }
  .xxlarge-offset-10 {
    margin-left: 62.5% !important;
  }
  .xxlarge-offset-11 {
    margin-left: 68.75% !important;
  }
  .xxlarge-offset-12 {
    margin-left: 75% !important;
  }
  .xxlarge-offset-13 {
    margin-left: 81.25% !important;
  }
  .xxlarge-offset-14 {
    margin-left: 87.5% !important;
  }
  .xxlarge-offset-15 {
    margin-left: 93.75% !important;
  }
  .xxlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xxlarge-centered,
  .columns.xxlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xxlarge-uncentered,
  .columns.xxlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xxlarge-centered:last-child,
  .columns.xxlarge-centered:last-child {
    float: none;
  }
  .column.xxlarge-uncentered:last-child,
  .columns.xxlarge-uncentered:last-child {
    float: left;
  }
  .column.xxlarge-uncentered.opposite,
  .columns.xxlarge-uncentered.opposite {
    float: right;
  }
  .row.xxlarge-collapse > .column,
  .row.xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xxlarge-uncollapse > .column,
  .row.xxlarge-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    float: left;
  }
}
.accordion {
  margin-bottom: 0;
  margin-left: 0;
}
.accordion:before, .accordion:after {
  content: " ";
  display: table;
}
.accordion:after {
  clear: both;
}
.accordion .accordion-navigation, .accordion dd {
  display: block;
  margin-bottom: 0 !important;
}
.accordion .accordion-navigation.active > a, .accordion dd.active > a {
  background: #e8e8e8;
  color: #222222;
}
.accordion .accordion-navigation > a, .accordion dd > a {
  background: #EFEFEF;
  color: #222222;
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-size: 1rem;
  padding: 1rem;
}
.accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
  background: #e3e3e3;
}
.accordion .accordion-navigation > .content, .accordion dd > .content {
  display: none;
  padding: 0.625rem;
}
.accordion .accordion-navigation > .content.active, .accordion dd > .content.active {
  background: #FFFFFF;
  display: block;
}

.alert-box {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.8125rem;
  font-weight: normal;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  position: relative;
  transition: opacity 300ms ease-out;
  background-color: #1b1b1b;
  border-color: #171717;
  color: #FFFFFF;
}
.alert-box .close {
  right: 0.25rem;
  background: inherit;
  color: #333333;
  font-size: 0.9375rem;
  line-height: 0.9;
  margin-top: -0.46875rem;
  opacity: 0.3;
  padding: 0 6px 4px;
  position: absolute;
  top: 0.75rem;
}
.alert-box .close:hover, .alert-box .close:focus {
  opacity: 0.5;
}
.alert-box.radius {
  border-radius: 3px;
}
.alert-box.round {
  border-radius: 1000px;
}
.alert-box.success {
  background-color: #85c521;
  border-color: #72a91c;
  color: #FFFFFF;
}
.alert-box.alert {
  background-color: #c52121;
  border-color: #a91c1c;
  color: #FFFFFF;
}
.alert-box.secondary {
  background-color: #F6F6F6;
  border-color: #d4d4d4;
  color: #545454;
}
.alert-box.warning {
  background-color: #ed832e;
  border-color: #e06e13;
  color: #FFFFFF;
}
.alert-box.info {
  background-color: #1b1b1b;
  border-color: #171717;
  color: #FFFFFF;
}
.alert-box.alert-close {
  opacity: 0;
}

[class*=block-grid-] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem;
}
[class*=block-grid-]:before, [class*=block-grid-]:after {
  content: " ";
  display: table;
}
[class*=block-grid-]:after {
  clear: both;
}
[class*=block-grid-] > li {
  display: block;
  float: left;
  height: auto;
  padding: 0 0.625rem 1.25rem;
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
.breadcrumbs {
  border-style: solid;
  border-width: 1px;
  display: block;
  list-style: none;
  margin-left: 0;
  overflow: hidden;
  padding: 0.5625rem 0.875rem 0.5625rem;
  background-color: #fbfbfb;
  border-color: #e2e2e2;
  border-radius: 3px;
}
.breadcrumbs > * {
  color: #1b1b1b;
  float: left;
  font-size: 0.6875rem;
  line-height: 0.6875rem;
  margin: 0;
  text-transform: uppercase;
}
.breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
  text-decoration: underline;
}
.breadcrumbs > * a {
  color: #1b1b1b;
}
.breadcrumbs > *.current {
  color: #333333;
  cursor: default;
}
.breadcrumbs > *.current a {
  color: #333333;
  cursor: default;
}
.breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
  text-decoration: none;
}
.breadcrumbs > *.unavailable {
  color: #999999;
}
.breadcrumbs > *.unavailable a {
  color: #999999;
}
.breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus,
.breadcrumbs > *.unavailable a:focus {
  color: #999999;
  cursor: not-allowed;
  text-decoration: none;
}
.breadcrumbs > *:before {
  color: #AAAAAA;
  content: "/";
  margin: 0 0.75rem;
  position: relative;
  top: 1px;
}
.breadcrumbs > *:first-child:before {
  content: " ";
  margin: 0;
}

/* Accessibility - hides the forward slash */
[aria-label=breadcrumbs] [aria-hidden=true]:after {
  content: "/";
}

button, .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
  transition: background-color 300ms ease-out;
}
button:hover, button:focus, .button:hover, .button:focus {
  background-color: #161616;
}
button:hover, button:focus, .button:hover, .button:focus {
  color: #FFFFFF;
}
button.secondary, .button.secondary {
  background-color: #F6F6F6;
  border-color: #c5c5c5;
  color: #333333;
}
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  background-color: #c5c5c5;
}
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  color: #333333;
}
button.success, .button.success {
  background-color: #85c521;
  border-color: #6a9e1a;
  color: #FFFFFF;
}
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  background-color: #6a9e1a;
}
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  color: #FFFFFF;
}
button.alert, .button.alert {
  background-color: #c52121;
  border-color: #9e1a1a;
  color: #FFFFFF;
}
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  background-color: #9e1a1a;
}
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  color: #FFFFFF;
}
button.warning, .button.warning {
  background-color: #ed832e;
  border-color: #d06712;
  color: #FFFFFF;
}
button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  background-color: #d06712;
}
button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  color: #FFFFFF;
}
button.info, .button.info {
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
}
button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  background-color: #161616;
}
button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  color: #FFFFFF;
}
button.large, .button.large {
  padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  font-size: 1.25rem;
}
button.small, .button.small {
  padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  font-size: 0.8125rem;
}
button.tiny, .button.tiny {
  padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  font-size: 0.6875rem;
}
button.expand, .button.expand {
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  padding-bottom: 1.0625rem;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}
button.left-align, .button.left-align {
  text-align: left;
  text-indent: 0.75rem;
}
button.right-align, .button.right-align {
  text-align: right;
  padding-right: 0.75rem;
}
button.radius, .button.radius {
  border-radius: 3px;
}
button.round, .button.round {
  border-radius: 1000px;
}
button.disabled, button[disabled], .button.disabled, .button[disabled] {
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #161616;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  color: #FFFFFF;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #1b1b1b;
}
button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  background-color: #F6F6F6;
  border-color: #c5c5c5;
  color: #333333;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #c5c5c5;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  color: #333333;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #F6F6F6;
}
button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  background-color: #85c521;
  border-color: #6a9e1a;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #6a9e1a;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  color: #FFFFFF;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #85c521;
}
button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  background-color: #c52121;
  border-color: #9e1a1a;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #9e1a1a;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  color: #FFFFFF;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #c52121;
}
button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  background-color: #ed832e;
  border-color: #d06712;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #d06712;
}
button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  color: #FFFFFF;
}
button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #ed832e;
}
button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: #161616;
}
button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  color: #FFFFFF;
}
button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: #1b1b1b;
}

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

@media only screen and (min-width:40.0625em) {
  button, .button {
    display: inline-block;
  }
}
.button-group {
  list-style: none;
  margin: 0;
  left: 0;
}
.button-group:before, .button-group:after {
  content: " ";
  display: table;
}
.button-group:after {
  clear: both;
}
.button-group.even-2 li {
  display: inline-block;
  margin: 0 -2px;
  width: 50%;
}
.button-group.even-2 li > button, .button-group.even-2 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  border-left: 0;
}
.button-group.even-2 li button, .button-group.even-2 li .button {
  width: 100%;
}
.button-group.even-3 li {
  display: inline-block;
  margin: 0 -2px;
  width: 33.3333333333%;
}
.button-group.even-3 li > button, .button-group.even-3 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  border-left: 0;
}
.button-group.even-3 li button, .button-group.even-3 li .button {
  width: 100%;
}
.button-group.even-4 li {
  display: inline-block;
  margin: 0 -2px;
  width: 25%;
}
.button-group.even-4 li > button, .button-group.even-4 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  border-left: 0;
}
.button-group.even-4 li button, .button-group.even-4 li .button {
  width: 100%;
}
.button-group.even-5 li {
  display: inline-block;
  margin: 0 -2px;
  width: 20%;
}
.button-group.even-5 li > button, .button-group.even-5 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  border-left: 0;
}
.button-group.even-5 li button, .button-group.even-5 li .button {
  width: 100%;
}
.button-group.even-6 li {
  display: inline-block;
  margin: 0 -2px;
  width: 16.6666666667%;
}
.button-group.even-6 li > button, .button-group.even-6 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  border-left: 0;
}
.button-group.even-6 li button, .button-group.even-6 li .button {
  width: 100%;
}
.button-group.even-7 li {
  display: inline-block;
  margin: 0 -2px;
  width: 14.2857142857%;
}
.button-group.even-7 li > button, .button-group.even-7 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  border-left: 0;
}
.button-group.even-7 li button, .button-group.even-7 li .button {
  width: 100%;
}
.button-group.even-8 li {
  display: inline-block;
  margin: 0 -2px;
  width: 12.5%;
}
.button-group.even-8 li > button, .button-group.even-8 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  border-left: 0;
}
.button-group.even-8 li button, .button-group.even-8 li .button {
  width: 100%;
}
.button-group > li {
  display: inline-block;
  margin: 0 -2px;
}
.button-group > li > button, .button-group > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group > li:first-child button, .button-group > li:first-child .button {
  border-left: 0;
}
.button-group.stack > li {
  display: block;
  margin: 0;
  float: none;
}
.button-group.stack > li > button, .button-group.stack > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  border-left: 0;
}
.button-group.stack > li > button, .button-group.stack > li .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}
.button-group.stack > li > button {
  width: 100%;
}
.button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  border-top: 0;
}
.button-group.stack-for-small > li {
  display: inline-block;
  margin: 0 -2px;
}
.button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  border-left: 0;
}
@media only screen and (max-width: 40em) {
  .button-group.stack-for-small > li {
    display: block;
    margin: 0;
    width: 100%;
  }
  .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
    border-left: 0;
  }
  .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }
  .button-group.stack-for-small > li > button {
    width: 100%;
  }
  .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
    border-top: 0;
  }
}
.button-group.radius > * {
  display: inline-block;
  margin: 0 -2px;
}
.button-group.radius > * > button, .button-group.radius > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  border-left: 0;
}
.button-group.radius > *,
.button-group.radius > * > a,
.button-group.radius > * > button,
.button-group.radius > * > .button {
  border-radius: 0;
}
.button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.button-group.radius.stack > * {
  display: block;
  margin: 0;
}
.button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  border-left: 0;
}
.button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}
.button-group.radius.stack > * > button {
  width: 100%;
}
.button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  border-top: 0;
}
.button-group.radius.stack > *,
.button-group.radius.stack > * > a,
.button-group.radius.stack > * > button,
.button-group.radius.stack > * > .button {
  border-radius: 0;
}
.button-group.radius.stack > *:first-child, .button-group.radius.stack > *:first-child > a, .button-group.radius.stack > *:first-child > button, .button-group.radius.stack > *:first-child > .button {
  -webkit-top-left-radius: 3px;
  -webkit-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.button-group.radius.stack > *:last-child, .button-group.radius.stack > *:last-child > a, .button-group.radius.stack > *:last-child > button, .button-group.radius.stack > *:last-child > .button {
  -webkit-bottom-left-radius: 3px;
  -webkit-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media only screen and (min-width:40.0625em) {
  .button-group.radius.stack-for-small > * {
    display: inline-block;
    margin: 0 -2px;
  }
  .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.radius.stack-for-small > *,
  .button-group.radius.stack-for-small > * > a,
  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
  }
  .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
  }
}
@media only screen and (max-width: 40em) {
  .button-group.radius.stack-for-small > * {
    display: block;
    margin: 0;
  }
  .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }
  .button-group.radius.stack-for-small > * > button {
    width: 100%;
  }
  .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
    border-top: 0;
  }
  .button-group.radius.stack-for-small > *,
  .button-group.radius.stack-for-small > * > a,
  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
    -webkit-top-left-radius: 3px;
    -webkit-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }
  .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
    -webkit-bottom-left-radius: 3px;
    -webkit-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
}
.button-group.round > * {
  display: inline-block;
  margin: 0 -2px;
}
.button-group.round > * > button, .button-group.round > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  border-left: 0;
}
.button-group.round > *,
.button-group.round > * > a,
.button-group.round > * > button,
.button-group.round > * > .button {
  border-radius: 0;
}
.button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}
.button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
.button-group.round.stack > * {
  display: block;
  margin: 0;
}
.button-group.round.stack > * > button, .button-group.round.stack > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  border-left: 0;
}
.button-group.round.stack > * > button, .button-group.round.stack > * .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}
.button-group.round.stack > * > button {
  width: 100%;
}
.button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  border-top: 0;
}
.button-group.round.stack > *,
.button-group.round.stack > * > a,
.button-group.round.stack > * > button,
.button-group.round.stack > * > .button {
  border-radius: 0;
}
.button-group.round.stack > *:first-child, .button-group.round.stack > *:first-child > a, .button-group.round.stack > *:first-child > button, .button-group.round.stack > *:first-child > .button {
  -webkit-top-left-radius: 1rem;
  -webkit-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.button-group.round.stack > *:last-child, .button-group.round.stack > *:last-child > a, .button-group.round.stack > *:last-child > button, .button-group.round.stack > *:last-child > .button {
  -webkit-bottom-left-radius: 1rem;
  -webkit-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media only screen and (min-width:40.0625em) {
  .button-group.round.stack-for-small > * {
    display: inline-block;
    margin: 0 -2px;
  }
  .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.round.stack-for-small > *,
  .button-group.round.stack-for-small > * > a,
  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
    -webkit-border-bottom-left-radius: 1000px;
    -webkit-border-top-left-radius: 1000px;
    border-bottom-left-radius: 1000px;
    border-top-left-radius: 1000px;
  }
  .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
    -webkit-border-bottom-right-radius: 1000px;
    -webkit-border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
    border-top-right-radius: 1000px;
  }
}
@media only screen and (max-width: 40em) {
  .button-group.round.stack-for-small > * {
    display: block;
    margin: 0;
  }
  .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }
  .button-group.round.stack-for-small > * > button {
    width: 100%;
  }
  .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
    border-top: 0;
  }
  .button-group.round.stack-for-small > *,
  .button-group.round.stack-for-small > * > a,
  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
    -webkit-top-left-radius: 1rem;
    -webkit-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
    -webkit-bottom-left-radius: 1rem;
    -webkit-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}

.button-bar:before, .button-bar:after {
  content: " ";
  display: table;
}
.button-bar:after {
  clear: both;
}
.button-bar .button-group {
  float: left;
  margin-right: 0.625rem;
}
.button-bar .button-group div {
  overflow: hidden;
}

/* Clearing Styles */
.clearing-thumbs, [data-clearing] {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  content: " ";
  display: table;
}
.clearing-thumbs:after, [data-clearing]:after {
  clear: both;
}
.clearing-thumbs li, [data-clearing] li {
  float: left;
  margin-right: 10px;
}
.clearing-thumbs[class*=block-grid-] li, [data-clearing][class*=block-grid-] li {
  margin-right: 0;
}

.clearing-blackout {
  background: #333333;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  left: 0;
}
.clearing-blackout .clearing-close {
  display: block;
}

.clearing-container {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 998;
}

.clearing-touch-label {
  color: #AAAAAA;
  font-size: 0.6em;
  left: 50%;
  position: absolute;
  top: 50%;
}

.visible-img {
  height: 95%;
  position: relative;
}
.visible-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-height: 100%;
  max-width: 100%;
}

.clearing-caption {
  background: #333333;
  bottom: 0;
  color: #CCCCCC;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  padding: 10px 30px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
}

.clearing-close {
  color: #CCCCCC;
  display: none;
  font-size: 30px;
  line-height: 1;
  padding-left: 20px;
  padding-top: 10px;
  z-index: 999;
}
.clearing-close:hover, .clearing-close:focus {
  color: #CCCCCC;
}

.clearing-assembled .clearing-container {
  height: 100%;
}
.clearing-assembled .clearing-container .carousel > ul {
  display: none;
}

.clearing-feature li {
  display: none;
}
.clearing-feature li.clearing-featured-img {
  display: block;
}

@media only screen and (min-width:40.0625em) {
  .clearing-main-prev,
  .clearing-main-next {
    height: 100%;
    position: absolute;
    top: 0;
    width: 40px;
  }
  .clearing-main-prev > span,
  .clearing-main-next > span {
    border: solid 12px;
    display: block;
    height: 0;
    position: absolute;
    top: 50%;
    width: 0;
  }
  .clearing-main-prev > span:hover,
  .clearing-main-next > span:hover {
    opacity: 0.8;
  }
  .clearing-main-prev {
    left: 0;
  }
  .clearing-main-prev > span {
    left: 5px;
    border-color: transparent;
    border-right-color: #CCCCCC;
  }
  .clearing-main-next {
    right: 0;
  }
  .clearing-main-next > span {
    border-color: transparent;
    border-left-color: #CCCCCC;
  }
  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3;
  }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center;
  }
  .clearing-assembled .clearing-container .carousel > ul {
    display: inline-block;
    z-index: 999;
    height: 100%;
    position: relative;
    float: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li {
    clear: none;
    cursor: pointer;
    display: block;
    float: left;
    margin-right: 0;
    min-height: inherit;
    opacity: 0.4;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 120px;
  }
  .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
    height: 100%;
    max-width: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li a.th {
    border: none;
    box-shadow: none;
    display: block;
  }
  .clearing-assembled .clearing-container .carousel > ul li img {
    cursor: pointer !important;
    width: 100% !important;
  }
  .clearing-assembled .clearing-container .carousel > ul li.visible {
    opacity: 1;
  }
  .clearing-assembled .clearing-container .carousel > ul li:hover {
    opacity: 0.8;
  }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    height: 85%;
    overflow: hidden;
  }
  .clearing-close {
    padding-left: 0;
    padding-top: 0;
    position: absolute;
    top: 10px;
    right: 20px;
  }
}
/* Foundation Dropdowns */
.f-dropdown {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 2px;
  max-width: 200px;
}
.f-dropdown.open {
  display: block;
}
.f-dropdown > *:first-child {
  margin-top: 0;
}
.f-dropdown > *:last-child {
  margin-bottom: 0;
}
.f-dropdown:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #FFFFFF transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -12px;
  left: 10px;
  z-index: 89;
}
.f-dropdown:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #cccccc transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -14px;
  left: 9px;
  z-index: 88;
}
.f-dropdown.right:before {
  left: auto;
  right: 10px;
}
.f-dropdown.right:after {
  left: auto;
  right: 9px;
}
.f-dropdown.drop-right {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: 2px;
  max-width: 200px;
}
.f-dropdown.drop-right.open {
  display: block;
}
.f-dropdown.drop-right > *:first-child {
  margin-top: 0;
}
.f-dropdown.drop-right > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.drop-right:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #FFFFFF transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 10px;
  left: -12px;
  z-index: 89;
}
.f-dropdown.drop-right:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #cccccc transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 9px;
  left: -14px;
  z-index: 88;
}
.f-dropdown.drop-left {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: -2px;
  max-width: 200px;
}
.f-dropdown.drop-left.open {
  display: block;
}
.f-dropdown.drop-left > *:first-child {
  margin-top: 0;
}
.f-dropdown.drop-left > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.drop-left:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #FFFFFF;
  border-left-style: solid;
  position: absolute;
  top: 10px;
  right: -12px;
  left: auto;
  z-index: 89;
}
.f-dropdown.drop-left:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #cccccc;
  border-left-style: solid;
  position: absolute;
  top: 9px;
  right: -14px;
  left: auto;
  z-index: 88;
}
.f-dropdown.drop-top {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-left: 0;
  margin-top: -2px;
  max-width: 200px;
}
.f-dropdown.drop-top.open {
  display: block;
}
.f-dropdown.drop-top > *:first-child {
  margin-top: 0;
}
.f-dropdown.drop-top > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.drop-top:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #FFFFFF transparent transparent transparent;
  border-top-style: solid;
  bottom: -12px;
  position: absolute;
  top: auto;
  left: 10px;
  right: auto;
  z-index: 89;
}
.f-dropdown.drop-top:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #cccccc transparent transparent transparent;
  border-top-style: solid;
  bottom: -14px;
  position: absolute;
  top: auto;
  left: 9px;
  right: auto;
  z-index: 88;
}
.f-dropdown li {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
}
.f-dropdown li:hover, .f-dropdown li:focus {
  background: #EEEEEE;
}
.f-dropdown li a {
  display: block;
  padding: 0.5rem;
  color: #555555;
}
.f-dropdown.content {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  padding: 1.25rem;
  width: 100%;
  z-index: 89;
  max-width: 200px;
}
.f-dropdown.content.open {
  display: block;
}
.f-dropdown.content > *:first-child {
  margin-top: 0;
}
.f-dropdown.content > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.radius {
  border-radius: 3px;
}
.f-dropdown.tiny {
  max-width: 200px;
}
.f-dropdown.small {
  max-width: 300px;
}
.f-dropdown.medium {
  max-width: 500px;
}
.f-dropdown.large {
  max-width: 800px;
}
.f-dropdown.mega {
  width: 100% !important;
  max-width: 100% !important;
}
.f-dropdown.mega.open {
  left: 0 !important;
}

.dropdown.button, button.dropdown {
  position: relative;
  padding-right: 3.5625rem;
}
.dropdown.button::after, button.dropdown::after {
  border-color: #FFFFFF transparent transparent transparent;
  border-style: solid;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  width: 0;
}
.dropdown.button::after, button.dropdown::after {
  border-width: 0.375rem;
  right: 1.40625rem;
  margin-top: -0.15625rem;
}
.dropdown.button::after, button.dropdown::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.tiny, button.dropdown.tiny {
  padding-right: 2.625rem;
}
.dropdown.button.tiny:after, button.dropdown.tiny:after {
  border-width: 0.375rem;
  right: 1.125rem;
  margin-top: -0.125rem;
}
.dropdown.button.tiny::after, button.dropdown.tiny::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.small, button.dropdown.small {
  padding-right: 3.0625rem;
}
.dropdown.button.small::after, button.dropdown.small::after {
  border-width: 0.4375rem;
  right: 1.3125rem;
  margin-top: -0.15625rem;
}
.dropdown.button.small::after, button.dropdown.small::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.large, button.dropdown.large {
  padding-right: 3.625rem;
}
.dropdown.button.large::after, button.dropdown.large::after {
  border-width: 0.3125rem;
  right: 1.71875rem;
  margin-top: -0.15625rem;
}
.dropdown.button.large::after, button.dropdown.large::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.secondary:after, button.dropdown.secondary:after {
  border-color: #333333 transparent transparent transparent;
}

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

/* Standard Forms */
form {
  margin: 0 0 1rem;
}

/* Using forms within rows, we need to set some defaults */
form .row .row {
  margin: 0 -0.5rem;
}
form .row .row .column,
form .row .row .columns {
  padding: 0 0.5rem;
}
form .row .row.collapse {
  margin: 0;
}
form .row .row.collapse .column,
form .row .row.collapse .columns {
  padding: 0;
}
form .row .row.collapse input {
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.5rem;
}

/* Label Styles */
label {
  color: #666666;
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  /* Styles for required inputs */
}
label.right {
  float: none !important;
  text-align: right;
}
label.inline {
  margin: 0 0 1rem 0;
  padding: 0.5625rem 0;
}
label small {
  text-transform: capitalize;
  color: #7d7d7d;
}

/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
  overflow: visible;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
  background: #f2f2f2;
  border-right: none;
  color: #333333;
  border-color: #cccccc;
}

span.postfix, label.postfix {
  background: #f2f2f2;
  border-left: none;
  color: #333333;
  border-color: #cccccc;
}

/* We use this to get basic styling on all basic form elements */
input:not([type]), input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=color], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: 0.875rem;
  height: 2.3125rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear;
  transition: border-color 0.15s linear, background 0.15s linear;
}
input:not([type]):focus, input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=week]:focus, input[type=email]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=color]:focus, textarea:focus {
  background: #fafafa;
  border-color: #999999;
  outline: none;
}
input:not([type]):disabled, input[type=text]:disabled, input[type=password]:disabled, input[type=date]:disabled, input[type=datetime]:disabled, input[type=datetime-local]:disabled, input[type=month]:disabled, input[type=week]:disabled, input[type=email]:disabled, input[type=number]:disabled, input[type=search]:disabled, input[type=tel]:disabled, input[type=time]:disabled, input[type=url]:disabled, input[type=color]:disabled, textarea:disabled {
  background-color: #FAFAFA;
  cursor: default;
}
input:not([type])[disabled], input:not([type])[readonly], fieldset[disabled] input:not([type]), input[type=text][disabled], input[type=text][readonly], fieldset[disabled] input[type=text], input[type=password][disabled], input[type=password][readonly], fieldset[disabled] input[type=password], input[type=date][disabled], input[type=date][readonly], fieldset[disabled] input[type=date], input[type=datetime][disabled], input[type=datetime][readonly], fieldset[disabled] input[type=datetime], input[type=datetime-local][disabled], input[type=datetime-local][readonly], fieldset[disabled] input[type=datetime-local], input[type=month][disabled], input[type=month][readonly], fieldset[disabled] input[type=month], input[type=week][disabled], input[type=week][readonly], fieldset[disabled] input[type=week], input[type=email][disabled], input[type=email][readonly], fieldset[disabled] input[type=email], input[type=number][disabled], input[type=number][readonly], fieldset[disabled] input[type=number], input[type=search][disabled], input[type=search][readonly], fieldset[disabled] input[type=search], input[type=tel][disabled], input[type=tel][readonly], fieldset[disabled] input[type=tel], input[type=time][disabled], input[type=time][readonly], fieldset[disabled] input[type=time], input[type=url][disabled], input[type=url][readonly], fieldset[disabled] input[type=url], input[type=color][disabled], input[type=color][readonly], fieldset[disabled] input[type=color], textarea[disabled], textarea[readonly], fieldset[disabled] textarea {
  background-color: #FAFAFA;
  cursor: default;
}
input:not([type]).radius, input[type=text].radius, input[type=password].radius, input[type=date].radius, input[type=datetime].radius, input[type=datetime-local].radius, input[type=month].radius, input[type=week].radius, input[type=email].radius, input[type=number].radius, input[type=search].radius, input[type=tel].radius, input[type=time].radius, input[type=url].radius, input[type=color].radius, textarea.radius {
  border-radius: 6px;
}

form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse textarea,
form .row .prefix-radius.row.collapse select,
form .row .prefix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse textarea,
form .row .postfix-radius.row.collapse select,
form .row .postfix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse textarea,
form .row .prefix-round.row.collapse select,
form .row .prefix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}
form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse textarea,
form .row .postfix-round.row.collapse select,
form .row .postfix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}
form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

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

/* Respect enforced amount of rows for textarea */
textarea[rows] {
  height: auto;
}

/* Not allow resize out of parent */
textarea {
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #666666;
}

:-moz-placeholder { /* Firefox 18- */
  color: #666666;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #666666;
}

:-ms-input-placeholder {
  color: #666666;
}

/* Add height value for select elements to match text input height */
select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #FAFAFA;
  border-radius: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  color: rgba(0, 0, 0, 0.75);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: normal;
  padding: 0.5rem;
  border-radius: 0;
  height: 2.3125rem;
}
select::-ms-expand {
  display: none;
}
select.radius {
  border-radius: 3px;
}
select:focus {
  background-color: #f3f3f3;
  border-color: #999999;
}
select:disabled {
  background-color: #FAFAFA;
  cursor: default;
}
select[multiple] {
  height: auto;
}

/* Adjust margin for form elements below */
input[type=file],
input[type=checkbox],
input[type=radio],
select {
  margin: 0 0 1rem 0;
}

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

/* Normalize file input width */
input[type=file] {
  width: 100%;
}

/* HTML5 Number spinners settings */
/* We add basic fieldset styling */
fieldset {
  border: 1px solid #DDDDDD;
  margin: 1.125rem 0;
  padding: 1.25rem;
}
fieldset legend {
  font-weight: bold;
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.625rem;
}

/* Error Handling */
[data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #c52121;
  color: #FFFFFF;
}
[data-abide] span.error, [data-abide] small.error {
  display: none;
}

span.error, small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #c52121;
  color: #FFFFFF;
}

.error input,
.error textarea,
.error select {
  margin-bottom: 0;
}
.error input[type=checkbox],
.error input[type=radio] {
  margin-bottom: 1rem;
}
.error label,
.error label.error {
  color: #c52121;
}
.error small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #c52121;
  color: #FFFFFF;
}
.error > label > small {
  background: transparent;
  color: #7d7d7d;
  display: inline;
  font-size: 60%;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}
.error span.error-message {
  display: block;
}

input.error,
textarea.error,
select.error {
  margin-bottom: 0;
}

label.error {
  color: #c52121;
}

.icon-bar {
  display: inline-block;
  font-size: 0;
  width: 100%;
  background: #333333;
}
.icon-bar > * {
  display: block;
  float: left;
  font-size: 1rem;
  margin: 0 auto;
  padding: 1.25rem;
  text-align: center;
  width: 25%;
}
.icon-bar > * i, .icon-bar > * img {
  display: block;
  margin: 0 auto;
}
.icon-bar > * i + label, .icon-bar > * img + label {
  margin-top: 0.0625rem;
}
.icon-bar > * i {
  font-size: 1.875rem;
  vertical-align: middle;
}
.icon-bar > * img {
  height: 1.875rem;
  width: 1.875rem;
}
.icon-bar.label-right > * i, .icon-bar.label-right > * img {
  display: inline-block;
  margin: 0 0.0625rem 0 0;
}
.icon-bar.label-right > * i + label, .icon-bar.label-right > * img + label {
  margin-top: 0;
}
.icon-bar.label-right > * label {
  display: inline-block;
}
.icon-bar.vertical.label-right > * {
  text-align: left;
}
.icon-bar.vertical, .icon-bar.small-vertical {
  height: 100%;
  width: auto;
}
.icon-bar.vertical .item, .icon-bar.small-vertical .item {
  float: none;
  margin: auto;
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.medium-vertical {
    height: 100%;
    width: auto;
  }
  .icon-bar.medium-vertical .item {
    float: none;
    margin: auto;
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.large-vertical {
    height: 100%;
    width: auto;
  }
  .icon-bar.large-vertical .item {
    float: none;
    margin: auto;
    width: auto;
  }
}
.icon-bar > * {
  font-size: 1rem;
  padding: 1.25rem;
}
.icon-bar > * i + label, .icon-bar > * img + label {
  margin-top: 0.0625rem;
  font-size: 1rem;
}
.icon-bar > * i {
  font-size: 1.875rem;
}
.icon-bar > * img {
  height: 1.875rem;
  width: 1.875rem;
}
.icon-bar > * label {
  color: #FFFFFF;
}
.icon-bar > * i {
  color: #FFFFFF;
}
.icon-bar > a:hover {
  background: #1b1b1b;
}
.icon-bar > a:hover label {
  color: #FFFFFF;
}
.icon-bar > a:hover i {
  color: #FFFFFF;
}
.icon-bar > a.active {
  background: #1b1b1b;
}
.icon-bar > a.active label {
  color: #FFFFFF;
}
.icon-bar > a.active i {
  color: #FFFFFF;
}
.icon-bar .item.disabled {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}
.icon-bar .item.disabled > * {
  opacity: 0.7;
  cursor: not-allowed;
}
.icon-bar.two-up .item {
  width: 50%;
}
.icon-bar.two-up.vertical .item, .icon-bar.two-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.two-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.two-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.three-up .item {
  width: 33.3333%;
}
.icon-bar.three-up.vertical .item, .icon-bar.three-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.three-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.three-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.four-up .item {
  width: 25%;
}
.icon-bar.four-up.vertical .item, .icon-bar.four-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.four-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.four-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.five-up .item {
  width: 20%;
}
.icon-bar.five-up.vertical .item, .icon-bar.five-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.five-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.five-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.six-up .item {
  width: 16.66667%;
}
.icon-bar.six-up.vertical .item, .icon-bar.six-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.six-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.six-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.seven-up .item {
  width: 14.28571%;
}
.icon-bar.seven-up.vertical .item, .icon-bar.seven-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.seven-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.seven-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.eight-up .item {
  width: 12.5%;
}
.icon-bar.eight-up.vertical .item, .icon-bar.eight-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.eight-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.eight-up.large-vertical .item {
    width: auto;
  }
}

.icon-bar.two-up .item {
  width: 50%;
}
.icon-bar.two-up.vertical .item, .icon-bar.two-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.two-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.two-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.three-up .item {
  width: 33.3333%;
}
.icon-bar.three-up.vertical .item, .icon-bar.three-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.three-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.three-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.four-up .item {
  width: 25%;
}
.icon-bar.four-up.vertical .item, .icon-bar.four-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.four-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.four-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.five-up .item {
  width: 20%;
}
.icon-bar.five-up.vertical .item, .icon-bar.five-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.five-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.five-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.six-up .item {
  width: 16.66667%;
}
.icon-bar.six-up.vertical .item, .icon-bar.six-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.six-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.six-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.seven-up .item {
  width: 14.28571%;
}
.icon-bar.seven-up.vertical .item, .icon-bar.seven-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.seven-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.seven-up.large-vertical .item {
    width: auto;
  }
}
.icon-bar.eight-up .item {
  width: 12.5%;
}
.icon-bar.eight-up.vertical .item, .icon-bar.eight-up.small-vertical .item {
  width: auto;
}
@media only screen and (min-width:40.0625em) {
  .icon-bar.eight-up.medium-vertical .item {
    width: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .icon-bar.eight-up.large-vertical .item {
    width: auto;
  }
}

.inline-list {
  list-style: none;
  margin-top: 0;
  margin-bottom: 1.0625rem;
  margin-left: -1.375rem;
  margin-right: 0;
  overflow: hidden;
  padding: 0;
}
.inline-list > li {
  display: block;
  float: left;
  list-style: none;
  margin-left: 1.375rem;
}
.inline-list > li > * {
  display: block;
}

/* Foundation Joyride */
.joyride-list {
  display: none;
}

/* Default styles for the container */
.joyride-tip-guide {
  background: #333333;
  color: #FFFFFF;
  display: none;
  font-family: inherit;
  font-weight: normal;
  position: absolute;
  top: 0;
  width: 95%;
  z-index: 103;
  left: 2.5%;
}

.lt-ie9 .joyride-tip-guide {
  margin-left: -400px;
  max-width: 800px;
  left: 50%;
}

.joyride-content-wrapper {
  padding: 1.125rem 1.25rem 1.5rem;
  width: 100%;
}
.joyride-content-wrapper .button {
  margin-bottom: 0 !important;
}
.joyride-content-wrapper .joyride-prev-tip {
  margin-right: 10px;
}

/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
.joyride-tip-guide .joyride-nub {
  border: 10px solid #333333;
  display: block;
  height: 0;
  position: absolute;
  width: 0;
  left: 22px;
}
.joyride-tip-guide .joyride-nub.top {
  border-color: #333333;
  border-top-color: transparent !important;
  border-top-style: solid;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  top: -20px;
}
.joyride-tip-guide .joyride-nub.bottom {
  border-color: #333333 !important;
  border-bottom-color: transparent !important;
  border-bottom-style: solid;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  bottom: -20px;
}
.joyride-tip-guide .joyride-nub.right {
  right: -20px;
}
.joyride-tip-guide .joyride-nub.left {
  left: -20px;
}

/* Typography */
.joyride-tip-guide h1,
.joyride-tip-guide h2,
.joyride-tip-guide h3,
.joyride-tip-guide h4,
.joyride-tip-guide h5,
.joyride-tip-guide h6 {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.25;
  margin: 0;
}

.joyride-tip-guide p {
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0 0 1.125rem 0;
}

.joyride-timer-indicator-wrap {
  border: solid 1px #555555;
  bottom: 1rem;
  height: 3px;
  position: absolute;
  width: 50px;
  right: 1.0625rem;
}

.joyride-timer-indicator {
  background: #666666;
  display: block;
  height: inherit;
  width: 0;
}

.joyride-close-tip {
  color: #777777 !important;
  font-size: 24px;
  font-weight: normal;
  line-height: 0.5 !important;
  position: absolute;
  text-decoration: none;
  top: 10px;
  right: 12px;
}
.joyride-close-tip:hover, .joyride-close-tip:focus {
  color: #EEEEEE !important;
}

.joyride-modal-bg {
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  left: 0;
}

.joyride-expose-wrapper {
  background-color: #FFFFFF;
  border-radius: 3px;
  box-shadow: 0 0 15px #FFFFFF;
  position: absolute;
  z-index: 102;
}

.joyride-expose-cover {
  background: transparent;
  border-radius: 3px;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9999;
}

/* Styles for screens that are at least 768px; */
@media only screen {
  .joyride-tip-guide {
    width: 300px;
    left: inherit;
  }
  .joyride-tip-guide .joyride-nub.bottom {
    border-color: #333333 !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    bottom: -20px;
  }
  .joyride-tip-guide .joyride-nub.right {
    border-color: #333333 !important;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    border-top-color: transparent !important;
    left: auto;
    right: -20px;
    top: 22px;
  }
  .joyride-tip-guide .joyride-nub.left {
    border-color: #333333 !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
    left: -20px;
    right: auto;
    top: 22px;
  }
}
.keystroke,
kbd {
  background-color: #ededed;
  border-color: #dddddd;
  color: #222222;
  border-style: solid;
  border-width: 1px;
  font-family: "Consolas", "Menlo", "Courier", monospace;
  font-size: inherit;
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  border-radius: 3px;
}

.label {
  display: inline-block;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0.5rem 0.25rem;
  font-size: 0.6875rem;
  background-color: #1b1b1b;
  color: #FFFFFF;
}
.label.radius {
  border-radius: 3px;
}
.label.round {
  border-radius: 1000px;
}
.label.alert {
  background-color: #c52121;
  color: #FFFFFF;
}
.label.warning {
  background-color: #ed832e;
  color: #FFFFFF;
}
.label.success {
  background-color: #85c521;
  color: #FFFFFF;
}
.label.secondary {
  background-color: #F6F6F6;
  color: #333333;
}
.label.info {
  background-color: #1b1b1b;
  color: #FFFFFF;
}

[data-magellan-expedition], [data-magellan-expedition-clone] {
  background: #FFFFFF;
  min-width: 100%;
  padding: 10px;
  z-index: 50;
}
[data-magellan-expedition] .sub-nav, [data-magellan-expedition-clone] .sub-nav {
  margin-bottom: 0;
}
[data-magellan-expedition] .sub-nav dd, [data-magellan-expedition-clone] .sub-nav dd {
  margin-bottom: 0;
}
[data-magellan-expedition] .sub-nav a, [data-magellan-expedition-clone] .sub-nav a {
  line-height: 1.8em;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Orbit Graceful Loading */
.slideshow-wrapper {
  position: relative;
}
.slideshow-wrapper ul {
  list-style-type: none;
  margin: 0;
}
.slideshow-wrapper ul li,
.slideshow-wrapper ul li .orbit-caption {
  display: none;
}
.slideshow-wrapper ul li:first-child {
  display: block;
}
.slideshow-wrapper .orbit-container {
  background-color: transparent;
}
.slideshow-wrapper .orbit-container li {
  display: block;
}
.slideshow-wrapper .orbit-container li .orbit-caption {
  display: block;
}
.slideshow-wrapper .orbit-container .orbit-bullets li {
  display: inline-block;
}
.slideshow-wrapper .preloader {
  border-radius: 1000px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: rotate;
  animation-timing-function: linear;
  border-color: #555555 #FFFFFF;
  border: solid 3px;
  display: block;
  height: 40px;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  width: 40px;
}

.orbit-container {
  background: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.orbit-container .orbit-slides-container {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.orbit-container .orbit-slides-container img {
  display: block;
  max-width: 100%;
}
.orbit-container .orbit-slides-container > * {
  position: absolute;
  top: 0;
  width: 100%;
  margin-left: 100%;
}
.orbit-container .orbit-slides-container > *:first-child {
  margin-left: 0;
}
.orbit-container .orbit-slides-container > * .orbit-caption {
  bottom: 0;
  position: absolute;
  background-color: rgba(51, 51, 51, 0.8);
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  width: 100%;
}
.orbit-container .orbit-slide-number {
  left: 10px;
  background: rgba(0, 0, 0, 0);
  color: #FFFFFF;
  font-size: 12px;
  position: absolute;
  top: 10px;
  z-index: 10;
}
.orbit-container .orbit-slide-number span {
  font-weight: 700;
  padding: 0.3125rem;
}
.orbit-container .orbit-timer {
  position: absolute;
  top: 12px;
  right: 10px;
  height: 6px;
  width: 100px;
  z-index: 10;
}
.orbit-container .orbit-timer .orbit-progress {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  width: 0;
  position: relative;
  right: 20px;
  top: 5px;
}
.orbit-container .orbit-timer > span {
  border: solid 4px #FFFFFF;
  border-bottom: none;
  border-top: none;
  display: none;
  height: 14px;
  position: absolute;
  top: 0;
  width: 11px;
  right: 0;
}
.orbit-container .orbit-timer.paused > span {
  top: 0;
  width: 11px;
  height: 14px;
  border: inset 8px;
  border-left-style: solid;
  border-color: transparent;
  border-left-color: #FFFFFF;
  right: -4px;
}
.orbit-container .orbit-timer.paused > span.dark {
  border-left-color: #333333;
}
.orbit-container:hover .orbit-timer > span {
  display: block;
}
.orbit-container .orbit-prev,
.orbit-container .orbit-next {
  background-color: transparent;
  color: white;
  height: 60px;
  line-height: 50px;
  margin-top: -25px;
  position: absolute;
  text-indent: -9999px !important;
  top: 45%;
  width: 36px;
  z-index: 10;
}
.orbit-container .orbit-prev:hover,
.orbit-container .orbit-next:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.orbit-container .orbit-prev > span,
.orbit-container .orbit-next > span {
  border: inset 10px;
  display: block;
  height: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 0;
}
.orbit-container .orbit-prev {
  left: 0;
}
.orbit-container .orbit-prev > span {
  border-right-style: solid;
  border-color: transparent;
  border-right-color: #FFFFFF;
}
.orbit-container .orbit-prev:hover > span {
  border-right-color: #FFFFFF;
}
.orbit-container .orbit-next {
  right: 0;
}
.orbit-container .orbit-next > span {
  border-color: transparent;
  border-left-style: solid;
  border-left-color: #FFFFFF;
  left: 50%;
  margin-left: -4px;
}
.orbit-container .orbit-next:hover > span {
  border-left-color: #FFFFFF;
}

.orbit-bullets-container {
  text-align: center;
}

.orbit-bullets {
  display: block;
  float: none;
  margin: 0 auto 30px auto;
  overflow: hidden;
  position: relative;
  text-align: center;
  top: 10px;
}
.orbit-bullets li {
  background: #CCCCCC;
  cursor: pointer;
  display: inline-block;
  float: none;
  height: 0.5625rem;
  margin-right: 6px;
  width: 0.5625rem;
  border-radius: 1000px;
}
.orbit-bullets li.active {
  background: #999999;
}
.orbit-bullets li:last-child {
  margin-right: 0;
}

.touch .orbit-container .orbit-prev,
.touch .orbit-container .orbit-next {
  display: none;
}
.touch .orbit-bullets {
  display: none;
}

@media only screen and (min-width:40.0625em) {
  .touch .orbit-container .orbit-prev,
  .touch .orbit-container .orbit-next {
    display: inherit;
  }
  .touch .orbit-bullets {
    display: block;
  }
}
@media only screen and (max-width: 40em) {
  .orbit-stack-on-small .orbit-slides-container {
    height: auto !important;
  }
  .orbit-stack-on-small .orbit-slides-container > * {
    margin: 0 !important;
    opacity: 1 !important;
    position: relative;
  }
  .orbit-stack-on-small .orbit-slide-number {
    display: none;
  }
  .orbit-timer {
    display: none;
  }
  .orbit-next, .orbit-prev {
    display: none;
  }
  .orbit-bullets {
    display: none;
  }
}
ul.pagination {
  display: block;
  margin-left: -0.3125rem;
  min-height: 1.5rem;
}
ul.pagination li {
  color: #222222;
  font-size: 0.875rem;
  height: 1.5rem;
  margin-left: 0.3125rem;
}
ul.pagination li a, ul.pagination li button {
  border-radius: 3px;
  transition: background-color 300ms ease-out;
  background: none;
  color: #999999;
  display: block;
  font-size: 1em;
  font-weight: normal;
  line-height: inherit;
  padding: 0.0625rem 0.625rem 0.0625rem;
}
ul.pagination li:hover a,
ul.pagination li a:focus, ul.pagination li:hover button,
ul.pagination li button:focus {
  background: #e6e6e6;
}
ul.pagination li.unavailable a, ul.pagination li.unavailable button {
  cursor: default;
  color: #999999;
  pointer-events: none;
}
ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus, ul.pagination li.unavailable:hover button, ul.pagination li.unavailable button:focus {
  background: transparent;
}
ul.pagination li.current a, ul.pagination li.current button {
  background: #1b1b1b;
  color: #FFFFFF;
  cursor: default;
  font-weight: bold;
}
ul.pagination li.current a:hover, ul.pagination li.current a:focus, ul.pagination li.current button:hover, ul.pagination li.current button:focus {
  background: #1b1b1b;
}
ul.pagination li {
  display: block;
  float: left;
}

/* Pagination centred wrapper */
.pagination-centered {
  text-align: center;
}
.pagination-centered ul.pagination li {
  display: inline-block;
  float: none;
}

/* Panels */
.panel {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #f2f2f2;
  color: #333333;
}
.panel > :first-child {
  margin-top: 0;
}
.panel > :last-child {
  margin-bottom: 0;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p, .panel li, .panel dl {
  color: #333333;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
  line-height: 1;
  margin-bottom: 0.625rem;
}
.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
  line-height: 1.4;
}
.panel.callout {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #f1f1f1;
  color: #333333;
}
.panel.callout > :first-child {
  margin-top: 0;
}
.panel.callout > :last-child {
  margin-bottom: 0;
}
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p, .panel.callout li, .panel.callout dl {
  color: #333333;
}
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
  line-height: 1;
  margin-bottom: 0.625rem;
}
.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
  line-height: 1.4;
}
.panel.callout a:not(.button) {
  color: #1b1b1b;
}
.panel.callout a:not(.button):hover, .panel.callout a:not(.button):focus {
  color: #171717;
}
.panel.radius {
  border-radius: 3px;
}

/* Pricing Tables */
.pricing-table {
  border: solid 1px #DDDDDD;
  margin-left: 0;
  margin-bottom: 1.25rem;
}
.pricing-table * {
  list-style: none;
  line-height: 1;
}
.pricing-table .title {
  background-color: #333333;
  color: #EEEEEE;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.9375rem 1.25rem;
  text-align: center;
}
.pricing-table .price {
  background-color: #F6F6F6;
  color: #333333;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-size: 2rem;
  font-weight: normal;
  padding: 0.9375rem 1.25rem;
  text-align: center;
}
.pricing-table .description {
  background-color: #FFFFFF;
  border-bottom: dotted 1px #DDDDDD;
  color: #777777;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.4;
  padding: 0.9375rem;
  text-align: center;
}
.pricing-table .bullet-item {
  background-color: #FFFFFF;
  border-bottom: dotted 1px #DDDDDD;
  color: #333333;
  font-size: 0.875rem;
  font-weight: normal;
  padding: 0.9375rem;
  text-align: center;
}
.pricing-table .cta-button {
  background-color: #FFFFFF;
  padding: 1.25rem 1.25rem 0;
  text-align: center;
}

/* Progress Bar */
.progress {
  background-color: #F6F6F6;
  border: 1px solid white;
  height: 1.5625rem;
  margin-bottom: 0.625rem;
  padding: 0.125rem;
}
.progress .meter {
  background: #1b1b1b;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress .meter.secondary {
  background: #F6F6F6;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress .meter.success {
  background: #85c521;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress .meter.alert {
  background: #c52121;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.secondary .meter {
  background: #F6F6F6;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.success .meter {
  background: #85c521;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.alert .meter {
  background: #c52121;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.radius {
  border-radius: 3px;
}
.progress.radius .meter {
  border-radius: 2px;
}
.progress.round {
  border-radius: 1000px;
}
.progress.round .meter {
  border-radius: 999px;
}

.range-slider {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  display: block;
  height: 1rem;
  width: 100%;
  background: #FAFAFA;
}
.range-slider.vertical-range {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  display: inline-block;
  height: 12.5rem;
  width: 1rem;
}
.range-slider.vertical-range .range-slider-handle {
  bottom: -10.5rem;
  margin-left: -0.5rem;
  margin-top: 0;
  position: absolute;
}
.range-slider.vertical-range .range-slider-active-segment {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border-top-left-radius: initial;
  bottom: 0;
  height: auto;
  width: 0.875rem;
}
.range-slider.radius {
  background: #FAFAFA;
  border-radius: 3px;
}
.range-slider.radius .range-slider-handle {
  background: #1b1b1b;
  border-radius: 3px;
}
.range-slider.radius .range-slider-handle:hover {
  background: #181818;
}
.range-slider.round {
  background: #FAFAFA;
  border-radius: 1000px;
}
.range-slider.round .range-slider-handle {
  background: #1b1b1b;
  border-radius: 1000px;
}
.range-slider.round .range-slider-handle:hover {
  background: #181818;
}
.range-slider.disabled, .range-slider[disabled] {
  background: #FAFAFA;
  cursor: not-allowed;
  opacity: 0.7;
}
.range-slider.disabled .range-slider-handle, .range-slider[disabled] .range-slider-handle {
  background: #1b1b1b;
  cursor: default;
  opacity: 0.7;
}
.range-slider.disabled .range-slider-handle:hover, .range-slider[disabled] .range-slider-handle:hover {
  background: #181818;
}

.range-slider-active-segment {
  background: #f4f4f4;
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
  display: inline-block;
  height: 0.875rem;
  position: absolute;
}

.range-slider-handle {
  border: 1px solid none;
  cursor: pointer;
  display: inline-block;
  height: 1.375rem;
  position: absolute;
  top: -0.3125rem;
  width: 2rem;
  z-index: 1;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #1b1b1b;
}
.range-slider-handle:hover {
  background: #181818;
}

.reveal-modal-bg {
  background: #000000;
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004;
  left: 0;
}

.reveal-modal {
  border-radius: 3px;
  display: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1005;
  left: 0;
  background-color: #FFFFFF;
  padding: 1.875rem;
  border: solid 1px #666666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 40em) {
  .reveal-modal {
    min-height: 100vh;
  }
}
.reveal-modal .column, .reveal-modal .columns {
  min-width: 0;
}
.reveal-modal > :first-child {
  margin-top: 0;
}
.reveal-modal > :last-child {
  margin-bottom: 0;
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal {
    left: 0;
    margin: 0 auto;
    max-width: 123.75rem;
    right: 0;
    width: 80%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal {
    top: 6.25rem;
  }
}
.reveal-modal.radius {
  box-shadow: none;
  border-radius: 3px;
}
.reveal-modal.round {
  box-shadow: none;
  border-radius: 1000px;
}
.reveal-modal.collapse {
  padding: 0;
  box-shadow: none;
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.tiny {
    left: 0;
    margin: 0 auto;
    max-width: 123.75rem;
    right: 0;
    width: 30%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.small {
    left: 0;
    margin: 0 auto;
    max-width: 123.75rem;
    right: 0;
    width: 40%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.medium {
    left: 0;
    margin: 0 auto;
    max-width: 123.75rem;
    right: 0;
    width: 60%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.large {
    left: 0;
    margin: 0 auto;
    max-width: 123.75rem;
    right: 0;
    width: 70%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.xlarge {
    left: 0;
    margin: 0 auto;
    max-width: 123.75rem;
    right: 0;
    width: 95%;
  }
}
.reveal-modal.full {
  height: 100vh;
  height: 100%;
  left: 0;
  margin-left: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  top: 0;
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.full {
    left: 0;
    margin: 0 auto;
    max-width: 123.75rem;
    right: 0;
    width: 100%;
  }
}
.reveal-modal.toback {
  z-index: 1003;
}
.reveal-modal .close-reveal-modal {
  color: #AAAAAA;
  cursor: pointer;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0.625rem;
  right: 1.375rem;
}

.side-nav {
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  padding: 0.875rem 0;
}
.side-nav li {
  font-size: 0.875rem;
  font-weight: normal;
  margin: 0 0 0.4375rem 0;
}
.side-nav li a:not(.button) {
  color: #1b1b1b;
  display: block;
  margin: 0;
  padding: 0.4375rem 0.875rem;
}
.side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
  background: hsla(0deg, 0%, 0%, 0.025);
  color: #5f5f5f;
}
.side-nav li a:not(.button):active {
  color: #5f5f5f;
}
.side-nav li.active > a:first-child:not(.button) {
  color: #5f5f5f;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-weight: normal;
}
.side-nav li.divider {
  border-top: 1px solid;
  height: 0;
  list-style: none;
  padding: 0;
  border-top-color: #e6e6e6;
}
.side-nav li.heading {
  color: #1b1b1b;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}

.split.button {
  position: relative;
  padding-right: 5.0625rem;
}
.split.button span {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: solid 1px;
}
.split.button span:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-style: inset;
  top: 50%;
  left: 50%;
}
.split.button span:active {
  background-color: rgba(0, 0, 0, 0.1);
}
.split.button span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button span {
  width: 3.09375rem;
}
.split.button span:after {
  border-top-style: solid;
  border-width: 0.375rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button span:after {
  border-color: #FFFFFF transparent transparent transparent;
}
.split.button.secondary span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button.secondary span:after {
  border-color: #FFFFFF transparent transparent transparent;
}
.split.button.alert span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button.success span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button.tiny {
  padding-right: 3.75rem;
}
.split.button.tiny span {
  width: 2.25rem;
}
.split.button.tiny span:after {
  border-top-style: solid;
  border-width: 0.375rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button.small {
  padding-right: 4.375rem;
}
.split.button.small span {
  width: 2.625rem;
}
.split.button.small span:after {
  border-top-style: solid;
  border-width: 0.4375rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button.large {
  padding-right: 5.5rem;
}
.split.button.large span {
  width: 3.4375rem;
}
.split.button.large span:after {
  border-top-style: solid;
  border-width: 0.3125rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button.expand {
  padding-left: 2rem;
}
.split.button.secondary span:after {
  border-color: #333333 transparent transparent transparent;
}
.split.button.radius span {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.split.button.round span {
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
.split.button.no-pip span:before {
  border-style: none;
}
.split.button.no-pip span:after {
  border-style: none;
}
.split.button.no-pip span > i {
  display: block;
  left: 50%;
  margin-left: -0.28889em;
  margin-top: -0.48889em;
  position: absolute;
  top: 50%;
}

.sub-nav {
  display: block;
  margin: -0.25rem 0 1.125rem;
  overflow: hidden;
  padding-top: 0.25rem;
  width: auto;
}
.sub-nav dt {
  text-transform: uppercase;
}
.sub-nav dt,
.sub-nav dd,
.sub-nav li {
  color: #999999;
  float: left;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  margin-left: 1rem;
  margin-bottom: 0;
}
.sub-nav dt a,
.sub-nav dd a,
.sub-nav li a {
  color: #999999;
  padding: 0.1875rem 1rem;
  text-decoration: none;
}
.sub-nav dt a:hover,
.sub-nav dd a:hover,
.sub-nav li a:hover {
  color: #737373;
}
.sub-nav dt.active a,
.sub-nav dd.active a,
.sub-nav li.active a {
  border-radius: 3px;
  background: #1b1b1b;
  color: #FFFFFF;
  cursor: default;
  font-weight: normal;
  padding: 0.1875rem 1rem;
}
.sub-nav dt.active a:hover,
.sub-nav dd.active a:hover,
.sub-nav li.active a:hover {
  background: #171717;
}

.switch {
  border: none;
  margin-bottom: 1.5rem;
  outline: 0;
  padding: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switch label {
  background: #DDDDDD;
  color: transparent;
  cursor: pointer;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  text-indent: 100%;
  width: 4rem;
  height: 2rem;
  transition: left 0.15s ease-out;
}
.switch input {
  left: 10px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 9px;
}
.switch input + label {
  margin-left: 0;
  margin-right: 0;
}
.switch label:after {
  background: #FFFFFF;
  content: "";
  display: block;
  height: 1.5rem;
  left: 0.25rem;
  position: absolute;
  top: 0.25rem;
  width: 1.5rem;
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: translate3d(0, 0, 0);
  transition: left 0.15s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.switch input:checked + label {
  background: #1b1b1b;
}
.switch input:checked + label:after {
  left: 2.25rem;
}
.switch label {
  height: 2rem;
  width: 4rem;
}
.switch label:after {
  height: 1.5rem;
  width: 1.5rem;
}
.switch input:checked + label:after {
  left: 2.25rem;
}
.switch label {
  color: transparent;
  background: #DDDDDD;
}
.switch label:after {
  background: #FFFFFF;
}
.switch input:checked + label {
  background: #1b1b1b;
}
.switch.large label {
  height: 2.5rem;
  width: 5rem;
}
.switch.large label:after {
  height: 2rem;
  width: 2rem;
}
.switch.large input:checked + label:after {
  left: 2.75rem;
}
.switch.small label {
  height: 1.75rem;
  width: 3.5rem;
}
.switch.small label:after {
  height: 1.25rem;
  width: 1.25rem;
}
.switch.small input:checked + label:after {
  left: 2rem;
}
.switch.tiny label {
  height: 1.5rem;
  width: 3rem;
}
.switch.tiny label:after {
  height: 1rem;
  width: 1rem;
}
.switch.tiny input:checked + label:after {
  left: 1.75rem;
}
.switch.radius label {
  border-radius: 4px;
}
.switch.radius label:after {
  border-radius: 3px;
}
.switch.round {
  border-radius: 1000px;
}
.switch.round label {
  border-radius: 2rem;
}
.switch.round label:after {
  border-radius: 2rem;
}

.tabs {
  margin-bottom: 0 !important;
  margin-left: 0;
}
.tabs:before, .tabs:after {
  content: " ";
  display: table;
}
.tabs:after {
  clear: both;
}
.tabs dd,
.tabs .tab-title {
  float: left;
  list-style: none;
  margin-bottom: 0 !important;
  position: relative;
}
.tabs dd > a,
.tabs .tab-title > a {
  display: block;
  background-color: #EFEFEF;
  color: #222222;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-size: 1rem;
  padding: 1rem 2rem;
}
.tabs dd > a:hover,
.tabs .tab-title > a:hover {
  background-color: #e1e1e1;
}
.tabs dd.active > a,
.tabs .tab-title.active > a {
  background-color: #FFFFFF;
  color: #222222;
}
.tabs.radius dd:first-child a,
.tabs.radius .tab:first-child a {
  -webkit-border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.tabs.radius dd:last-child a,
.tabs.radius .tab:last-child a {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.tabs.vertical dd,
.tabs.vertical .tab-title {
  position: inherit;
  float: none;
  display: block;
  top: auto;
}

.tabs-content {
  margin-bottom: 1.5rem;
  width: 100%;
}
.tabs-content:before, .tabs-content:after {
  content: " ";
  display: table;
}
.tabs-content:after {
  clear: both;
}
.tabs-content > .content {
  display: none;
  float: left;
  padding: 0.625rem 0;
  width: 100%;
}
.tabs-content > .content.active {
  display: block;
  float: none;
}
.tabs-content > .content.contained {
  padding: 0.625rem;
}
.tabs-content.vertical {
  display: block;
}
.tabs-content.vertical > .content {
  padding: 0 0.625rem;
}

@media only screen and (min-width:40.0625em) {
  .tabs.vertical {
    float: left;
    margin: 0;
    margin-bottom: 1.25rem !important;
    max-width: 20%;
    width: 20%;
  }
  .tabs-content.vertical {
    float: left;
    margin-left: -1px;
    max-width: 80%;
    padding-left: 1rem;
    width: 80%;
  }
}
.no-js .tabs-content > .content {
  display: block;
  float: none;
}

/* Image Thumbnails */
.th {
  border: solid 4px #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: all 200ms ease-out;
}
.th:hover, .th:focus {
  box-shadow: 0 0 6px 1px rgba(27, 27, 27, 0.5);
}
.th.radius {
  border-radius: 3px;
}

/* Tooltips */
.has-tip {
  border-bottom: dotted 1px #CCCCCC;
  color: #333333;
  cursor: help;
  font-weight: bold;
}
.has-tip:hover, .has-tip:focus {
  border-bottom: dotted 1px #0c0c0c;
  color: #1b1b1b;
}
.has-tip.tip-left, .has-tip.tip-right {
  float: none !important;
}

.tooltip {
  background: #333333;
  color: #FFFFFF;
  display: none;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.3;
  max-width: 300px;
  padding: 0.75rem;
  position: absolute;
  width: 100%;
  z-index: 1006;
  left: 50%;
}
.tooltip > .nub {
  border: solid 5px;
  border-color: transparent transparent #333333 transparent;
  display: block;
  height: 0;
  pointer-events: none;
  position: absolute;
  top: -10px;
  width: 0;
  left: 5px;
}
.tooltip > .nub.rtl {
  left: auto;
  right: 5px;
}
.tooltip.radius {
  border-radius: 3px;
}
.tooltip.round {
  border-radius: 1000px;
}
.tooltip.round > .nub {
  left: 2rem;
}
.tooltip.opened {
  border-bottom: dotted 1px #0c0c0c !important;
  color: #1b1b1b !important;
}

.tap-to-close {
  color: #777777;
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
}

@media only screen {
  .tooltip > .nub {
    border-color: transparent transparent #333333 transparent;
    top: -10px;
  }
  .tooltip.tip-top > .nub {
    border-color: #333333 transparent transparent transparent;
    bottom: -10px;
    top: auto;
  }
  .tooltip.tip-left, .tooltip.tip-right {
    float: none !important;
  }
  .tooltip.tip-left > .nub {
    border-color: transparent transparent transparent #333333;
    left: auto;
    margin-top: -5px;
    right: -10px;
    top: 50%;
  }
  .tooltip.tip-right > .nub {
    border-color: transparent #333333 transparent transparent;
    left: -10px;
    margin-top: -5px;
    right: auto;
    top: 50%;
  }
}
meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em;
}

/* Wrapped around .top-bar to contain to grid width */
.contain-to-grid {
  width: 100%;
  background: black;
}
.contain-to-grid .top-bar {
  margin-bottom: 0;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  left: 0;
}
.fixed.expanded:not(.top-bar) {
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
}
.fixed.expanded:not(.top-bar) .title-area {
  position: fixed;
  width: 100%;
  z-index: 99;
}
.fixed.expanded:not(.top-bar) .top-bar-section {
  margin-top: 2.8125rem;
  z-index: 98;
}

.top-bar {
  background: black;
  height: 2.8125rem;
  line-height: 2.8125rem;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.top-bar ul {
  list-style: none;
  margin-bottom: 0;
}
.top-bar .row {
  max-width: none;
}
.top-bar form,
.top-bar input,
.top-bar select {
  margin-bottom: 0;
}
.top-bar input,
.top-bar select {
  font-size: 0.75rem;
  height: 1.75rem;
  padding-bottom: 0.35rem;
  padding-top: 0.35rem;
}
.top-bar .button, .top-bar button {
  font-size: 0.75rem;
  margin-bottom: 0;
  padding-bottom: 0.4125rem;
  padding-top: 0.4125rem;
}
@media only screen and (max-width: 40em) {
  .top-bar .button, .top-bar button {
    position: relative;
    top: -1px;
  }
}
.top-bar .title-area {
  margin: 0;
  position: relative;
}
.top-bar .name {
  font-size: 16px;
  height: 2.8125rem;
  margin: 0;
}
.top-bar .name h1, .top-bar .name h2, .top-bar .name h3, .top-bar .name h4, .top-bar .name p, .top-bar .name span {
  font-size: 1.0625rem;
  line-height: 2.8125rem;
  margin: 0;
}
.top-bar .name h1 a, .top-bar .name h2 a, .top-bar .name h3 a, .top-bar .name h4 a, .top-bar .name p a, .top-bar .name span a {
  color: #4e4e4e;
  display: block;
  font-weight: normal;
  padding: 0 1.40625rem;
  width: 75%;
}
.top-bar .toggle-topbar {
  position: absolute;
  left: 0;
  top: 0;
}
.top-bar .toggle-topbar a {
  color: #4e4e4e;
  display: block;
  font-size: 0.8125rem;
  font-weight: bold;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 1.40625rem;
  position: relative;
  text-transform: uppercase;
}
.top-bar .toggle-topbar.menu-icon {
  margin-top: -16px;
  top: 50%;
}
.top-bar .toggle-topbar.menu-icon a {
  color: #FFFFFF;
  height: 34px;
  line-height: 33px;
  padding: 0 2.96875rem 0 1.40625rem;
  position: relative;
}
.top-bar .toggle-topbar.menu-icon a span::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  margin-top: -8px;
  top: 50%;
  right: 1.40625rem;
  box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  width: 16px;
}
.top-bar .toggle-topbar.menu-icon a span:hover:after {
  box-shadow: 0 0 0 1px "", 0 7px 0 1px "", 0 14px 0 1px "";
}
.top-bar.expanded {
  background: transparent;
  height: auto;
}
.top-bar.expanded .title-area {
  background: black;
}
.top-bar.expanded .toggle-topbar a {
  color: #686868;
}
.top-bar.expanded .toggle-topbar a span::after {
  box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .top-bar.expanded .top-bar-section .has-dropdown.moved > .dropdown,
  .top-bar.expanded .top-bar-section .dropdown {
    clip: initial;
  }
  .top-bar.expanded .top-bar-section .has-dropdown:not(.moved) > ul {
    padding: 0;
  }
}

.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  transition: left 300ms ease-out;
}
.top-bar-section ul {
  display: block;
  font-size: 16px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}
.top-bar-section .divider,
.top-bar-section [role=separator] {
  border-top: solid 1px black;
  clear: both;
  height: 1px;
  width: 100%;
}
.top-bar-section ul li {
  background: black;
}
.top-bar-section ul li > a {
  color: #4e4e4e;
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  padding-left: 1.40625rem;
  padding: 12px 0 12px 1.40625rem;
  text-transform: uppercase;
  width: 100%;
}
.top-bar-section ul li > a.button {
  font-size: 0.875rem;
  padding-left: 1.40625rem;
  padding-right: 1.40625rem;
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
}
.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  background-color: #161616;
}
.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.secondary {
  background-color: #F6F6F6;
  border-color: #c5c5c5;
  color: #333333;
}
.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  background-color: #c5c5c5;
}
.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  color: #333333;
}
.top-bar-section ul li > a.button.success {
  background-color: #85c521;
  border-color: #6a9e1a;
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  background-color: #6a9e1a;
}
.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.alert {
  background-color: #c52121;
  border-color: #9e1a1a;
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  background-color: #9e1a1a;
}
.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.warning {
  background-color: #ed832e;
  border-color: #d06712;
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  background-color: #d06712;
}
.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.info {
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  background-color: #161616;
}
.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button {
  font-size: 0.875rem;
  padding-left: 1.40625rem;
  padding-right: 1.40625rem;
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
}
.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  background-color: #161616;
}
.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.secondary {
  background-color: #F6F6F6;
  border-color: #c5c5c5;
  color: #333333;
}
.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  background-color: #c5c5c5;
}
.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  color: #333333;
}
.top-bar-section ul li > button.success {
  background-color: #85c521;
  border-color: #6a9e1a;
  color: #FFFFFF;
}
.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  background-color: #6a9e1a;
}
.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.alert {
  background-color: #c52121;
  border-color: #9e1a1a;
  color: #FFFFFF;
}
.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  background-color: #9e1a1a;
}
.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.warning {
  background-color: #ed832e;
  border-color: #d06712;
  color: #FFFFFF;
}
.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  background-color: #d06712;
}
.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.info {
  background-color: #1b1b1b;
  border-color: #161616;
  color: #FFFFFF;
}
.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  background-color: #161616;
}
.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  color: #FFFFFF;
}
.top-bar-section ul li:hover:not(.has-form) > a {
  background-color: black;
  color: #FFFFFF;
  background: black;
}
.top-bar-section ul li.active > a {
  background: #020202;
  color: #FFFFFF;
}
.top-bar-section ul li.active > a:hover {
  background: black;
  color: #FFFFFF;
}
.top-bar-section .has-form {
  padding: 1.40625rem;
}
.top-bar-section .has-dropdown {
  position: relative;
}
.top-bar-section .has-dropdown > a:after {
  border: inset 5px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  border-left-style: solid;
  margin-right: 1.40625rem;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  right: 0;
}
.top-bar-section .has-dropdown.moved {
  position: static;
}
.top-bar-section .has-dropdown.moved > .dropdown {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
  display: block;
  position: absolute !important;
  width: 100%;
}
.top-bar-section .has-dropdown.moved > a:after {
  display: none;
}
.top-bar-section .dropdown {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  display: block;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 99;
  left: 100%;
}
.top-bar-section .dropdown li {
  height: auto;
  width: 100%;
}
.top-bar-section .dropdown li a {
  font-weight: normal;
  padding: 8px 1.40625rem;
}
.top-bar-section .dropdown li a.parent-link {
  font-weight: bold;
}
.top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.125rem;
}
.top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
  color: #4e4e4e;
  display: block;
}
.top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
  background: none;
}
.top-bar-section .dropdown li.has-form {
  padding: 8px 1.40625rem;
}
.top-bar-section .dropdown li .button,
.top-bar-section .dropdown li button {
  top: auto;
}
.top-bar-section .dropdown label {
  color: #777777;
  font-size: 0.625rem;
  font-weight: bold;
  margin-bottom: 0;
  padding: 8px 1.40625rem 2px;
  text-transform: uppercase;
}

.js-generated {
  display: block;
}

@media only screen and (min-width:40.0625em) {
  .top-bar {
    background: black;
    overflow: visible;
  }
  .top-bar:before, .top-bar:after {
    content: " ";
    display: table;
  }
  .top-bar:after {
    clear: both;
  }
  .top-bar .toggle-topbar {
    display: none;
  }
  .top-bar .title-area {
    float: left;
  }
  .top-bar .name h1 a,
  .top-bar .name h2 a,
  .top-bar .name h3 a,
  .top-bar .name h4 a,
  .top-bar .name h5 a,
  .top-bar .name h6 a {
    width: auto;
  }
  .top-bar input,
  .top-bar select,
  .top-bar .button,
  .top-bar button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }
  .top-bar .has-form > .button,
  .top-bar .has-form > button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }
  .top-bar.expanded {
    background: black;
  }
  .contain-to-grid .top-bar {
    margin: 0 auto;
    margin-bottom: 0;
    max-width: 123.75rem;
  }
  .top-bar-section {
    transition: none 0 0;
    left: 0 !important;
  }
  .top-bar-section ul {
    display: inline;
    height: auto !important;
    width: auto;
  }
  .top-bar-section ul li {
    float: left;
  }
  .top-bar-section ul li .js-generated {
    display: none;
  }
  .top-bar-section li.hover > a:not(.button) {
    background-color: black;
    background: black;
    color: #FFFFFF;
  }
  .top-bar-section li:not(.has-form) a:not(.button) {
    background: black;
    line-height: 2.8125rem;
    padding: 0 1.40625rem;
  }
  .top-bar-section li:not(.has-form) a:not(.button):hover {
    background-color: black;
    background: black;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button) {
    background: #020202;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 0 1.40625rem;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button):hover {
    background: black;
    color: #FFFFFF;
  }
  .top-bar-section .has-dropdown > a {
    padding-right: 2.65625rem !important;
  }
  .top-bar-section .has-dropdown > a:after {
    border: inset 5px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
    border-top-style: solid;
    margin-top: -2.5px;
    top: 1.40625rem;
  }
  .top-bar-section .has-dropdown.moved {
    position: relative;
  }
  .top-bar-section .has-dropdown.moved > .dropdown {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    display: block;
  }
  .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
    border: none;
    content: "»";
    top: 0.1875rem;
    right: 5px;
  }
  .top-bar-section .dropdown {
    left: 0;
    background: transparent;
    min-width: 100%;
    top: auto;
  }
  .top-bar-section .dropdown li a {
    background: #020202;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 12px 1.40625rem;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
    background: #020202;
    color: #FFFFFF;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
    background-color: black;
    color: #FFFFFF;
    background: #222222;
  }
  .top-bar-section .dropdown li label {
    background: #333333;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li .dropdown {
    left: 100%;
    top: 0;
  }
  .top-bar-section > ul > .divider,
  .top-bar-section > ul > [role=separator] {
    border-right: solid 1px #212121;
    border-bottom: none;
    border-top: none;
    clear: none;
    height: 2.8125rem;
    width: 0;
  }
  .top-bar-section .has-form {
    background: black;
    height: 2.8125rem;
    padding: 0 1.40625rem;
  }
  .top-bar-section .right li .dropdown {
    left: auto;
    right: 0;
  }
  .top-bar-section .right li .dropdown li .dropdown {
    right: 100%;
  }
  .top-bar-section .left li .dropdown {
    right: auto;
    left: 0;
  }
  .top-bar-section .left li .dropdown li .dropdown {
    left: 100%;
  }
  .no-js .top-bar-section ul li:hover > a {
    background-color: black;
    background: black;
    color: #FFFFFF;
  }
  .no-js .top-bar-section ul li:active > a {
    background: #020202;
    color: #FFFFFF;
  }
  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
}
.text-left {
  text-align: left !important;
}

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

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

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

@media only screen and (max-width: 40em) {
  .small-only-text-left {
    text-align: left !important;
  }
  .small-only-text-right {
    text-align: right !important;
  }
  .small-only-text-center {
    text-align: center !important;
  }
  .small-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen {
  .small-text-left {
    text-align: left !important;
  }
  .small-text-right {
    text-align: right !important;
  }
  .small-text-center {
    text-align: center !important;
  }
  .small-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .medium-only-text-left {
    text-align: left !important;
  }
  .medium-only-text-right {
    text-align: right !important;
  }
  .medium-only-text-center {
    text-align: center !important;
  }
  .medium-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-text-left {
    text-align: left !important;
  }
  .medium-text-right {
    text-align: right !important;
  }
  .medium-text-center {
    text-align: center !important;
  }
  .medium-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:64.0625em) and (max-width:90em) {
  .large-only-text-left {
    text-align: left !important;
  }
  .large-only-text-right {
    text-align: right !important;
  }
  .large-only-text-center {
    text-align: center !important;
  }
  .large-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-text-left {
    text-align: left !important;
  }
  .large-text-right {
    text-align: right !important;
  }
  .large-text-center {
    text-align: center !important;
  }
  .large-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:90.0625em) and (max-width:120em) {
  .xlarge-only-text-left {
    text-align: left !important;
  }
  .xlarge-only-text-right {
    text-align: right !important;
  }
  .xlarge-only-text-center {
    text-align: center !important;
  }
  .xlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:90.0625em) {
  .xlarge-text-left {
    text-align: left !important;
  }
  .xlarge-text-right {
    text-align: right !important;
  }
  .xlarge-text-center {
    text-align: center !important;
  }
  .xlarge-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:120.0625em) and (max-width:6249999.9375em) {
  .xxlarge-only-text-left {
    text-align: left !important;
  }
  .xxlarge-only-text-right {
    text-align: right !important;
  }
  .xxlarge-only-text-center {
    text-align: center !important;
  }
  .xxlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:120.0625em) {
  .xxlarge-text-left {
    text-align: left !important;
  }
  .xxlarge-text-right {
    text-align: right !important;
  }
  .xxlarge-text-center {
    text-align: center !important;
  }
  .xxlarge-text-justify {
    text-align: justify !important;
  }
}
/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* Default Link Styles */
a {
  color: #1b1b1b;
  line-height: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  color: #171717;
}
a img {
  border: none;
}

/* Default paragraph styles */
p {
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}
p.lead {
  font-size: 1.21875rem;
  line-height: 1.6;
}
p aside {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.35;
}

/* Default header styles */
h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  margin-top: 0.2rem;
  text-rendering: optimizeLegibility;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: #7a7a7a;
  font-size: 75%;
  line-height: 0;
}

h1 {
  font-size: 3.125rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.9375rem;
}

h4 {
  font-size: 1.6875rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1rem;
}

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

hr {
  border: solid #DDDDDD;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  margin: 1.25rem 0 1.1875rem;
}

/* Helpful Typography Defaults */
em,
i {
  font-style: italic;
  line-height: inherit;
}

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

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

code {
  background-color: #fcfcfc;
  border-color: #e3e3e3;
  border-style: solid;
  border-width: 1px;
  color: #333333;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

/* Lists */
ul,
ol,
dl {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  list-style-position: outside;
  margin-bottom: 1.25rem;
}

ul {
  margin-left: 1.1rem;
}

/* Unordered Lists */
ul li ul,
ul li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
ul.square li ul, ul.circle li ul, ul.disc li ul {
  list-style: inherit;
}
ul.square {
  list-style-type: square;
  margin-left: 1.1rem;
}
ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem;
}
ul.disc {
  list-style-type: disc;
  margin-left: 1.1rem;
}

/* Ordered Lists */
ol {
  margin-left: 1.4rem;
}
ol li ul,
ol li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

.no-bullet, .voucher-activation__header .voucher-activation__steps__list {
  list-style-type: none;
  margin-left: 0;
}
.no-bullet li ul, .voucher-activation__header .voucher-activation__steps__list li ul,
.no-bullet li ol,
.voucher-activation__header .voucher-activation__steps__list li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
  list-style: none;
}

/* Definition Lists */
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}
dl dd {
  margin-bottom: 0.75rem;
}

/* Abbreviations */
abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #222;
  cursor: help;
}

abbr {
  text-transform: none;
}
abbr[title] {
  border-bottom: 1px dotted #DDDDDD;
}

/* Blockquotes */
blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #DDDDDD;
}
blockquote cite {
  display: block;
  font-size: 0.8125rem;
  color: #626262;
}
blockquote cite:before {
  content: "— ";
}
blockquote cite a,
blockquote cite a:visited {
  color: #626262;
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #7a7a7a;
}

/* Microformats */
.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #DDDDDD;
  padding: 0.625rem 0.75rem;
}
.vcard li {
  margin: 0;
  display: block;
}
.vcard .fn {
  font-weight: bold;
  font-size: 0.9375rem;
}

.vevent .summary {
  font-weight: bold;
}
.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0 0.0625rem;
}

@media only screen and (min-width:40.0625em) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 3.125rem;
  }
  h3 {
    font-size: 2.25rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1rem;
  }
}
/*
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
@media print {
  * {
    background: transparent !important;
    color: #000000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.34in;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.off-canvas-wrap {
  -webkit-backface-visibility: hidden;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.off-canvas-wrap.move-right, .off-canvas-wrap.move-left, .off-canvas-wrap.move-bottom, .off-canvas-wrap.move-top {
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
}

.inner-wrap {
  position: relative;
  width: 100%;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
}
.inner-wrap:before, .inner-wrap:after {
  content: " ";
  display: table;
}
.inner-wrap:after {
  clear: both;
}

.tab-bar {
  -webkit-backface-visibility: hidden;
  background: #333333;
  color: #FFFFFF;
  height: 2.8125rem;
  line-height: 2.8125rem;
  position: relative;
}
.tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 2.8125rem;
  margin: 0;
}
.tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 {
  font-size: 1.5rem;
}

.left-small {
  height: 2.8125rem;
  position: absolute;
  top: 0;
  width: 2.8125rem;
  border-right: solid 1px #1a1a1a;
  left: 0;
}

.right-small {
  height: 2.8125rem;
  position: absolute;
  top: 0;
  width: 2.8125rem;
  border-left: solid 1px #1a1a1a;
  right: 0;
}

.tab-bar-section {
  height: 2.8125rem;
  padding: 0 0.625rem;
  position: absolute;
  text-align: center;
  top: 0;
}
.tab-bar-section.left {
  text-align: left;
}
.tab-bar-section.right {
  text-align: right;
}
.tab-bar-section.left {
  left: 0;
  right: 2.8125rem;
}
.tab-bar-section.right {
  left: 2.8125rem;
  right: 0;
}
.tab-bar-section.middle {
  left: 2.8125rem;
  right: 2.8125rem;
}

.tab-bar .menu-icon {
  color: #FFFFFF;
  display: block;
  height: 2.8125rem;
  padding: 0;
  position: relative;
  text-indent: 2.1875rem;
  transform: translate3d(0, 0, 0);
  width: 2.8125rem;
}
.tab-bar .menu-icon span::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  left: 0.90625rem;
  box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  width: 1rem;
}
.tab-bar .menu-icon span:hover:after {
  box-shadow: 0 0 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3;
}

.left-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  top: 0;
}
.left-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

.right-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  top: 0;
}
.right-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

.top-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate(0, -100%);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  top: 0;
  width: 100%;
  height: 18.75rem;
}
.top-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

.bottom-off-canvas-menu {
  -webkit-backface-visibility: hidden;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  transition: transform 500ms ease 0s;
  width: 15.625rem;
  z-index: 1001;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate(0, 100%);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  width: 100%;
  height: 18.75rem;
}
.bottom-off-canvas-menu * {
  -webkit-backface-visibility: hidden;
}

ul.off-canvas-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.off-canvas-list li label {
  background: #123456;
  border-bottom: none;
  border-top: 1px solid #1c5085;
  color: #999999;
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
  margin: 0;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
}
ul.off-canvas-list li a {
  border-bottom: 1px solid #262626;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 0.6666666667rem;
  transition: background 300ms ease;
}
ul.off-canvas-list li a:hover {
  background: #242424;
}
ul.off-canvas-list li a:active {
  background: #242424;
}

.move-right > .inner-wrap {
  -webkit-transform: translate3d(15.625rem, 0, 0);
  -moz-transform: translate3d(15.625rem, 0, 0);
  -ms-transform: translate(15.625rem, 0);
  -o-transform: translate3d(15.625rem, 0, 0);
  transform: translate3d(15.625rem, 0, 0);
}
.move-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .move-right .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.move-left > .inner-wrap {
  -webkit-transform: translate3d(-15.625rem, 0, 0);
  -moz-transform: translate3d(-15.625rem, 0, 0);
  -ms-transform: translate(-15.625rem, 0);
  -o-transform: translate3d(-15.625rem, 0, 0);
  transform: translate3d(-15.625rem, 0, 0);
}
.move-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .move-left .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.move-top > .inner-wrap {
  -webkit-transform: translate3d(0, -18.75rem, 0);
  -moz-transform: translate3d(0, -18.75rem, 0);
  -ms-transform: translate(0, -18.75rem);
  -o-transform: translate3d(0, -18.75rem, 0);
  transform: translate3d(0, -18.75rem, 0);
}
.move-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .move-top .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.move-bottom > .inner-wrap {
  -webkit-transform: translate3d(0, 18.75rem, 0);
  -moz-transform: translate3d(0, 18.75rem, 0);
  -ms-transform: translate(0, 18.75rem);
  -o-transform: translate3d(0, 18.75rem, 0);
  transform: translate3d(0, 18.75rem, 0);
}
.move-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .move-bottom .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu,
.offcanvas-overlap .top-off-canvas-menu, .offcanvas-overlap .bottom-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003;
}
.offcanvas-overlap .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .offcanvas-overlap .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-left .right-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003;
}
.offcanvas-overlap-left .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .offcanvas-overlap-left .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-right .left-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003;
}
.offcanvas-overlap-right .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .offcanvas-overlap-right .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-top .bottom-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003;
}
.offcanvas-overlap-top .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .offcanvas-overlap-top .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.offcanvas-overlap-bottom .top-off-canvas-menu {
  -ms-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  transform: none;
  z-index: 1003;
}
.offcanvas-overlap-bottom .exit-off-canvas {
  -webkit-backface-visibility: hidden;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.5), 2px 0 4px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 300ms ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1002;
}
@media only screen and (min-width:40.0625em) {
  .offcanvas-overlap-bottom .exit-off-canvas:hover {
    background: rgba(255, 255, 255, 0.05);
  }
}

.no-csstransforms .left-off-canvas-menu {
  left: -15.625rem;
}
.no-csstransforms .right-off-canvas-menu {
  right: -15.625rem;
}
.no-csstransforms .top-off-canvas-menu {
  top: -18.75rem;
}
.no-csstransforms .bottom-off-canvas-menu {
  bottom: -18.75rem;
}
.no-csstransforms .move-left > .inner-wrap {
  right: 15.625rem;
}
.no-csstransforms .move-right > .inner-wrap {
  left: 15.625rem;
}
.no-csstransforms .move-top > .inner-wrap {
  right: 18.75rem;
}
.no-csstransforms .move-bottom > .inner-wrap {
  left: 18.75rem;
}

.left-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
}
.left-submenu * {
  -webkit-backface-visibility: hidden;
}
.left-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #1c5085;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}
.left-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #1c5085;
}
.left-submenu .back > a:before {
  content: "«";
  margin-right: 0.5rem;
  display: inline;
}
.left-submenu.move-right, .left-submenu.offcanvas-overlap-right, .left-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate(0%, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.right-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
}
.right-submenu * {
  -webkit-backface-visibility: hidden;
}
.right-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #1c5085;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}
.right-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #1c5085;
}
.right-submenu .back > a:after {
  content: "»";
  margin-left: 0.5rem;
  display: inline;
}
.right-submenu.move-left, .right-submenu.offcanvas-overlap-left, .right-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate(0%, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.top-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate(0, -100%);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  top: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
}
.top-submenu * {
  -webkit-backface-visibility: hidden;
}
.top-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #1c5085;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}
.top-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #1c5085;
}
.top-submenu.move-bottom, .top-submenu.offcanvas-overlap-bottom, .top-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0, 0%, 0);
  -moz-transform: translate3d(0, 0%, 0);
  -ms-transform: translate(0, 0%);
  -o-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.bottom-submenu {
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #333333;
  bottom: 0;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  width: 15.625rem;
  height: 18.75rem;
  z-index: 1002;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate(0, 100%);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  bottom: 0;
  width: 100%;
  -webkit-transition: -webkit-transform 500ms ease;
  -moz-transition: -moz-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  -o-transition: -o-transform 500ms ease;
  transition: transform 500ms ease;
}
.bottom-submenu * {
  -webkit-backface-visibility: hidden;
}
.bottom-submenu .back > a {
  background: #444;
  border-bottom: none;
  border-top: 1px solid #1c5085;
  color: #999999;
  font-weight: bold;
  padding: 0.3rem 0.9375rem;
  text-transform: uppercase;
  margin: 0;
}
.bottom-submenu .back > a:hover {
  background: #303030;
  border-bottom: none;
  border-top: 1px solid #1c5085;
}
.bottom-submenu.move-top, .bottom-submenu.offcanvas-overlap-top, .bottom-submenu.offcanvas-overlap {
  -webkit-transform: translate3d(0, 0%, 0);
  -moz-transform: translate3d(0, 0%, 0);
  -ms-transform: translate(0, 0%);
  -o-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

.left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
  content: "»";
  margin-left: 0.5rem;
  display: inline;
}

.right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
  content: "«";
  margin-right: 0.5rem;
  display: inline;
}

/* small displays */
@media only screen {
  .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* medium displays */
@media only screen and (min-width:40.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* large displays */
@media only screen and (min-width:64.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xlarge displays */
@media only screen and (min-width:90.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xxlarge displays */
@media only screen and (min-width:120.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important;
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
  display: table !important;
}

thead.hide-for-landscape, thead.show-for-portrait {
  display: table-header-group !important;
}

tbody.hide-for-landscape, tbody.show-for-portrait {
  display: table-row-group !important;
}

tr.hide-for-landscape, tr.show-for-portrait {
  display: table-row !important;
}

td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important;
}

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important;
  }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-landscape, table.hide-for-portrait {
    display: table !important;
  }
  thead.show-for-landscape, thead.hide-for-portrait {
    display: table-header-group !important;
  }
  tbody.show-for-landscape, tbody.hide-for-portrait {
    display: table-row-group !important;
  }
  tr.show-for-landscape, tr.hide-for-portrait {
    display: table-row !important;
  }
  td.show-for-landscape, td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important;
  }
}
@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important;
  }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-portrait, table.hide-for-landscape {
    display: table !important;
  }
  thead.show-for-portrait, thead.hide-for-landscape {
    display: table-header-group !important;
  }
  tbody.show-for-portrait, tbody.hide-for-landscape {
    display: table-row-group !important;
  }
  tr.show-for-portrait, tr.hide-for-landscape {
    display: table-row !important;
  }
  td.show-for-portrait, td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important;
  }
}
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important;
}

.hide-for-touch {
  display: inherit !important;
}

.touch .show-for-touch {
  display: inherit !important;
}

.touch .hide-for-touch {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-touch {
  display: table !important;
}

.touch table.show-for-touch {
  display: table !important;
}

thead.hide-for-touch {
  display: table-header-group !important;
}

.touch thead.show-for-touch {
  display: table-header-group !important;
}

tbody.hide-for-touch {
  display: table-row-group !important;
}

.touch tbody.show-for-touch {
  display: table-row-group !important;
}

tr.hide-for-touch {
  display: table-row !important;
}

.touch tr.show-for-touch {
  display: table-row !important;
}

td.hide-for-touch {
  display: table-cell !important;
}

.touch td.show-for-touch {
  display: table-cell !important;
}

th.hide-for-touch {
  display: table-cell !important;
}

.touch th.show-for-touch {
  display: table-cell !important;
}

/* Screen reader-specific classes */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}
.show-on-focus:focus, .show-on-focus:active {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/* Print visibility */
.print-only,
.show-for-print {
  display: none !important;
}

@media print {
  .print-only,
  .show-for-print {
    display: block !important;
  }
  .hide-on-print,
  .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;
  }
}
:root {
  /* Here goes your variables */
  /* font-family */
  --font-family-primary: Inter, Arial, Helvetica, sans-serif;
  --font-family-secondary: Roboto, Arial, Helvetica, sans-serif;
  /* basic font-size */
  --font-size-xs: 0.875rem;
  --font-size-sm: 0.9375rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.5rem;
  /* spacing */
  --spacing-xs: 0.2rem;
  --spacing-sm: 0.4rem;
  --spacing-base: 0.8rem;
  --spacing-md: 1.2rem;
  --spacing-lg: 1.6rem;
  --spacing-xl: 2.4rem;
  --spacing-2xl: 3.2rem;
  --spacing-3xl: 6.4rem;
  /* font-weight */
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-medium: 500;
  --font-weight-regular: 400;
  --font-weight-light: 300;
  /* letter-spacing */
  --letter-spacing-default: 0;
  --letter-spacing-increased: 150%;
  --letter-spacing-decreased: -5%;
  /* line-height */
  --line-height-sm: 1.25;
  --line-height-md: 1;
  --line-height-lg: 1.5;
  /* radius */
  --radius-xs: 0.25rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-full: 624.9375rem;
  /* opacity */
  --opacity-opacity-0: 0;
  --opacity-opacity-25: 0.25;
  --opacity-opacity-50: 0.5;
  --opacity-opacity-75: 0.75;
  --opacity-opacity-100: 1;
  /*  shadow */
  --shadow-level-1: 0 0.0625rem 0.0625rem 0 rgba(0, 0, 0, 0.14), 0 0.125rem 0.0625rem -0.0625rem rgba(0, 0, 0, 0.12), 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.20);
  --shadow-level-2: 0 0.1875rem 0.25rem 0 rgba(0, 0, 0, 0.14), 0 0.1875rem 0.1875rem -0.125rem rgba(0, 0, 0, 0.12), 0 0.0625rem 0.5rem 0 rgba(0, 0, 0, 0.20);
  --shadow-level-3: 0 0.375rem 0.625rem 0 rgba(0, 0, 0, 0.14), 0 0.0625rem 1.125rem 0 rgba(0, 0, 0, 0.12), 0 0.1875rem 0.3125rem -0.0625rem rgba(0, 0, 0, 0.20);
  /* Basic Color Schema */
  /*
  * Darkest: 900 lightness
  * Darker 700 lightness
  * Dark: 600 lightness
  * DEFAULT: 500 lightness
  * Light: 400 lightness
  * Lighter: 200 lightness
  * Lightest: 100 lightness
  *
  *
  */
  --color-secondary-lightest: #e8e8e8;
  --color-secondary-lighter: #c6c6c6;
  --color-secondary-light: #5f5f5f;
  --color-secondary: #1b1b1b;
  --color-secondary-dark: #181818;
  --color-secondary-darker: #141414;
  --color-secondary-darkest: #0d0d0d;
  --color-primary-lightest: #e6f6f6;
  --color-primary-lighter: #bfe9e9;
  --color-primary-light: #4dc2c2;
  --color-primary: #00a8a8;
  --color-primary-dark: #009797;
  --color-primary-darker: #007e7e;
  --color-primary-darkest: #006565;
  --color-neutral-lightest: #f2f2f2;
  --color-neutral-lighter: #d7d3d3;
  --color-neutral-light: #a6a6a6;
  --color-neutral: #808080;
  --color-neutral-dark: #737373;
  --color-neutral-darker: #606060;
  --color-neutral-darkest: #3f3f3f;
  --color-danger-lightest: #fcece9;
  --color-danger-lighter: #f7d0c8;
  --color-danger-light: #e97b65;
  --color-danger: #e04323;
  --color-danger-dark: #ca3c20;
  --color-danger-darker: #a8321a;
  --color-danger-darkest: #6e2111;
  --color-success-lightest: #f1f8e8;
  --color-success-lighter: #dcedc7;
  --color-success-light: #9ccd61;
  --color-success: #72b71d;
  --color-success-dark: #67a51a;
  --color-success-darker: #568916;
  --color-success-darkest: #385a0e;
  --color-info-lightest: #e6f0fa;
  --color-info-lighter: #bfd9f2;
  --color-info-light: #4d94db;
  --color-info: #0066cc;
  --color-info-dark: #005cb8;
  --color-info-darker: #004d99;
  --color-info-darkest: #003264;
  --color-warning-lightest: #fcf0e8;
  --color-warning-lighter: #f7dac5;
  --color-warning-light: #e8975b;
  --color-warning: #de6a15;
  --color-warning-dark: #c85f13;
  --color-warning-darker: #a75010;
  --color-warning-darkest: #6d340a;
  /* application colors */
  --color-secondary-surface: var(--color-secondary);
  --color-secondary-surface--active: var(--color-secondary-dark);
  --color-secondary-border: var(--color-secondary-light);
  --color-secondary-text: var(--color-secondary);
  --color-secondary-text--active: var(--color-secondary-dark);
  --color-secondary-text--active: var(--color-secondary-darker);
  --color-secondary-text--on-element: var(--color-secondary-lightest);
  --color-secondary-text--on-surface: var(--color-secondary-lighter);
  --color-secondary-text--on-surface-active: var(--color-secondary-lightest);
  --color-secondary-element: var(--color-secondary);
  --color-secondary-element--hover: var(--color-secondary-dark);
  --color-secondary-element--active: var(--color-secondary-dark);
  --color-primary-surface: var(--color-primary-lightest);
  --color-primary-surface--active: var(--color-primary-lighter);
  --color-primary-border: var(--color-primary);
  --color-primary-text: var(--color-primary);
  --color-primary-text--hover: var(--color-primary-dark);
  --color-primary-text--active: var(--color-primary-darker);
  --color-primary-text--on-element: var(--color-primary-lightest);
  --color-primary-text--on-surface: var(--color-primary-darker);
  --color-primary-text--on-surface-active: var(--color-primary-darkest);
  --color-primary-element: var(--color-primary);
  --color-primary-element--hover: var(--color-primary-dark);
  --color-primary-element--active: var(--color-primary-dark);
  --color-neutral-surface: var(--color-neutral-lightest);
  --color-neutral-surface--active: var(--color-neutral-lighter);
  --color-neutral-border: var(--color-neutral-lighter);
  --color-neutral-text: var(--color-neutral-dark);
  --color-neutral-text--hover: var(--color-neutral-dark);
  --color-neutral-text--active: var(--color-neutral-darkest);
  --color-neutral-text--on-element: var(--color-neutral-darker);
  --color-neutral-text--on-surface: var(--color-neutral-darker);
  --color-neutral-text--on-surface-active: var(--color-neutral-darkest);
  --color-neutral-element: var(--color-neutral-lighter);
  --color-neutral-element--hover: var(--color-neutral-light);
  --color-neutral-element--active: var(--color-neutral-light);
  --color-danger-surface: var(--color-danger-lightest);
  --color-danger-surface--active: var(--color-danger-lighter);
  --color-danger-border: var(--color-danger);
  --color-danger-text: var(--color-danger);
  --color-danger-text--hover: var(--color-danger-dark);
  --color-danger-text--active: var(--color-danger-darker);
  --color-danger-text--on-element: var(--color-danger-lightest);
  --color-danger-text--on-surface: var(--color-danger-darker);
  --color-danger-text--on-surface-active: var(--color-danger-darkest);
  --color-danger-element: var(--color-danger);
  --color-danger-element--hover: var(--color-danger-dark);
  --color-danger-element--active: var(--color-danger-dark);
  --color-success-surface: var(--color-success-lightest);
  --color-success-surface--active: var(--color-success-lighter);
  --color-success-border: var(--color-success);
  --color-success-text: var(--color-success);
  --color-success-text--hover: var(--color-success-dark);
  --color-success-text--active: var(--color-success-darker);
  --color-success-text--on-element: var(--color-success-lightest);
  --color-success-text--on-surface: var(--color-success-darker);
  --color-success-text--on-surface-active: var(--color-success-darkest);
  --color-success-element: var(--color-success);
  --color-success-element--hover: var(--color-success-dark);
  --color-success-element--active: var(--color-success-dark);
  --color-info-surface: var(--color-info-lightest);
  --color-info-surface--active: var(--color-info-lighter);
  --color-info-border: var(--color-info);
  --color-info-text: var(--color-info);
  --color-info-text--hover: var(--color-info-dark);
  --color-info-text--active: var(--color-info-darker);
  --color-info-text--on-element: var(--color-info-lightest);
  --color-info-text--on-surface: var(--color-info-darker);
  --color-info-text--on-surface-active: var(--color-info-darkest);
  --color-info-element: var(--color-info);
  --color-info-element--hover: var(--color-info-dark);
  --color-info-element--active: var(--color-info-dark);
  --color-warning-surface: var(--color-warning-lightest);
  --color-warning-surface--active: var(--color-warning-lighter);
  --color-warning-border: var(--color-warning);
  --color-warning-text: var(--color-warning);
  --color-warning-text--hover: var(--color-warning-dark);
  --color-warning-text--active: var(--color-warning-darker);
  --color-warning-text--on-element: var(--color-warning-lightest);
  --color-warning-text--on-surface: var(--color-warning-darker);
  --color-warning-text--on-surface-active: var(--color-warning-darkest);
  --color-warning-element: var(--color-warning);
  --color-warning-element--hover: var(--color-warning-dark);
  --color-warning-element--active: var(--color-warning-dark);
}
@media only screen and (min-width: 1200px) {
  :root {
    /* basic font-size */
    --font-size-sm: 0.9375rem;
    --font-size-base: 1rem;
    --font-size-md: 1.5rem;
    --font-size-lg: 2rem;
    --font-size-xl: 3rem;
    --font-size-2xl: 4rem;
    /* spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-base: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    /* basic font-size */
    --font-size-sm: 0.9375rem;
    --font-size-base: 1rem;
    --font-size-md: 1.5rem;
    --font-size-lg: 1.75rem;
    --font-size-xl: 2.5rem;
    --font-size-2xl: 3.25rem;
  }
}

.larger-font-size {
  font-size: 18px !important;
}
@media screen and (max-width: 1024px) {
  .larger-font-size {
    font-size: 19px !important;
  }
}

@font-face {
  font-family: "Miso-Regular";
  src: url("/static/fonts/miso/miso-regular-webfont.eot");
  src: url("/static/fonts/miso/miso-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/static/fonts/miso/miso-regular-webfont.woff") format("woff"), url("/static/fonts/miso/miso-regular-webfont.ttf") format("truetype"), url("/static/fonts/miso/miso-regular-webfont.svg#MisoRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Miso-Light";
  src: url("/static/fonts/miso/miso-light-webfont.eot");
  src: url("/static/fonts/miso/miso-light-webfont.eot?#iefix") format("embedded-opentype"), url("/static/fonts/miso/miso-light-webfont.woff") format("woff"), url("/static/fonts/miso/miso-light-webfont.ttf") format("truetype"), url("/static/fonts/miso/miso-light-webfont.svg#MisoRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Miso-Bold";
  src: url("/static/fonts/miso/miso-bold-webfont.eot");
  src: url("/static/fonts/miso/miso-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/static/fonts/miso/miso-bold-webfont.woff") format("woff"), url("/static/fonts/miso/miso-bold-webfont.ttf") format("truetype"), url("/static/fonts/miso/miso-bold-webfont.svg#MisoRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.miso-regular {
  font-family: "Miso-Regular", Arial, sans-serif;
}

.miso-light {
  font-family: "Miso-Light", Arial, sans-serif;
}

.miso-bold {
  font-family: "Miso-Bold", Arial, sans-serif;
}

@font-face {
  font-family: "Proxima-Nova-Regular";
  src: url("/static/fonts/proxima-nova/proxima-nova-regular-webfont.eot");
  src: url("/static/fonts/proxima-nova/proxima-nova-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/static/fonts/proxima-nova/proxima-nova-regular-webfont.woff") format("woff"), url("/static/fonts/proxima-nova/proxima-nova-regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima-Nova-Light";
  src: url("/static/fonts/proxima-nova/proxima-nova-light-webfont.eot");
  src: url("/static/fonts/proxima-nova/proxima-nova-light-webfont.eot?#iefix") format("embedded-opentype"), url("/static/fonts/proxima-nova/proxima-nova-light-webfont.woff") format("woff"), url("/static/fonts/proxima-nova/proxima-nova-light-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima-Nova-Bold";
  src: url("/static/fonts/proxima-nova/proxima-nova-bold-webfont.eot");
  src: url("/static/fonts/proxima-nova/proxima-nova-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/static/fonts/proxima-nova/proxima-nova-bold-webfont.woff") format("woff"), url("/static/fonts/proxima-nova/proxima-nova-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.proxima-nova-regular {
  font-family: "Proxima-Nova-Regular", Arial, sans-serif;
}

.proxima-nova-light {
  font-family: "Proxima-Nova-Light", Arial, sans-serif;
}

.proxima-nova-bold {
  font-family: "Proxima-Nova-Bold", Arial, sans-serif;
}

@font-face {
  font-family: "Fira Sans";
  src: url("/static/fonts/firasans/FiraSans-Regular.eot");
  src: url("/static/fonts/firasans/FiraSans-Regular.eot?#iefix") format("embedded-opentype"), url("/static/fonts/firasans/FiraSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.firasans-regular {
  font-family: "Fira Sans", Arial, sans-serif;
}

@font-face {
  font-family: "OptimaNovaLTProMedium";
  font-weight: normal;
  src: url("/static/fonts/optima/OptimaNovaLTProMedium.otf") format("opentype");
}
.optima-nova {
  font-family: "OptimaNovaLTProMedium", Arial, sans-serif;
}

@font-face {
  font-family: "Futura";
  src: url("/static/fonts/futura/futura-medium-bt.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.futura {
  font-family: "Futura", serif;
}

@font-face {
  font-family: "EurostileLTStd";
  font-weight: normal;
  src: url("/static/fonts/eurostile/EurostileLTStd.otf") format("opentype");
}
@font-face {
  font-family: "EurostileLTStd-Bold";
  font-weight: bold;
  src: url("/static/fonts/eurostile/EurostileLTStd-Demi.otf") format("opentype");
}
.eurostile-regular {
  font-family: "EurostileLTStd", Arial, sans-serif;
}

.eurostile-bold {
  font-family: "EurostileLTStd-Bold", Arial, sans-serif;
}

@font-face {
  font-family: "Antic";
  src: url("/static/fonts/antic/Antic-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.antic-regular {
  font-family: "Antic", sans-serif;
}

@font-face {
  font-family: "Antic Slab";
  src: url("/static/fonts/antic_slab/AnticSlab-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.antic-slab {
  font-family: "Antic Slab", serif;
}

@font-face {
  font-family: "PT Sans";
  src: url("/static/fonts/pt_sans/PTSans-Bold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.pt-sans {
  font-family: "PT Sans", sans-serif;
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/static/fonts/open_sans/open-sans-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("/static/fonts/open_sans/open-sans-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("/static/fonts/open_sans/open-sans-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url("/static/fonts/open_sans/open-sans-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/static/fonts/open_sans/open-sans-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url("/static/fonts/open_sans/open-sans-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.open-sans {
  font-family: "Open Sans", sans-serif;
}

@font-face {
  font-family: "Work Sans";
  src: url("/static/fonts/work_sans/WorkSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
.work-sans {
  font-family: "Work Sans", sans-serif;
}

/* montserrat-regular - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-regular.eot?#iefix") format("embedded-opentype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-regular.woff2") format("woff2"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-regular.woff") format("woff"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-regular.ttf") format("truetype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-regular.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-500 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-500.eot?#iefix") format("embedded-opentype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-500.woff2") format("woff2"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-500.woff") format("woff"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-500.ttf") format("truetype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-500.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-600 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-600.eot?#iefix") format("embedded-opentype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-600.woff2") format("woff2"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-600.woff") format("woff"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-600.ttf") format("truetype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-600.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
/* montserrat-italic - latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-italic.eot?#iefix") format("embedded-opentype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-italic.woff2") format("woff2"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-italic.woff") format("woff"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-italic.ttf") format("truetype"), url("/static/fonts/montserrat-v25-latin/montserrat-v25-latin-italic.svg#Montserrat") format("svg");
  /* Legacy iOS */
}
.montserrat-regular {
  font-family: "Montserrat", Arial, sans-serif;
}

/* Inter Default Font */
/* inter-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("/static/fonts/inter/inter-300.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/inter/inter-300.eot?#iefix") format("embedded-opentype"), url("/static/fonts/inter/inter-300.woff2") format("woff2"), url("/static/fonts/inter/inter-300.woff") format("woff"), url("/static/fonts/inter/inter-300.ttf") format("truetype"), url("/static/fonts/inter/inter-300.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/static/fonts/inter/inter-regular.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/inter/inter-regular.eot?#iefix") format("embedded-opentype"), url("/static/fonts/inter/inter-regular.woff2") format("woff2"), url("/static/fonts/inter/inter-regular.woff") format("woff"), url("/static/fonts/inter/inter-regular.ttf") format("truetype"), url("/static/fonts/inter/inter-regular.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/static/fonts/inter/inter-500.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/inter/inter-500.eot?#iefix") format("embedded-opentype"), url("/static/fonts/inter/inter-500.woff2") format("woff2"), url("/static/fonts/inter/inter-500.woff") format("woff"), url("/static/fonts/inter/inter-500.ttf") format("truetype"), url("/static/fonts/inter/inter-500.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/static/fonts/inter/inter-600.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/inter/inter-600.eot?#iefix") format("embedded-opentype"), url("/static/fonts/inter/inter-600.woff2") format("woff2"), url("/static/fonts/inter/inter-600.woff") format("woff"), url("/static/fonts/inter/inter-600.ttf") format("truetype"), url("/static/fonts/inter/inter-600.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: bold;
  src: url("/static/fonts/inter/inter-700.eot");
  /* IE9 Compat Modes */
  src: url("/static/fonts/inter/inter-700.eot?#iefix") format("embedded-opentype"), url("/static/fonts/inter/inter-700.woff2") format("woff2"), url("/static/fonts/inter/inter-700.woff") format("woff"), url("/static/fonts/inter/inter-700.ttf") format("truetype"), url("/static/fonts/inter/inter-700.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* Figtree-VariableFont_wght.ttf */
@font-face {
  font-family: "Figtree";
  src: url("/static/fonts/figtree/Figtree-VariableFont_wght.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.figtree {
  font-family: "Figtree-VariableFont_wght", Arial, sans-serif;
}

/* Helvetica */
@font-face {
  font-family: "HelveticaNeue";
  font-weight: normal;
  src: url("/static/fonts/helvetica/HelveticaNeueLTStd-Lt.otf") format("opentype");
}
.helveticaneue {
  font-family: "HelveticaNeue", Arial, sans-serif;
}

@font-face {
  font-family: "HelveticaNeue-Bold";
  font-weight: bold;
  src: url("/static/fonts/helvetica/HelveticaNeueLTStd-BD.otf") format("opentype");
}
.helveticaneue-bold {
  font-family: "HelveticaNeue-Bold", Arial, sans-serif;
  font-weight: bold;
}

/* MAIN OFF-CANVAS MENU */
#main-off-canvas-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  text-transform: uppercase;
  font-weight: bold;
  min-width: 12.5%;
  text-align: center;
  padding: 48px 0.625rem;
  z-index: 1000;
  background-color: black;
  color: #4e4e4e;
}
#main-off-canvas-toggle > i {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#main-off-canvas-toggle:hover > i {
  transform: scale(0.9);
}

#main-off-canvas-menu {
  background-color: black;
}

#main-off-canvas-menu .off-canvas-list li {
  background-color: black;
  font-size: 14px;
}

#main-off-canvas-menu .off-canvas-list li label {
  display: block;
  color: #1b1b1b;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  background: black;
  border-top: 1px solid #1c5085;
  border-bottom: none;
}

#main-off-canvas-menu .off-canvas-list li a {
  color: #686868;
  font-weight: bold;
  border-bottom: 1px solid black;
  text-transform: uppercase;
}
#main-off-canvas-menu .off-canvas-list li a:hover {
  background: black;
  color: #FFFFFF;
}
#main-off-canvas-menu .off-canvas-list li a.aktiv {
  color: #FFFFFF;
  background-color: #020202;
}

#main-off-canvas-menu .exit-off-canvas {
  background: black !important;
}

#infobox > .title {
  font-size: 1.875rem;
  line-height: 1;
}
#infobox > div p:last-of-type {
  margin-bottom: 0;
}
#infobox.text-small > .title {
  font-size: 1.5rem;
}
#infobox.text-small > div p {
  font-size: 0.875rem;
}
#infobox.right {
  margin-left: 2.5rem;
}
@media only screen and (max-width: 40em) {
  #infobox.right {
    margin-left: 1.25rem;
  }
}
#infobox.left {
  margin-right: 2.5rem;
}
@media only screen and (max-width: 40em) {
  #infobox.left {
    margin-right: 1.25rem;
  }
}

fieldset {
  border-radius: 4.5px;
  box-shadow: 0px 1px 2px #EEEEEE;
}

fieldset legend {
  font-size: var(--font-size-base);
}

fieldset fieldset {
  border-radius: 3px;
  box-shadow: none;
  border-color: #EEEEEE;
  margin-bottom: 0;
}
fieldset fieldset legend {
  font-size: 1.25rem;
}
fieldset fieldset button#removeDivergentAddress {
  font-size: 0.625rem;
  text-transform: uppercase;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
textarea {
  height: 3.1125rem;
  border-radius: 6px !important;
  font-size: 17px;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=search],
input[type=tel],
input[type=time],
input[type=url] {
  padding-right: 2.5rem;
}

input[type=submit] {
  font-weight: bold;
}

select {
  border-radius: 6px !important;
  height: 3.1125rem;
  padding-right: 1.5rem;
  font-weight: bold !important;
  font-size: 17px !important;
}

.switch-field {
  display: flex;
  overflow: hidden;
}
.switch-field.error + .error {
  display: block;
}
.switch-field label {
  background-color: rgb(229, 228, 229);
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  padding: 8px 16px;
  margin-right: -1px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.1s ease-in-out;
}
.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}
.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}
.switch-field label:hover {
  cursor: pointer;
}
.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.switch-field input:checked + label {
  background-color: #686868;
  box-shadow: none;
}

.formicon-wrapper {
  position: absolute;
  right: 1.25rem;
  top: 0;
  height: 3.1125rem;
  padding: 0.875rem 0;
  font-size: 0.875rem;
}

.formicon-wrapper > a i {
  color: #CCCCCC;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.formicon-wrapper > a i:hover {
  color: #333333;
}

.formicon-wrapper i {
  color: #666666;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.formicon-wrapper i:hover {
  color: #333333;
}

.add-more {
  font-size: 1rem;
}

.avatar-preview {
  position: relative;
  padding: 20px;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
}

.avatar-preview button {
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 10px;
}

.dropzone {
  position: relative;
  border: 2px dashed rgba(191, 191, 191, 0.75);
  border-radius: 6px;
  color: rgba(191, 191, 191, 0.75);
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.dropzone p {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0;
}
.dropzone p a {
  color: rgba(128, 128, 128, 0.75);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.dropzone p a:hover {
  color: rgba(64, 64, 64, 0.75);
}
.dropzone > .formicon-wrapper {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.dropzone.hover {
  border: 2px dashed rgba(0, 0, 0, 0.75);
  color: rgba(0, 0, 0, 0.75);
}
.dropzone.hover > .formicon-wrapper i {
  color: rgba(191, 191, 191, 0.75);
}

:disabled {
  opacity: 0.5;
}

.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  position: relative;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  margin: 0.5em;
}

.dropzone .dz-preview .dz-progress {
  display: block;
  height: 15px;
  border: 1px solid #aaa;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: green;
}

.dropzone .dz-preview .dz-error-message {
  color: red;
  display: none;
}

.dropzone .dz-preview.dz-error .dz-error-message, .dropzone .dz-preview.dz-error .dz-error-mark {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
}

.dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
  position: absolute;
  display: none;
  left: 30px;
  top: 30px;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px;
}

.dropzone .dz-lock {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(111, 111, 111, 0.5);
  border-radius: 6px;
}

.dropzone .dz-loading {
  height: 100%;
  width: 0;
  background-color: #85c521;
  border-radius: 6px;
}

.dropzone .dz-lock .dz-status {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  padding: 20px;
}

.preview-lock {
  display: none;
  position: absolute;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(111, 111, 111, 0.5);
  border-radius: 3px;
}

.preview-lock .preview-status {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
}

.postfix.button {
  height: 3.1125rem;
  line-height: 3.1125rem;
  border: 1px solid #CCCCCC;
}

small.error.servererror {
  display: block;
  margin-top: -1rem;
}

.choices + small.error.servererror {
  margin-top: 0;
}

label:has(strong):has(small):not(:has(br)) {
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

label small {
  text-transform: none;
}

.custom_error {
  display: none;
}
.custom_error p {
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #c52121;
  color: #fff;
}

.checkbox-group .disabled + strong,
.checkbox-group .disabled + strong + p {
  color: #aaa;
}

.checkbox-group > .row .iradio_custom + strong + p {
  display: none;
  margin-bottom: 0;
}

.checkbox-group .more {
  margin-left: 20px;
  margin-bottom: 30px;
  display: inline-block;
  cursor: pointer;
}

.progress-wrp:not(.progress-active) {
  display: none;
}

.progress-wrp {
  border: 1px solid #0099CC;
  padding: 1px;
  position: relative;
  height: 30px;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
  background: #fff;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}
.progress-wrp .progress-bar {
  height: 100%;
  border-radius: 3px;
  background-color: #85c521;
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}
.progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}

.input-file-wrapper {
  position: relative;
  border: 2px dashed rgba(191, 191, 191, 0.75);
  border-radius: 6px;
  color: rgba(191, 191, 191, 0.75);
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}
.input-file-wrapper::after {
  position: relative;
  z-index: 1;
  font-weight: bold;
  content: attr(data-default-text);
}
.input-file-wrapper input[type=file] {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  opacity: 0;
}

.input-file-wrapper.file-is-set {
  padding: 0;
  border: none;
}
.input-file-wrapper.file-is-set::after {
  all: unset;
}
.input-file-wrapper.file-is-set input[type=file] {
  display: none;
}

label > input[type=checkbox] {
  margin-bottom: 0;
}

.pf-form__label {
  display: flex;
  flex-direction: column;
}
.pf-form__label--required {
  color: var(--input-font-color);
  font-size: 0.8em;
}

/* MOTION-SECTION */
.motion {
  text-align: center;
  height: 50vmin;
  overflow: hidden;
  max-height: 196px;
  position: relative;
  background-color: #1b1b1b;
  transform-style: preserve-3d;
}
.motion img {
  max-width: none;
  animation-duration: 20s;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .motion {
    height: 30vmin;
  }
}
@media only screen and (max-width: 40em) {
  .motion {
    height: 80vmin;
  }
}

.motion .motion-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1b1b1b;
  opacity: 0.45;
}

.motion .motion-text {
  position: relative;
  top: 50%;
  padding: 0 1.25rem;
  transform: translateY(-50%);
  filter: opacity(100%);
}

.motion .motion-text .eventname, .motion .motion-text .date-place {
  color: #FFFFFF;
}

.motion .motion-text .eventname {
  margin: 0;
  line-height: 0.8em;
}

.motion .motion-text > .date-place {
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 10px;
}

table {
  margin: 1rem 0;
}

table,
thead,
tbody,
th,
td,
tr {
  display: block;
  font-size: 0.875rem;
  border-spacing: 0;
}

tr {
  margin-top: 1rem;
  position: relative;
}

tr.canceled td:before {
  opacity: 0.25;
}

tr.canceled td > div {
  opacity: 0.25;
  text-decoration: line-through;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
tr.canceled td > div:hover {
  opacity: 0.5;
}

tr.canceled td.interact > div {
  opacity: 1;
  text-decoration: none;
}

th, td {
  padding: 0.5rem;
  border-right: 1px solid #DDDDDD;
  border-top: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  position: relative;
}
th:last-child, td:last-child {
  border-bottom: 1px solid #DDDDDD;
}
th:before, td:before {
  content: attr(data-label);
  display: block;
  font-weight: bold;
  text-align: left;
  color: #666666;
  text-transform: uppercase;
}

td.has-tooltip, td.has-data {
  overflow: visible;
  padding-right: 2.5rem;
}

td .formicon-wrapper {
  right: 1rem;
  padding: 0;
  top: 50%;
  margin-top: -10px;
}
td .formicon-wrapper > i {
  color: var(--color-neutral-text);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
td .formicon-wrapper > i:hover {
  color: #333333;
}

td.no-data {
  color: var(--color-neutral-text);
}

th.interact {
  border: 0;
}

td.interact {
  text-align: center !important;
}
@media only screen and (max-width: 40em) {
  td.interact > div a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 0.75rem;
    background-color: #1b1b1b;
    padding: 0.625rem;
    width: 100%;
    border-radius: 3px;
  }
  td.interact > div a:hover {
    background-color: #161616;
  }
}

td span.success {
  color: #85c521;
}

td span.failed {
  color: #c52121;
}

thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
  color: #666666;
}

@media only screen and (min-width:40.0625em) {
  table {
    display: table;
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
    box-shadow: 0px 1px 2px #EEEEEE;
  }
  thead {
    display: table-header-group;
  }
  thead tr {
    position: static;
    top: auto;
    left: auto;
  }
  tbody {
    display: table-row-group;
  }
  tr {
    display: table-row;
  }
  th, td {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 0.5rem 1rem;
    border-left: 0;
  }
  th:first-child, td:first-child {
    border-left: 1px solid #DDDDDD;
  }
  th:last-child, td:last-child {
    border-bottom: 0;
  }
  th.interact, td.interact {
    width: 6.25%;
  }
  td.interact {
    vertical-align: middle;
  }
  th {
    background-color: #F6F6F6;
  }
  th.interact {
    background-color: #FFFFFF;
  }
  th:before, td:before {
    content: "";
    width: auto;
  }
}
.accordion {
  list-style: none;
}
.accordion ul {
  list-style: none;
}
.accordion li {
  margin: 0;
  padding: 0;
}
.accordion li.accordion-header {
  padding: 1rem;
  background-color: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-surface-active);
}
.accordion li.accordion-header:first-of-type {
  border-radius: 6px 6px 0 0;
}
.accordion li.accordion-header strong {
  background-color: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-surface);
}
@media only screen and (max-width: 40em) {
  .accordion li.accordion-header strong {
    margin-bottom: 1rem;
  }
}
.accordion li.accordion-header a {
  color: var(--color-secondary-text--on-element);
  transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.accordion li.accordion-items {
  border: 1px solid #FAFAFA;
  border-top: 0;
  border-bottom: 0;
  color: #666666;
}
.accordion li.accordion-items table {
  margin: 0;
}
.accordion li.item {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
}
.accordion li.item div.item-wrapper {
  border-bottom: 1px solid #DDDDDD;
  padding: 1rem 0.5rem;
}
.accordion li.item.parent > div.item-wrapper:hover,
.accordion li.item.parent.open > div.item-wrapper {
  cursor: pointer;
  background-color: #F6F6F6;
}
.accordion li.item.parent.has_checked > div.item-wrapper i {
  color: #4e4e4e;
}
.accordion li.item div.item-wrapper label {
  margin-bottom: 0;
  font-weight: bold;
}
.accordion li.item div.item-wrapper label.is_checked {
  color: #4e4e4e;
}

/* iCheck plugin Minimal skin, black
----------------------------------- */
.icheckbox_custom,
.iradio_custom {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  margin-right: 5px;
  padding: 0;
  width: 14px;
  height: 14px;
  background-image: url("/static/images/layout/icons/custom.png");
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}

.icheckbox_custom {
  background-image: url("/static/images/layout/icons/custom.png") !important;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
}

.icheckbox_custom.hover {
  background-image: url("/static/images/layout/icons/custom.png") !important;
  background-repeat: no-repeat !important;
  background-position: -14px 0 !important;
}

.icheckbox_custom.checked {
  background-image: url("/static/images/layout/icons/custom.png") !important;
  background-repeat: no-repeat !important;
  background-position: -28px 0 !important;
}

.icheckbox_custom.disabled {
  background-image: url("/static/images/layout/icons/custom.png") !important;
  background-repeat: no-repeat !important;
  background-position: -42px 0 !important;
  cursor: default;
}

.icheckbox_custom.checked.disabled {
  background-image: url("/static/images/layout/icons/custom.png") !important;
  background-repeat: no-repeat !important;
  background-position: -56px 0 !important;
}

.icheckbox_custom.error:not(.checked) {
  background: #c52121;
}
.icheckbox_custom.error:not(.checked) + .icheckbox-title {
  color: #c52121;
}

.iradio_custom {
  background-position: -70px 0;
}

.iradio_custom.hover {
  background-position: -84px 0;
}

.iradio_custom.checked {
  background-position: -98px 0;
}

.iradio_custom.disabled {
  background-position: -112px 0;
  cursor: default;
}

.iradio_custom.checked.disabled {
  background-position: -126px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .icheckbox_custom,
  .iradio_custom {
    background-image: url(/static/images/layout/icons/custom@2x.png);
    -webkit-background-size: 140px 14px;
    background-size: 140px 14px;
  }
}
img[data-action=zoom] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}

.zoom-img,
.zoom-img-wrap {
  position: relative;
  z-index: 666;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

img.zoom-img {
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
}

.zoom-overlay {
  z-index: 420;
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";
  opacity: 1;
}

.farbtastic {
  position: relative;
}
.farbtastic .marker {
  width: 17px;
  height: 17px;
  margin: -8px 0 0 -8px;
  overflow: hidden;
  background: url("/static/images/farbtastic/marker.png") no-repeat;
}
.farbtastic .wheel {
  background: url("/static/images/farbtastic/wheel.png") no-repeat;
  width: 195px;
  height: 195px;
}
.farbtastic .overlay {
  background: url("/static/images/farbtastic/mask.png") no-repeat;
}

.farbtastic * {
  position: absolute;
  cursor: crosshair;
}

.farbtastic, .farbtastic .wheel {
  width: 195px;
  height: 195px;
}

.farbtastic .color, .farbtastic .overlay {
  top: 47px;
  left: 47px;
  width: 101px;
  height: 101px;
}

#farbcode-picker {
  margin-bottom: 1rem;
}

.choices .choices__inner {
  border-radius: 6px !important;
  height: 100% !important;
  padding-right: 1.5rem;
  font-weight: bold !important;
  font-size: 17px !important;
  border-color: var(--color-neutral-border);
}
.choices.is-focused .choices__inner {
  background: #FFFFFF;
  border-color: #999999;
  color: rgb(53, 51, 53);
  box-shadow: 0 0 0 0.25rem rgba(27, 27, 27, 0.25);
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0.25rem;
}
.choices.is-open {
  z-index: 9999999;
}

.choices__list--multiple .choices__item {
  margin: 4px 2px;
  padding-top: 3px;
  padding-bottom: 3px;
  min-height: 100% !important;
  height: 100% !important;
}
.choices__list--single {
  padding-top: 2px;
  padding-bottom: 2px;
}
.choices__list--dropdown .choices__item {
  padding-top: 8px;
  padding-bottom: 8px;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: rgb(229, 228, 229);
}

.choices[data-type*=select-one] .choices__input {
  border-bottom: 1px solid rgb(229, 228, 229);
  background-color: #FFFFFF;
}

.choices[data-type*=select-one]:after {
  border-color: rgb(53, 51, 53) transparent transparent transparent;
}

.choices[data-type*=select-one].is-open:after {
  border-color: transparent transparent rgb(53, 51, 53) transparent;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  border-left: 1px solid #1b1b1b;
}

.choices__button {
  padding: 0;
}

.choices__inner {
  background-color: #FFFFFF;
  border: 1px solid rgb(229, 228, 229);
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: rgb(92, 90, 93);
}

.choices__list--multiple .choices__item {
  background-color: #1b1b1b;
  border: 1px solid #151515;
  color: #FFFFFF;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #d8d7d8;
  border: 1px solid #d2d1d2;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: rgb(92, 90, 93);
  border: 1px solid rgb(92, 90, 93);
}

.choices__list--dropdown {
  background-color: #FFFFFF;
  border: 1px solid rgb(229, 228, 229);
}

.is-open .choices__list--dropdown {
  border-color: rgb(229, 228, 229);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: rgb(229, 228, 229);
}

.choices__heading {
  border-bottom: 1px solid rgb(229, 228, 229);
  color: rgb(92, 90, 93);
  background: #efefef !important;
}

.choices__input {
  background-color: #FFFFFF;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 2.5rem !important;
}

.choices {
  margin-bottom: 0;
}

.choices__inner.is-invalid {
  border: 1px solid #c52121;
}

.choices.is-open .choices__list.choices__list--dropdown {
  z-index: 1 !important;
}

.choices .choices__list.choices__list--dropdown {
  z-index: -1 !important;
}

table.dataTable.fixedHeader-floating,
table.dataTable.fixedHeader-locked {
  background-color: #FFFFFF;
}

table.dataTable tbody tr.selected,
table.dataTable tbody th.selected,
table.dataTable tbody td.selected {
  color: #FFFFFF;
}
table.dataTable tbody tr.selected a,
table.dataTable tbody th.selected a,
table.dataTable tbody td.selected a {
  color: #a2d4ed;
}

table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
  background-color: #1b1b1b;
}
table.dataTable.stripe tbody > tr.odd.selected,
table.dataTable.stripe tbody > tr.odd > .selected, table.dataTable.display tbody > tr.odd.selected,
table.dataTable.display tbody > tr.odd > .selected {
  background-color: #1a1a1a;
}
table.dataTable.hover tbody > tr.selected:hover,
table.dataTable.hover tbody > tr > .selected:hover, table.dataTable.display tbody > tr.selected:hover,
table.dataTable.display tbody > tr > .selected:hover {
  background-color: #1a1a1a;
}
table.dataTable.order-column tbody > tr.selected > .sorting_1,
table.dataTable.order-column tbody > tr.selected > .sorting_2,
table.dataTable.order-column tbody > tr.selected > .sorting_3,
table.dataTable.order-column tbody > tr > .selected, table.dataTable.display tbody > tr.selected > .sorting_1,
table.dataTable.display tbody > tr.selected > .sorting_2,
table.dataTable.display tbody > tr.selected > .sorting_3,
table.dataTable.display tbody > tr > .selected {
  background-color: #1a1a1a;
}
table.dataTable.display tbody > tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_1 {
  background-color: #1a1a1a;
}
table.dataTable.display tbody > tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_2 {
  background-color: #1a1a1a;
}
table.dataTable.display tbody > tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.odd.selected > .sorting_3 {
  background-color: #1a1a1a;
}
table.dataTable.display tbody > tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_1 {
  background-color: #1a1a1a;
}
table.dataTable.display tbody > tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_2 {
  background-color: #1b1b1b;
}
table.dataTable.display tbody > tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody > tr.even.selected > .sorting_3 {
  background-color: #1b1b1b;
}
table.dataTable.display tbody > tr.odd > .selected, table.dataTable.order-column.stripe tbody > tr.odd > .selected {
  background-color: #1a1a1a;
}
table.dataTable.display tbody > tr.even > .selected, table.dataTable.order-column.stripe tbody > tr.even > .selected {
  background-color: #1a1a1a;
}
table.dataTable.display tbody > tr.selected:hover > .sorting_1, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_1 {
  background-color: #191919;
}
table.dataTable.display tbody > tr.selected:hover > .sorting_2, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_2 {
  background-color: #191919;
}
table.dataTable.display tbody > tr.selected:hover > .sorting_3, table.dataTable.order-column.hover tbody > tr.selected:hover > .sorting_3 {
  background-color: #191919;
}
table.dataTable.display tbody > tr:hover > .selected,
table.dataTable.display tbody > tr > .selected:hover, table.dataTable.order-column.hover tbody > tr:hover > .selected,
table.dataTable.order-column.hover tbody > tr > .selected:hover {
  background-color: #191919;
}
table.dataTable tbody td.select-checkbox,
table.dataTable tbody th.select-checkbox {
  position: relative;
}
table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after,
table.dataTable tbody th.select-checkbox:before,
table.dataTable tbody th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody th.select-checkbox:before {
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
table.dataTable tr.selected td.select-checkbox:after,
table.dataTable tr.selected th.select-checkbox:after {
  content: "✔";
  margin-top: -11px;
  margin-left: -4px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}

div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em;
}

.paginate_button .current {
  background-color: #1b1b1b !important;
}

@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info,
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block;
  }
}
div.dataTables_wrapper div.dataTables_filter input {
  margin-bottom: 1rem;
}

.paginate_button {
  padding: 0.3rem 0.75rem;
  border: 1px solid #ddd !important;
  font-size: 14px;
  color: #6c757d !important;
}
.paginate_button:hover {
  background-color: #1b1b1b;
  color: #fff;
}
.paginate_button.current {
  background-color: #1b1b1b;
  border-color: #1b1b1b;
  color: #fff !important;
}
.paginate_button.disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.paginate_button:focus {
  z-index: 3;
  color: #1b1b1b;
  background-color: #e9ecef;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem #686868;
  box-shadow: 0 0 0 0.2rem #686868;
}

.dataTables_info {
  font-size: 14px;
  color: #6c757d;
}

.dataTables_wrapper input[type=search] {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
  min-height: calc(2.0875rem + 2px) !important;
  padding: 0.35rem 1rem !important;
  font-size: 0.925rem !important;
  border-radius: 0.3rem !important;
}

/**
 * Trumbowyg v2.26.0 - A lightweight WYSIWYG editor
 * Default stylesheet for Trumbowyg editor
 * ------------------------
 * @link http://alex-d.github.io/Trumbowyg
 * @license MIT
 * @author Alexandre Demode (Alex-D)
 *         Twitter : @AlexandreDemode
 *         Website : alex-d.fr
 */
#trumbowyg-icons {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  width: 0;
}
#trumbowyg-icons svg {
  height: 0;
  width: 0;
}

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

.trumbowyg-box *,
.trumbowyg-box *::before,
.trumbowyg-box *::after,
.trumbowyg-modal *,
.trumbowyg-modal *::before,
.trumbowyg-modal *::after {
  box-sizing: border-box;
}
.trumbowyg-box svg,
.trumbowyg-modal svg {
  width: 17px;
  height: 100%;
  color: #222;
  fill: #222;
}

.trumbowyg-box,
.trumbowyg-editor {
  display: block;
  position: relative;
  border: 1px solid #d7e0e2;
  width: 100%;
  min-height: 300px;
}

.trumbowyg--custom .trumbowyg-box {
  margin-bottom: 0 !important;
}

.trumbowyg-box .trumbowyg-editor {
  margin: 0 auto;
}

.trumbowyg-box.trumbowyg-fullscreen {
  background: #fefefe;
  border: none !important;
}

.trumbowyg-editor,
.trumbowyg-textarea {
  position: relative;
  box-sizing: border-box;
  padding: 20px;
  min-height: 300px;
  width: 100%;
  border-style: none;
  resize: none;
  outline: none;
  overflow: auto;
  user-select: text;
}
.trumbowyg-editor.trumbowyg-autogrow-on-enter,
.trumbowyg-textarea.trumbowyg-autogrow-on-enter {
  transition: height 300ms ease-out;
}

.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before {
  color: transparent !important;
  text-shadow: 0 0 7px #333;
}
@media screen and (min-width: 0 \0 ) {
  .trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(200, 200, 200, 0.6) !important;
  }
}
@supports (-ms-accelerator: true) {
  .trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(200, 200, 200, 0.6) !important;
  }
}
.trumbowyg-box-blur .trumbowyg-editor img,
.trumbowyg-box-blur .trumbowyg-editor hr {
  opacity: 0.2;
}

.trumbowyg-textarea {
  position: relative;
  display: block;
  overflow: auto;
  border: none;
  font-size: 14px;
  font-family: "Consolas", "Courier", "Courier New", monospace;
  line-height: 18px;
}

.trumbowyg-box.trumbowyg-editor-visible .trumbowyg-textarea {
  height: 1px !important;
  width: 25%;
  min-height: 0 !important;
  padding: 0 !important;
  background: none;
  opacity: 0 !important;
}

.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-textarea {
  display: block;
  margin-bottom: 1px;
}
.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-editor {
  display: none;
}

.trumbowyg-box.trumbowyg-disabled .trumbowyg-textarea {
  opacity: 0.8;
  background: none;
}

.trumbowyg-editor[contenteditable=true]:empty:not(:focus)::before {
  content: attr(placeholder);
  color: #999;
  pointer-events: none;
  white-space: break-spaces;
}

.trumbowyg-button-pane {
  width: 100%;
  min-height: 36px;
  background: #ecf0f1;
  border-bottom: 1px solid #d7e0e2;
  margin: 0;
  padding: 0 5px;
  position: relative;
  list-style-type: none;
  line-height: 10px;
  backface-visibility: hidden;
  z-index: 11;
}
.trumbowyg-button-pane::after {
  content: " ";
  display: block;
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #d7e0e2;
}
.trumbowyg-button-pane .trumbowyg-button-group {
  display: inline-block;
}
.trumbowyg-button-pane .trumbowyg-button-group .trumbowyg-fullscreen-button svg {
  color: transparent;
}
.trumbowyg-button-pane .trumbowyg-button-group::after {
  content: " ";
  display: inline-block;
  width: 1px;
  background: #d7e0e2;
  margin: 0 5px;
  height: 35px;
  vertical-align: top;
}
.trumbowyg-button-pane .trumbowyg-button-group:last-child::after {
  content: none;
}
.trumbowyg-button-pane button {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 35px;
  padding: 1px 6px !important;
  margin-bottom: 1px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  background: none;
  vertical-align: middle;
  transition: background-color 150ms, opacity 150ms;
}
.trumbowyg-button-pane button.trumbowyg-textual-button {
  width: auto;
  line-height: 35px;
  user-select: none;
}
.trumbowyg-button-pane.trumbowyg-disable button:not(.trumbowyg-not-disable):not(.trumbowyg-active),
.trumbowyg-button-pane button.trumbowyg-disable, .trumbowyg-disabled .trumbowyg-button-pane button:not(.trumbowyg-not-disable):not(.trumbowyg-viewHTML-button) {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}
.trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::before, .trumbowyg-disabled .trumbowyg-button-pane .trumbowyg-button-group::before {
  background: #e3e9eb;
}
.trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-button-pane button.trumbowyg-active {
  background-color: #fff;
  outline: none;
}
.trumbowyg-button-pane .trumbowyg-open-dropdown::after {
  display: block;
  content: " ";
  position: absolute;
  top: 25px;
  right: 3px;
  height: 0;
  width: 0;
  border: 3px solid transparent;
  border-top-color: #555;
}
.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button {
  padding-left: 10px !important;
  padding-right: 18px !important;
}
.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button::after {
  top: 17px;
  right: 7px;
}
.trumbowyg-button-pane .trumbowyg-right {
  float: right;
}

.trumbowyg-dropdown {
  max-width: 300px;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  white-space: nowrap;
  border: 1px solid #d7e0e2;
  padding: 5px 0;
  border-top: none;
  background: #fff;
  color: #222;
  margin-left: -1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px;
  z-index: 12;
}
.trumbowyg-dropdown button {
  display: block;
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  background: #fff;
  padding: 0 20px 0 10px;
  color: #222;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  transition: all 150ms;
}
.trumbowyg-dropdown button:hover, .trumbowyg-dropdown button:focus {
  background: #ecf0f1;
}
.trumbowyg-dropdown button svg {
  float: left;
  margin-right: 14px;
}

/* Modal box */
.trumbowyg-modal {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 520px;
  width: 100%;
  height: 350px;
  z-index: 12;
  overflow: hidden;
  backface-visibility: hidden;
}

.trumbowyg-modal-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: calc(100% - 20px);
  padding-bottom: 45px;
  z-index: 1;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 3px;
  backface-visibility: hidden;
}
.trumbowyg-modal-box .trumbowyg-modal-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 15px 0 13px;
  display: block;
  border-bottom: 1px solid #d7e0e2;
}
.trumbowyg-modal-box .trumbowyg-progress {
  width: 100%;
  height: 3px;
  position: absolute;
  top: 58px;
}
.trumbowyg-modal-box .trumbowyg-progress .trumbowyg-progress-bar {
  background: #2BC06A;
  width: 0;
  height: 100%;
  transition: width 150ms linear;
}
.trumbowyg-modal-box .trumbowyg-input-row {
  position: relative;
  margin: 15px 12px;
  border: 1px solid #dedede;
  overflow: hidden;
}
.trumbowyg-modal-box .trumbowyg-input-infos {
  text-align: left;
  transition: all 150ms;
  width: 150px;
  border-right: 1px solid #dedede;
  padding: 0 7px;
  background-color: #fbfcfc;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.trumbowyg-modal-box .trumbowyg-input-infos label {
  color: #69878f;
  overflow: hidden;
  height: 27px;
  line-height: 27px;
}
.trumbowyg-modal-box .trumbowyg-input-infos label, .trumbowyg-modal-box .trumbowyg-input-infos label span {
  display: block;
  height: 27px;
  line-height: 27px;
  transition: all 150ms;
}
.trumbowyg-modal-box .trumbowyg-input-infos .trumbowyg-msg-error {
  color: #e74c3c;
}
.trumbowyg-modal-box .trumbowyg-input-html {
  padding: 1px 1px 1px 152px;
}
.trumbowyg-modal-box .trumbowyg-input-html, .trumbowyg-modal-box .trumbowyg-input-html input, .trumbowyg-modal-box .trumbowyg-input-html textarea, .trumbowyg-modal-box .trumbowyg-input-html select {
  font-size: 14px;
}
.trumbowyg-modal-box .trumbowyg-input-html input, .trumbowyg-modal-box .trumbowyg-input-html textarea, .trumbowyg-modal-box .trumbowyg-input-html select {
  transition: all 150ms;
  height: 27px;
  line-height: 27px;
  border: 0;
  width: 100%;
  padding: 0 7px;
}
.trumbowyg-modal-box .trumbowyg-input-html input:hover, .trumbowyg-modal-box .trumbowyg-input-html input:focus, .trumbowyg-modal-box .trumbowyg-input-html textarea:hover, .trumbowyg-modal-box .trumbowyg-input-html textarea:focus, .trumbowyg-modal-box .trumbowyg-input-html select:hover, .trumbowyg-modal-box .trumbowyg-input-html select:focus {
  outline: 1px solid #95a5a6;
}
.trumbowyg-modal-box .trumbowyg-input-html input:focus, .trumbowyg-modal-box .trumbowyg-input-html textarea:focus, .trumbowyg-modal-box .trumbowyg-input-html select:focus {
  background: #fbfcfc;
}
.trumbowyg-modal-box .trumbowyg-input-html input[type=checkbox] {
  width: 16px;
  height: 16px;
  padding: 0;
}
.trumbowyg-modal-box .trumbowyg-input-html-with-checkbox {
  text-align: left;
  padding: 3px 1px 1px 3px;
}
.trumbowyg-modal-box .trumbowyg-input-error input, .trumbowyg-modal-box .trumbowyg-input-error select, .trumbowyg-modal-box .trumbowyg-input-error textarea {
  outline: 1px solid #e74c3c;
}
.trumbowyg-modal-box .trumbowyg-input-error .trumbowyg-input-infos label span:first-child {
  margin-top: -27px;
}
.trumbowyg-modal-box .error {
  margin-top: 25px;
  display: block;
  color: red;
}
.trumbowyg-modal-box .trumbowyg-modal-button {
  position: absolute;
  bottom: 10px;
  right: 0;
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100px;
  height: 35px;
  line-height: 33px;
  margin: 0 10px;
  background-color: #333;
  border: none;
  cursor: pointer;
  font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif;
  font-size: 16px;
  transition: all 150ms;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit {
  right: 110px;
  background: #2bc06a;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus {
  background: #40d47e;
  outline: none;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active {
  background: #25a25a;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset {
  color: #555;
  background: #e6e6e6;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus {
  background: #fbfbfb;
  outline: none;
}
.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active {
  background: #d5d5d5;
}

.trumbowyg-overlay {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  display: none;
  top: 0;
  z-index: 10;
}

/**
 * Fullscreen
 */
body.trumbowyg-body-fullscreen {
  overflow: hidden;
}

.trumbowyg-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 99999;
}
.trumbowyg-fullscreen.trumbowyg-box,
.trumbowyg-fullscreen .trumbowyg-editor {
  border: none;
}
.trumbowyg-fullscreen .trumbowyg-editor,
.trumbowyg-fullscreen .trumbowyg-textarea {
  height: calc(100% - 37px) !important;
  overflow: auto;
}
.trumbowyg-fullscreen .trumbowyg-overlay {
  height: 100% !important;
}
.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg {
  color: #222;
  fill: transparent;
}

.trumbowyg-editor {
  /*
   * For resetCss option
   */
}
.trumbowyg-editor object,
.trumbowyg-editor embed,
.trumbowyg-editor video,
.trumbowyg-editor img {
  max-width: 100%;
}
.trumbowyg-editor video,
.trumbowyg-editor img {
  height: auto;
}
.trumbowyg-editor img {
  cursor: move;
}
.trumbowyg-editor canvas:focus {
  outline: none;
}
.trumbowyg-editor.trumbowyg-reset-css {
  background: #fefefe !important;
  font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.45em !important;
  color: #333;
}
.trumbowyg-editor.trumbowyg-reset-css a {
  color: #15c !important;
  text-decoration: underline !important;
}
.trumbowyg-editor.trumbowyg-reset-css div,
.trumbowyg-editor.trumbowyg-reset-css p,
.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol,
.trumbowyg-editor.trumbowyg-reset-css blockquote {
  box-shadow: none !important;
  background: none !important;
  margin: 0 !important;
  margin-bottom: 15px !important;
  line-height: 1.4em !important;
  font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important;
  font-size: 14px !important;
  border: none;
}
.trumbowyg-editor.trumbowyg-reset-css iframe,
.trumbowyg-editor.trumbowyg-reset-css object,
.trumbowyg-editor.trumbowyg-reset-css hr {
  margin-bottom: 15px !important;
}
.trumbowyg-editor.trumbowyg-reset-css blockquote {
  margin-left: 32px !important;
  font-style: italic !important;
  color: #555;
}
.trumbowyg-editor.trumbowyg-reset-css ul {
  list-style: disc;
}
.trumbowyg-editor.trumbowyg-reset-css ol {
  list-style: decimal;
}
.trumbowyg-editor.trumbowyg-reset-css ul,
.trumbowyg-editor.trumbowyg-reset-css ol {
  padding-left: 20px !important;
}
.trumbowyg-editor.trumbowyg-reset-css ul ul,
.trumbowyg-editor.trumbowyg-reset-css ol ol,
.trumbowyg-editor.trumbowyg-reset-css ul ol,
.trumbowyg-editor.trumbowyg-reset-css ol ul {
  border: none;
  margin: 2px !important;
  padding: 0 !important;
  padding-left: 24px !important;
}
.trumbowyg-editor.trumbowyg-reset-css hr {
  display: block;
  height: 1px;
  border: none;
  border-top: 1px solid #CCC;
}
.trumbowyg-editor.trumbowyg-reset-css h1,
.trumbowyg-editor.trumbowyg-reset-css h2,
.trumbowyg-editor.trumbowyg-reset-css h3,
.trumbowyg-editor.trumbowyg-reset-css h4 {
  color: #111;
  background: none;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: bold;
}
.trumbowyg-editor.trumbowyg-reset-css h1 {
  font-size: 32px !important;
  line-height: 38px !important;
  margin-bottom: 20px !important;
}
.trumbowyg-editor.trumbowyg-reset-css h2 {
  font-size: 26px !important;
  line-height: 34px !important;
  margin-bottom: 15px !important;
}
.trumbowyg-editor.trumbowyg-reset-css h3 {
  font-size: 22px !important;
  line-height: 28px !important;
  margin-bottom: 7px !important;
}
.trumbowyg-editor.trumbowyg-reset-css h4 {
  font-size: 16px !important;
  line-height: 22px !important;
  margin-bottom: 7px !important;
}
.trumbowyg-editor.trumbowyg-reset-css table,
.trumbowyg-editor.trumbowyg-reset-css thead,
.trumbowyg-editor.trumbowyg-reset-css tbody,
.trumbowyg-editor.trumbowyg-reset-css tfoot,
.trumbowyg-editor.trumbowyg-reset-css tr,
.trumbowyg-editor.trumbowyg-reset-css th,
.trumbowyg-editor.trumbowyg-reset-css td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  vertical-align: top;
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
}

/*
 * Dark theme
 */
.trumbowyg-dark .trumbowyg-textarea {
  background: #222;
  color: #fff;
  border-color: #343434;
}
.trumbowyg-dark .trumbowyg-box {
  border: 1px solid #343434;
}
.trumbowyg-dark .trumbowyg-box.trumbowyg-fullscreen {
  background: #111;
}
.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
  text-shadow: 0 0 7px #ccc;
}
@media screen and (min-width: 0 \0 ) {
  .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(20, 20, 20, 0.6) !important;
  }
}
@supports (-ms-accelerator: true) {
  .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before {
    color: rgba(20, 20, 20, 0.6) !important;
  }
}
.trumbowyg-dark .trumbowyg-box svg {
  fill: #fff;
  color: #fff;
}
.trumbowyg-dark .trumbowyg-button-pane {
  background-color: #222;
  border-bottom-color: #343434;
}
.trumbowyg-dark .trumbowyg-button-pane::after {
  background: #343434;
}
.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty)::after {
  background-color: #343434;
}
.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg {
  color: transparent;
}
.trumbowyg-dark .trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::after {
  background-color: #2a2a2a;
}
.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):hover,
.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):focus,
.trumbowyg-dark .trumbowyg-button-pane button.trumbowyg-active {
  background-color: #333;
}
.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-open-dropdown::after {
  border-top-color: #fff;
}
.trumbowyg-dark .trumbowyg-fullscreen .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg {
  color: #ecf0f1;
  fill: transparent;
}
.trumbowyg-dark .trumbowyg-dropdown {
  border-color: #343434;
  background: #333;
  box-shadow: rgba(0, 0, 0, 0.3) 0 2px 3px;
}
.trumbowyg-dark .trumbowyg-dropdown button {
  background: #333;
  color: #fff;
}
.trumbowyg-dark .trumbowyg-dropdown button:hover, .trumbowyg-dark .trumbowyg-dropdown button:focus {
  background: #222;
}
.trumbowyg-dark .trumbowyg-modal-box {
  background-color: #333;
  color: #fff;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-title {
  border-bottom: 1px solid #555;
  color: #fff;
  background: #3c3c3c;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row {
  border-color: #222;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-infos {
  color: #eee;
  background-color: #2f2f2f;
  border-right-color: #222;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-infos span {
  color: #eee;
  background-color: #2f2f2f;
  border-color: #343434;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-infos span.trumbowyg-msg-error {
  color: #e74c3c;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row.trumbowyg-input-error input,
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row.trumbowyg-input-error select,
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row.trumbowyg-input-error textarea {
  border-color: #e74c3c;
}
.trumbowyg-dark .trumbowyg-modal-box input,
.trumbowyg-dark .trumbowyg-modal-box select,
.trumbowyg-dark .trumbowyg-modal-box textarea {
  border-color: #343434;
  color: #fff;
  background: #222;
}
.trumbowyg-dark .trumbowyg-modal-box input:hover, .trumbowyg-dark .trumbowyg-modal-box input:focus,
.trumbowyg-dark .trumbowyg-modal-box select:hover,
.trumbowyg-dark .trumbowyg-modal-box select:focus,
.trumbowyg-dark .trumbowyg-modal-box textarea:hover,
.trumbowyg-dark .trumbowyg-modal-box textarea:focus {
  border-color: #626262;
}
.trumbowyg-dark .trumbowyg-modal-box input:focus,
.trumbowyg-dark .trumbowyg-modal-box select:focus,
.trumbowyg-dark .trumbowyg-modal-box textarea:focus {
  background-color: #2f2f2f;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit {
  background: #1b7943;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover, .trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus {
  background: #25a25a;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active {
  background: #176437;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset {
  background: #333;
  color: #ccc;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover, .trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus {
  background: #444;
}
.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active {
  background: #111;
}
.trumbowyg-dark .trumbowyg-overlay {
  background-color: rgba(15, 15, 15, 0.6);
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.pf-header--mobile.pf-header {
  height: var(--spacing-3xl);
  background: var(--color-secondary-surface);
  display: none;
  justify-content: space-between;
  padding: var(--spacing-base);
  align-items: center;
}
.pf-header--mobile.pf-header__logo {
  width: 8.5625rem;
  height: 4.5625rem;
}
@media only screen and (max-width: 1024px) {
  .pf-header--mobile.pf-header {
    display: flex;
  }
}
.pf-header__menu-link {
  z-index: 9999;
}

.pf-sidebar {
  background-color: var(--color-secondary-surface);
  width: 25rem;
  min-height: 100vh;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}
.pf-sidebar ol,
.pf-sidebar ul {
  list-style: none;
}
.pf-sidebar a:hover, .pf-sidebar a:focus {
  color: var(--color-secondary-text--on-element);
}
.pf-sidebar a.disabled {
  background-color: var(--color-secondary-surface) !important;
  color: var(--color-secondary-text--on-surface) !important;
}
@media only screen and (max-width: 1600px) {
  .pf-sidebar {
    width: 20rem;
  }
}
@media only screen and (min-width: 1024px) {
  .pf-sidebar {
    position: sticky;
  }
}
@media only screen and (max-width: 1024px) {
  .pf-sidebar {
    position: fixed;
    min-height: 0;
    height: 100vh;
    left: -1000px;
    width: 70%;
  }
  .pf-sidebar .pf-sidebar__body {
    height: auto;
    min-height: auto;
    overflow: visible;
  }
}
@media only screen and (max-width: 640px) {
  .pf-sidebar {
    left: -1000px;
    width: 100%;
  }
}

.pf-sidebar-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.pf-scroll-fix .pf-sidebar-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.js-off-canvas {
  z-index: 999;
}
@media only screen and (max-width: 1024px) {
  .js-off-canvas {
    transform: translate(1000px, 0px);
    width: 25rem;
  }
}
@media only screen and (max-width: 640px) {
  .js-off-canvas {
    transform: translate(1000px, 0px);
    width: 100%;
  }
}

.pf-sidebar__topbar {
  display: flex;
}
.pf-sidebar__topbar-select-fair:not(:last-child) {
  border-right: 1px solid var(--color-secondary-border);
}

.pf-sidebar__fair {
  display: flex;
  gap: var(--spacing-md);
}
.pf-sidebar__fair-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--color-secondary-surface--active);
  color: var(--color-secondary-text--on-surface-active);
}
.pf-sidebar__fair-form {
  border: 1px solid var(--color-secondary-border);
  border-radius: var(--radius-xs);
}
.pf-sidebar__fair-form label {
  margin: 0;
}
.pf-sidebar__fair-form select {
  margin: 0;
}
.pf-sidebar__fair-select {
  border: none;
  background: transparent;
  color: var(--color-secondary-text--on-surface);
}

.pf-sidebar__actions {
  display: flex;
  gap: var(--spacing-sm);
}
.pf-sidebar__actions .button {
  padding-left: var(--spacing-base);
  padding-top: var(--spacing-base);
  padding-bottom: var(--spacing-base);
  padding-right: var(--spacing-xl);
  background: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-surface);
  border-radius: var(--radius-xs);
  font-size: var(--font-size-sm);
}
.pf-sidebar__actions .button:hover, .pf-sidebar__actions .button:focus {
  background: var(--color-secondary-surface--active);
  color: var(--color-secondary-text--on-surface-active);
}
.pf-sidebar__actions .button::after {
  border-style: solid;
  border-width: 0.125em 0.125em 0 0;
  content: "";
  display: inline-block;
  height: 0.5em;
  position: absolute;
  top: 50%;
  margin-top: -0.25em;
  right: var(--spacing-base);
  border-color: var(--color-secondary-text--on-element);
  transform: rotate(135deg);
  vertical-align: top;
  transition: transform 0.3s ease;
  width: 0.5em;
}
.pf-sidebar__actions .f-dropdown {
  background: var(--color-neutral-surface);
  border-color: var(--color-neutral-surface);
  border-radius: var(--radius-xs);
}
.pf-sidebar__actions .f-dropdown a {
  color: var(--color-neutral-text--on-surface);
}
.pf-sidebar__actions .f-dropdown a:hover, .pf-sidebar__actions .f-dropdown a:focus, .pf-sidebar__actions .f-dropdown a.active {
  color: var(--color-neutral-text--on-surface-active);
}

.pf-sidebar__header {
  padding: var(--spacing-lg) var(--spacing-lg) 0px var(--spacing-lg);
}
.pf-sidebar__header-logo {
  height: 5.25rem;
}
.pf-sidebar__header-logo img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.pf-sidebar__header-location {
  display: block;
  margin-top: 1rem;
  color: var(--color-secondary-text--on-surface);
  font-size: var(--font-size-base);
  border-left: 4px solid var(--color-secondary-border);
  padding-left: var(--spacing-sm);
}
.pf-sidebar__header-title {
  font-size: var(--font-size-base);
  color: var(--color-secondary-text--on-element);
  margin-top: var(--spacing-md);
}
.pf-sidebar__header-client {
  margin-top: var(--spacing-sm);
  display: flex;
}
.pf-sidebar__header-client-info {
  font-size: var(--font-size-base);
  color: var(--color-secondary-text--on-element);
  font-weight: var(--font-weight-bold);
}
.pf-sidebar__header-client-tooltip {
  display: flex;
  align-items: center;
  margin-left: var(--spacing-base);
  font-size: var(--font-size-base);
  color: var(--color-secondary-text--on-element);
  border-bottom: none;
  font-weight: var(--font-weight-regular);
}
.pf-sidebar__header-divider {
  border-color: var(--color-secondary-surface--active);
  height: 0.0625rem;
}

.pf-sidebar__body {
  position: relative;
  overflow: hidden;
  flex-wrap: nowrap;
  height: 100%;
  min-height: 12.5rem;
  /* Handle */
  /* Handle on hover */
}
.pf-sidebar__body ::-webkit-scrollbar {
  z-index: 99999999;
  margin-right: var(--spacing-sm);
  width: var(--spacing-sm);
}
.pf-sidebar__body ::-webkit-scrollbar-thumb {
  width: var(--spacing-sm);
  border-radius: 8px;
  background: var(--color-neutral-darkest);
}
.pf-sidebar__body ::-webkit-scrollbar-thumb:hover {
  background: var(--color-neutral-dark);
}
.pf-sidebar__body-main-menu {
  flex-wrap: nowrap;
  list-style: none;
  padding: var(--spacing-md) 0;
}
.pf-sidebar__body-main-menu .show {
  height: auto;
}
.pf-sidebar__body-main-menu-wrapper {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  padding: 0 var(--spacing-lg);
}
.pf-sidebar__body-main-menu li {
  display: block;
  margin: var(--spacing-xs) 0;
}
.pf-sidebar__body-main-menu > li > a {
  display: flex;
  align-items: center;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
}
.pf-sidebar__body-main-menu > li > a:hover, .pf-sidebar__body-main-menu > li > a:focus, .pf-sidebar__body-main-menu > li > a.is-active {
  background-color: var(--color-secondary-element--hover);
}
.pf-sidebar__body-main-menu a {
  font-size: var(--font-size-sm);
  color: var(--color-secondary-text--on-element);
  display: block;
  padding: var(--spacing-base) var(--spacing-base);
  border-radius: var(--radius-xs);
  text-decoration: none;
  position: relative;
  align-items: center;
}
.pf-sidebar__body-main-menu .js-dropdown-item.is-active::before {
  transform: rotate(-45deg);
}
.pf-sidebar__body-main-menu .js-dropdown-item::before {
  border-style: solid;
  border-width: 0.125em 0.125em 0 0;
  content: "";
  display: inline-block;
  height: 0.5em;
  position: absolute;
  top: 50%;
  margin-top: -0.25em;
  right: var(--spacing-base);
  border-color: var(--color-secondary-text--on-element);
  transform: rotate(135deg);
  vertical-align: top;
  transition: transform 0.3s ease;
  width: 0.5em;
}
.pf-sidebar__body-main-menu li.has-drilldown > a::after, .pf-sidebar__body-main-menu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  margin-top: -0.375rem;
  right: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 0.375rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent var(--color-secondary-text--on-element);
}
.pf-sidebar__body-main-menu li.has-dropdown a::after {
  transform: rotate(90deg);
}
.pf-sidebar__body-sub-menu {
  display: none;
  list-style: none;
  width: 100%;
  padding: var(--spacing-xs) 0;
  background-color: var(--color-secondary-surface);
  margin-left: 0;
}
.pf-sidebar__body-sub-menu.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  opacity: 0;
}
.pf-sidebar__body-sub-menu li {
  display: block;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-secondary-surface--active);
}
.pf-sidebar__body-sub-menu li a {
  padding: 0 var(--spacing-lg);
  color: var(--color-secondary-text--on-element);
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.pf-sidebar__body-sub-menu li a:hover, .pf-sidebar__body-sub-menu li a.is-active {
  background-color: var(--color-secondary-surface);
  transform: translate(10px);
}
.pf-sidebar__body-sub-menu li a.is-active {
  font-weight: var(--font-weight-bold);
}
.pf-sidebar__body-gradient {
  position: absolute;
  z-index: 99999;
  height: var(--spacing-lg);
  width: 100%;
  pointer-events: none;
  background: rgb(27, 27, 27);
  background: linear-gradient(0deg, rgba(27, 27, 27, 0) 0%, rgb(27, 27, 27) 100%);
  left: 0;
  width: calc(100% - 1280x);
}
@media only screen and (min-width: 1200px) {
  .pf-sidebar__body-gradient {
    left: 64px;
  }
}
.pf-sidebar__body-gradient--top {
  top: 0;
}
.pf-sidebar__body-gradient--bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.js-drilldown.is-initialized {
  transition: transform 0.3s ease;
}
.js-drilldown.is-initialized > li > a {
  transition: opacity 0.3s ease;
}

.js-drilldown.is-active {
  transform: translate(-100%);
}
.js-drilldown.is-active > li > a {
  opacity: 0;
}

.js-drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
}

.pf-sidebar__footer {
  margin-top: auto;
  border-top: 1px solid var(--color-secondary-surface--active);
}
.pf-sidebar__footer-wrapper {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}
.pf-sidebar__footer-title {
  color: var(--color-secondary-text--on-surface-active);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  margin-top: var(--spacing-lg);
}
.pf-sidebar__footer-contact {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-base);
}
.pf-sidebar__footer-contact-profil {
  height: var(--spacing-2xl);
  width: var(--spacing-2xl);
  border-radius: 50%;
  background-color: var(--color-secondary-surface--active);
  overflow: hidden;
  flex-shrink: 0;
}
.pf-sidebar__footer-contact-profil img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.pf-sidebar__footer-contact-info {
  margin-left: var(--spacing-md);
  color: var(--color-secondary-text--on-surface);
}
.pf-sidebar__footer-contact-name {
  font-size: var(--font-size-base);
}
.pf-sidebar__footer-contact-wrapper {
  display: flex;
  margin-top: var(--spacing-xs);
}
.pf-sidebar__footer-contact-email {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-secondary-text--on-surface);
  display: flex;
  align-items: center;
  margin: 0;
}
.pf-sidebar__footer-contact-phone {
  font-size: var(--font-size-base);
  color: var(--color-secondary-text--on-surface);
  display: flex;
  align-items: center;
  margin: 0;
}
.pf-sidebar__footer-setting {
  margin-top: var(--spacing-md);
}
.pf-sidebar__footer-setting a {
  font-size: var(--font-size-base);
  color: var(--color-secondary-text--on-element);
  margin-right: var(--spacing-lg);
  display: flex;
  align-items: center;
}

.pf-sidebar__footprint {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary-surface--active);
  margin-top: var(--spacing-lg);
  padding: var(--spacing-base) 0;
  flex-shrink: 1;
}
.pf-sidebar__footprint-links {
  display: flex;
}
.pf-sidebar__footprint-links a + a {
  margin-left: var(--spacing-sm);
}
.pf-sidebar__footprint a {
  font-size: 0.875rem;
  color: var(--color-secondary-text--on-element);
  text-decoration: none;
}
.pf-sidebar__footprint .pf-sidebar__footprint-signature {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-sm);
  font-size: 0.75rem;
  color: var(--color-secondary-text--on-element);
}

.pf-sidebar__profairs-icon {
  margin-top: 6px;
  margin-left: var(--spacing-sm);
}

.pf-sidebar__profairs-icon svg {
  height: 1.75em;
  width: auto;
}

.pf-sidebar__profairs-icon svg * {
  fill: var(--color-secondary-text--on-surface);
}

.menu__icon-big {
  width: var(--spacing-md);
  height: auto;
  margin-right: var(--spacing-base);
  vertical-align: middle;
}
.menu__icon-big--menu {
  margin-right: var(--spacing-sm);
}

.menu__icon-small {
  width: var(--spacing-base);
  height: auto;
  margin-right: var(--spacing-sm);
  stroke-width: 2px;
}

.is-dropdown-submenu a {
  padding-left: var(--spacing-2xl);
}

.top-bar {
  margin-top: 1rem;
  background-color: var(--color-secondary-surface);
  font-family: var(--font-family-primary);
}

.top-bar a {
  font-family: var(--font-family-primary) !important;
  background-color: var(--color-secondary-surface) !important;
  color: var(--color-secondary-text--on-element) !important;
}

.top-bar-section li:not(.has-form) a:not(.button) {
  background-color: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-element);
  text-transform: none;
}
.top-bar-section li:not(.has-form) a:not(.button):focus, .top-bar-section li:not(.has-form) a:not(.button):hover {
  background: var(--color-secondary-element--hover);
  background-color: var(--color-secondary-element--hover);
  color: var(--color-secondary-text--on-element);
}

.top-bar-section .has-dropdown > a + .dropdown li a {
  background: var(--color-secondary-element--hover) !important;
  color: var(--color-secondary-text--on-element) !important;
}
.top-bar-section .has-dropdown > a + .dropdown li a:focus {
  background: var(--color-secondary-element--hover) !important;
  color: var(--color-secondary-text--on-element) !important;
}

.top-bar-section .has-dropdown > a + .dropdown li.active a {
  background: var(--color-secondary-element--hover) !important;
  color: var(--color-secondary-text--on-element) !important;
}

.pf-sidebar__header-logo--default {
  height: 5.25rem !important;
}

.pf-sidebar__header-logo--sm {
  height: 3.25rem !important;
}

.pf-sidebar__header-logo--lg {
  height: 9rem !important;
}

.pf-sidebar__header-logo--xxl {
  height: 16rem !important;
}

.pf-sidebar__header-no-select {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: var(--spacing-base);
  padding-top: var(--spacing-base);
  padding-bottom: var(--spacing-base);
  background: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-surface);
  border-radius: var(--radius-xs);
  font-size: var(--font-size-sm);
}

@media only screen and (min-width: 1025px) {
  .pf-grid {
    display: flex;
    align-items: flex-start;
  }
}
.pf-grid__main {
  flex: 1;
}
@media only screen and (max-width: 1024px) {
  .pf-grid__main {
    width: 100%;
  }
}
.pf-grid__container {
  padding: var(--spacing-lg) var(--spacing-lg);
}
@media only screen and (min-width: 1025px) {
  .pf-grid__container {
    padding: var(--spacing-xl) var(--spacing-xl);
    max-width: 1660px;
  }
}
.pf-grid__container--shop {
  padding-top: 0;
  padding-bottom: 0;
}

.pf-grid-left {
  gap: 1rem;
}
@media only screen and (min-width: 1025px) {
  .pf-grid-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.pf-grid-left__main {
  flex: 1;
}
@media only screen and (max-width: 1024px) {
  .pf-grid-left__main {
    width: 100%;
  }
}
.pf-grid-left__container {
  padding: var(--spacing-lg) var(--spacing-lg);
}
@media only screen and (min-width: 1025px) {
  .pf-grid-left__container {
    padding: var(--spacing-xl) var(--spacing-xl);
    max-width: 1660px;
  }
}
.pf-grid-left__container--shop {
  padding-top: 0;
  padding-bottom: 0;
}

.pf-header {
  background: linear-gradient(to left, var(--color-primary-darker), var(--color-primary));
}
.pf-header__wrapper {
  max-width: 1660px;
  padding: var(--spacing-lg) var(--spacing-base) var(--spacing-lg) var(--spacing-lg);
  border-bottom: 1px solid var(--color-neutral-border);
}
.pf-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pf-header__logo {
  height: 100%;
  padding: var(--spacing-base) 0;
}
.pf-header__logo img {
  max-height: 100%;
}
.pf-header__title {
  font-size: var(--font-size-lg);
  color: var(--color-primary-text--on-surface-active);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}
.pf-header__feat {
  display: flex;
  justify-content: space-between;
}
.pf-header__feat-search {
  position: relative;
  display: flex;
}
.pf-header__feat-search button {
  top: 0;
  bottom: 0;
  background-color: transparent;
  color: var(--color-neutral-text);
  padding: var(--spacing-base);
  line-height: 1;
  margin: 0;
}
.pf-header__feat-search input {
  display: none;
  max-width: 100%;
  min-height: 100%;
  padding: var(--spacing-base) var(--spacing-xl) var(--spacing-base) var(--spacing-base);
  background-color: var(--color-primary-surface);
  border-style: none;
  color: var(--color-primary-text--on-surface);
  margin-bottom: 0;
  border-radius: var(--radius-xs);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.pf-header__feat a {
  margin-left: var(--spacing-md);
}
.pf-header__feat a span {
  display: none;
}
.pf-header__searchbar-mobile {
  width: 100%;
  display: flex;
  background-color: #fff;
  display: none;
}
.pf-header__searchbar-mobile-active {
  display: block;
}
.pf-header__searchbar-form {
  width: 100%;
  display: flex;
  background-color: var(--color-neutral-surface);
}
.pf-header__searchbar-form input {
  background-color: transparent;
  border-style: none;
  width: 100%;
  margin: 0;
}
.pf-header__searchbar-form button {
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .pf-header__feat a, .pf-header__feat-search button {
    margin: 0;
    padding: var(--spacing-base);
    background-color: transparent;
    color: var(--color-primary-text--on-element);
  }
}
@media only screen and (min-width: 1024px) {
  .pf-header__wrapper {
    padding: var(--spacing-lg) var(--spacing-xl);
  }
}
@media only screen and (min-width: 1200px) {
  .pf-header__feat a span {
    display: inline;
  }
  .pf-header__feat-search input {
    display: block;
  }
  .pf-header__feat-search button {
    position: absolute;
    right: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .pf-header__feat-search input {
    width: 25rem;
  }
}

.pf-header__single-color {
  background: var(--color-primary) !important;
}

.pf-footer {
  text-align: center;
  background-color: var(--color-neutral-surface);
  font-size: var(--font-size-sm);
  padding: var(--spacing-base) 0;
}
.pf-footer a {
  font-size: 0.875rem;
  color: var(--color-neutral-text);
}
.pf-footer a:hover {
  color: var(--color-neutral-text--active);
}
.pf-footer__signature {
  margin-top: var(--spacing-base);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-footer__logo {
  margin-top: 5px;
  margin-left: var(--spacing-xs);
}
@media only screen and (min-width: 1024px) {
  .pf-footer {
    display: none;
  }
}

.pf-shop {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1240px) {
  .pf-shop.pf-shop--search {
    flex-direction: column;
  }
}
.pf-shop.pf-shop--search .pf-shop__element {
  border: none;
}
@media screen and (min-width: 568px) {
  .pf-shop.pf-shop--search .pf-shop__element {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .pf-shop.pf-shop--search .pf-shop__element {
    width: 33.333%;
  }
}
@media screen and (min-width: 1024px) {
  .pf-shop.pf-shop--search .pf-shop__element {
    width: 50%;
  }
}
@media screen and (min-width: 1560px) {
  .pf-shop.pf-shop--search .pf-shop__element {
    width: 25%;
  }
}
.pf-shop__aside, .pf-shop__content {
  padding: var(--spacing-md) 0;
}
.pf-shop__content {
  flex: 1 1 auto;
}
.pf-shop__aside {
  width: 100%;
  flex-shrink: 0;
}
.pf-shop__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}
@media screen and (min-width: 1240px) {
  .pf-shop__wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.pf-shop__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--font-size-lg);
}
.pf-shop__header > p {
  margin-bottom: 0;
}
.pf-shop__header-sort {
  margin-left: auto;
}
@media screen and (min-width: 1240px) {
  .pf-shop {
    flex-direction: row;
  }
  .pf-shop__aside {
    width: 18rem;
    padding-right: var(--spacing-base);
    border-right: 1px solid var(--color-neutral-border);
  }
  .pf-shop__content {
    padding-left: var(--spacing-md);
  }
}
.pf-shop__element {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
}
@media screen and (min-width: 568px) {
  .pf-shop__element {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .pf-shop__element {
    width: 33.333%;
  }
}
@media screen and (min-width: 1024px) {
  .pf-shop:not(.pf-shop--search) .pf-shop__element {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .pf-shop:not(.pf-shop--search) .pf-shop__element:not(:last-child) {
    border-bottom: 1px solid var(--color-neutral-border);
  }
  .pf-shop:not(.pf-shop--search) .pf-shop__element .pf-shop__element-image {
    width: 15rem;
    height: 100%;
    margin-right: var(--spacing-md);
  }
}
.pf-shop__element-header {
  position: relative;
  padding-top: 2.5rem;
}
.pf-shop__element-main {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pf-shop__element-main > *:last-child {
  margin-top: auto;
}
.pf-shop__element-recommended {
  position: absolute;
  z-index: 9;
  top: 0;
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-xs);
  border-radius: var(--radius-xs);
  background: var(--color-info-surface);
  color: var(--color-info-text--on-surface);
  padding: var(--spacing-xs) var(--spacing-sm);
  pointer-events: none;
}
.pf-shop__element-recommended svg {
  width: 1em;
  margin-right: var(--spacing-xs);
}
.pf-shop__element-discount {
  display: inline-flex;
  align-items: center;
  color: var(--color-danger-text);
  border: 1px solid var(--color-danger-border);
  padding: 0 var(--spacing-xs);
  font-size: 0.75rem;
  border-radius: var(--radius-xs);
}
.pf-shop__element-discount:hover, .pf-shop__element-discount:focus {
  color: var(--color-danger-text);
}
.pf-shop__element-discount svg {
  width: 1em;
  margin-left: var(--spacing-xs);
}
.pf-shop__title {
  font-size: var(--font-size-md);
  color: var(--color-secondary-text);
  font-weight: 600;
  margin-bottom: 0;
}
.pf-shop__info {
  width: 100%;
  padding: 1rem;
}
.pf-shop__info h1, .pf-shop__info h2, .pf-shop__info h3, .pf-shop__info h4, .pf-shop__info h5, .pf-shop__info h6, .pf-shop__info p {
  margin-bottom: 0;
}
.pf-shop__info-title {
  display: inline-flex;
  align-items: center;
}
.pf-shop__info-title svg {
  margin-right: var(--spacing-sm);
}
.pf-shop__image {
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-bottom: var(--spacing-md);
}
.pf-shop__name {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-text--active);
  margin-bottom: var(--spacing-xs);
}
.pf-shop__description {
  color: var(--color-neutral-text);
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--spacing-base);
}
.pf-shop__availability {
  display: flex;
  align-items: center;
  color: var(--color-neutral-text);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  margin-bottom: var(--spacing-base);
}
.pf-shop__availability svg {
  color: var(--color-info-text);
  margin-right: var(--spacing-xs);
  width: 1em;
}
.pf-shop__price-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: var(--font-size-md);
  color: var(--color-neutral-text);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xs);
}
.pf-shop__price {
  margin-right: var(--spacing-sm);
  color: var(--color-neutral-text--active);
}
.pf-shop__date {
  color: var(--color-neutral-text);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-sm);
}
.pf-shop__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xl);
}
.pf-shop__pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}
.pf-shop__pages {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-text);
  font-weight: var(--font-weight-regular);
  display: block;
  padding: var(--spacing-base);
}
.pf-shop__pages--active {
  color: var(--color-secondary-text);
}
.pf-shop__turn-btn {
  padding: var(--spacing-xs);
  background-color: var(--color-secondary-element);
  color: var(--color-secondary-text--on-element);
  border-radius: var(--radius-xs);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-shop__turn-btn--unable {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed !important;
}
.pf-shop__turn-btn:hover, .pf-shop__turn-btn:focus {
  background-color: var(--color-secondary-element--hover);
  color: var(--color-secondary-text--on-element);
}
.pf-shop__nav-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-text);
  margin-bottom: var(--spacing-base);
}
.pf-shop__nav-item {
  padding: var(--spacing-xs) 0;
}
.pf-shop__nav-item-locked > a {
  text-decoration: line-through;
}
.pf-shop__nav-item > ul {
  display: none;
}
.pf-shop__nav-item > a {
  position: relative;
  display: block;
  padding: var(--spacing-sm) var(--spacing-base);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-xs);
  color: var(--color-neutral-text--on-element);
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.pf-shop__nav-item.has-sub.open > a::before {
  transform: rotate(-45deg);
}
.pf-shop__nav-item.has-sub > a::before {
  border-style: solid;
  border-width: 0.125em 0.125em 0 0;
  content: "";
  display: inline-block;
  height: 0.5em;
  position: absolute;
  top: 50%;
  margin-top: -0.25em;
  right: var(--spacing-base);
  border-color: var(--color-neutral-text);
  transform: rotate(135deg);
  transform-origin: center center;
  transition: transform 0.3s ease;
  width: 0.5em;
}
.pf-shop__nav-item > a:hover, .pf-shop__nav-item.is-active > a, .pf-shop__nav-item.open > a {
  background-color: var(--color-neutral-element);
}
.pf-shop__nav-item li a {
  line-height: 2;
  padding-left: var(--spacing-base);
  color: var(--color-neutral-text--on-element);
}
.pf-shop__nav-item li.is-active a {
  font-weight: var(--font-weight-bold);
}
.pf-shop__nav-item li.locked a {
  text-decoration: line-through;
}
.pf-shop__nav-item li a:hover {
  color: var(--color-neutral-text--hover);
}
.pf-shop__nav-item li a:active {
  color: var(--color-neutral-text--active);
}
.pf-shop__nav ul {
  padding: var(--spacing-base) 0;
}
.pf-shop__nav a {
  display: block;
  color: var(--color-neutral-text);
}
@media screen and (min-width: 1240px) {
  .pf-shop__nav {
    display: block !important;
  }
}
@media screen and (min-width: 1240px) {
  .pf-shop__nav-toggle-container {
    display: none;
  }
}

.pf-progress {
  background: #f2f2f2;
  padding: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 568px) {
  .pf-progress {
    padding: 0.2rem;
  }
}
.pf-progress_number {
  text-align: right;
  margin-bottom: 4px;
  margin-right: 4px;
}
.pf-progress .accordion .accordion-navigation > .content.active, .pf-progress .accordion dd > .content.active {
  background-color: #f2f2f2 !important;
}
.pf-progress__headline {
  margin: 1.5rem 0 2rem 1.5rem;
}

.progress {
  background: #e9e9e9;
  border: 1px solid #f2f2f2;
  height: 0.75rem;
  margin-bottom: 1rem;
  padding: 0;
  border-radius: 17px;
  overflow: hidden;
}
.progress_number {
  text-align: right;
}
.progress .meter__success {
  background-color: var(--color-success);
}
.progress .meter__warning {
  background-color: var(--color-warning);
}

.progressbar_element {
  display: flex;
  margin: 1.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .progressbar_element {
    flex-direction: column;
  }
}
.progressbar_element_wrapper {
  display: flex;
}
.progressbar_element__container {
  background: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
}
.progressbar_element__checked {
  opacity: 0.5;
}
.progressbar_element_show_more {
  text-align: right;
}
.progressbar_element_show_more__text {
  padding: 1rem;
}
.progressbar_element_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  border: 1px solid #cacaca;
  border-radius: 40px;
  margin-right: 2rem;
}
.progressbar_element_icon__checked {
  background-color: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-element);
}
.progressbar_element_text {
  flex: 1;
}
.progressbar_element_text p {
  margin-top: 0.5rem;
}
.progressbar_element_text__title {
  font-size: 16px;
  font-weight: 700;
}
.progressbar_element_text ul {
  list-style: disc !important;
}
.progressbar_element_text ol {
  list-style: decimal !important;
}
.progressbar_element_link_container {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-left: 2rem;
}
@media screen and (max-width: 1200px) {
  .progressbar_element_link_container {
    margin-left: 0;
  }
}
.progressbar_element_link_container a {
  white-space: nowrap;
  text-decoration: none;
}
.progressbar_element__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.pf-pd__zurück {
  display: flex;
  align-items: center;
  color: var(--color-secondary-text);
  margin-bottom: var(--font-size-xl);
  margin-left: -6px;
}
.pf-pd__zurück:focus {
  color: var(--color-secondary-text--hover);
}
.pf-pd__title {
  font-size: var(--font-size-lg);
  color: var(--color-neutral-text--active);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}
.pf-pd__description {
  width: 100%;
  margin-bottom: var(--font-size-xl);
  /* 		@media only screen and (min-width: 1024px) {
  			width: 60%;
  		} */
}
.pf-pd__description ol, .pf-pd__description ul {
  margin-left: 1.4rem !important;
}
.pf-pd__warning {
  padding: var(--spacing-sm) var(--spacing-base);
  background-color: var(--color-warning-surface);
  border: 1px solid var(--color-warning-border);
  border-radius: var(--radius-xs);
  margin-top: var(--spacing-base);
  margin-bottom: var(--spacing-lg);
  max-width: 100%;
}
@media only screen and (min-width: 769px) {
  .pf-pd__warning {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1024px) {
  .pf-pd__warning {
    max-width: 60%;
  }
}
.pf-pd__warning p {
  margin-bottom: 0;
}
.pf-pd__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -1rem;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .pf-pd__content {
    justify-content: space-between;
    flex-direction: row;
  }
}
.pf-pd__content-wrapper {
  width: 60%;
  max-width: 40rem;
  padding: 1rem;
}
.pf-pd__content-wrapper--image {
  width: auto;
  max-width: 40%;
}
.pf-pd__content-wrapper--image img {
  max-width: 100%;
}
.pf-pd__content-wrapper figcaption {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .pf-pd__content-wrapper {
    width: 100%;
  }
}
.pf-pd__img {
  aspect-ratio: auto 1/1;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .pf-pd__img {
    width: 100%;
  }
}
.pf-pd__order {
  width: 100%;
}
.pf-pd__select {
  margin-bottom: var(--spacing-base);
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) {
  .pf-pd__select {
    justify-content: space-between;
    flex-direction: row;
  }
}
.pf-pd__select select {
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .pf-pd__select select {
    width: 60%;
    margin-left: 1rem;
  }
}
.pf-pd__select textarea {
  resize: vertical;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .pf-pd__select textarea {
    width: 60%;
    margin-left: 1rem;
  }
}
.pf-pd__deadline {
  font-weight: var(--font-weight-semibold);
}
.pf-pd__label {
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
@media only screen and (min-width: 1200px) {
  .pf-pd__label {
    margin-bottom: 0;
  }
}
.pf-pd__input-anzahl {
  position: relative;
  margin-bottom: var(--spacing-sm);
}
@media only screen and (min-width: 1200px) {
  .pf-pd__input-anzahl {
    margin-bottom: 0;
  }
}
.pf-pd__preis-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  border-top: 1px solid var(--color-neutral-border);
}
.pf-pd__preis-tax {
  font-weight: var(--font-weight-semibold);
  margin-right: var(--spacing-md);
  line-height: 2;
}
.pf-pd__preis-no {
  font-size: var(--font-size-xl);
  color: var(--color-neutral-text--active);
  font-weight: var(--font-weight-semibold);
  text-align: right;
}
.pf-pd__preis-no .discount {
  display: flex;
  align-items: center;
  font-size: 0.5em;
}
.pf-pd__preis-no .discount .has-tip {
  display: inline-flex;
  align-items: center;
  color: var(--color-danger-text);
}
.pf-pd__preis-no .discount svg {
  margin-left: var(--spacing-xs);
  width: 0.75em;
  stroke: currentColor;
  color: inherit;
}
.pf-pd__preis-no s {
  display: inline-block;
  margin-left: var(--spacing-sm);
  color: var(--color-neutral-text);
}
.pf-pd__button-wrapper {
  display: flex;
  justify-content: flex-end;
}
.pf-pd__recommend-title {
  font-size: var(--font-size-md);
  color: var(--color-secondary-text);
  font-weight: var(--font-weight-bold);
  margin-top: var(--spacing-xl);
}
.pf-pd__error {
  padding: var(--spacing-sm) var(--spacing-base);
  background-color: var(--color-danger-surface);
  border: 1px solid var(--color-danger-border);
  border-radius: var(--radius-xs);
  margin-top: var(--spacing-base);
  margin-bottom: var(--spacing-base);
}
@media only screen and (min-width: 1024px) {
  .pf-pd__error {
    display: flex;
  }
}
.pf-pd__error svg {
  color: var(--color-danger-element);
  margin-right: var(--spacing-xs);
}
.pf-pd__error p {
  margin-bottom: 0;
}

/* AUSSTELLERAUSWEIS */
.pf-pd__select--name {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.pf-pd__select--name input {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .pf-pd__select--name input {
    width: 60%;
  }
}

.pf-pd__select--tel {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.pf-pd__select--tel input {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .pf-pd__select--tel input {
    width: 60%;
  }
}

.pf-pd__select__delete-icon {
  position: absolute;
  right: 1rem;
  top: 2.45rem;
  opacity: 0.5;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .pf-pd__select__delete-icon {
    top: 0.75rem;
  }
}
.pf-pd__select__delete-icon:hover {
  opacity: 1;
}

.pf-pd__select--add-more {
  display: flex;
  justify-content: flex-end;
  color: var(--color-primary-text);
  transition: all 0.3s;
  cursor: pointer;
}
.pf-pd__select--add-more p {
  display: flex;
  align-items: center;
  font-size: var(--font-size-xs);
}
.pf-pd__select--add-more svg {
  margin-right: var(--spacing-sm);
}
.pf-pd__select--add-more:hover {
  color: var(--color-primary-text--hover);
}

.pf-pd__ausweis-info {
  padding-bottom: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-secondary-border);
}
.pf-pd__ausweis-info:first-child {
  margin-top: var(--spacing-xl);
}

.maximale-menge {
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .maximale-menge {
    width: 60%;
    margin-left: 1rem;
  }
}

.product-info-box {
  padding: var(--spacing-sm) var(--spacing-base);
  background-color: var(--color-info-surface);
  border: 1px solid var(--color-info-border);
  border-radius: var(--radius-xs);
  margin-top: var(--spacing-base);
  margin-bottom: var(--spacing-lg);
  max-width: 100%;
  display: block;
}
@media only screen and (min-width: 769px) {
  .product-info-box {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1024px) {
  .product-info-box {
    max-width: 60%;
  }
}
.product-info-box p {
  margin-bottom: 0;
}

.pf-login {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .pf-login {
    flex-direction: column;
    min-height: 100vh;
  }
}

.pf-login__text {
  background-color: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-element);
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-login__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .pf-login__text-wrapper {
    width: 100%;
  }
}
.pf-login__text-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary-text--on-element);
}
@media screen and (max-width: 1200px) {
  .pf-login__text-title {
    font-size: var(--font-size-xl);
  }
}
@media screen and (max-width: 1024px) {
  .pf-login__text-title {
    text-align: center;
  }
}
.pf-login__text-line {
  height: 1px;
  width: 50%;
  background-color: var(--color-secondary-border);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .pf-login__text-line {
    display: none;
  }
}
.pf-login__text-des {
  margin-top: var(--spacing-2xl);
  max-width: 25rem;
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .pf-login__text-des {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .pf-login__text {
    width: 40%;
    padding: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .pf-login__text {
    width: 100%;
    height: fit-content;
    padding: 2rem;
  }
}

.pf-sidebar__footprint--login {
  position: fixed;
  width: 50%;
  bottom: 0;
  left: 0;
  z-index: 10;
  margin-top: 0;
}
@media screen and (max-width: 1200px) {
  .pf-sidebar__footprint--login {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .pf-sidebar__footprint--login {
    position: relative;
    width: 100%;
  }
}

.pf-login__input {
  width: 50%;
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: var(--spacing-2xl) 0;
}
@media screen and (max-width: 1200px) {
  .pf-login__input {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .pf-login__input {
    width: 100%;
    height: 100%;
  }
}
.pf-login__input__wrapper {
  position: relative;
  width: 28rem;
}
@media screen and (max-width: 720px) {
  .pf-login__input__wrapper {
    width: 70%;
  }
}
.pf-login__input__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
}
.pf-login__input__section input,
.pf-login__input__section select {
  border-radius: 6px;
  height: 3.1125rem;
  padding-right: 1.5rem;
  font-weight: bold;
  background-color: var(--color-neutral-element);
  border-radius: 4px;
}
.pf-login__input__section label {
  margin-bottom: 0.5rem;
}
.pf-login__input__section button {
  width: 100%;
  background-color: var(--color-secondary-element);
  color: var(--color-secondary-text--on-element);
  border-radius: 4px;
  margin-top: var(--spacing-lg);
}
.pf-login__input__section button:hover {
  background-color: var(--color-secondary-surface--active);
}
.pf-login__input__select {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .pf-login__input__select {
    display: inline-block;
  }
}
.pf-login__input__messe {
  width: 100%;
}
@media screen and (min-width: 500px) {
  .pf-login__input__sprache {
    width: 40%;
    margin-left: 1rem;
  }
}

.pf-login__password {
  display: flex;
  position: relative;
}
.pf-login__password svg {
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  cursor: pointer;
}
.pf-login__password a {
  color: var(--color-secondary-text);
  opacity: 0.5;
}

/* Sidebar Component */
.pfc-sidebar__tooltip {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: var(--font-size-base);
  color: var(--color-secondary-text--on-element);
  border-bottom: none;
  font-weight: var(--font-weight-regular);
}
.pfc-sidebar__tooltip:hover {
  color: var(--color-secondary-text--hover);
}

/* Content Component */
.pfc-button,
input.pfc-button,
button.pfc-button {
  padding: var(--spacing-base) var(--spacing-lg);
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: var(--font-weight-bold);
  border: none;
  border-radius: var(--radius-xs);
  font-size: var(--font-size-base);
  margin-bottom: 0;
  transition: background-color 0.2s ease-out;
}
.pfc-button--expanded,
input.pfc-button--expanded,
button.pfc-button--expanded {
  width: 100%;
}
.pfc-button--sm,
input.pfc-button--sm,
button.pfc-button--sm {
  padding: var(--spacing-sm) var(--spacing-base);
  font-size: var(--font-size-sm);
}
.pfc-button__icon-left,
input.pfc-button__icon-left,
button.pfc-button__icon-left {
  margin-right: var(--spacing-sm);
}
.pfc-button__icon-right,
input.pfc-button__icon-right,
button.pfc-button__icon-right {
  margin-left: var(--spacing-sm);
}
.pfc-button--secondary,
input.pfc-button--secondary,
button.pfc-button--secondary {
  background-color: var(--color-secondary-element);
  color: var(--color-secondary-text--on-element);
}
.pfc-button--secondary:hover,
input.pfc-button--secondary:hover,
button.pfc-button--secondary:hover {
  background-color: var(--color-secondary-element--hover);
  color: var(--color-secondary-text--on-element);
}
.pfc-button--secondary:focus,
input.pfc-button--secondary:focus,
button.pfc-button--secondary:focus {
  background-color: var(--color-secondary-element--active);
  color: var(--color-secondary-text--on-element);
}
.pfc-button--progressbar,
input.pfc-button--progressbar,
button.pfc-button--progressbar {
  padding: 0.5rem 1rem;
}
.pfc-button--primary,
input.pfc-button--primary,
button.pfc-button--primary {
  background-color: var(--color-primary-element);
  color: var(--color-primary-text--on-element);
}
.pfc-button--primary:hover,
input.pfc-button--primary:hover,
button.pfc-button--primary:hover {
  background-color: var(--color-primary-element--hover);
  color: var(--color-primary-text--on-element);
}
.pfc-button--primary:focus,
input.pfc-button--primary:focus,
button.pfc-button--primary:focus {
  background-color: var(--color-primary-element--active);
  color: var(--color-primary-text--on-element);
}
.pfc-button--neutral,
input.pfc-button--neutral,
button.pfc-button--neutral {
  background-color: var(--color-neutral-element);
  color: var(--color-neutral-text--on-element);
}
.pfc-button--neutral:hover,
input.pfc-button--neutral:hover,
button.pfc-button--neutral:hover {
  background-color: var(--color-neutral-element--hover);
  color: var(--color-neutral-text--on-element);
}
.pfc-button--neutral:focus,
input.pfc-button--neutral:focus,
button.pfc-button--neutral:focus {
  background-color: var(--color-neutral-element--active);
  color: var(--color-neutral-text--on-element);
}
.pfc-button--neutral-outline,
input.pfc-button--neutral-outline,
button.pfc-button--neutral-outline {
  background-color: transparent;
  color: var(--color-neutral-text--on-element);
  border: 1px solid var(--color-neutral-border);
}
.pfc-button--neutral-outline:hover,
input.pfc-button--neutral-outline:hover,
button.pfc-button--neutral-outline:hover {
  background-color: var(--color-neutral-element);
  color: var(--color-neutral-text--on-element);
}
.pfc-button--neutral-outline:focus,
input.pfc-button--neutral-outline:focus,
button.pfc-button--neutral-outline:focus {
  background-color: var(--color-neutral-element);
  color: var(--color-neutral-text--on-element);
}
.pfc-button--danger,
input.pfc-button--danger,
button.pfc-button--danger {
  background-color: var(--color-danger-element);
  color: var(--color-danger-text--on-element);
}
.pfc-button--danger:hover,
input.pfc-button--danger:hover,
button.pfc-button--danger:hover {
  background-color: var(--color-danger-element--hover);
  color: var(--color-danger-text--on-element);
}
.pfc-button--danger:focus,
input.pfc-button--danger:focus,
button.pfc-button--danger:focus {
  background-color: var(--color-danger-element--active);
  color: var(--color-danger-text--on-element);
}
.pfc-button--info,
input.pfc-button--info,
button.pfc-button--info {
  background-color: var(--color-info-element);
  color: var(--color-info-text--on-element);
}
.pfc-button--info:hover,
input.pfc-button--info:hover,
button.pfc-button--info:hover {
  background-color: var(--color-info-element--hover);
  color: var(--color-info-text--on-element);
}
.pfc-button--info:focus,
input.pfc-button--info:focus,
button.pfc-button--info:focus {
  background-color: var(--color-info-element--active);
  color: var(--color-info-text--on-element);
}
.pfc-button--warning,
input.pfc-button--warning,
button.pfc-button--warning {
  background-color: var(--color-warning-element);
  color: var(--color-warning-text--on-element);
}
.pfc-button--warning:hover,
input.pfc-button--warning:hover,
button.pfc-button--warning:hover {
  background-color: var(--color-warning-element--hover);
  color: var(--color-warning-text--on-element);
}
.pfc-button--warning:focus,
input.pfc-button--warning:focus,
button.pfc-button--warning:focus {
  background-color: var(--color-warning-element--active);
  color: var(--color-warning-text--on-element);
}
.pfc-button--success,
input.pfc-button--success,
button.pfc-button--success {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
}
.pfc-button--success:hover,
input.pfc-button--success:hover,
button.pfc-button--success:hover {
  background-color: var(--color-success-element--hover);
  color: var(--color-success-text--on-element);
}
.pfc-button--success:focus,
input.pfc-button--success:focus,
button.pfc-button--success:focus {
  background-color: var(--color-success-element--active);
  color: var(--color-success-text--on-element);
}
.pfc-button:disabled,
input.pfc-button:disabled,
button.pfc-button:disabled {
  cursor: not-allowed;
}

.pfc__sub-title {
  font-size: var(--font-size-md);
  color: var(--color-neutral-text--active);
  font-weight: var(--font-weight-semibold);
}

.pfc-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-secondary-text);
}
.pfc-link:hover {
  color: var(--color-secondary-text--hover);
}

.pfc-back {
  display: inline-flex;
  align-items: center;
  color: var(--color-neutral-text);
}
.pfc-back:hover, .pfc-back:focus {
  color: var(--color-neutral-text--hover);
}

.text a {
  color: var(--color-primary-text);
}
.text a:hover, .text a:focus {
  color: var(--color-primary-text--hover);
}

.click-event-none {
  pointer-events: none;
}

body {
  font-family: Inter, sans-serif;
  font-weight: var(--font-weight-regular);
  background-color: white;
}

#home {
  line-height: var(--line-height-sm);
}

.pf-scroll-fix {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--font-size-2xl);
}

h2 {
  font-size: var(--font-size-xl);
}

h3 {
  font-size: var(--font-size-lg);
}

h4 {
  font-size: var(--font-size-md);
}

h5 {
  font-size: var(--font-size-base);
}

h6 {
  font-size: var(--font-size-sm);
}

article a {
  text-decoration: underline;
}

.no-click {
  pointer-events: none !important;
}

.icon-sm {
  font-size: 0.75em;
}

.icon-md {
  font-size: 1em;
}

.icon-lg {
  font-size: 1.25em;
}

.product-info-box--full {
  max-width: 100% !important;
}

.w-100 {
  width: 100%;
}

.mb-1 {
  margin-bottom: 1rem;
}

.bg-primary {
  background-color: var(--color-secondary-element) !important;
  color: var(--color-secondary-text--on-element) !important;
}

/* Alerts */
.alert-box {
  background-color: var(--color-neutral-surface);
  border-color: var(--color-neutral-surface);
  color: var(--color-neutral-text--on-surface);
  border-radius: var(--radius-xs);
  border: 1px solid var(--color-neutral-border);
}
.alert-box--shrink {
  display: inline-block;
}
.alert-box h1,
.alert-box h2,
.alert-box h3,
.alert-box h4,
.alert-box h5,
.alert-box h6 {
  color: inherit;
}
.alert-box.warning {
  background-color: var(--color-warning-surface);
  border-color: var(--color-warning-surface);
  color: var(--color-warning-text--on-surface);
  border: 1px solid var(--color-warning-border);
}
.alert-box.alert {
  background-color: var(--color-danger-surface);
  border-color: var(--color-danger-surface);
  color: var(--color-danger-text--on-surface);
  border: 1px solid var(--color-danger-border);
}
.alert-box.success {
  background-color: var(--color-success-surface);
  border-color: var(--color-success-surface);
  color: var(--color-success-text--on-surface);
  border: 1px solid var(--color-success-border);
}
.alert-box.info {
  background-color: var(--color-info-surface);
  border-color: var(--color-info-surface);
  color: var(--color-info-text--on-surface);
  border: 1px solid var(--color-info-border);
}
.alert-box.secondary {
  background-color: var(--color-primary-surface);
  border-color: var(--color-primary-surface);
  color: var(--color-primary-text--on-surface);
  border: 1px solid var(--color-primary-border);
}

/* Accordion */
.accordion .accordion-navigation > a,
.accordion dd > a {
  background: var(--color-neutral-element);
  color: var(--color-neutral-text--on-element);
}
.accordion .accordion-navigation > a:hover,
.accordion dd > a:hover {
  background: var(--color-neutral-element--hover);
}

.accordion .accordion-navigation.active > a::before {
  transform: rotate(-45deg);
}
.accordion .accordion-navigation > a {
  position: relative;
}
.accordion .accordion-navigation > a::before {
  border-style: solid;
  border-width: 0.125em 0.125em 0 0;
  content: "";
  display: inline-block;
  height: 0.5em;
  position: absolute;
  top: 50%;
  margin-top: -0.25em;
  right: var(--spacing-base);
  border-color: var(--color-neutral-text--on-element);
  transform: rotate(135deg);
  vertical-align: top;
  transition: transform 0.3s ease;
  width: 0.5em;
}

.accordion .accordion-navigation + .accordion-navigation {
  margin-top: var(--spacing-sm);
}

.accordion .accordion-navigation.active > a,
.accordion dd.active > a {
  background: var(--color-neutral-element);
  color: var(--color-neutral-text--on-element);
}

/* Reveal Modal */
.reveal-modal .close-reveal-modal {
  font-size: var(--font-size-md);
}

/* Labels */
.label {
  font-size: var(--font-size-xs);
  background-color: var(--color-secondary-surface);
  color: var(--color-secondary-text--on-surface);
}
.label.alert {
  background-color: var(--color-danger-surface);
  color: var(--color-danger-text--on-surface);
}
.label.success {
  background-color: var(--color-success-surface);
  color: var(--color-success-text--on-surface);
}
.label.info {
  background-color: var(--color-info-surface);
  color: var(--color-info-text--on-surface);
}
.label.warning {
  background-color: var(--color-warning-surface);
  color: var(--color-warning-text--on-surface);
}
.label.secondary {
  background-color: var(--color-primary-surface);
  color: var(--color-primary-text--on-surface);
}

.pf-language_tabs-header {
  margin-bottom: var(--spacing-md) !important;
}
.pf-language_tabs-header .pf-language_tabs-header-item .has-invalid {
  color: var(--color-danger) !important;
}

.pf-language_tabs-body input:invalid {
  border-color: var(--color-danger) !important;
  color: var(--color-danger) !important;
}

.pf-tag, .pf-hightlight__language-label {
  background-color: var(--color-neutral-surface);
  color: var(--color-neutral-text-on-surface);
  border-radius: var(--radius-sm);
}

.choices-multiple--highlight {
  margin-bottom: 1rem;
  border-radius: 6px;
}

.pf-alert h4 i {
  margin-right: var(--spacing-sm);
}
.pf-alert .pf-alert-text_container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--spacing-base);
}
.pf-alert .pf-alert-text_container p {
  margin-bottom: 0;
}
.pf-alert .pf-alert-text_container p i {
  margin-right: var(--spacing-sm);
}

.pf-form_information .pf-form_information-text_container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--spacing-base);
}
.pf-form_information .pf-form_information-text_container p {
  margin-bottom: 0;
}

.pf-quicklinks__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-md);
  width: 100%;
}
.pf-quicklinks__title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-text);
}
.pf-quicklinks__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  width: auto;
  max-width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-md);
  text-align: center;
}
.pf-quicklinks__icon {
  width: 148px;
  padding: var(--spacing-md);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-quicklinks__icon svg {
  width: 100%;
}
.pf-quicklinks__name {
  margin-top: auto;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}
.pf-quicklinks__meta {
  display: block;
  color: var(--color-neutral-text);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
}
@media (max-width: 1450px) {
  .pf-quicklinks .pf-quicklinks__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .pf-quicklinks .pf-quicklinks__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pf-stichworte-chosen .pf-stichworte-chosen-list {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-base);
  flex-wrap: wrap;
}

.pf-stichworte-suggestions {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.pf-stichworte-suggestions table, .pf-stichworte-suggestions th, .pf-stichworte-suggestions td {
  border-color: var(--color-neutral-border);
}
.pf-stichworte-suggestions legend {
  margin-left: 20px;
}
.pf-stichworte-suggestions table {
  margin-bottom: 0;
  border-bottom: 0;
  box-shadow: none;
}
.pf-stichworte-suggestions table tr {
  margin: 0 !important;
  color: var(--color-neutral-text);
}
.pf-stichworte-suggestions table tr *:first-child {
  border-left: 0;
}
.pf-stichworte-suggestions table tr *:last-child {
  border-right: 0;
}
.pf-stichworte-suggestions table tr:hover {
  background-color: var(--color-neutral-element);
  color: var(--color-neutral-text--hover);
  cursor: pointer;
}
.pf-stichworte-suggestions table tr.active {
  background-color: var(--color-neutral-element--active);
  color: var(--color-neutral-text--hover);
}
.pf-stichworte-suggestions table tbody tr:last-child td {
  border-bottom: 0;
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-search {
  padding-left: 0;
  margin-left: 1.125rem;
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-not_found code {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-xs);
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-not_found div {
  font-size: var(--font-size-sm);
  padding-left: 0;
  margin-left: 1.125rem;
  margin-bottom: var(--spacing-base);
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-list-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-list-row .pf-stichworte-suggestions-list-row-keyword {
  flex-grow: 3;
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-list-row td {
  display: inline-flex;
  align-items: center;
  padding: 1.125rem;
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-list-row td::before {
  content: none;
}
.pf-stichworte-suggestions .pf-stichworte-suggestions-list-row td .pf-stichworte-suggestions-list-row-checkbox {
  pointer-events: none;
  margin-top: auto;
  margin-bottom: auto;
}

.pf-stichworte-suggestions-search__input-wrapper {
  width: 100%;
  padding-right: 1.5rem;
}

.pf-stichworte-suggestions-list-row-keyword {
  padding-left: 1.125rem !important;
  padding-right: 1.125rem !important;
  padding-top: 0.875rem;
  cursor: pointer;
}
.pf-stichworte-suggestions-list-row-keyword:hover {
  background-color: #F6F6F6;
}
.pf-stichworte-suggestions-list-row-keyword input {
  margin-right: var(--spacing-sm) !important;
}

.pf-stichworte__modul-spacing {
  margin-top: var(--spacing-xl);
}

#branchenzuordnung .pf-branchen-node {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: var(--spacing-base);
}
#branchenzuordnung .no-margin {
  margin-left: 0;
}
#branchenzuordnung .pf-branchen-chosen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-base);
}
#branchenzuordnung .pf-branchen-chosen .pf-tag__branche {
  cursor: pointer;
}
#branchenzuordnung .pf-branchen-chosen .pf-tag__branche:hover, #branchenzuordnung .pf-branchen-chosen .pf-tag__branche:active {
  background-color: var(--color-neutral-surface--active);
  color: var(--color-neutral-text--active);
}
#branchenzuordnung .item-wrapper.marked {
  color: var(--color-neutral-text--active) !important;
  font-weight: bold !important;
  border-left: 5px solid var(--color-primary-border);
}
#branchenzuordnung .item-wrapper.marked:hover {
  background-color: #F6F6F6;
}
#branchenzuordnung .pf-branchen-leaf > .item-wrapper.marked {
  border-left: 3px solid var(--color-primary-border);
}
#branchenzuordnung .pf-branchen-leaf > .item-wrapper.marked:hover {
  background-color: #F6F6F6;
}
#branchenzuordnung .item-wrapper.marked > label {
  color: var(--color-neutral-text--active) !important;
  font-weight: bold !important;
}
#branchenzuordnung .pf-branchen-node {
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  -ms-transition: opacity 300ms;
  transition: opacity 300ms;
  opacity: 1;
}
#branchenzuordnung .pf-branchen-node.hidden, #branchenzuordnung .pf-branchen-node.from-hidden {
  opacity: 0;
}
#branchenzuordnung .pf-branchen-node.from-shown {
  display: block !important;
}
#branchenzuordnung .pf-branchen-node.hidden {
  display: none;
}
#branchenzuordnung .pf-branchen-leaf:has(input[type=checkbox]:disabled) * {
  cursor: default !important;
}
#branchenzuordnung .pf-branchen-leaf {
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
}
#branchenzuordnung .pf-branchen-leaf:hover {
  background-color: #F6F6F6;
}
#branchenzuordnung .pf-branchen-leaf .item-wrapper {
  border-bottom: 0;
  flex-grow: 1;
}
#branchenzuordnung .pf-branchen-leaf .pf-branchen-leaf-schwerpunktbranchen-button {
  float: right;
  border: 1px solid var(--color-neutral-border);
  color: var(--color-neutral-text);
  background-color: white;
  border-radius: var(--radius-sm);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-sm);
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
  display: inline-flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: var(--spacing-sm);
}
#branchenzuordnung .pf-branchen-leaf .pf-branchen-leaf-schwerpunktbranchen-button.selected {
  background-color: var(--color-primary-surface);
  color: var(--color-primary);
}
#branchenzuordnung .pf-branchen-leaf .pf-branchen-leaf-schwerpunktbranchen-button.hidden {
  display: none;
}

.pf-branchen__modul-spacing {
  margin-top: var(--spacing-xl) !important;
}

.pf-tag__schwerpunkt-branche {
  background-color: var(--color-primary-surface) !important;
  color: var(--color-primary) !important;
}

.pf-wizard {
  background-color: var(--color-neutral-surface);
  padding: var(--spacing-md);
  border-radius: var(--radius-xs);
}
.pf-wizard--dependent .pf-wizard__elements {
  gap: 0;
  border: var(--color-neutral-border) 1px solid;
  border-radius: var(--radius-xs);
}
.pf-wizard--dependent .pf-wizard__elements::before {
  display: none;
}
.pf-wizard--dependent .pf-wizard__elements .pf-wizard__element {
  position: relative;
  border: 0;
}
.pf-wizard--dependent .pf-wizard__elements .pf-wizard__element:not(:last-child) {
  /* a chevron to the right side of the element */
}
.pf-wizard--dependent .pf-wizard__elements .pf-wizard__element:not(:last-child):after {
  flex-shrink: 0;
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 100%;
  content: "";
  --s: 1px; /* control the shape (can be percentage) */
  height: 100%;
  aspect-ratio: 1/4;
  clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
  background: var(--color-neutral-border);
  content: "";
}
@media only screen and (max-width: 1200px) {
  .pf-wizard--dependent .pf-wizard__elements .pf-wizard__element:not(:last-child):after {
    top: 100%;
    left: 50%;
    height: auto;
    width: 100%;
    clip-path: none;
    border-bottom: 1px solid var(--color-neutral-border);
    aspect-ratio: auto;
  }
}
.pf-wizard__title {
  color: var(--color-neutral-text);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.pf-wizard__wrapper {
  background-color: #fff;
  padding: var(--spacing-md);
  border-radius: var(--radius-xs);
  margin-top: var(--spacing-md);
}
.pf-wizard__elements {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--spacing-base);
}
.pf-wizard__elements:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-neutral-border);
  top: 50%;
  left: 0%;
}
.pf-wizard__elements .pf-wizard__element {
  flex: auto;
  flex-direction: column;
  display: flex;
  align-items: center;
  padding: var(--spacing-base) var(--spacing-base);
  border: 1px solid;
  background-color: white;
  border-color: var(--color-neutral-border);
  border-radius: var(--radius-xs);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  text-align: center;
  color: var(--color-neutral-text);
  gap: var(--spacing-base);
  position: relative;
}
.pf-wizard__elements .pf-wizard__element:hover {
  transition: all 0.3s ease;
}
.pf-wizard__elements .pf-wizard__element:hover .pf-wizard__element-status {
  border-color: currentColor;
}
.pf-wizard__elements .pf-wizard__element-status {
  min-width: 1.5rem;
  min-height: 1.5rem;
  border-radius: 999999px;
  background-color: var(--color-neutral-surface);
  color: var(--color-neutral-text--on-surface);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-wizard__elements .pf-wizard__element-status svg {
  opacity: 0.5;
  width: 1em;
  height: 1em;
}
.pf-wizard__elements .pf-wizard__element--success .pf-wizard__element-status {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
}
.pf-wizard__elements .pf-wizard__element--success .pf-wizard__element-status svg {
  opacity: 1;
}
.pf-wizard__elements .pf-wizard__element--success:hover {
  transition: all 0.3s ease;
}
.pf-wizard__elements .pf-wizard__element--active {
  color: var(--color-neutral-text--active);
  border-color: var(--color-primary-border);
}
.pf-wizard__elements .pf-wizard__element--active .pf-wizard__element-status {
  background-color: var(--color-primary-element);
  color: var(--color-primary-text--on-element);
}
.pf-wizard__elements .pf-wizard__element--disable {
  cursor: not-allowed;
}
.pf-wizard__elements .pf-wizard__element--disable .pf-wizard__element-status {
  border-color: currentColor;
}
.pf-wizard__elements .pf-wizard__element--disable:hover {
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1200px) {
  .pf-wizard__elements {
    flex-direction: column;
    justify-content: flex-start;
  }
  .pf-wizard__elements .pf-wizard__element {
    flex: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: var(--spacing-base) var(--spacing-md);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-neutral-text);
    gap: var(--spacing-base);
    position: relative;
  }
  .pf-wizard__elements .pf-wizard__element:hover {
    transition: all 0.3s ease;
  }
  .pf-wizard__elements .pf-wizard__element:hover .pf-wizard__element-status {
    border-color: currentColor;
  }
  .pf-wizard__elements .pf-wizard__element-status {
    min-width: 1.5rem;
    min-height: 1.5rem;
    border-radius: 999999px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pf-wizard__elements .pf-wizard__element-status svg {
    width: 1em;
    height: 1em;
    opacity: 0.5;
  }
  .pf-wizard__elements .pf-wizard__element--success .pf-wizard__element-status svg {
    opacity: 1;
  }
  .pf-wizard__elements .pf-wizard__element--disable {
    cursor: not-allowed;
  }
  .pf-wizard__elements .pf-wizard__element--disable:hover {
    transition: all 0.3s ease;
  }
}
.pf-wizard__content-title {
  color: var(--color-neutral-text);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-base);
}
.pf-wizard__content {
  margin-top: var(--spacing-md);
}
.pf-wizard__content-button-wrapper {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: var(--spacing-md);
  gap: var(--spacing-md);
}
.pf-wizard__content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--color-neutral-border) 1px solid;
  border-radius: var(--radius-xs);
  overflow: hidden;
}
.pf-wizard__content-element {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  font-size: var(--font-size-xs);
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  grid-column: span 3/span 3;
  width: 100%;
}
@media only screen and (max-width: 40em) {
  .pf-wizard__content-element {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1280px) {
  .pf-wizard__content-element {
    grid-column: span 2/span 2;
  }
}
.pf-wizard__content-element-grid {
  display: flex;
  justify-content: space-between;
  border-bottom: var(--color-neutral-border) 1px solid;
  gap: var(--spacing-base);
}
.pf-wizard__content-element-grid:last-child {
  border: none;
}
.pf-wizard__content-element-flex {
  display: flex;
  border-radius: var(--radius-xs);
}
.pf-wizard__content-element-text {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.pf-wizard__content-element-text svg {
  width: 1em;
  height: 1em;
}
.pf-wizard__content-element-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-base);
}
.pf-wizard__content-element-icon svg {
  width: 1em;
  height: 1em;
}
.pf-wizard__content-element-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-neutral-text--on-element);
  background-color: transparent;
  font-size: var(--font-size-xs);
  height: 100%;
  padding: 0 var(--spacing-base);
  transition: all 0.3s ease;
  text-align: center;
  border: var(--color-neutral-border) 1px solid;
  border-radius: var(--radius-full);
  gap: var(--spacing-sm);
}
.pf-wizard__content-element-button:hover {
  background-color: var(--color-neutral-element);
  color: var(--color-neutral-text--on-element);
}
.pf-wizard__content-element-button svg {
  width: 0.9em;
}
.pf-wizard__content-element-button-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.pf-wizard__content-element-button--success {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
  border: var(--color-success-border);
}
.pf-wizard__content-element-button--success:hover {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
}
.pf-wizard__content-element-button--disabled {
  color: var(--color-neutral-text);
  background-color: var(--color-neutral-surface);
  border-color: var(--color-neutral-border);
  cursor: not-allowed;
}
.pf-wizard__content-element-button--disabled:hover {
  background-color: var(--color-neutral-surface);
  color: var(--color-neutral-text);
  transition: all 0.3s ease;
  border-color: var(--color-neutral-border);
  cursor: not-allowed;
}
.pf-wizard__content-element-status {
  min-width: 1.2rem;
  min-height: 1.2rem;
  border-radius: 999999px;
  background-color: var(--color-neutral-surface);
  color: var(--color-neutral-text--on-surface);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-wizard__content-element-status svg {
  color: currentColor;
  opacity: 0.5;
  width: 0.8em;
  height: 0.8em;
}
.pf-wizard__content-element--success {
  background-color: var(--color-success-surface);
  color: var(--color-success-text--on-surface);
}
.pf-wizard__content-element--success .pf-wizard__content-element-status {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
}
.pf-wizard__content-element--success .pf-wizard__content-element-status svg {
  opacity: 1;
}
.pf-wizard__content-element--success:hover, .pf-wizard__content-element--success:focus {
  background-color: var(--color-success-surface--active);
}
.pf-wizard__loading-bar {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  overflow: hidden;
  background-color: var(--color-neutral-border);
}
.pf-wizard__loading-bar-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.pf-wizard__loading-bar-inner {
  background-color: var(--color-success-border);
  height: 100%;
  width: 0;
  transition: width 0.3s ease;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 25%, transparent 50%, rgba(255, 255, 255, 0.2) 75%);
  background-size: 50px 50px;
  animation: shine 3s infinite linear;
}
@keyframes shine {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
.pf-wizard__loading-bar.is-complete .pf-wizard__loading-bar-inner {
  background-image: none;
}
.pf-wizard__loading-bar-text {
  flex: 0 1 auto;
  white-space: nowrap;
  color: var(--color-neutral-text);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.pf-stand__table-wrapper {
  background-color: var(--color-neutral-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: var(--color-neutral-light) 1px solid;
  margin-top: var(--spacing-md);
}
.pf-stand__table {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  align-items: center;
  padding: var(--spacing-md);
  column-gap: var(--spacing-sm);
  row-gap: var(--spacing-md);
}
.pf-stand__table svg {
  width: 1.2rem;
}
.pf-stand__table.pf-stand__table--add {
  background-color: var(--color-info-element);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.pf-stand__table.pf-stand__table--add p, .pf-stand__table.pf-stand__table--add span, .pf-stand__table.pf-stand__table--add a, .pf-stand__table.pf-stand__table--add svg {
  color: #fff;
}
.pf-stand__table.pf-stand__table--add .pf-stand__table-badge {
  background-color: #fff;
  color: var(--color-info-text);
}
.pf-stand__table.pf-stand__table--cancel {
  background-color: var(--color-danger-element);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.pf-stand__table.pf-stand__table--cancel p, .pf-stand__table.pf-stand__table--cancel span, .pf-stand__table.pf-stand__table--cancel a, .pf-stand__table.pf-stand__table--cancel svg {
  color: #fff;
}
.pf-stand__table.pf-stand__table--cancel .pf-stand__table-badge {
  background-color: #fff;
  color: var(--color-danger-text);
}
.pf-stand__table.pf-stand__table--accept {
  background-color: var(--color-success-element);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.pf-stand__table.pf-stand__table--accept p, .pf-stand__table.pf-stand__table--accept span, .pf-stand__table.pf-stand__table--accept a, .pf-stand__table.pf-stand__table--accept svg {
  color: #fff;
}
.pf-stand__table.pf-stand__table--accept .pf-stand__table-badge {
  background-color: #fff;
  color: var(--color-success-text);
}
.pf-stand__table.pf-stand__table--decline {
  background-color: var(--color-danger-element);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.pf-stand__table.pf-stand__table--decline p, .pf-stand__table.pf-stand__table--decline span, .pf-stand__table.pf-stand__table--decline a, .pf-stand__table.pf-stand__table--decline svg {
  color: #fff;
}
.pf-stand__table.pf-stand__table--decline .pf-stand__table-badge {
  background-color: #fff;
  color: var(--color-danger-text);
}
.pf-stand__table--subtable {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.06);
  padding: var(--spacing-sm) var(--spacing-md);
  border-top: 1px solid var(--color-neutral-light);
}
.pf-stand__table-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.pf-stand__table-label {
  display: block;
  margin-bottom: var(--spacing-base);
  font-size: var(--font-size-xs);
  color: var(--color-neutral);
  font-weight: var(--font-weight-medium);
}
.pf-stand__table-content {
  display: block;
  margin: 0;
  color: var(--color-neutral-darkest);
}
.pf-stand__table-content svg {
  height: 1em;
}
.pf-stand__button-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
  align-items: flex-end;
  justify-content: flex-end;
}
.pf-stand__button-wrapper--flex {
  display: flex;
  row-gap: var(--spacing-sm);
  column-gap: var(--spacing-lg);
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.pf-stand__button-wrapper--flex div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-sm);
}
.pf-stand__button-wrapper--row {
  display: flex;
  row-gap: var(--spacing-sm);
  column-gap: var(--spacing-lg);
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.pf-stand__button-wrapper--row div {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: var(--spacing-sm);
  align-items: center;
}
.pf-stand__button {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-primary-text);
}
.pf-stand__button--delete, .pf-stand__button--cancel, .pf-stand__button--reject, .pf-stand__button--decline {
  color: var(--color-danger-text);
}
.pf-stand__button--delete:hover, .pf-stand__button--cancel:hover, .pf-stand__button--reject:hover, .pf-stand__button--decline:hover {
  color: var(--color-danger-text--hover);
}
.pf-stand__button--accept {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-xs);
}
.pf-stand__button--accept:hover {
  background-color: var(--color-success-element);
  color: var(--color-success-text--hover);
}
.pf-stand__button--add {
  color: var(--color-neutral-text);
}
.pf-stand__button--external, .pf-stand__button--info {
  color: var(--color-neutral-text);
}
.pf-stand__button--external:hover, .pf-stand__button--info:hover {
  color: var(--color-neutral-text--hover);
}
.pf-stand__button span {
  margin-right: var(--spacing-xs);
}
.pf-stand__table-badge {
  display: inline-flex;
  justify-content: center;
  align-self: center;
  padding: 0 var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
}
.pf-stand__table-badge--primary {
  background-color: var(--color-info-element);
  color: var(--color-info-text--on-element);
}
.pf-stand__table-badge--secondary {
  background-color: var(--color-neutral);
  color: var(--color-neutral-lightest);
}
.pf-stand__table-col--button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: var(--spacing-sm);
}
.pf-stand__sayt-list {
  border-top: 1px solid var(--color-neutral-border);
  padding-top: var(--spacing-base);
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.pf-stand__sayt-element {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm);
  position: relative;
}
.pf-stand__sayt-element.add-subexhibitor {
  cursor: pointer;
}
.pf-stand__sayt-element.add-subexhibitor:hover {
  background-color: var(--color-neutral-surface);
}
.pf-stand__sayt-element.add-subexhibitor:hover i {
  display: block;
}
.pf-stand__sayt-element img {
  aspect-ratio: 1/1;
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.pf-stand__sayt-element i {
  display: none;
  position: absolute;
  right: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
}
.pf-stand__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
}
.pf-stand__info-element {
  padding: var(--spacing-base) 0;
  border-bottom: 1px solid var(--color-neutral-border);
}
.pf-stand__info-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-darkest);
}
.pf-stand__info-text {
  font-size: var(--font-size-sm);
  margin: 0;
}
.pf-stand__info-text--agb {
  margin-bottom: 2rem;
}
.pf-stand__info-text--semibold {
  font-weight: var(--font-weight-semibold);
}
.pf-stand__info .boothproposal + .boothproposal {
  margin-left: var(--spacing-base);
}
.pf-stand__info-table {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-base);
}
.pf-stand__info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-base);
}

@media screen and (max-width: 1200px) {
  .pf-stand__table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--color-neutral-border);
    border-bottom: 1px solid var(--color-neutral-border);
  }
  .pf-stand__table-col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
    border-bottom: 1px solid var(--color-neutral-border);
  }
  .pf-stand__table-col--button {
    justify-content: flex-end;
    margin: 0;
    border-bottom: none;
    align-items: flex-end;
  }
  .pf-stand__table--subtable {
    margin-top: var(--spacing-base);
  }
  .pf-stand__button-wrapper--flex {
    flex-direction: column;
    align-items: flex-end;
  }
  .pf-stand__button--cancel {
    margin: var(--spacing-base) 0;
  }
  .pf-col-lg-span-2 {
    grid-column: span 1/span 1;
  }
  .pf-col-lg-span-3 {
    grid-column: span 1/span 1;
  }
  .pf-col-lg-span-4 {
    grid-column: span 1/span 1;
  }
  .pf-col-lg-span-6 {
    grid-column: span 1/span 1;
  }
}
.pf-col-span-1 {
  grid-column: span 1/span 1;
}

.pf-col-span-2 {
  grid-column: span 2/span 2;
}

.pf-col-lg-span-2 {
  grid-column: span 2/span 2;
}

.pf-col-span-3 {
  grid-column: span 3/span 3;
}

.pf-col-lg-span-3 {
  grid-column: span 3/span 3;
}

.pf-col-lg-span-4 {
  grid-column: span 4/span 4;
}

.pf-col-span-4 {
  grid-column: span 4/span 4;
}

.pf-col-span-5 {
  grid-column: span 5/span 5;
}

.pf-col-span-6 {
  grid-column: span 6/span 6;
}

.pf-col-lg-span-6 {
  grid-column: span 6/span 6;
}

.pf-justify-self-end {
  justify-self: flex-end;
}

.pf-wizard {
  background-color: var(--color-neutral-surface);
  padding: var(--spacing-md);
  border-radius: var(--radius-xs);
}
.pf-wizard--dependent .pf-wizard__elements {
  gap: 0;
  border: var(--color-neutral-border) 1px solid;
  border-radius: var(--radius-xs);
}
.pf-wizard--dependent .pf-wizard__elements::before {
  display: none;
}
.pf-wizard--dependent .pf-wizard__elements .pf-wizard__element {
  position: relative;
  border: 0;
}
.pf-wizard--dependent .pf-wizard__elements .pf-wizard__element:not(:last-child) {
  /* a chevron to the right side of the element */
}
.pf-wizard--dependent .pf-wizard__elements .pf-wizard__element:not(:last-child):after {
  flex-shrink: 0;
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 100%;
  content: "";
  --s: 1px; /* control the shape (can be percentage) */
  height: 100%;
  aspect-ratio: 1/4;
  clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
  background: var(--color-neutral-border);
  content: "";
}
@media only screen and (max-width: 1200px) {
  .pf-wizard--dependent .pf-wizard__elements .pf-wizard__element:not(:last-child):after {
    top: 100%;
    left: 50%;
    height: auto;
    width: 100%;
    clip-path: none;
    border-bottom: 1px solid var(--color-neutral-border);
    aspect-ratio: auto;
  }
}
.pf-wizard__title {
  color: var(--color-neutral-text);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.pf-wizard__wrapper {
  background-color: #fff;
  padding: var(--spacing-md);
  border-radius: var(--radius-xs);
  margin-top: var(--spacing-md);
}
.pf-wizard__elements {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--spacing-base);
}
.pf-wizard__elements:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-neutral-border);
  top: 50%;
  left: 0%;
}
.pf-wizard__elements .pf-wizard__element {
  flex: auto;
  flex-direction: column;
  display: flex;
  align-items: center;
  padding: var(--spacing-base) var(--spacing-base);
  border: 1px solid;
  background-color: white;
  border-color: var(--color-neutral-border);
  border-radius: var(--radius-xs);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  text-align: center;
  color: var(--color-neutral-text);
  gap: var(--spacing-base);
  position: relative;
}
.pf-wizard__elements .pf-wizard__element:hover {
  transition: all 0.3s ease;
}
.pf-wizard__elements .pf-wizard__element:hover .pf-wizard__element-status {
  border-color: currentColor;
}
.pf-wizard__elements .pf-wizard__element-status {
  min-width: 1.5rem;
  min-height: 1.5rem;
  border-radius: 999999px;
  background-color: var(--color-neutral-surface);
  color: var(--color-neutral-text--on-surface);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-wizard__elements .pf-wizard__element-status svg {
  opacity: 0.5;
  width: 1em;
  height: 1em;
}
.pf-wizard__elements .pf-wizard__element--success .pf-wizard__element-status {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
}
.pf-wizard__elements .pf-wizard__element--success .pf-wizard__element-status svg {
  opacity: 1;
}
.pf-wizard__elements .pf-wizard__element--success:hover {
  transition: all 0.3s ease;
}
.pf-wizard__elements .pf-wizard__element--active {
  color: var(--color-neutral-text--active);
  border-color: var(--color-primary-border);
}
.pf-wizard__elements .pf-wizard__element--active .pf-wizard__element-status {
  background-color: var(--color-primary-element);
  color: var(--color-primary-text--on-element);
}
.pf-wizard__elements .pf-wizard__element--disable {
  cursor: not-allowed;
}
.pf-wizard__elements .pf-wizard__element--disable .pf-wizard__element-status {
  border-color: currentColor;
}
.pf-wizard__elements .pf-wizard__element--disable:hover {
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1200px) {
  .pf-wizard__elements {
    flex-direction: column;
    justify-content: flex-start;
  }
  .pf-wizard__elements .pf-wizard__element {
    flex: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: var(--spacing-base) var(--spacing-md);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-neutral-text);
    gap: var(--spacing-base);
    position: relative;
  }
  .pf-wizard__elements .pf-wizard__element:hover {
    transition: all 0.3s ease;
  }
  .pf-wizard__elements .pf-wizard__element:hover .pf-wizard__element-status {
    border-color: currentColor;
  }
  .pf-wizard__elements .pf-wizard__element-status {
    min-width: 1.5rem;
    min-height: 1.5rem;
    border-radius: 999999px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pf-wizard__elements .pf-wizard__element-status svg {
    width: 1em;
    height: 1em;
    opacity: 0.5;
  }
  .pf-wizard__elements .pf-wizard__element--success .pf-wizard__element-status svg {
    opacity: 1;
  }
  .pf-wizard__elements .pf-wizard__element--disable {
    cursor: not-allowed;
  }
  .pf-wizard__elements .pf-wizard__element--disable:hover {
    transition: all 0.3s ease;
  }
}
.pf-wizard__content-title {
  color: var(--color-neutral-text);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-base);
}
.pf-wizard__content {
  margin-top: var(--spacing-md);
}
.pf-wizard__content-button-wrapper {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: var(--spacing-md);
  gap: var(--spacing-md);
}
.pf-wizard__content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--color-neutral-border) 1px solid;
  border-radius: var(--radius-xs);
  overflow: hidden;
}
.pf-wizard__content-element {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  font-size: var(--font-size-xs);
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  grid-column: span 3/span 3;
  width: 100%;
}
@media only screen and (max-width: 40em) {
  .pf-wizard__content-element {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1280px) {
  .pf-wizard__content-element {
    grid-column: span 2/span 2;
  }
}
.pf-wizard__content-element-grid {
  display: flex;
  justify-content: space-between;
  border-bottom: var(--color-neutral-border) 1px solid;
  gap: var(--spacing-base);
}
.pf-wizard__content-element-grid:last-child {
  border: none;
}
.pf-wizard__content-element-flex {
  display: flex;
  border-radius: var(--radius-xs);
}
.pf-wizard__content-element-text {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.pf-wizard__content-element-text svg {
  width: 1em;
  height: 1em;
}
.pf-wizard__content-element-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-base);
}
.pf-wizard__content-element-icon svg {
  width: 1em;
  height: 1em;
}
.pf-wizard__content-element-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-neutral-text--on-element);
  background-color: transparent;
  font-size: var(--font-size-xs);
  height: 100%;
  padding: 0 var(--spacing-base);
  transition: all 0.3s ease;
  text-align: center;
  border: var(--color-neutral-border) 1px solid;
  border-radius: var(--radius-full);
  gap: var(--spacing-sm);
}
.pf-wizard__content-element-button:hover {
  background-color: var(--color-neutral-element);
  color: var(--color-neutral-text--on-element);
}
.pf-wizard__content-element-button svg {
  width: 0.9em;
}
.pf-wizard__content-element-button-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.pf-wizard__content-element-button--success {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
  border: var(--color-success-border);
}
.pf-wizard__content-element-button--success:hover {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
}
.pf-wizard__content-element-button--disabled {
  color: var(--color-neutral-text);
  background-color: var(--color-neutral-surface);
  border-color: var(--color-neutral-border);
  cursor: not-allowed;
}
.pf-wizard__content-element-button--disabled:hover {
  background-color: var(--color-neutral-surface);
  color: var(--color-neutral-text);
  transition: all 0.3s ease;
  border-color: var(--color-neutral-border);
  cursor: not-allowed;
}
.pf-wizard__content-element-status {
  min-width: 1.2rem;
  min-height: 1.2rem;
  border-radius: 999999px;
  background-color: var(--color-neutral-surface);
  color: var(--color-neutral-text--on-surface);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pf-wizard__content-element-status svg {
  color: currentColor;
  opacity: 0.5;
  width: 0.8em;
  height: 0.8em;
}
.pf-wizard__content-element--success {
  background-color: var(--color-success-surface);
  color: var(--color-success-text--on-surface);
}
.pf-wizard__content-element--success .pf-wizard__content-element-status {
  background-color: var(--color-success-element);
  color: var(--color-success-text--on-element);
}
.pf-wizard__content-element--success .pf-wizard__content-element-status svg {
  opacity: 1;
}
.pf-wizard__content-element--success:hover, .pf-wizard__content-element--success:focus {
  background-color: var(--color-success-surface--active);
}
.pf-wizard__loading-bar {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  overflow: hidden;
  background-color: var(--color-neutral-border);
}
.pf-wizard__loading-bar-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.pf-wizard__loading-bar-inner {
  background-color: var(--color-success-border);
  height: 100%;
  width: 0;
  transition: width 0.3s ease;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 25%, transparent 50%, rgba(255, 255, 255, 0.2) 75%);
  background-size: 50px 50px;
  animation: shine 3s infinite linear;
}
@keyframes shine {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
.pf-wizard__loading-bar.is-complete .pf-wizard__loading-bar-inner {
  background-image: none;
}
.pf-wizard__loading-bar-text {
  flex: 0 1 auto;
  white-space: nowrap;
  color: var(--color-neutral-text);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.pf-rechnung__table-wrapper {
  background-color: var(--color-neutral-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: var(--color-neutral-light) 1px solid;
  margin-top: var(--spacing-md);
}
.pf-rechnung__table {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
  align-items: center;
  padding: var(--spacing-base);
  column-gap: var(--spacing-base);
}
.pf-rechnung__table-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.pf-rechnung__table-label {
  display: block;
  margin-bottom: var(--spacing-base);
  font-size: var(--font-size-xs);
  color: var(--color-neutral);
  font-weight: var(--font-weight-medium);
}
.pf-rechnung__table-content {
  display: block;
  margin: 0;
  color: var(--color-neutral-text);
}
.pf-rechnung__table-content svg {
  height: 1em;
}
.pf-rechnung__button {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-neutral-text);
  gap: var(--spacing-sm);
}
.pf-rechnung__button:hover {
  color: var(--color-neutral-darkest);
}
.pf-rechnung__table-badge {
  display: inline-flex;
  justify-content: center;
  align-self: center;
  padding: 0 var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
}
.pf-rechnung__table-badge--success {
  background-color: var(--color-success-element);
  color: var(--color-info-text--on-element);
}
.pf-rechnung__table-badge--pending {
  background-color: var(--color-neutral);
  color: var(--color-neutral-lightest);
}
.pf-rechnung__table-badge--warning {
  background-color: var(--color-warning-element);
  color: var(--color-warning-text--on-element);
}
.pf-rechnung__table-col--button {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: var(--spacing-sm);
}

@media screen and (max-width: 1300px) {
  .pf-rechnung__table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--color-neutral-border);
    border-radius: var(--radius-sm);
  }
  .pf-rechnung__table-col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
    border-bottom: 1px solid var(--color-neutral-border);
  }
  .pf-rechnung__table-col--button {
    justify-content: flex-end;
    margin: 0;
    border-bottom: none;
    align-items: flex-end;
  }
  .pf-rechnung__button {
    margin: var(--spacing-base) 0;
  }
}
.pf-col-span-1 {
  grid-column: span 1/span 1;
}

.pf-col-span-2 {
  grid-column: span 2/span 2;
}

.pf-col-span-3 {
  grid-column: span 3/span 3;
}

.pf-col-span-4 {
  grid-column: span 4/span 4;
}

.pf-col-span-5 {
  grid-column: span 5/span 5;
}

.pf-col-span-6 {
  grid-column: span 6/span 6;
}

.pf-justify-self-end {
  justify-self: flex-end;
}

/* TYPO ---------------------------
-------------------------------- */
::-moz-selection {
  background: #1b1b1b;
  color: #FFFFFF;
}

::selection {
  background: #1b1b1b;
  color: #FFFFFF;
}

::placeholder {
  color: #CCCCCC;
}

html, body {
  height: 100%;
  font-size: 1rem;
  color: var(--color-neutral-text);
}

* {
  font-family: var(--font-family-secondary);
}

h1, h2, h3, h4, h5, h6, .pfc__main-title, .pfc__sub-title, .pf-pd__title {
  font-family: var(--font-family-primary);
}

nav ul, nav ol,
.no-list-style {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

ul, ol {
  margin-left: 0;
}
ul.info, ol.info {
  font-size: 0.875rem;
}

.text > ul, .text > ol {
  margin-left: 1.1rem;
}

.alert-box ul, .alert-box ol {
  margin-left: 1.1rem !important;
}

ul.no-bullets, .sideinfos section ul {
  list-style: none;
}

ul.list {
  margin-left: 1rem;
}

ul.commaseparated li {
  display: inline;
}
ul.commaseparated li:not(:last-child):after {
  content: ",";
}

ul.list-spaced li {
  margin: 0.5rem 0;
}

ul.index-list {
  list-style: none;
  padding-right: 1rem;
}
ul.index-list.wide {
  padding-right: 0;
}
ul.index-list .index-list-item {
  position: relative;
  font-size: 0.875rem;
  line-height: 1;
  display: block;
  padding: 1rem 1.5rem 1rem 0.5rem;
  border: 1px solid #F6F6F6;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
ul.index-list .index-list-item:hover {
  border-color: #DDDDDD;
  background-color: #FAFAFA;
}
ul.index-list .index-list-item .index-delete {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  padding: 0;
  background-color: transparent;
  color: #CCCCCC;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
ul.index-list .index-list-item .index-delete:hover {
  color: #333333;
}

.ul-boxed {
  border-radius: 10px;
  border: 1px solid #DDDDDD;
}
@media only screen and (min-width:64.0625em) {
  .ul-boxed {
    margin: 1.5rem;
  }
}
@media only screen and (min-width:40.0625em) {
  .ul-boxed {
    margin: 1rem;
  }
}

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

.text-alert {
  color: #c52121;
}

.uppercase, #sub-nav-bar li, .main-section #herotext > .title, #main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a, fieldset legend {
  text-transform: uppercase;
}

.lead {
  font-size: 1.0625rem;
}

figure {
  margin: 0;
}

.postfix {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  height: 3.1125rem;
  line-height: 3.1125rem;
}

/* HELPERS */
.pos-r {
  position: relative;
}

.pos-a {
  position: absolute;
}

.p0 {
  padding: 0;
}

.p1 {
  padding: 1rem;
}

.pl0 {
  padding-left: 0px;
}

.pl20 {
  padding-left: 20px;
}

.pb20 {
  padding-bottom: 20px !important;
}

.m0 {
  margin: 0 !important;
}

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

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

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

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml0 {
  margin-left: 10px !important;
}

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

.d-inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* Colors */
.color-green {
  background-color: #85c521;
}

.color-yellow {
  background-color: yellow;
}

.color-grey {
  background-color: lightgrey;
}

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

.color-font-white {
  color: #FFFFFF !important;
}

.color-font-red {
  color: red !important;
}

.color-orange {
  background-color: orange;
}

.fa-2 {
  font-size: 1.5em;
}

.select-no-value {
  color: gray !important;
}

.trenner {
  margin-bottom: 1.5rem;
  line-height: 1rem;
  text-align: center;
  border-bottom: 1px solid lightgrey;
}
.trenner span {
  position: relative;
  bottom: -0.45rem;
  display: inline-block;
  padding: 0 1rem;
  background-color: white;
}

.leading-1 {
  line-height: 1;
}

/* Keyframes */
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Button */
.button {
  /* Is loading */
}
.button.is-loading {
  position: relative;
  overflow: hidden;
}
.button.is-loading:before {
  display: flex;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1b1b1b;
}
.button.is-loading:after {
  display: flex;
  content: "\f110";
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font: normal normal normal 14px/1 FontAwesome;
  animation: spin 2s linear infinite;
}

#main-navigation-wrapper {
  background-color: black;
}
@media only screen and (min-width:64.0625em) {
  #main-navigation-wrapper {
    min-height: 100vh;
  }
}

#main-navigation-wrapper .powered-by {
  position: absolute;
  bottom: 15px;
}

#main-navigation-wrapper #mainheader {
  color: #FFFFFF;
}

#main-navigation-wrapper #mainheader a {
  color: #4e4e4e;
}

#main-navigation-wrapper #mainheader .container-eventlogo {
  padding: 48px 20px;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 40em) {
  #main-navigation-wrapper #mainheader .container-eventlogo {
    padding: 20px;
  }
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  #main-navigation-wrapper #mainheader .container-eventlogo {
    padding: 58px 20px 57px;
  }
}

#main-navigation-wrapper #mainheader .container-eventlogo .eventlogo {
  display: block;
  text-indent: -999em;
  background: url("static/images/layout/default-logo.svg") no-repeat center center;
  /* background:url('static/images/layout/logo-td.jpg') no-repeat center center; */
  background-size: contain;
  width: 100%;
  max-width: 360px;
  height: 100px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#main-navigation-wrapper #mainheader .container-eventlogo .eventlogo:hover {
  filter: opacity(50%);
  transform: scale(0.98);
}
@media only screen and (max-width: 40em) {
  #main-navigation-wrapper #mainheader .container-eventlogo .eventlogo {
    height: 80px;
  }
}

#main-navigation-wrapper #mainheader .exhibitor-box {
  padding: 25px;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  #main-navigation-wrapper #mainheader .exhibitor-box {
    padding: 45px 25px;
  }
}

#main-navigation-wrapper #mainheader .exhibitor-box p {
  font-size: 12px;
}

#main-navigation-wrapper #mainheader .exhibitor-box p.heading {
  text-transform: uppercase;
  margin-bottom: 0;
  color: #1b1b1b;
}

#main-navigation-wrapper #mainheader .exhibitor-box p.exhibitor-name {
  font-size: 14px;
  font-weight: bold;
}

#main-navigation-wrapper #mainheader .exhibitor-box p.sign-out {
  text-align: right;
  margin-bottom: 0;
}

#main-navigation-wrapper #mainheader .exhibitor-box p.sign-out a {
  display: block;
  color: #686868;
  font-weight: bold;
}
#main-navigation-wrapper #mainheader .exhibitor-box p.sign-out a:hover {
  transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #4e4e4e;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  #main-navigation-wrapper #mainheader .exhibitor-box p.sign-out a {
    background-color: black;
    padding: 0.8em;
    border-radius: 3px;
    text-align: center;
  }
  #main-navigation-wrapper #mainheader .exhibitor-box p.sign-out a:hover {
    background-color: black;
  }
}

#main-navigation-wrapper #mainheader .main-navigation-menu {
  background-color: black;
}

#main-navigation-wrapper #mainheader .main-navigation-menu ul > li {
  border-bottom: 1px solid black;
  font-size: 14px;
}

#main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a {
  display: block;
  position: relative;
  font-weight: bold;
  padding: 12px 25px;
  color: #686868;
}
#main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a.aktiv {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #FFFFFF;
  background-color: #020202;
}
#main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a.aktiv > i {
  transform: rotate(180deg);
}
#main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a:hover {
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #FFFFFF;
  background-color: black;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  #main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a {
    padding: 10px 25px;
  }
}

#main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a > i {
  position: absolute;
  right: 25px;
  top: 15px;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  #main-navigation-wrapper #mainheader .main-navigation-menu ul > li > a > i {
    transform: rotate(90deg);
    right: 15px;
  }
}

.sideinfos {
  padding: 50px 25px;
}

.sideinfos section {
  color: #FFFFFF;
}

.sideinfos section > .title {
  color: #686868;
  line-height: 1;
}

.sideinfos section figure {
  background-color: black;
  border-radius: 3px;
  padding: 15px;
}

.sideinfos section ul {
  font-size: 0.9375rem;
}

.sideinfos section li a {
  color: #FFFFFF;
  display: block;
  position: relative;
  padding: 5px 0;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.sideinfos section li a:hover {
  color: #4e4e4e;
}

.sideinfos section li a i {
  color: #686868;
}

.powered-by {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}
.powered-by a {
  color: #FFFFFF;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.powered-by a span {
  color: #4e4e4e;
  font-weight: bold;
}
.powered-by a:hover {
  color: #686868;
}

#main-wrapper {
  background-color: #FFFFFF;
}
@media only screen and (min-width:64.0625em) {
  #main-wrapper {
    box-shadow: 2px 0 2px #EEEEEE;
  }
}

/* MAIN-SECTION */
.main-section {
  background-color: #FFFFFF;
  padding: 2.5rem 1.25rem !important;
}
@media only screen and (min-width:64.0625em) {
  .main-section {
    padding: 2.5rem !important;
  }
}

.main-section #herotext section > .text p:first-child {
  font-size: 1.125rem;
}
.main-section #herotext section > .text ul, .main-section #herotext .text ol {
  padding: 0 0 0 20px;
}

.main-section article > .text ul {
  margin-left: 1.1rem;
}

#sub-nav-bar {
  margin: 1.5rem 0 2rem 0;
  border-radius: 6px;
  background: black;
}

@media only screen and (max-width: 40em) {
  #sub-nav-bar ul {
    float: none !important;
  }
}

#sub-nav-bar li {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-weight: bold;
  font-size: 14px;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  #sub-nav-bar li {
    padding: 0.625rem;
  }
}
@media only screen and (max-width: 40em) {
  #sub-nav-bar li {
    display: block;
    border-top: 1px solid black;
  }
  #sub-nav-bar li:last-of-type {
    border-bottom: none;
  }
}

#sub-nav-bar li a {
  display: block;
  color: #4e4e4e;
  border-bottom: 3px solid transparent;
  transition: color 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), border-bottom 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (max-width: 40em) {
  #sub-nav-bar li a {
    border-bottom: none;
  }
}

#sub-nav-bar li a:hover, #sub-nav-bar li.aktiv a {
  color: #EEEEEE;
  border-bottom: 3px solid #4e4e4e;
}
@media only screen and (max-width: 40em) {
  #sub-nav-bar li a:hover, #sub-nav-bar li.aktiv a {
    border-bottom: none;
  }
}

#sub-nav-bar .nav-section {
  display: none;
}
@media only screen and (min-width:40.0625em) {
  #sub-nav-bar .nav-section {
    display: block !important;
  }
}

#sub-nav-bar li.cart {
  font-weight: normal;
  background-color: #020202;
  border-radius: 0 6px 6px 0;
  border-top: 0;
}
@media only screen and (max-width: 40em) {
  #sub-nav-bar li.cart {
    position: absolute;
    top: 0;
    right: 0;
    display: block !important;
  }
}

#sub-nav-bar li.cart a {
  border: none;
  padding-bottom: 3px;
}
@media only screen and (max-width: 40em) {
  #sub-nav-bar li.cart a {
    padding-bottom: 0;
  }
}

#sub-nav-bar li.cart.has-items a {
  color: #EEEEEE;
}
#sub-nav-bar li.cart.has-items a span {
  font-weight: bold;
}
#sub-nav-bar li.cart.has-items a:hover {
  color: #686868;
}

#sidebar-nav {
  margin-bottom: 2em;
}

#sidebar-nav ul li {
  line-height: 1em;
}

#sidebar-nav ul li.heading {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0 0 2em 0;
}

#sidebar-nav ul li a {
  display: block;
  padding: 0.75em;
  position: relative;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#sidebar-nav > ul > li > a {
  font-weight: bold;
  font-size: 0.9375rem;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid transparent;
}
#sidebar-nav > ul > li > a:hover {
  background-color: #1b1b1b;
  color: #FAFAFA;
  border-top: 1px solid #020202;
  border-bottom: 1px solid #020202;
}

#sidebar-nav > ul > li.has-sub > a {
  padding-right: 1.75em;
}

#sidebar-nav > ul > li.has-sub > a:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  /*--adjust as necessary--*/
  padding-right: 0.5em;
  position: absolute;
  top: 10px;
  right: 0;
}

#sidebar-nav > ul > li.has-sub.open > a, #sidebar-nav > ul > li.aktiv > a {
  border-top: 1px solid #1b1b1b;
  background-color: #1b1b1b;
  color: #FAFAFA;
}
#sidebar-nav > ul > li.has-sub.open > a:hover, #sidebar-nav > ul > li.aktiv > a:hover {
  background-color: black;
}

#sidebar-nav > ul > li.has-sub.open > a:after {
  content: "\f106";
}

#sidebar-nav > ul > li:last-child > a {
  border-bottom: 1px solid #DDDDDD;
}

#sidebar-nav > ul > li > ul {
  margin: 0;
  background-color: black;
  padding: 0.5em 0;
  display: none;
}

#sidebar-nav > ul > li.has-sub.open > ul {
  display: block;
}

#sidebar-nav > ul > li > ul > li > a {
  font-size: 0.75rem;
  text-transform: uppercase;
  padding-left: 1.75em;
}
#sidebar-nav > ul > li > ul > li > a:before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  /*--adjust as necessary--*/
  padding-left: 0.75em;
  margin-right: 0.5em;
  position: absolute;
  top: 8px;
  left: 0;
}
#sidebar-nav > ul > li > ul > li > a:hover {
  color: #4e4e4e;
}
#sidebar-nav > ul > li > ul > li > a:hover:before {
  transform: translateX(0.25em);
}

#sidebar-nav > ul > li > ul > li.aktiv > a {
  color: #4e4e4e;
}
#sidebar-nav > ul > li > ul > li.aktiv > a:hover {
  color: #353535;
}

.box {
  border: 1px solid #DDDDDD;
  border-radius: 6px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 1em;
  background-color: #FFFFFF;
}

.box__warning {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ffc078;
  background-color: #fff4e6;
  border-radius: 6px;
  text-align: center;
}
.box__warning p {
  margin: 0;
}
.box__warning .fa {
  margin-right: 0.5rem;
}

.ribbon {
  position: absolute;
  background-color: #020202;
  width: 30px;
  height: 30px;
  top: -5px;
  left: 0.625rem;
  z-index: 50;
  font-size: 0.75rem;
  text-align: center;
  padding-top: 1em;
  color: #FAFAFA;
}

.ribbon:before {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  border: 5px solid black;
  z-index: -10;
  border-right-color: transparent;
  border-left: 0;
  border-top: 0;
}

.ribbon:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -15px;
  border: 15px solid #020202;
  border-top-width: 10px;
  border-bottom-color: transparent;
  border-bottom-width: 7px;
}

.notification {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
}
.notification .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 5px 13px;
  border-radius: 50%;
  background: #c52121;
  color: #FFFFFF;
}

img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#initialbild {
  max-width: 250px;
}

.box img {
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.box img:hover {
  opacity: 0.5;
}

.box .title {
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 0;
  margin-top: 1.5em;
}
@media only screen and (min-width:64.0625em) {
  .box .title {
    margin-top: 0;
  }
}

.box p {
  font-size: 0.75rem;
}

.box .price {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 0.5em 0;
}
.box .price span {
  font-weight: bold;
  font-size: 0.9375rem;
  color: black;
}

.productcard h3 {
  line-height: 1;
}

@media only screen and (max-width: 40em) {
  .productcard .text {
    margin-top: 1em;
  }
}
.productcard .text > h4 {
  font-size: 0.875rem;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
  font-weight: bold;
  margin-bottom: 0.25em;
}
.productcard .text > p, .productcard .text > ul {
  font-size: 0.875rem;
}
.productcard .text > ul {
  margin-left: 1.1rem;
}
.productcard .text > p.lead {
  font-size: 1rem;
}

.carousel-cell {
  width: 100%; /* full width */
  height: 160px; /* height of carousel */
  margin-right: 10px;
}

ul.downloads > li > a {
  display: block;
  position: relative;
  padding-left: 1.5em;
  line-height: 1;
  margin-bottom: 0.75em;
}
ul.downloads > li > a:before {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  /*--adjust as necessary--*/
  margin-right: 0.5em;
  position: absolute;
  left: 0;
}

.productcard ul.thumbnails li {
  width: 30%;
  float: left;
  margin-top: 5%;
  margin-right: 5%;
}
.productcard ul.thumbnails li:nth-child(3n+0) {
  margin-right: 0;
}

.productcard ul.thumbnails li a {
  display: block;
  border: 1px solid transparent;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.productcard ul.thumbnails li a:hover {
  border-color: #1b1b1b;
}

.productcard ul.thumbnails li.current a {
  border-color: #1b1b1b;
}

.productcard form > .formfields {
  padding: 2em 0 0.5em 0;
  margin: 1.5em 0 !important;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.productcard .price {
  font-weight: bold;
  font-size: 1.5rem;
  color: #020202;
}

.calc p {
  font-size: 0.875rem;
  margin: 0;
}
.calc .price {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 1em 0;
  margin: 0.75em;
}
.calc .price p {
  font-weight: bold;
  line-height: 1.5rem;
}
.calc .price p span {
  font-size: 1.5rem;
  color: #020202;
}
@media only screen and (max-width: 40em) {
  .calc .price p span {
    font-size: 1.3125rem;
  }
}
.calc label {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 2em;
}

.linkArtikelAbhaengigkeit {
  color: #A8321A !important;
  text-decoration: underline;
}

.progressbar {
  margin: 1em 0;
  padding: 0.5em;
  background-color: #F6F6F6;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 1em;
}

.progressmeter {
  background-color: #1b1b1b;
  border-radius: 1em;
  padding: 0.25em 0.5em;
}

.is_stuck {
  z-index: 100000000000;
}

.is_stuck.headroom {
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is_stuck.headroom--pinned {
  transform: translateY(0%);
  opacity: 100;
}

.is_stuck.headroom--unpinned {
  transform: translateY(-150%);
  opacity: 0;
}

#main-footer {
  background-color: black;
}

#main-footer .last {
  padding: 15px 0 25px;
  background-color: black;
  border-top: 1px solid black;
}

/* Branchenzuordnungen ----- */
ul.branchen li.parent.close ul {
  display: none;
}

/* Bewerbungen ------- */
.bewerbung header h1 {
  font-size: 24px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 1.75em;
}

.bewerbung pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  font-family: Arial, "Helvetica Neue", Helvetica, Roboto, sans-serif;
}

.bewerbung h3 {
  line-height: 1.1;
  border-bottom: 1px solid #EEEEEE;
}

.bewerbung ul {
  padding: 0 0 0 20px;
}

.modal-file-hover {
  background-color: #686868;
}

.ansprechpartner-form figure a {
  position: absolute;
  font-size: 2em;
  padding-left: 8px;
  color: #EEEEEE;
}

.tab-links {
  margin-bottom: 0;
  background-color: var(--color-neutral-surface);
  border: none;
  border-radius: 6px;
  list-style: none;
  overflow: hidden;
}
.tab-links li {
  display: inline-block;
}
.tab-links li a {
  display: block;
  font-weight: 500;
  padding: var(--spacing-base);
  color: var(--color-neutral-text--on-surface);
  border-bottom: 3px solid transparent;
}
.tab-links li a:hover {
  border-color: var(--color-neutral-surface--active);
}
.tab-links li.active a {
  border-color: currentColor;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .tab-links li {
    padding: 0.625rem 0.625rem;
  }
}
@media only screen and (max-width: 40em) {
  .tab-links li {
    padding: 0.625rem 0.625rem;
  }
}

.tab-content {
  background: #fff;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

#jsMsg.success {
  background-color: #85c521;
}

#jsMsg.success * {
  color: #FFF;
}

#jsMsg.error {
  background-color: #c52121;
}

#jsMsg.error * {
  color: #FFF;
}

#jsMsg.warning {
  background-color: #f08a24;
}

#jsMsg.warning * {
  color: #FFF;
}

#print-bestellungen p.organizer-address {
  margin-top: 40px;
  font-size: 11px;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
}

#print-bestellungen h1 {
  margin-top: 60px;
  font-family: Arial;
  font-size: 36px;
  font-weight: bold;
}

#print-bestellungen .text p {
  font-size: 18px;
}

.appointment-table tbody tr td {
  font-size: 0.675rem !important;
}

.appointment-table tbody tr td:first-child {
  width: 100px !important;
}

.slick-slider .slick-slide:focus {
  outline: none;
}
.slick-slider .slick-prev, .slick-slider .slick-next {
  width: 32px;
  height: 32px;
  z-index: 995;
}
.slick-slider .slick-prev:before, .slick-slider .slick-next:before {
  color: #1b1b1b;
  font-size: 32px;
  font-family: "FontAwesome";
}
.slick-slider .slick-prev.slick-next, .slick-slider .slick-next.slick-next {
  right: 0;
}
.slick-slider .slick-prev.slick-next:before, .slick-slider .slick-next.slick-next:before {
  content: "\f054";
}
.slick-slider .slick-prev.slick-prev, .slick-slider .slick-next.slick-prev {
  left: 0;
}
.slick-slider .slick-prev.slick-prev:before, .slick-slider .slick-next.slick-prev:before {
  content: "\f053";
}

body#tabs {
  min-height: 100%;
  height: initial;
}

.cell.shrink.tabs-title {
  display: flex;
  flex-flow: row wrap;
  float: left;
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: #fafafa !important;
  color: #cecece !important;
}

.content__form__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.filler {
  padding: 0.25rem 0.5rem;
  width: 100%;
  background: linear-gradient(to right, #85c521 0%, #85c521 var(--progress), #FFFFFF var(--progress), #FFFFFF 100%);
}

.voucher-activation .tabs {
  background: none;
  border: none;
}
.voucher-activation__alert-box {
  color: #d73838;
  margin-bottom: 1.5rem;
}
.voucher-activation .tabs-content {
  border: none;
}
.voucher-activation__header .voucher-activation__steps {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  margin-bottom: 2.5rem;
}
.voucher-activation__header .voucher-activation__steps__list {
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.voucher-activation__header .voucher-activation__steps__list__item {
  padding-left: 0.2125rem;
  padding-right: 0.2125rem;
  flex: 1;
}
.voucher-activation__header .voucher-activation__steps__list__item > a {
  opacity: 0.5;
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  background: #FFFFFF;
  box-shadow: 0px 2px 2px 0px rgba(53, 51, 53, 0.2);
  position: relative;
  color: #1b1b1b;
  transition: all 0.4s ease-in-out 0.1s;
}
.voucher-activation__header .voucher-activation__steps__list__item > a:hover, .voucher-activation__header .voucher-activation__steps__list__item > a:focus {
  outline: none;
  opacity: 0.75;
}
.voucher-activation__header .voucher-activation__steps__list__item.is-active > a, .voucher-activation__header .voucher-activation__steps__list__item--completed > a {
  opacity: 1;
  box-shadow: 0px 2px 2px 0px rgba(53, 51, 53, 0.4);
}
.voucher-activation__header .voucher-activation__steps__list__item--completed > a {
  background: linear-gradient(-45deg, black 0%, #1b1b1b 50%, #4e4e4e 100%);
  color: #FFFFFF;
  width: 100%;
  position: relative;
}
.voucher-activation__header .voucher-activation__steps__list__item--completed > a span {
  position: absolute;
  width: 11.25rem;
  height: 1.25rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.voucher-activation__header .voucher-activation__steps__list__item--completed > a span > .voucher-step-icon {
  width: 100%;
  height: auto;
}
@media only screen and (min-width:64.0625em) {
  .voucher-activation__header .voucher-activation__steps__list {
    flex-direction: row;
  }
}
.voucher-activation__body {
  padding: 1.875rem 0.0625rem 1.875rem 0.0625rem;
}
.voucher-activation__body__inner .tabs-panel {
  animation-delay: 0.3s;
}
.voucher-activation__body__inner input {
  height: 2rem;
  margin: 0 0 0.5rem 0;
}
.voucher-activation__body__inner .formgroup.error select {
  border: 1px solid #d51130;
  margin-bottom: 0.5rem;
}
.voucher-activation__body__inner .show-when-error {
  display: none;
}
.voucher-activation__body__inner .show-when-error.error {
  display: block;
  background-color: #d51130;
  color: #FFFFFF;
  padding: 0.625rem;
  margin-bottom: 0;
}
.voucher-activation__body__inner .formgroup.error textarea {
  border: 1px solid #d51130;
}
.voucher-activation__body__inner .formgroup.error .servererror {
  border: 1px solid #d51130;
  padding: 0.625rem;
}
.voucher-activation__body__inner .formgroup.error input:not([type=checkbox]) {
  border: 1px solid #d51130;
}
.voucher-activation__body__inner .formgroup.error input:not([value=""]) {
  background-color: inherit;
  color: inherit;
}
.voucher-activation__body__inner .formgroup.error input:not([value]) {
  background-color: inherit;
  color: inherit;
}
.voucher-activation__body__inner .formgroup.error div.item-wrapper label {
  color: #666;
}
.voucher-activation__body__inner .formgroup.error .servererror {
  display: block;
  color: #FFFFFF;
  font-weight: bold;
}
.voucher-activation__body__inner .error label.stand_auswahl_label {
  color: inherit;
}
.voucher-activation__body__inner .zusammenfassung {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.voucher-activation__body__inner .zusammenfassung ul {
  margin-bottom: 0;
}
.voucher-activation .zusammenfassung__item {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0 0.5rem;
}
.voucher-activation .zusammenfassung__item h4, .voucher-activation .zusammenfassung__item h5 {
  color: #1b1b1b;
}
@media only screen and (min-width:64.0625em) {
  .voucher-activation .zusammenfassung__item--1-2 {
    width: 50%;
  }
  .voucher-activation .zusammenfassung__item--1-3 {
    width: 33.3333333333%;
  }
}
.voucher-activation .zusammenfassung__item--buchungen .zusammenfassung__content {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
  border-color: transparent;
}
.voucher-activation .zusammenfassung__content {
  min-height: 100%;
  padding: 1.25rem 1.5rem;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}
.voucher-activation .zusammenfassung__content strong {
  display: block;
  font-size: 15px;
  color: rgb(92, 90, 93);
}
.voucher-activation .zusammenfassung__content .zusammenfassung__list {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}
.voucher-activation .zusammenfassung__content .zusammenfassung__list li {
  padding: 0.5rem;
  width: 50%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 40em) {
  .voucher-activation .zusammenfassung__content .zusammenfassung__list li {
    width: 100%;
  }
}
.voucher-activation__footer {
  padding: 1.25rem 0.0625rem 1.25rem 0.0625rem;
  margin-top: 1.25rem;
  margin-bottom: -1.875rem;
  border-top: 1px solid rgb(229, 228, 229);
  border-bottom: 0;
  border-radius: 0 0 3px 3px;
}
.voucher-activation__footer .button, .voucher-activation__footer .button-group {
  margin-bottom: 0;
}
.voucher-activation__footer .button-group > * + * {
  margin-left: 1rem;
}
.voucher-activation__footer .button.clear {
  color: #020202;
}
.voucher-activation__footer .button.clear:hover {
  background-color: rgb(229, 228, 229);
  color: rgb(53, 51, 53);
}
.voucher-activation__footer .button.prevstep {
  background-color: #777777;
}
.voucher-activation__footer .button.prevstep:hover, .voucher-activation__footer .button.prevstep:active {
  background-color: #5f5f5f;
}
.voucher-activation .tabs-panel {
  padding-bottom: 0;
  padding-top: 0;
}

.is-invalid-label {
  color: #d51130 !important;
}

.is-valid-input {
  background-color: #e1e9f5;
  border-color: #4881c2;
}

.form-valid {
  color: #4881c2;
}

@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .voucher-activation__header .voucher-activation__steps__list__item {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .voucher-activation__header .voucher-activation__steps__list__item > a {
    display: block;
    width: 100%;
    height: 3rem;
  }
  .voucher-activation__header .voucher-activation__steps__list__item > a span {
    height: 1.5rem;
  }
}
@media only screen and (max-width: 40em) {
  .voucher-activation__footer .button-group, .voucher-activation__footer .button {
    justify-content: center;
  }
  .voucher-activation__footer .button {
    display: block;
    width: 100%;
  }
  .voucher-activation__footer .button-group > * + * {
    margin-left: 0;
  }
  .voucher-activation__footer .small-order-2 .button:last-of-type {
    margin-bottom: 0;
  }
}
[data-toggle] .is-open {
  display: none;
}
[data-toggle] .is-closed {
  display: block;
}
[data-toggle].is-open .is-open {
  display: block;
}
[data-toggle].is-open .is-closed {
  display: none;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", Roboto, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  background: #121212;
}

html {
  height: 0;
  background: #121212;
}

label, i {
  color: #FFFFFF;
}

.formgroup label small {
  color: #FFFFFF;
}

.mt15 {
  margin-top: 15px;
}

.iti__country-name {
  color: #121212;
}

[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.4375rem;
  padding: 0.5rem;
  border: none;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: #FFFFFF !important;
  background-color: transparent !important;
  box-shadow: none;
  border-radius: 0 !important;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 1px solid #FFFFFF !important;
}

select {
  height: 2rem;
  padding: 0.5rem;
  border: none;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 400 !important;
  font-family: inherit;
  line-height: normal;
  color: #fff;
  border-radius: 2px !important;
  background-color: #262626 !important;
  border-width: 0 !important;
  padding-right: 1.5rem;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}
select:focus {
  outline: none;
  box-shadow: none;
}
select:active {
  outline: none;
  box-shadow: none;
}

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em 1em 1em;
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: #fff;
  border: 1px solid #fc0;
  background-color: #121212 !important;
}
.button:hover {
  color: #121212;
  background-color: #fc0 !important;
}

textarea {
  border-radius: 0 !important;
}

span.label.secondary {
  background-color: #121212 !important;
  color: #FFFFFF;
}

a.trigger-zusammenfassung {
  color: #FFFFFF;
}

h1,
h2,
h3,
h4 {
  color: #FFFFFF;
}

.voucher-activation .zusammenfassung__item h4,
.voucher-activation .zusammenfassung__item h5 {
  color: #FFFFFF;
}

.zusammenfassung__content {
  background-color: #121212 !important;
  color: #FFFFFF !important;
}
.zusammenfassung__content li strong {
  color: #fc0 !important;
}

h2 {
  text-transform: uppercase;
}

.voucher-activation__body__inner input:not([type=checkbox]) {
  height: 2rem;
  margin: 0 0 0.5rem 0;
}
.voucher-activation__body__inner input[type=radio] {
  height: auto !important;
  margin: 0 !important;
}
.voucher-activation__body__inner input[type=checkbox] {
  height: auto !important;
  margin: 0 !important;
}
.voucher-activation__body__inner label {
  font-size: 1rem !important;
}
.voucher-activation__steps__list__item {
  font-weight: 700;
  font-size: 20px;
  background: none !important;
  color: #fff !important;
  margin-top: 0.5rem !important;
}

.content__form__wrapper {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.voucher-activation__steps__list__item .is-active > a {
  background-color: #fff !important;
  color: #121212 !important;
}

article {
  margin-top: 8rem;
  margin-bottom: 4rem;
}

.voucher-activation__body__inner input:not([type=checkbox]) {
  border-radius: 2px !important;
  background-color: #262626 !important;
  border-width: 0 !important;
  margin: 1rem 0;
}

.voucher-activation__body__inner textarea {
  border-radius: 2px !important;
  background-color: #262626 !important;
  border-width: 0 !important;
  margin: 1rem 0 !important;
  font-size: 0.875rem !important;
}

.voucher-activation__body__inner fieldset {
  padding: 3rem;
  margin: 2rem 0 !important;
}

::-moz-selection {
  /* Code for Firefox */
  color: rgb(255, 255, 255) !important;
  background: rgb(0, 153, 255) !important;
}

::selection {
  color: rgb(255, 255, 255) !important;
  background: rgb(0, 153, 255) !important;
}

fieldset {
  border: #F4B22B 1px solid !important;
}

legend {
  color: #F4B22B !important;
}

.trigger-zusammenfassung {
  display: block !important;
  width: 100% !important;
  padding: 0.85em 1em 1em 1em !important;
  color: #fff !important;
  border: 1px solid #fc0 !important;
  transition: all !important;
  animation-duration: 0.3s !important;
  font-weight: 700 !important;
}
.trigger-zusammenfassung:hover {
  background-color: #F4B22B !important;
  color: #121212 !important;
}

input[type=checkbox] {
  accent-color: #F4B22B !important;
}

input::placeholder {
  opacity: 0.4;
}

label a {
  color: #F4B22B !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 9000s ease-in-out 0s;
}

@media screen and (min-width: 640px) {
  .align-center-md {
    display: flex;
    align-items: center;
  }
}
/*# sourceMappingURL=meet-the-top-gelb-iframe.css.map */
