/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

/* open-sans-latin-300-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/assets/crematory/fonts/open-sans-latin-300-normal.8efb58098cf22e86e764.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-300-normal.fe010a468fe068fe12c1.woff) format('woff');
}
/* open-sans-latin-300-italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-display: swap;
  font-weight: 300;
  src: url(/assets/crematory/fonts/open-sans-latin-300-italic.a1a335e2b8559fb9735d.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-300-italic.23092564a41b04adc647.woff) format('woff');
}
/* open-sans-latin-400-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/crematory/fonts/open-sans-latin-400-normal.4a40e7d3a1b2ee1687a1.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-400-normal.6966065686166619e277.woff) format('woff');
}
/* open-sans-latin-400-italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/crematory/fonts/open-sans-latin-400-italic.50a67696a6506e40043e.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-400-italic.faaf6d7e989c969a4f9e.woff) format('woff');
}
/* open-sans-latin-500-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/assets/crematory/fonts/open-sans-latin-500-normal.91d4d8e6f695c3beafa2.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-500-normal.5006497bcd2565e51f28.woff) format('woff');
}
/* open-sans-latin-500-italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-display: swap;
  font-weight: 500;
  src: url(/assets/crematory/fonts/open-sans-latin-500-italic.f2e6d5512dfcd0eacc62.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-500-italic.85969a2e5982c66ac58f.woff) format('woff');
}
/* open-sans-latin-600-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/assets/crematory/fonts/open-sans-latin-600-normal.4e3a327d704bb9ea0e7b.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-600-normal.a6808ce43a7f69139fb5.woff) format('woff');
}
/* open-sans-latin-600-italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-display: swap;
  font-weight: 600;
  src: url(/assets/crematory/fonts/open-sans-latin-600-italic.f1203fd8fbf3f8d974f8.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-600-italic.f34bf8cc135d6fd34b0c.woff) format('woff');
}
/* open-sans-latin-700-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/assets/crematory/fonts/open-sans-latin-700-normal.10a843b265d139bbd4c3.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-700-normal.9cde0659ea2e2768e645.woff) format('woff');
}
/* open-sans-latin-700-italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-display: swap;
  font-weight: 700;
  src: url(/assets/crematory/fonts/open-sans-latin-700-italic.afcd641c2f1be1866ce7.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-700-italic.688e900d5cf2d5811489.woff) format('woff');
}
/* open-sans-latin-800-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url(/assets/crematory/fonts/open-sans-latin-800-normal.7a5d166081b87eea8ed9.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-800-normal.f209b995f41cf8ace823.woff) format('woff');
}
/* open-sans-latin-800-italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-display: swap;
  font-weight: 800;
  src: url(/assets/crematory/fonts/open-sans-latin-800-italic.22cd5ef3a2760c145296.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-latin-800-italic.39cb261902bcfe953dea.woff) format('woff');
}
/* open-sans-condensed-latin-300-normal*/
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/assets/crematory/fonts/open-sans-condensed-latin-300-normal.a192808a9079dee3a9e8.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-condensed-latin-300-normal.674d7a73332bab81bb2c.woff) format('woff');
  
}

/* open-sans-condensed-latin-300-italic*/
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: italic;
  font-display: swap;
  font-weight: 300;
  src: url(/assets/crematory/fonts/open-sans-condensed-latin-300-italic.615741ed6afae67825bc.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-condensed-latin-300-italic.3e98eff94f08f512cb51.woff) format('woff');
  
}

/* open-sans-condensed-latin-700-normal*/
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/assets/crematory/fonts/open-sans-condensed-latin-700-normal.b2da74db232df2fe1a0f.woff2) format('woff2'), url(/assets/crematory/fonts/open-sans-condensed-latin-700-normal.65bede556d831156e868.woff) format('woff');
  
}

/*! xxx, Stand: xxx, © hofff.com | Nicky Hoff
 * based on:
*//*!
 * Font Awesome Free 7.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 2026 Fonticons, Inc.
 *//*!
 * Bootstrap  v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */.fa-solid,.fa-regular,.fa-brands,.fa-classic,.fas,.far,.fab,.fa{--_fa-family: var(--fa-family, var(--fa-style-family, 'Font Awesome 7 Free'));-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:var(--fa-display, inline-block);font-family:var(--_fa-family);font-feature-settings:normal;font-style:normal;font-synthesis:none;font-variant:normal;font-weight:var(--fa-style, 900);line-height:1;text-align:center;text-rendering:auto;width:var(--fa-width, 1.25em)}:is(.fas,.far,.fab,.fa-solid,.fa-regular,.fa-brands,.fa-classic,.fa)::before{content:var(--fa)/""}@supports not (content: ""/""){:is(.fas,.far,.fab,.fa-solid,.fa-regular,.fa-brands,.fa-classic,.fa)::before{content:var(--fa)}}.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:calc(10/16*1em);line-height:calc(1/10*1em);vertical-align:calc((6/10 - .375)*1em)}.fa-xs{font-size:calc(12/16*1em);line-height:calc(1/12*1em);vertical-align:calc((6/12 - .375)*1em)}.fa-sm{font-size:calc(14/16*1em);line-height:calc(1/14*1em);vertical-align:calc((6/14 - .375)*1em)}.fa-lg{font-size:calc(20/16*1em);line-height:calc(1/20*1em);vertical-align:calc((6/20 - .375)*1em)}.fa-xl{font-size:calc(24/16*1em);line-height:calc(1/24*1em);vertical-align:calc((6/24 - .375)*1em)}.fa-2xl{font-size:calc(32/16*1em);line-height:calc(1/32*1em);vertical-align:calc((6/32 - .375)*1em)}.fa-width-auto{--fa-width: auto}.fa-fw,.fa-width-fixed{--fa-width: 1.25em}.fa-ul{list-style-type:none;margin-inline-start:var(--fa-li-margin, 2.5em);padding-inline-start:0}.fa-ul>li{position:relative}.fa-li{inset-inline-start:calc(-1*var(--fa-li-width, 2em));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.0625em);box-sizing:var(--fa-border-box-sizing, content-box);padding:var(--fa-border-padding, 0.1875em 0.25em)}.fa-pull-left,.fa-pull-start{float:inline-start;margin-inline-end:var(--fa-pull-margin, 0.3em)}.fa-pull-right,.fa-pull-end{float:inline-end;margin-inline-start: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:none !important;transition:none !important}}@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, 0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{--fa-width: 100%;inset:0;position:absolute;text-align:center;width:var(--fa-width);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)}.fa-0{--fa:"\30 "}.fa-1{--fa:"\31 "}.fa-2{--fa:"\32 "}.fa-3{--fa:"\33 "}.fa-4{--fa:"\34 "}.fa-5{--fa:"\35 "}.fa-6{--fa:"\36 "}.fa-7{--fa:"\37 "}.fa-8{--fa:"\38 "}.fa-9{--fa:"\39 "}.fa-exclamation{--fa:"\!"}.fa-hashtag{--fa:"\#"}.fa-dollar-sign{--fa:"\$"}.fa-dollar{--fa:"\$"}.fa-usd{--fa:"\$"}.fa-percent{--fa:"\%"}.fa-percentage{--fa:"\%"}.fa-asterisk{--fa:"\*"}.fa-plus{--fa:"\+"}.fa-add{--fa:"\+"}.fa-less-than{--fa:"\<"}.fa-equals{--fa:"\="}.fa-greater-than{--fa:"\>"}.fa-question{--fa:"\?"}.fa-at{--fa:"\@"}.fa-a{--fa:"A"}.fa-b{--fa:"B"}.fa-c{--fa:"C"}.fa-d{--fa:"D"}.fa-e{--fa:"E"}.fa-f{--fa:"F"}.fa-g{--fa:"G"}.fa-h{--fa:"H"}.fa-i{--fa:"I"}.fa-j{--fa:"J"}.fa-k{--fa:"K"}.fa-l{--fa:"L"}.fa-m{--fa:"M"}.fa-n{--fa:"N"}.fa-o{--fa:"O"}.fa-p{--fa:"P"}.fa-q{--fa:"Q"}.fa-r{--fa:"R"}.fa-s{--fa:"S"}.fa-t{--fa:"T"}.fa-u{--fa:"U"}.fa-v{--fa:"V"}.fa-w{--fa:"W"}.fa-x{--fa:"X"}.fa-y{--fa:"Y"}.fa-z{--fa:"Z"}.fa-faucet{--fa:""}.fa-faucet-drip{--fa:""}.fa-house-chimney-window{--fa:""}.fa-house-signal{--fa:""}.fa-temperature-arrow-down{--fa:""}.fa-temperature-down{--fa:""}.fa-temperature-arrow-up{--fa:""}.fa-temperature-up{--fa:""}.fa-trailer{--fa:""}.fa-bacteria{--fa:""}.fa-bacterium{--fa:""}.fa-box-tissue{--fa:""}.fa-hand-holding-medical{--fa:""}.fa-hand-sparkles{--fa:""}.fa-hands-bubbles{--fa:""}.fa-hands-wash{--fa:""}.fa-handshake-slash{--fa:""}.fa-handshake-alt-slash{--fa:""}.fa-handshake-simple-slash{--fa:""}.fa-head-side-cough{--fa:""}.fa-head-side-cough-slash{--fa:""}.fa-head-side-mask{--fa:""}.fa-head-side-virus{--fa:""}.fa-house-chimney-user{--fa:""}.fa-house-laptop{--fa:""}.fa-laptop-house{--fa:""}.fa-lungs-virus{--fa:""}.fa-people-arrows{--fa:""}.fa-people-arrows-left-right{--fa:""}.fa-plane-slash{--fa:""}.fa-pump-medical{--fa:""}.fa-pump-soap{--fa:""}.fa-shield-virus{--fa:""}.fa-sink{--fa:""}.fa-soap{--fa:""}.fa-stopwatch-20{--fa:""}.fa-shop-slash{--fa:""}.fa-store-alt-slash{--fa:""}.fa-store-slash{--fa:""}.fa-toilet-paper-slash{--fa:""}.fa-users-slash{--fa:""}.fa-virus{--fa:""}.fa-virus-slash{--fa:""}.fa-viruses{--fa:""}.fa-vest{--fa:""}.fa-vest-patches{--fa:""}.fa-arrow-trend-down{--fa:""}.fa-arrow-trend-up{--fa:""}.fa-arrow-up-from-bracket{--fa:""}.fa-austral-sign{--fa:""}.fa-baht-sign{--fa:""}.fa-bitcoin-sign{--fa:""}.fa-bolt-lightning{--fa:""}.fa-book-bookmark{--fa:""}.fa-camera-rotate{--fa:""}.fa-cedi-sign{--fa:""}.fa-chart-column{--fa:""}.fa-chart-gantt{--fa:""}.fa-clapperboard{--fa:""}.fa-closed-captioning-slash{--fa:""}.fa-clover{--fa:""}.fa-code-compare{--fa:""}.fa-code-fork{--fa:""}.fa-code-pull-request{--fa:""}.fa-colon-sign{--fa:""}.fa-cruzeiro-sign{--fa:""}.fa-display{--fa:""}.fa-dong-sign{--fa:""}.fa-elevator{--fa:""}.fa-filter-circle-xmark{--fa:""}.fa-florin-sign{--fa:""}.fa-folder-closed{--fa:""}.fa-franc-sign{--fa:""}.fa-guarani-sign{--fa:""}.fa-gun{--fa:""}.fa-hands-clapping{--fa:""}.fa-house-user{--fa:""}.fa-home-user{--fa:""}.fa-indian-rupee-sign{--fa:""}.fa-indian-rupee{--fa:""}.fa-inr{--fa:""}.fa-kip-sign{--fa:""}.fa-lari-sign{--fa:""}.fa-litecoin-sign{--fa:""}.fa-manat-sign{--fa:""}.fa-mask-face{--fa:""}.fa-mill-sign{--fa:""}.fa-money-bills{--fa:""}.fa-naira-sign{--fa:""}.fa-notdef{--fa:""}.fa-panorama{--fa:""}.fa-peseta-sign{--fa:""}.fa-peso-sign{--fa:""}.fa-plane-up{--fa:""}.fa-rupiah-sign{--fa:""}.fa-stairs{--fa:""}.fa-timeline{--fa:""}.fa-truck-front{--fa:""}.fa-turkish-lira-sign{--fa:""}.fa-try{--fa:""}.fa-turkish-lira{--fa:""}.fa-vault{--fa:""}.fa-wand-magic-sparkles{--fa:""}.fa-magic-wand-sparkles{--fa:""}.fa-wheat-awn{--fa:""}.fa-wheat-alt{--fa:""}.fa-wheelchair-move{--fa:""}.fa-wheelchair-alt{--fa:""}.fa-bangladeshi-taka-sign{--fa:""}.fa-bowl-rice{--fa:""}.fa-person-pregnant{--fa:""}.fa-house-chimney{--fa:""}.fa-home-lg{--fa:""}.fa-house-crack{--fa:""}.fa-house-medical{--fa:""}.fa-cent-sign{--fa:""}.fa-plus-minus{--fa:""}.fa-sailboat{--fa:""}.fa-section{--fa:""}.fa-shrimp{--fa:""}.fa-brazilian-real-sign{--fa:""}.fa-chart-simple{--fa:""}.fa-diagram-next{--fa:""}.fa-diagram-predecessor{--fa:""}.fa-diagram-successor{--fa:""}.fa-earth-oceania{--fa:""}.fa-globe-oceania{--fa:""}.fa-bug-slash{--fa:""}.fa-file-circle-plus{--fa:""}.fa-shop-lock{--fa:""}.fa-virus-covid{--fa:""}.fa-virus-covid-slash{--fa:""}.fa-anchor-circle-check{--fa:""}.fa-anchor-circle-exclamation{--fa:""}.fa-anchor-circle-xmark{--fa:""}.fa-anchor-lock{--fa:""}.fa-arrow-down-up-across-line{--fa:""}.fa-arrow-down-up-lock{--fa:""}.fa-arrow-right-to-city{--fa:""}.fa-arrow-up-from-ground-water{--fa:""}.fa-arrow-up-from-water-pump{--fa:""}.fa-arrow-up-right-dots{--fa:""}.fa-arrows-down-to-line{--fa:""}.fa-arrows-down-to-people{--fa:""}.fa-arrows-left-right-to-line{--fa:""}.fa-arrows-spin{--fa:""}.fa-arrows-split-up-and-left{--fa:""}.fa-arrows-to-circle{--fa:""}.fa-arrows-to-dot{--fa:""}.fa-arrows-to-eye{--fa:""}.fa-arrows-turn-right{--fa:""}.fa-arrows-turn-to-dots{--fa:""}.fa-arrows-up-to-line{--fa:""}.fa-bore-hole{--fa:""}.fa-bottle-droplet{--fa:""}.fa-bottle-water{--fa:""}.fa-bowl-food{--fa:""}.fa-boxes-packing{--fa:""}.fa-bridge{--fa:""}.fa-bridge-circle-check{--fa:""}.fa-bridge-circle-exclamation{--fa:""}.fa-bridge-circle-xmark{--fa:""}.fa-bridge-lock{--fa:""}.fa-bridge-water{--fa:""}.fa-bucket{--fa:""}.fa-bugs{--fa:""}.fa-building-circle-arrow-right{--fa:""}.fa-building-circle-check{--fa:""}.fa-building-circle-exclamation{--fa:""}.fa-building-circle-xmark{--fa:""}.fa-building-flag{--fa:""}.fa-building-lock{--fa:""}.fa-building-ngo{--fa:""}.fa-building-shield{--fa:""}.fa-building-un{--fa:""}.fa-building-user{--fa:""}.fa-building-wheat{--fa:""}.fa-burst{--fa:""}.fa-car-on{--fa:""}.fa-car-tunnel{--fa:""}.fa-child-combatant{--fa:""}.fa-child-rifle{--fa:""}.fa-children{--fa:""}.fa-circle-nodes{--fa:""}.fa-clipboard-question{--fa:""}.fa-cloud-showers-water{--fa:""}.fa-computer{--fa:""}.fa-cubes-stacked{--fa:""}.fa-envelope-circle-check{--fa:""}.fa-explosion{--fa:""}.fa-ferry{--fa:""}.fa-file-circle-exclamation{--fa:""}.fa-file-circle-minus{--fa:""}.fa-file-circle-question{--fa:""}.fa-file-shield{--fa:""}.fa-fire-burner{--fa:""}.fa-fish-fins{--fa:""}.fa-flask-vial{--fa:""}.fa-glass-water{--fa:""}.fa-glass-water-droplet{--fa:""}.fa-group-arrows-rotate{--fa:""}.fa-hand-holding-hand{--fa:""}.fa-handcuffs{--fa:""}.fa-hands-bound{--fa:""}.fa-hands-holding-child{--fa:""}.fa-hands-holding-circle{--fa:""}.fa-heart-circle-bolt{--fa:""}.fa-heart-circle-check{--fa:""}.fa-heart-circle-exclamation{--fa:""}.fa-heart-circle-minus{--fa:""}.fa-heart-circle-plus{--fa:""}.fa-heart-circle-xmark{--fa:""}.fa-helicopter-symbol{--fa:""}.fa-helmet-un{--fa:""}.fa-hill-avalanche{--fa:""}.fa-hill-rockslide{--fa:""}.fa-house-circle-check{--fa:""}.fa-house-circle-exclamation{--fa:""}.fa-house-circle-xmark{--fa:""}.fa-house-fire{--fa:""}.fa-house-flag{--fa:""}.fa-house-flood-water{--fa:""}.fa-house-flood-water-circle-arrow-right{--fa:""}.fa-house-lock{--fa:""}.fa-house-medical-circle-check{--fa:""}.fa-house-medical-circle-exclamation{--fa:""}.fa-house-medical-circle-xmark{--fa:""}.fa-house-medical-flag{--fa:""}.fa-house-tsunami{--fa:""}.fa-jar{--fa:""}.fa-jar-wheat{--fa:""}.fa-jet-fighter-up{--fa:""}.fa-jug-detergent{--fa:""}.fa-kitchen-set{--fa:""}.fa-land-mine-on{--fa:""}.fa-landmark-flag{--fa:""}.fa-laptop-file{--fa:""}.fa-lines-leaning{--fa:""}.fa-location-pin-lock{--fa:""}.fa-locust{--fa:""}.fa-magnifying-glass-arrow-right{--fa:""}.fa-magnifying-glass-chart{--fa:""}.fa-mars-and-venus-burst{--fa:""}.fa-mask-ventilator{--fa:""}.fa-mattress-pillow{--fa:""}.fa-mobile-retro{--fa:""}.fa-money-bill-transfer{--fa:""}.fa-money-bill-trend-up{--fa:""}.fa-money-bill-wheat{--fa:""}.fa-mosquito{--fa:""}.fa-mosquito-net{--fa:""}.fa-mound{--fa:""}.fa-mountain-city{--fa:""}.fa-mountain-sun{--fa:""}.fa-oil-well{--fa:""}.fa-people-group{--fa:""}.fa-people-line{--fa:""}.fa-people-pulling{--fa:""}.fa-people-robbery{--fa:""}.fa-people-roof{--fa:""}.fa-person-arrow-down-to-line{--fa:""}.fa-person-arrow-up-from-line{--fa:""}.fa-person-breastfeeding{--fa:""}.fa-person-burst{--fa:""}.fa-person-cane{--fa:""}.fa-person-chalkboard{--fa:""}.fa-person-circle-check{--fa:""}.fa-person-circle-exclamation{--fa:""}.fa-person-circle-minus{--fa:""}.fa-person-circle-plus{--fa:""}.fa-person-circle-question{--fa:""}.fa-person-circle-xmark{--fa:""}.fa-person-dress-burst{--fa:""}.fa-person-drowning{--fa:""}.fa-person-falling{--fa:""}.fa-person-falling-burst{--fa:""}.fa-person-half-dress{--fa:""}.fa-person-harassing{--fa:""}.fa-person-military-pointing{--fa:""}.fa-person-military-rifle{--fa:""}.fa-person-military-to-person{--fa:""}.fa-person-rays{--fa:""}.fa-person-rifle{--fa:""}.fa-person-shelter{--fa:""}.fa-person-walking-arrow-loop-left{--fa:""}.fa-person-walking-arrow-right{--fa:""}.fa-person-walking-dashed-line-arrow-right{--fa:""}.fa-person-walking-luggage{--fa:""}.fa-plane-circle-check{--fa:""}.fa-plane-circle-exclamation{--fa:""}.fa-plane-circle-xmark{--fa:""}.fa-plane-lock{--fa:""}.fa-plate-wheat{--fa:""}.fa-plug-circle-bolt{--fa:""}.fa-plug-circle-check{--fa:""}.fa-plug-circle-exclamation{--fa:""}.fa-plug-circle-minus{--fa:""}.fa-plug-circle-plus{--fa:""}.fa-plug-circle-xmark{--fa:""}.fa-ranking-star{--fa:""}.fa-road-barrier{--fa:""}.fa-road-bridge{--fa:""}.fa-road-circle-check{--fa:""}.fa-road-circle-exclamation{--fa:""}.fa-road-circle-xmark{--fa:""}.fa-road-lock{--fa:""}.fa-road-spikes{--fa:""}.fa-rug{--fa:""}.fa-sack-xmark{--fa:""}.fa-school-circle-check{--fa:""}.fa-school-circle-exclamation{--fa:""}.fa-school-circle-xmark{--fa:""}.fa-school-flag{--fa:""}.fa-school-lock{--fa:""}.fa-sheet-plastic{--fa:""}.fa-shield-cat{--fa:""}.fa-shield-dog{--fa:""}.fa-shield-heart{--fa:""}.fa-square-nfi{--fa:""}.fa-square-person-confined{--fa:""}.fa-square-virus{--fa:""}.fa-staff-snake{--fa:""}.fa-rod-asclepius{--fa:""}.fa-rod-snake{--fa:""}.fa-staff-aesculapius{--fa:""}.fa-sun-plant-wilt{--fa:""}.fa-tarp{--fa:""}.fa-tarp-droplet{--fa:""}.fa-tent{--fa:""}.fa-tent-arrow-down-to-line{--fa:""}.fa-tent-arrow-left-right{--fa:""}.fa-tent-arrow-turn-left{--fa:""}.fa-tent-arrows-down{--fa:""}.fa-tents{--fa:""}.fa-toilet-portable{--fa:""}.fa-toilets-portable{--fa:""}.fa-tower-cell{--fa:""}.fa-tower-observation{--fa:""}.fa-tree-city{--fa:""}.fa-trowel{--fa:""}.fa-trowel-bricks{--fa:""}.fa-truck-arrow-right{--fa:""}.fa-truck-droplet{--fa:""}.fa-truck-field{--fa:""}.fa-truck-field-un{--fa:""}.fa-truck-plane{--fa:""}.fa-users-between-lines{--fa:""}.fa-users-line{--fa:""}.fa-users-rays{--fa:""}.fa-users-rectangle{--fa:""}.fa-users-viewfinder{--fa:""}.fa-vial-circle-check{--fa:""}.fa-vial-virus{--fa:""}.fa-wheat-awn-circle-exclamation{--fa:""}.fa-worm{--fa:""}.fa-xmarks-lines{--fa:""}.fa-child-dress{--fa:""}.fa-child-reaching{--fa:""}.fa-file-circle-check{--fa:""}.fa-file-circle-xmark{--fa:""}.fa-person-through-window{--fa:""}.fa-plant-wilt{--fa:""}.fa-stapler{--fa:""}.fa-train-tram{--fa:""}.fa-table-cells-column-lock{--fa:""}.fa-table-cells-row-lock{--fa:""}.fa-web-awesome{--fa:""}.fa-thumbtack-slash{--fa:""}.fa-thumb-tack-slash{--fa:""}.fa-table-cells-row-unlock{--fa:""}.fa-chart-diagram{--fa:""}.fa-comment-nodes{--fa:""}.fa-file-fragment{--fa:""}.fa-file-half-dashed{--fa:""}.fa-hexagon-nodes{--fa:""}.fa-hexagon-nodes-bolt{--fa:""}.fa-square-binary{--fa:""}.fa-pentagon{--fa:""}.fa-non-binary{--fa:""}.fa-spiral{--fa:""}.fa-picture-in-picture{--fa:""}.fa-mobile-vibrate{--fa:""}.fa-single-quote-left{--fa:""}.fa-single-quote-right{--fa:""}.fa-bus-side{--fa:""}.fa-septagon{--fa:""}.fa-heptagon{--fa:""}.fa-aquarius{--fa:""}.fa-aries{--fa:""}.fa-cancer{--fa:""}.fa-capricorn{--fa:""}.fa-gemini{--fa:""}.fa-leo{--fa:""}.fa-libra{--fa:""}.fa-pisces{--fa:""}.fa-sagittarius{--fa:""}.fa-scorpio{--fa:""}.fa-taurus{--fa:""}.fa-virgo{--fa:""}.fa-martini-glass-empty{--fa:""}.fa-glass-martini{--fa:""}.fa-music{--fa:""}.fa-magnifying-glass{--fa:""}.fa-search{--fa:""}.fa-heart{--fa:""}.fa-star{--fa:""}.fa-user{--fa:""}.fa-user-alt{--fa:""}.fa-user-large{--fa:""}.fa-film{--fa:""}.fa-film-alt{--fa:""}.fa-film-simple{--fa:""}.fa-table-cells-large{--fa:""}.fa-th-large{--fa:""}.fa-table-cells{--fa:""}.fa-th{--fa:""}.fa-table-list{--fa:""}.fa-th-list{--fa:""}.fa-check{--fa:""}.fa-xmark{--fa:""}.fa-close{--fa:""}.fa-multiply{--fa:""}.fa-remove{--fa:""}.fa-times{--fa:""}.fa-magnifying-glass-plus{--fa:""}.fa-search-plus{--fa:""}.fa-magnifying-glass-minus{--fa:""}.fa-search-minus{--fa:""}.fa-power-off{--fa:""}.fa-signal{--fa:""}.fa-signal-5{--fa:""}.fa-signal-perfect{--fa:""}.fa-gear{--fa:""}.fa-cog{--fa:""}.fa-house{--fa:""}.fa-home{--fa:""}.fa-home-alt{--fa:""}.fa-home-lg-alt{--fa:""}.fa-clock{--fa:""}.fa-clock-four{--fa:""}.fa-road{--fa:""}.fa-download{--fa:""}.fa-inbox{--fa:""}.fa-arrow-rotate-right{--fa:""}.fa-arrow-right-rotate{--fa:""}.fa-arrow-rotate-forward{--fa:""}.fa-redo{--fa:""}.fa-arrows-rotate{--fa:""}.fa-refresh{--fa:""}.fa-sync{--fa:""}.fa-rectangle-list{--fa:""}.fa-list-alt{--fa:""}.fa-lock{--fa:""}.fa-flag{--fa:""}.fa-headphones{--fa:""}.fa-headphones-alt{--fa:""}.fa-headphones-simple{--fa:""}.fa-volume-off{--fa:""}.fa-volume-low{--fa:""}.fa-volume-down{--fa:""}.fa-volume-high{--fa:""}.fa-volume-up{--fa:""}.fa-qrcode{--fa:""}.fa-barcode{--fa:""}.fa-tag{--fa:""}.fa-tags{--fa:""}.fa-book{--fa:""}.fa-bookmark{--fa:""}.fa-print{--fa:""}.fa-camera{--fa:""}.fa-camera-alt{--fa:""}.fa-font{--fa:""}.fa-bold{--fa:""}.fa-italic{--fa:""}.fa-text-height{--fa:""}.fa-text-width{--fa:""}.fa-align-left{--fa:""}.fa-align-center{--fa:""}.fa-align-right{--fa:""}.fa-align-justify{--fa:""}.fa-list{--fa:""}.fa-list-squares{--fa:""}.fa-outdent{--fa:""}.fa-dedent{--fa:""}.fa-indent{--fa:""}.fa-video{--fa:""}.fa-video-camera{--fa:""}.fa-image{--fa:""}.fa-location-pin{--fa:""}.fa-map-marker{--fa:""}.fa-circle-half-stroke{--fa:""}.fa-adjust{--fa:""}.fa-droplet{--fa:""}.fa-tint{--fa:""}.fa-pen-to-square{--fa:""}.fa-edit{--fa:""}.fa-arrows-up-down-left-right{--fa:""}.fa-arrows{--fa:""}.fa-backward-step{--fa:""}.fa-step-backward{--fa:""}.fa-backward-fast{--fa:""}.fa-fast-backward{--fa:""}.fa-backward{--fa:""}.fa-play{--fa:""}.fa-pause{--fa:""}.fa-stop{--fa:""}.fa-forward{--fa:""}.fa-forward-fast{--fa:""}.fa-fast-forward{--fa:""}.fa-forward-step{--fa:""}.fa-step-forward{--fa:""}.fa-eject{--fa:""}.fa-chevron-left{--fa:""}.fa-chevron-right{--fa:""}.fa-circle-plus{--fa:""}.fa-plus-circle{--fa:""}.fa-circle-minus{--fa:""}.fa-minus-circle{--fa:""}.fa-circle-xmark{--fa:""}.fa-times-circle{--fa:""}.fa-xmark-circle{--fa:""}.fa-circle-check{--fa:""}.fa-check-circle{--fa:""}.fa-circle-question{--fa:""}.fa-question-circle{--fa:""}.fa-circle-info{--fa:""}.fa-info-circle{--fa:""}.fa-crosshairs{--fa:""}.fa-ban{--fa:""}.fa-cancel{--fa:""}.fa-arrow-left{--fa:""}.fa-arrow-right{--fa:""}.fa-arrow-up{--fa:""}.fa-arrow-down{--fa:""}.fa-share{--fa:""}.fa-mail-forward{--fa:""}.fa-expand{--fa:""}.fa-compress{--fa:""}.fa-minus{--fa:""}.fa-subtract{--fa:""}.fa-circle-exclamation{--fa:""}.fa-exclamation-circle{--fa:""}.fa-gift{--fa:""}.fa-leaf{--fa:""}.fa-fire{--fa:""}.fa-eye{--fa:""}.fa-eye-slash{--fa:""}.fa-triangle-exclamation{--fa:""}.fa-exclamation-triangle{--fa:""}.fa-warning{--fa:""}.fa-plane{--fa:""}.fa-calendar-days{--fa:""}.fa-calendar-alt{--fa:""}.fa-shuffle{--fa:""}.fa-random{--fa:""}.fa-comment{--fa:""}.fa-magnet{--fa:""}.fa-chevron-up{--fa:""}.fa-chevron-down{--fa:""}.fa-retweet{--fa:""}.fa-cart-shopping{--fa:""}.fa-shopping-cart{--fa:""}.fa-folder{--fa:""}.fa-folder-blank{--fa:""}.fa-folder-open{--fa:""}.fa-arrows-up-down{--fa:""}.fa-arrows-v{--fa:""}.fa-arrows-left-right{--fa:""}.fa-arrows-h{--fa:""}.fa-chart-bar{--fa:""}.fa-bar-chart{--fa:""}.fa-camera-retro{--fa:""}.fa-key{--fa:""}.fa-gears{--fa:""}.fa-cogs{--fa:""}.fa-comments{--fa:""}.fa-star-half{--fa:""}.fa-arrow-right-from-bracket{--fa:""}.fa-sign-out{--fa:""}.fa-thumbtack{--fa:""}.fa-thumb-tack{--fa:""}.fa-arrow-up-right-from-square{--fa:""}.fa-external-link{--fa:""}.fa-arrow-right-to-bracket{--fa:""}.fa-sign-in{--fa:""}.fa-trophy{--fa:""}.fa-upload{--fa:""}.fa-lemon{--fa:""}.fa-phone{--fa:""}.fa-square-phone{--fa:""}.fa-phone-square{--fa:""}.fa-unlock{--fa:""}.fa-credit-card{--fa:""}.fa-credit-card-alt{--fa:""}.fa-rss{--fa:""}.fa-feed{--fa:""}.fa-hard-drive{--fa:""}.fa-hdd{--fa:""}.fa-bullhorn{--fa:""}.fa-certificate{--fa:""}.fa-hand-point-right{--fa:""}.fa-hand-point-left{--fa:""}.fa-hand-point-up{--fa:""}.fa-hand-point-down{--fa:""}.fa-circle-arrow-left{--fa:""}.fa-arrow-circle-left{--fa:""}.fa-circle-arrow-right{--fa:""}.fa-arrow-circle-right{--fa:""}.fa-circle-arrow-up{--fa:""}.fa-arrow-circle-up{--fa:""}.fa-circle-arrow-down{--fa:""}.fa-arrow-circle-down{--fa:""}.fa-globe{--fa:""}.fa-wrench{--fa:""}.fa-list-check{--fa:""}.fa-tasks{--fa:""}.fa-filter{--fa:""}.fa-briefcase{--fa:""}.fa-up-down-left-right{--fa:""}.fa-arrows-alt{--fa:""}.fa-users{--fa:""}.fa-link{--fa:""}.fa-chain{--fa:""}.fa-cloud{--fa:""}.fa-flask{--fa:""}.fa-scissors{--fa:""}.fa-cut{--fa:""}.fa-copy{--fa:""}.fa-paperclip{--fa:""}.fa-floppy-disk{--fa:""}.fa-save{--fa:""}.fa-square{--fa:""}.fa-bars{--fa:""}.fa-navicon{--fa:""}.fa-list-ul{--fa:""}.fa-list-dots{--fa:""}.fa-list-ol{--fa:""}.fa-list-1-2{--fa:""}.fa-list-numeric{--fa:""}.fa-strikethrough{--fa:""}.fa-underline{--fa:""}.fa-table{--fa:""}.fa-wand-magic{--fa:""}.fa-magic{--fa:""}.fa-truck{--fa:""}.fa-money-bill{--fa:""}.fa-caret-down{--fa:""}.fa-caret-up{--fa:""}.fa-caret-left{--fa:""}.fa-caret-right{--fa:""}.fa-table-columns{--fa:""}.fa-columns{--fa:""}.fa-sort{--fa:""}.fa-unsorted{--fa:""}.fa-sort-down{--fa:""}.fa-sort-desc{--fa:""}.fa-sort-up{--fa:""}.fa-sort-asc{--fa:""}.fa-envelope{--fa:""}.fa-arrow-rotate-left{--fa:""}.fa-arrow-left-rotate{--fa:""}.fa-arrow-rotate-back{--fa:""}.fa-arrow-rotate-backward{--fa:""}.fa-undo{--fa:""}.fa-gavel{--fa:""}.fa-legal{--fa:""}.fa-bolt{--fa:""}.fa-zap{--fa:""}.fa-sitemap{--fa:""}.fa-umbrella{--fa:""}.fa-paste{--fa:""}.fa-file-clipboard{--fa:""}.fa-lightbulb{--fa:""}.fa-arrow-right-arrow-left{--fa:""}.fa-exchange{--fa:""}.fa-cloud-arrow-down{--fa:""}.fa-cloud-download{--fa:""}.fa-cloud-download-alt{--fa:""}.fa-cloud-arrow-up{--fa:""}.fa-cloud-upload{--fa:""}.fa-cloud-upload-alt{--fa:""}.fa-user-doctor{--fa:""}.fa-user-md{--fa:""}.fa-stethoscope{--fa:""}.fa-suitcase{--fa:""}.fa-bell{--fa:""}.fa-mug-saucer{--fa:""}.fa-coffee{--fa:""}.fa-hospital{--fa:""}.fa-hospital-alt{--fa:""}.fa-hospital-wide{--fa:""}.fa-truck-medical{--fa:""}.fa-ambulance{--fa:""}.fa-suitcase-medical{--fa:""}.fa-medkit{--fa:""}.fa-jet-fighter{--fa:""}.fa-fighter-jet{--fa:""}.fa-beer-mug-empty{--fa:""}.fa-beer{--fa:""}.fa-square-h{--fa:""}.fa-h-square{--fa:""}.fa-square-plus{--fa:""}.fa-plus-square{--fa:""}.fa-angles-left{--fa:""}.fa-angle-double-left{--fa:""}.fa-angles-right{--fa:""}.fa-angle-double-right{--fa:""}.fa-angles-up{--fa:""}.fa-angle-double-up{--fa:""}.fa-angles-down{--fa:""}.fa-angle-double-down{--fa:""}.fa-angle-left{--fa:""}.fa-angle-right{--fa:""}.fa-angle-up{--fa:""}.fa-angle-down{--fa:""}.fa-laptop{--fa:""}.fa-tablet-button{--fa:""}.fa-mobile-button{--fa:""}.fa-quote-left{--fa:""}.fa-quote-left-alt{--fa:""}.fa-quote-right{--fa:""}.fa-quote-right-alt{--fa:""}.fa-spinner{--fa:""}.fa-circle{--fa:""}.fa-face-smile{--fa:""}.fa-smile{--fa:""}.fa-face-frown{--fa:""}.fa-frown{--fa:""}.fa-face-meh{--fa:""}.fa-meh{--fa:""}.fa-gamepad{--fa:""}.fa-keyboard{--fa:""}.fa-flag-checkered{--fa:""}.fa-terminal{--fa:""}.fa-code{--fa:""}.fa-reply-all{--fa:""}.fa-mail-reply-all{--fa:""}.fa-location-arrow{--fa:""}.fa-crop{--fa:""}.fa-code-branch{--fa:""}.fa-link-slash{--fa:""}.fa-chain-broken{--fa:""}.fa-chain-slash{--fa:""}.fa-unlink{--fa:""}.fa-info{--fa:""}.fa-superscript{--fa:""}.fa-subscript{--fa:""}.fa-eraser{--fa:""}.fa-puzzle-piece{--fa:""}.fa-microphone{--fa:""}.fa-microphone-slash{--fa:""}.fa-shield{--fa:""}.fa-shield-blank{--fa:""}.fa-calendar{--fa:""}.fa-fire-extinguisher{--fa:""}.fa-rocket{--fa:""}.fa-circle-chevron-left{--fa:""}.fa-chevron-circle-left{--fa:""}.fa-circle-chevron-right{--fa:""}.fa-chevron-circle-right{--fa:""}.fa-circle-chevron-up{--fa:""}.fa-chevron-circle-up{--fa:""}.fa-circle-chevron-down{--fa:""}.fa-chevron-circle-down{--fa:""}.fa-anchor{--fa:""}.fa-unlock-keyhole{--fa:""}.fa-unlock-alt{--fa:""}.fa-bullseye{--fa:""}.fa-ellipsis{--fa:""}.fa-ellipsis-h{--fa:""}.fa-ellipsis-vertical{--fa:""}.fa-ellipsis-v{--fa:""}.fa-square-rss{--fa:""}.fa-rss-square{--fa:""}.fa-circle-play{--fa:""}.fa-play-circle{--fa:""}.fa-ticket{--fa:""}.fa-square-minus{--fa:""}.fa-minus-square{--fa:""}.fa-arrow-turn-up{--fa:""}.fa-level-up{--fa:""}.fa-arrow-turn-down{--fa:""}.fa-level-down{--fa:""}.fa-square-check{--fa:""}.fa-check-square{--fa:""}.fa-square-pen{--fa:""}.fa-pen-square{--fa:""}.fa-pencil-square{--fa:""}.fa-square-arrow-up-right{--fa:""}.fa-external-link-square{--fa:""}.fa-share-from-square{--fa:""}.fa-share-square{--fa:""}.fa-compass{--fa:""}.fa-square-caret-down{--fa:""}.fa-caret-square-down{--fa:""}.fa-square-caret-up{--fa:""}.fa-caret-square-up{--fa:""}.fa-square-caret-right{--fa:""}.fa-caret-square-right{--fa:""}.fa-euro-sign{--fa:""}.fa-eur{--fa:""}.fa-euro{--fa:""}.fa-sterling-sign{--fa:""}.fa-gbp{--fa:""}.fa-pound-sign{--fa:""}.fa-rupee-sign{--fa:""}.fa-rupee{--fa:""}.fa-yen-sign{--fa:""}.fa-cny{--fa:""}.fa-jpy{--fa:""}.fa-rmb{--fa:""}.fa-yen{--fa:""}.fa-ruble-sign{--fa:""}.fa-rouble{--fa:""}.fa-rub{--fa:""}.fa-ruble{--fa:""}.fa-won-sign{--fa:""}.fa-krw{--fa:""}.fa-won{--fa:""}.fa-file{--fa:""}.fa-file-lines{--fa:""}.fa-file-alt{--fa:""}.fa-file-text{--fa:""}.fa-arrow-down-a-z{--fa:""}.fa-sort-alpha-asc{--fa:""}.fa-sort-alpha-down{--fa:""}.fa-arrow-up-a-z{--fa:""}.fa-sort-alpha-up{--fa:""}.fa-arrow-down-wide-short{--fa:""}.fa-sort-amount-asc{--fa:""}.fa-sort-amount-down{--fa:""}.fa-arrow-up-wide-short{--fa:""}.fa-sort-amount-up{--fa:""}.fa-arrow-down-1-9{--fa:""}.fa-sort-numeric-asc{--fa:""}.fa-sort-numeric-down{--fa:""}.fa-arrow-up-1-9{--fa:""}.fa-sort-numeric-up{--fa:""}.fa-thumbs-up{--fa:""}.fa-thumbs-down{--fa:""}.fa-arrow-down-long{--fa:""}.fa-long-arrow-down{--fa:""}.fa-arrow-up-long{--fa:""}.fa-long-arrow-up{--fa:""}.fa-arrow-left-long{--fa:""}.fa-long-arrow-left{--fa:""}.fa-arrow-right-long{--fa:""}.fa-long-arrow-right{--fa:""}.fa-person-dress{--fa:""}.fa-female{--fa:""}.fa-person{--fa:""}.fa-male{--fa:""}.fa-sun{--fa:""}.fa-moon{--fa:""}.fa-box-archive{--fa:""}.fa-archive{--fa:""}.fa-bug{--fa:""}.fa-square-caret-left{--fa:""}.fa-caret-square-left{--fa:""}.fa-circle-dot{--fa:""}.fa-dot-circle{--fa:""}.fa-wheelchair{--fa:""}.fa-lira-sign{--fa:""}.fa-shuttle-space{--fa:""}.fa-space-shuttle{--fa:""}.fa-square-envelope{--fa:""}.fa-envelope-square{--fa:""}.fa-building-columns{--fa:""}.fa-bank{--fa:""}.fa-institution{--fa:""}.fa-museum{--fa:""}.fa-university{--fa:""}.fa-graduation-cap{--fa:""}.fa-mortar-board{--fa:""}.fa-language{--fa:""}.fa-fax{--fa:""}.fa-building{--fa:""}.fa-child{--fa:""}.fa-paw{--fa:""}.fa-cube{--fa:""}.fa-cubes{--fa:""}.fa-recycle{--fa:""}.fa-car{--fa:""}.fa-automobile{--fa:""}.fa-taxi{--fa:""}.fa-cab{--fa:""}.fa-tree{--fa:""}.fa-database{--fa:""}.fa-file-pdf{--fa:""}.fa-file-word{--fa:""}.fa-file-excel{--fa:""}.fa-file-powerpoint{--fa:""}.fa-file-image{--fa:""}.fa-file-zipper{--fa:""}.fa-file-archive{--fa:""}.fa-file-audio{--fa:""}.fa-file-video{--fa:""}.fa-file-code{--fa:""}.fa-life-ring{--fa:""}.fa-circle-notch{--fa:""}.fa-paper-plane{--fa:""}.fa-clock-rotate-left{--fa:""}.fa-history{--fa:""}.fa-heading{--fa:""}.fa-header{--fa:""}.fa-paragraph{--fa:""}.fa-sliders{--fa:""}.fa-sliders-h{--fa:""}.fa-share-nodes{--fa:""}.fa-share-alt{--fa:""}.fa-square-share-nodes{--fa:""}.fa-share-alt-square{--fa:""}.fa-bomb{--fa:""}.fa-futbol{--fa:""}.fa-futbol-ball{--fa:""}.fa-soccer-ball{--fa:""}.fa-tty{--fa:""}.fa-teletype{--fa:""}.fa-binoculars{--fa:""}.fa-plug{--fa:""}.fa-newspaper{--fa:""}.fa-wifi{--fa:""}.fa-wifi-3{--fa:""}.fa-wifi-strong{--fa:""}.fa-calculator{--fa:""}.fa-bell-slash{--fa:""}.fa-trash{--fa:""}.fa-copyright{--fa:""}.fa-eye-dropper{--fa:""}.fa-eye-dropper-empty{--fa:""}.fa-eyedropper{--fa:""}.fa-paintbrush{--fa:""}.fa-paint-brush{--fa:""}.fa-cake-candles{--fa:""}.fa-birthday-cake{--fa:""}.fa-cake{--fa:""}.fa-chart-area{--fa:""}.fa-area-chart{--fa:""}.fa-chart-pie{--fa:""}.fa-pie-chart{--fa:""}.fa-chart-line{--fa:""}.fa-line-chart{--fa:""}.fa-toggle-off{--fa:""}.fa-toggle-on{--fa:""}.fa-bicycle{--fa:""}.fa-bus{--fa:""}.fa-closed-captioning{--fa:""}.fa-shekel-sign{--fa:""}.fa-ils{--fa:""}.fa-shekel{--fa:""}.fa-sheqel{--fa:""}.fa-sheqel-sign{--fa:""}.fa-cart-plus{--fa:""}.fa-cart-arrow-down{--fa:""}.fa-diamond{--fa:""}.fa-ship{--fa:""}.fa-user-secret{--fa:""}.fa-motorcycle{--fa:""}.fa-street-view{--fa:""}.fa-heart-pulse{--fa:""}.fa-heartbeat{--fa:""}.fa-venus{--fa:""}.fa-mars{--fa:""}.fa-mercury{--fa:""}.fa-mars-and-venus{--fa:""}.fa-transgender{--fa:""}.fa-transgender-alt{--fa:""}.fa-venus-double{--fa:""}.fa-mars-double{--fa:""}.fa-venus-mars{--fa:""}.fa-mars-stroke{--fa:""}.fa-mars-stroke-up{--fa:""}.fa-mars-stroke-v{--fa:""}.fa-mars-stroke-right{--fa:""}.fa-mars-stroke-h{--fa:""}.fa-neuter{--fa:""}.fa-genderless{--fa:""}.fa-server{--fa:""}.fa-user-plus{--fa:""}.fa-user-xmark{--fa:""}.fa-user-times{--fa:""}.fa-bed{--fa:""}.fa-train{--fa:""}.fa-train-subway{--fa:""}.fa-subway{--fa:""}.fa-battery-full{--fa:""}.fa-battery{--fa:""}.fa-battery-5{--fa:""}.fa-battery-three-quarters{--fa:""}.fa-battery-4{--fa:""}.fa-battery-half{--fa:""}.fa-battery-3{--fa:""}.fa-battery-quarter{--fa:""}.fa-battery-2{--fa:""}.fa-battery-empty{--fa:""}.fa-battery-0{--fa:""}.fa-arrow-pointer{--fa:""}.fa-mouse-pointer{--fa:""}.fa-i-cursor{--fa:""}.fa-object-group{--fa:""}.fa-object-ungroup{--fa:""}.fa-note-sticky{--fa:""}.fa-sticky-note{--fa:""}.fa-clone{--fa:""}.fa-scale-balanced{--fa:""}.fa-balance-scale{--fa:""}.fa-hourglass-start{--fa:""}.fa-hourglass-1{--fa:""}.fa-hourglass-half{--fa:""}.fa-hourglass-2{--fa:""}.fa-hourglass-end{--fa:""}.fa-hourglass-3{--fa:""}.fa-hourglass{--fa:""}.fa-hourglass-empty{--fa:""}.fa-hand-back-fist{--fa:""}.fa-hand-rock{--fa:""}.fa-hand{--fa:""}.fa-hand-paper{--fa:""}.fa-hand-scissors{--fa:""}.fa-hand-lizard{--fa:""}.fa-hand-spock{--fa:""}.fa-hand-pointer{--fa:""}.fa-hand-peace{--fa:""}.fa-trademark{--fa:""}.fa-registered{--fa:""}.fa-tv{--fa:""}.fa-television{--fa:""}.fa-tv-alt{--fa:""}.fa-calendar-plus{--fa:""}.fa-calendar-minus{--fa:""}.fa-calendar-xmark{--fa:""}.fa-calendar-times{--fa:""}.fa-calendar-check{--fa:""}.fa-industry{--fa:""}.fa-map-pin{--fa:""}.fa-signs-post{--fa:""}.fa-map-signs{--fa:""}.fa-map{--fa:""}.fa-message{--fa:""}.fa-comment-alt{--fa:""}.fa-circle-pause{--fa:""}.fa-pause-circle{--fa:""}.fa-circle-stop{--fa:""}.fa-stop-circle{--fa:""}.fa-bag-shopping{--fa:""}.fa-shopping-bag{--fa:""}.fa-basket-shopping{--fa:""}.fa-shopping-basket{--fa:""}.fa-universal-access{--fa:""}.fa-person-walking-with-cane{--fa:""}.fa-blind{--fa:""}.fa-audio-description{--fa:""}.fa-phone-volume{--fa:""}.fa-volume-control-phone{--fa:""}.fa-braille{--fa:""}.fa-ear-listen{--fa:""}.fa-assistive-listening-systems{--fa:""}.fa-hands-asl-interpreting{--fa:""}.fa-american-sign-language-interpreting{--fa:""}.fa-asl-interpreting{--fa:""}.fa-hands-american-sign-language-interpreting{--fa:""}.fa-ear-deaf{--fa:""}.fa-deaf{--fa:""}.fa-deafness{--fa:""}.fa-hard-of-hearing{--fa:""}.fa-hands{--fa:""}.fa-sign-language{--fa:""}.fa-signing{--fa:""}.fa-eye-low-vision{--fa:""}.fa-low-vision{--fa:""}.fa-font-awesome{--fa:""}.fa-font-awesome-flag{--fa:""}.fa-font-awesome-logo-full{--fa:""}.fa-handshake{--fa:""}.fa-handshake-alt{--fa:""}.fa-handshake-simple{--fa:""}.fa-envelope-open{--fa:""}.fa-address-book{--fa:""}.fa-contact-book{--fa:""}.fa-address-card{--fa:""}.fa-contact-card{--fa:""}.fa-vcard{--fa:""}.fa-circle-user{--fa:""}.fa-user-circle{--fa:""}.fa-id-badge{--fa:""}.fa-id-card{--fa:""}.fa-drivers-license{--fa:""}.fa-temperature-full{--fa:""}.fa-temperature-4{--fa:""}.fa-thermometer-4{--fa:""}.fa-thermometer-full{--fa:""}.fa-temperature-three-quarters{--fa:""}.fa-temperature-3{--fa:""}.fa-thermometer-3{--fa:""}.fa-thermometer-three-quarters{--fa:""}.fa-temperature-half{--fa:""}.fa-temperature-2{--fa:""}.fa-thermometer-2{--fa:""}.fa-thermometer-half{--fa:""}.fa-temperature-quarter{--fa:""}.fa-temperature-1{--fa:""}.fa-thermometer-1{--fa:""}.fa-thermometer-quarter{--fa:""}.fa-temperature-empty{--fa:""}.fa-temperature-0{--fa:""}.fa-thermometer-0{--fa:""}.fa-thermometer-empty{--fa:""}.fa-shower{--fa:""}.fa-bath{--fa:""}.fa-bathtub{--fa:""}.fa-podcast{--fa:""}.fa-window-maximize{--fa:""}.fa-window-minimize{--fa:""}.fa-window-restore{--fa:""}.fa-square-xmark{--fa:""}.fa-times-square{--fa:""}.fa-xmark-square{--fa:""}.fa-microchip{--fa:""}.fa-snowflake{--fa:""}.fa-spoon{--fa:""}.fa-utensil-spoon{--fa:""}.fa-utensils{--fa:""}.fa-cutlery{--fa:""}.fa-rotate-left{--fa:""}.fa-rotate-back{--fa:""}.fa-rotate-backward{--fa:""}.fa-undo-alt{--fa:""}.fa-trash-can{--fa:""}.fa-trash-alt{--fa:""}.fa-rotate{--fa:""}.fa-sync-alt{--fa:""}.fa-stopwatch{--fa:""}.fa-right-from-bracket{--fa:""}.fa-sign-out-alt{--fa:""}.fa-right-to-bracket{--fa:""}.fa-sign-in-alt{--fa:""}.fa-rotate-right{--fa:""}.fa-redo-alt{--fa:""}.fa-rotate-forward{--fa:""}.fa-poo{--fa:""}.fa-images{--fa:""}.fa-pencil{--fa:""}.fa-pencil-alt{--fa:""}.fa-pen{--fa:""}.fa-pen-clip{--fa:""}.fa-pen-alt{--fa:""}.fa-octagon{--fa:""}.fa-down-long{--fa:""}.fa-long-arrow-alt-down{--fa:""}.fa-left-long{--fa:""}.fa-long-arrow-alt-left{--fa:""}.fa-right-long{--fa:""}.fa-long-arrow-alt-right{--fa:""}.fa-up-long{--fa:""}.fa-long-arrow-alt-up{--fa:""}.fa-hexagon{--fa:""}.fa-file-pen{--fa:""}.fa-file-edit{--fa:""}.fa-maximize{--fa:""}.fa-expand-arrows-alt{--fa:""}.fa-clipboard{--fa:""}.fa-left-right{--fa:""}.fa-arrows-alt-h{--fa:""}.fa-up-down{--fa:""}.fa-arrows-alt-v{--fa:""}.fa-alarm-clock{--fa:""}.fa-circle-down{--fa:""}.fa-arrow-alt-circle-down{--fa:""}.fa-circle-left{--fa:""}.fa-arrow-alt-circle-left{--fa:""}.fa-circle-right{--fa:""}.fa-arrow-alt-circle-right{--fa:""}.fa-circle-up{--fa:""}.fa-arrow-alt-circle-up{--fa:""}.fa-up-right-from-square{--fa:""}.fa-external-link-alt{--fa:""}.fa-square-up-right{--fa:""}.fa-external-link-square-alt{--fa:""}.fa-right-left{--fa:""}.fa-exchange-alt{--fa:""}.fa-repeat{--fa:""}.fa-code-commit{--fa:""}.fa-code-merge{--fa:""}.fa-desktop{--fa:""}.fa-desktop-alt{--fa:""}.fa-gem{--fa:""}.fa-turn-down{--fa:""}.fa-level-down-alt{--fa:""}.fa-turn-up{--fa:""}.fa-level-up-alt{--fa:""}.fa-lock-open{--fa:""}.fa-location-dot{--fa:""}.fa-map-marker-alt{--fa:""}.fa-microphone-lines{--fa:""}.fa-microphone-alt{--fa:""}.fa-mobile-screen-button{--fa:""}.fa-mobile-alt{--fa:""}.fa-mobile{--fa:""}.fa-mobile-android{--fa:""}.fa-mobile-phone{--fa:""}.fa-mobile-screen{--fa:""}.fa-mobile-android-alt{--fa:""}.fa-money-bill-1{--fa:""}.fa-money-bill-alt{--fa:""}.fa-phone-slash{--fa:""}.fa-image-portrait{--fa:""}.fa-portrait{--fa:""}.fa-reply{--fa:""}.fa-mail-reply{--fa:""}.fa-shield-halved{--fa:""}.fa-shield-alt{--fa:""}.fa-tablet-screen-button{--fa:""}.fa-tablet-alt{--fa:""}.fa-tablet{--fa:""}.fa-tablet-android{--fa:""}.fa-ticket-simple{--fa:""}.fa-ticket-alt{--fa:""}.fa-rectangle-xmark{--fa:""}.fa-rectangle-times{--fa:""}.fa-times-rectangle{--fa:""}.fa-window-close{--fa:""}.fa-down-left-and-up-right-to-center{--fa:""}.fa-compress-alt{--fa:""}.fa-up-right-and-down-left-from-center{--fa:""}.fa-expand-alt{--fa:""}.fa-baseball-bat-ball{--fa:""}.fa-baseball{--fa:""}.fa-baseball-ball{--fa:""}.fa-basketball{--fa:""}.fa-basketball-ball{--fa:""}.fa-bowling-ball{--fa:""}.fa-chess{--fa:""}.fa-chess-bishop{--fa:""}.fa-chess-board{--fa:""}.fa-chess-king{--fa:""}.fa-chess-knight{--fa:""}.fa-chess-pawn{--fa:""}.fa-chess-queen{--fa:""}.fa-chess-rook{--fa:""}.fa-dumbbell{--fa:""}.fa-football{--fa:""}.fa-football-ball{--fa:""}.fa-golf-ball-tee{--fa:""}.fa-golf-ball{--fa:""}.fa-hockey-puck{--fa:""}.fa-broom-ball{--fa:""}.fa-quidditch{--fa:""}.fa-quidditch-broom-ball{--fa:""}.fa-square-full{--fa:""}.fa-table-tennis-paddle-ball{--fa:""}.fa-ping-pong-paddle-ball{--fa:""}.fa-table-tennis{--fa:""}.fa-volleyball{--fa:""}.fa-volleyball-ball{--fa:""}.fa-hand-dots{--fa:""}.fa-allergies{--fa:""}.fa-bandage{--fa:""}.fa-band-aid{--fa:""}.fa-box{--fa:""}.fa-boxes-stacked{--fa:""}.fa-boxes{--fa:""}.fa-boxes-alt{--fa:""}.fa-briefcase-medical{--fa:""}.fa-fire-flame-simple{--fa:""}.fa-burn{--fa:""}.fa-capsules{--fa:""}.fa-clipboard-check{--fa:""}.fa-clipboard-list{--fa:""}.fa-person-dots-from-line{--fa:""}.fa-diagnoses{--fa:""}.fa-dna{--fa:""}.fa-dolly{--fa:""}.fa-dolly-box{--fa:""}.fa-cart-flatbed{--fa:""}.fa-dolly-flatbed{--fa:""}.fa-file-medical{--fa:""}.fa-file-waveform{--fa:""}.fa-file-medical-alt{--fa:""}.fa-kit-medical{--fa:""}.fa-first-aid{--fa:""}.fa-circle-h{--fa:""}.fa-hospital-symbol{--fa:""}.fa-id-card-clip{--fa:""}.fa-id-card-alt{--fa:""}.fa-notes-medical{--fa:""}.fa-pallet{--fa:""}.fa-pills{--fa:""}.fa-prescription-bottle{--fa:""}.fa-prescription-bottle-medical{--fa:""}.fa-prescription-bottle-alt{--fa:""}.fa-bed-pulse{--fa:""}.fa-procedures{--fa:""}.fa-truck-fast{--fa:""}.fa-shipping-fast{--fa:""}.fa-smoking{--fa:""}.fa-syringe{--fa:""}.fa-tablets{--fa:""}.fa-thermometer{--fa:""}.fa-vial{--fa:""}.fa-vials{--fa:""}.fa-warehouse{--fa:""}.fa-weight-scale{--fa:""}.fa-weight{--fa:""}.fa-x-ray{--fa:""}.fa-box-open{--fa:""}.fa-comment-dots{--fa:""}.fa-commenting{--fa:""}.fa-comment-slash{--fa:""}.fa-couch{--fa:""}.fa-circle-dollar-to-slot{--fa:""}.fa-donate{--fa:""}.fa-dove{--fa:""}.fa-hand-holding{--fa:""}.fa-hand-holding-heart{--fa:""}.fa-hand-holding-dollar{--fa:""}.fa-hand-holding-usd{--fa:""}.fa-hand-holding-droplet{--fa:""}.fa-hand-holding-water{--fa:""}.fa-hands-holding{--fa:""}.fa-handshake-angle{--fa:""}.fa-hands-helping{--fa:""}.fa-parachute-box{--fa:""}.fa-people-carry-box{--fa:""}.fa-people-carry{--fa:""}.fa-piggy-bank{--fa:""}.fa-ribbon{--fa:""}.fa-route{--fa:""}.fa-seedling{--fa:""}.fa-sprout{--fa:""}.fa-sign-hanging{--fa:""}.fa-sign{--fa:""}.fa-face-smile-wink{--fa:""}.fa-smile-wink{--fa:""}.fa-tape{--fa:""}.fa-truck-ramp-box{--fa:""}.fa-truck-loading{--fa:""}.fa-truck-moving{--fa:""}.fa-video-slash{--fa:""}.fa-wine-glass{--fa:""}.fa-user-astronaut{--fa:""}.fa-user-check{--fa:""}.fa-user-clock{--fa:""}.fa-user-gear{--fa:""}.fa-user-cog{--fa:""}.fa-user-pen{--fa:""}.fa-user-edit{--fa:""}.fa-user-group{--fa:""}.fa-user-friends{--fa:""}.fa-user-graduate{--fa:""}.fa-user-lock{--fa:""}.fa-user-minus{--fa:""}.fa-user-ninja{--fa:""}.fa-user-shield{--fa:""}.fa-user-slash{--fa:""}.fa-user-alt-slash{--fa:""}.fa-user-large-slash{--fa:""}.fa-user-tag{--fa:""}.fa-user-tie{--fa:""}.fa-users-gear{--fa:""}.fa-users-cog{--fa:""}.fa-scale-unbalanced{--fa:""}.fa-balance-scale-left{--fa:""}.fa-scale-unbalanced-flip{--fa:""}.fa-balance-scale-right{--fa:""}.fa-blender{--fa:""}.fa-book-open{--fa:""}.fa-tower-broadcast{--fa:""}.fa-broadcast-tower{--fa:""}.fa-broom{--fa:""}.fa-chalkboard{--fa:""}.fa-blackboard{--fa:""}.fa-chalkboard-user{--fa:""}.fa-chalkboard-teacher{--fa:""}.fa-church{--fa:""}.fa-coins{--fa:""}.fa-compact-disc{--fa:""}.fa-crow{--fa:""}.fa-crown{--fa:""}.fa-dice{--fa:""}.fa-dice-five{--fa:""}.fa-dice-four{--fa:""}.fa-dice-one{--fa:""}.fa-dice-six{--fa:""}.fa-dice-three{--fa:""}.fa-dice-two{--fa:""}.fa-divide{--fa:""}.fa-door-closed{--fa:""}.fa-door-open{--fa:""}.fa-feather{--fa:""}.fa-frog{--fa:""}.fa-gas-pump{--fa:""}.fa-glasses{--fa:""}.fa-greater-than-equal{--fa:""}.fa-helicopter{--fa:""}.fa-infinity{--fa:""}.fa-kiwi-bird{--fa:""}.fa-less-than-equal{--fa:""}.fa-memory{--fa:""}.fa-microphone-lines-slash{--fa:""}.fa-microphone-alt-slash{--fa:""}.fa-money-bill-wave{--fa:""}.fa-money-bill-1-wave{--fa:""}.fa-money-bill-wave-alt{--fa:""}.fa-money-check{--fa:""}.fa-money-check-dollar{--fa:""}.fa-money-check-alt{--fa:""}.fa-not-equal{--fa:""}.fa-palette{--fa:""}.fa-square-parking{--fa:""}.fa-parking{--fa:""}.fa-diagram-project{--fa:""}.fa-project-diagram{--fa:""}.fa-receipt{--fa:""}.fa-robot{--fa:""}.fa-ruler{--fa:""}.fa-ruler-combined{--fa:""}.fa-ruler-horizontal{--fa:""}.fa-ruler-vertical{--fa:""}.fa-school{--fa:""}.fa-screwdriver{--fa:""}.fa-shoe-prints{--fa:""}.fa-skull{--fa:""}.fa-ban-smoking{--fa:""}.fa-smoking-ban{--fa:""}.fa-store{--fa:""}.fa-shop{--fa:""}.fa-store-alt{--fa:""}.fa-bars-staggered{--fa:""}.fa-reorder{--fa:""}.fa-stream{--fa:""}.fa-stroopwafel{--fa:""}.fa-toolbox{--fa:""}.fa-shirt{--fa:""}.fa-t-shirt{--fa:""}.fa-tshirt{--fa:""}.fa-person-walking{--fa:""}.fa-walking{--fa:""}.fa-wallet{--fa:""}.fa-face-angry{--fa:""}.fa-angry{--fa:""}.fa-archway{--fa:""}.fa-book-atlas{--fa:""}.fa-atlas{--fa:""}.fa-award{--fa:""}.fa-delete-left{--fa:""}.fa-backspace{--fa:""}.fa-bezier-curve{--fa:""}.fa-bong{--fa:""}.fa-brush{--fa:""}.fa-bus-simple{--fa:""}.fa-bus-alt{--fa:""}.fa-cannabis{--fa:""}.fa-check-double{--fa:""}.fa-martini-glass-citrus{--fa:""}.fa-cocktail{--fa:""}.fa-bell-concierge{--fa:""}.fa-concierge-bell{--fa:""}.fa-cookie{--fa:""}.fa-cookie-bite{--fa:""}.fa-crop-simple{--fa:""}.fa-crop-alt{--fa:""}.fa-tachograph-digital{--fa:""}.fa-digital-tachograph{--fa:""}.fa-face-dizzy{--fa:""}.fa-dizzy{--fa:""}.fa-compass-drafting{--fa:""}.fa-drafting-compass{--fa:""}.fa-drum{--fa:""}.fa-drum-steelpan{--fa:""}.fa-feather-pointed{--fa:""}.fa-feather-alt{--fa:""}.fa-file-contract{--fa:""}.fa-file-arrow-down{--fa:""}.fa-file-download{--fa:""}.fa-file-export{--fa:""}.fa-arrow-right-from-file{--fa:""}.fa-file-import{--fa:""}.fa-arrow-right-to-file{--fa:""}.fa-file-invoice{--fa:""}.fa-file-invoice-dollar{--fa:""}.fa-file-prescription{--fa:""}.fa-file-signature{--fa:""}.fa-file-arrow-up{--fa:""}.fa-file-upload{--fa:""}.fa-fill{--fa:""}.fa-fill-drip{--fa:""}.fa-fingerprint{--fa:""}.fa-fish{--fa:""}.fa-face-flushed{--fa:""}.fa-flushed{--fa:""}.fa-face-frown-open{--fa:""}.fa-frown-open{--fa:""}.fa-martini-glass{--fa:""}.fa-glass-martini-alt{--fa:""}.fa-earth-africa{--fa:""}.fa-globe-africa{--fa:""}.fa-earth-americas{--fa:""}.fa-earth{--fa:""}.fa-earth-america{--fa:""}.fa-globe-americas{--fa:""}.fa-earth-asia{--fa:""}.fa-globe-asia{--fa:""}.fa-face-grimace{--fa:""}.fa-grimace{--fa:""}.fa-face-grin{--fa:""}.fa-grin{--fa:""}.fa-face-grin-wide{--fa:""}.fa-grin-alt{--fa:""}.fa-face-grin-beam{--fa:""}.fa-grin-beam{--fa:""}.fa-face-grin-beam-sweat{--fa:""}.fa-grin-beam-sweat{--fa:""}.fa-face-grin-hearts{--fa:""}.fa-grin-hearts{--fa:""}.fa-face-grin-squint{--fa:""}.fa-grin-squint{--fa:""}.fa-face-grin-squint-tears{--fa:""}.fa-grin-squint-tears{--fa:""}.fa-face-grin-stars{--fa:""}.fa-grin-stars{--fa:""}.fa-face-grin-tears{--fa:""}.fa-grin-tears{--fa:""}.fa-face-grin-tongue{--fa:""}.fa-grin-tongue{--fa:""}.fa-face-grin-tongue-squint{--fa:""}.fa-grin-tongue-squint{--fa:""}.fa-face-grin-tongue-wink{--fa:""}.fa-grin-tongue-wink{--fa:""}.fa-face-grin-wink{--fa:""}.fa-grin-wink{--fa:""}.fa-grip{--fa:""}.fa-grid-horizontal{--fa:""}.fa-grip-horizontal{--fa:""}.fa-grip-vertical{--fa:""}.fa-grid-vertical{--fa:""}.fa-headset{--fa:""}.fa-highlighter{--fa:""}.fa-hot-tub-person{--fa:""}.fa-hot-tub{--fa:""}.fa-hotel{--fa:""}.fa-joint{--fa:""}.fa-face-kiss{--fa:""}.fa-kiss{--fa:""}.fa-face-kiss-beam{--fa:""}.fa-kiss-beam{--fa:""}.fa-face-kiss-wink-heart{--fa:""}.fa-kiss-wink-heart{--fa:""}.fa-face-laugh{--fa:""}.fa-laugh{--fa:""}.fa-face-laugh-beam{--fa:""}.fa-laugh-beam{--fa:""}.fa-face-laugh-squint{--fa:""}.fa-laugh-squint{--fa:""}.fa-face-laugh-wink{--fa:""}.fa-laugh-wink{--fa:""}.fa-cart-flatbed-suitcase{--fa:""}.fa-luggage-cart{--fa:""}.fa-map-location{--fa:""}.fa-map-marked{--fa:""}.fa-map-location-dot{--fa:""}.fa-map-marked-alt{--fa:""}.fa-marker{--fa:""}.fa-medal{--fa:""}.fa-face-meh-blank{--fa:""}.fa-meh-blank{--fa:""}.fa-face-rolling-eyes{--fa:""}.fa-meh-rolling-eyes{--fa:""}.fa-monument{--fa:""}.fa-mortar-pestle{--fa:""}.fa-paint-roller{--fa:""}.fa-passport{--fa:""}.fa-pen-fancy{--fa:""}.fa-pen-nib{--fa:""}.fa-pen-ruler{--fa:""}.fa-pencil-ruler{--fa:""}.fa-plane-arrival{--fa:""}.fa-plane-departure{--fa:""}.fa-prescription{--fa:""}.fa-face-sad-cry{--fa:""}.fa-sad-cry{--fa:""}.fa-face-sad-tear{--fa:""}.fa-sad-tear{--fa:""}.fa-van-shuttle{--fa:""}.fa-shuttle-van{--fa:""}.fa-signature{--fa:""}.fa-face-smile-beam{--fa:""}.fa-smile-beam{--fa:""}.fa-solar-panel{--fa:""}.fa-spa{--fa:""}.fa-splotch{--fa:""}.fa-spray-can{--fa:""}.fa-stamp{--fa:""}.fa-star-half-stroke{--fa:""}.fa-star-half-alt{--fa:""}.fa-suitcase-rolling{--fa:""}.fa-face-surprise{--fa:""}.fa-surprise{--fa:""}.fa-swatchbook{--fa:""}.fa-person-swimming{--fa:""}.fa-swimmer{--fa:""}.fa-water-ladder{--fa:""}.fa-ladder-water{--fa:""}.fa-swimming-pool{--fa:""}.fa-droplet-slash{--fa:""}.fa-tint-slash{--fa:""}.fa-face-tired{--fa:""}.fa-tired{--fa:""}.fa-tooth{--fa:""}.fa-umbrella-beach{--fa:""}.fa-weight-hanging{--fa:""}.fa-wine-glass-empty{--fa:""}.fa-wine-glass-alt{--fa:""}.fa-spray-can-sparkles{--fa:""}.fa-air-freshener{--fa:""}.fa-apple-whole{--fa:""}.fa-apple-alt{--fa:""}.fa-atom{--fa:""}.fa-bone{--fa:""}.fa-book-open-reader{--fa:""}.fa-book-reader{--fa:""}.fa-brain{--fa:""}.fa-car-rear{--fa:""}.fa-car-alt{--fa:""}.fa-car-battery{--fa:""}.fa-battery-car{--fa:""}.fa-car-burst{--fa:""}.fa-car-crash{--fa:""}.fa-car-side{--fa:""}.fa-charging-station{--fa:""}.fa-diamond-turn-right{--fa:""}.fa-directions{--fa:""}.fa-draw-polygon{--fa:""}.fa-vector-polygon{--fa:""}.fa-laptop-code{--fa:""}.fa-layer-group{--fa:""}.fa-location-crosshairs{--fa:""}.fa-location{--fa:""}.fa-lungs{--fa:""}.fa-microscope{--fa:""}.fa-oil-can{--fa:""}.fa-poop{--fa:""}.fa-shapes{--fa:""}.fa-triangle-circle-square{--fa:""}.fa-star-of-life{--fa:""}.fa-gauge{--fa:""}.fa-dashboard{--fa:""}.fa-gauge-med{--fa:""}.fa-tachometer-alt-average{--fa:""}.fa-gauge-high{--fa:""}.fa-tachometer-alt{--fa:""}.fa-tachometer-alt-fast{--fa:""}.fa-gauge-simple{--fa:""}.fa-gauge-simple-med{--fa:""}.fa-tachometer-average{--fa:""}.fa-gauge-simple-high{--fa:""}.fa-tachometer{--fa:""}.fa-tachometer-fast{--fa:""}.fa-teeth{--fa:""}.fa-teeth-open{--fa:""}.fa-masks-theater{--fa:""}.fa-theater-masks{--fa:""}.fa-traffic-light{--fa:""}.fa-truck-monster{--fa:""}.fa-truck-pickup{--fa:""}.fa-rectangle-ad{--fa:""}.fa-ad{--fa:""}.fa-ankh{--fa:""}.fa-book-bible{--fa:""}.fa-bible{--fa:""}.fa-business-time{--fa:""}.fa-briefcase-clock{--fa:""}.fa-city{--fa:""}.fa-comment-dollar{--fa:""}.fa-comments-dollar{--fa:""}.fa-cross{--fa:""}.fa-dharmachakra{--fa:""}.fa-envelope-open-text{--fa:""}.fa-folder-minus{--fa:""}.fa-folder-plus{--fa:""}.fa-filter-circle-dollar{--fa:""}.fa-funnel-dollar{--fa:""}.fa-gopuram{--fa:""}.fa-hamsa{--fa:""}.fa-bahai{--fa:""}.fa-haykal{--fa:""}.fa-jedi{--fa:""}.fa-book-journal-whills{--fa:""}.fa-journal-whills{--fa:""}.fa-kaaba{--fa:""}.fa-khanda{--fa:""}.fa-landmark{--fa:""}.fa-envelopes-bulk{--fa:""}.fa-mail-bulk{--fa:""}.fa-menorah{--fa:""}.fa-mosque{--fa:""}.fa-om{--fa:""}.fa-spaghetti-monster-flying{--fa:""}.fa-pastafarianism{--fa:""}.fa-peace{--fa:""}.fa-place-of-worship{--fa:""}.fa-square-poll-vertical{--fa:""}.fa-poll{--fa:""}.fa-square-poll-horizontal{--fa:""}.fa-poll-h{--fa:""}.fa-person-praying{--fa:""}.fa-pray{--fa:""}.fa-hands-praying{--fa:""}.fa-praying-hands{--fa:""}.fa-book-quran{--fa:""}.fa-quran{--fa:""}.fa-magnifying-glass-dollar{--fa:""}.fa-search-dollar{--fa:""}.fa-magnifying-glass-location{--fa:""}.fa-search-location{--fa:""}.fa-socks{--fa:""}.fa-square-root-variable{--fa:""}.fa-square-root-alt{--fa:""}.fa-star-and-crescent{--fa:""}.fa-star-of-david{--fa:""}.fa-synagogue{--fa:""}.fa-scroll-torah{--fa:""}.fa-torah{--fa:""}.fa-torii-gate{--fa:""}.fa-vihara{--fa:""}.fa-volume{--fa:""}.fa-volume-medium{--fa:""}.fa-volume-xmark{--fa:""}.fa-volume-mute{--fa:""}.fa-volume-times{--fa:""}.fa-yin-yang{--fa:""}.fa-blender-phone{--fa:""}.fa-book-skull{--fa:""}.fa-book-dead{--fa:""}.fa-campground{--fa:""}.fa-cat{--fa:""}.fa-chair{--fa:""}.fa-cloud-moon{--fa:""}.fa-cloud-sun{--fa:""}.fa-cow{--fa:""}.fa-dice-d20{--fa:""}.fa-dice-d6{--fa:""}.fa-dog{--fa:""}.fa-dragon{--fa:""}.fa-drumstick-bite{--fa:""}.fa-dungeon{--fa:""}.fa-file-csv{--fa:""}.fa-hand-fist{--fa:""}.fa-fist-raised{--fa:""}.fa-ghost{--fa:""}.fa-hammer{--fa:""}.fa-hanukiah{--fa:""}.fa-hat-wizard{--fa:""}.fa-person-hiking{--fa:""}.fa-hiking{--fa:""}.fa-hippo{--fa:""}.fa-horse{--fa:""}.fa-house-chimney-crack{--fa:""}.fa-house-damage{--fa:""}.fa-hryvnia-sign{--fa:""}.fa-hryvnia{--fa:""}.fa-mask{--fa:""}.fa-mountain{--fa:""}.fa-network-wired{--fa:""}.fa-otter{--fa:""}.fa-ring{--fa:""}.fa-person-running{--fa:""}.fa-running{--fa:""}.fa-scroll{--fa:""}.fa-skull-crossbones{--fa:""}.fa-slash{--fa:""}.fa-spider{--fa:""}.fa-toilet-paper{--fa:""}.fa-toilet-paper-alt{--fa:""}.fa-toilet-paper-blank{--fa:""}.fa-tractor{--fa:""}.fa-user-injured{--fa:""}.fa-vr-cardboard{--fa:""}.fa-wand-sparkles{--fa:""}.fa-wind{--fa:""}.fa-wine-bottle{--fa:""}.fa-cloud-meatball{--fa:""}.fa-cloud-moon-rain{--fa:""}.fa-cloud-rain{--fa:""}.fa-cloud-showers-heavy{--fa:""}.fa-cloud-sun-rain{--fa:""}.fa-democrat{--fa:""}.fa-flag-usa{--fa:""}.fa-hurricane{--fa:""}.fa-landmark-dome{--fa:""}.fa-landmark-alt{--fa:""}.fa-meteor{--fa:""}.fa-person-booth{--fa:""}.fa-poo-storm{--fa:""}.fa-poo-bolt{--fa:""}.fa-rainbow{--fa:""}.fa-republican{--fa:""}.fa-smog{--fa:""}.fa-temperature-high{--fa:""}.fa-temperature-low{--fa:""}.fa-cloud-bolt{--fa:""}.fa-thunderstorm{--fa:""}.fa-tornado{--fa:""}.fa-volcano{--fa:""}.fa-check-to-slot{--fa:""}.fa-vote-yea{--fa:""}.fa-water{--fa:""}.fa-baby{--fa:""}.fa-baby-carriage{--fa:""}.fa-carriage-baby{--fa:""}.fa-biohazard{--fa:""}.fa-blog{--fa:""}.fa-calendar-day{--fa:""}.fa-calendar-week{--fa:""}.fa-candy-cane{--fa:""}.fa-carrot{--fa:""}.fa-cash-register{--fa:""}.fa-minimize{--fa:""}.fa-compress-arrows-alt{--fa:""}.fa-dumpster{--fa:""}.fa-dumpster-fire{--fa:""}.fa-ethernet{--fa:""}.fa-gifts{--fa:""}.fa-champagne-glasses{--fa:""}.fa-glass-cheers{--fa:""}.fa-whiskey-glass{--fa:""}.fa-glass-whiskey{--fa:""}.fa-earth-europe{--fa:""}.fa-globe-europe{--fa:""}.fa-grip-lines{--fa:""}.fa-grip-lines-vertical{--fa:""}.fa-guitar{--fa:""}.fa-heart-crack{--fa:""}.fa-heart-broken{--fa:""}.fa-holly-berry{--fa:""}.fa-horse-head{--fa:""}.fa-icicles{--fa:""}.fa-igloo{--fa:""}.fa-mitten{--fa:""}.fa-mug-hot{--fa:""}.fa-radiation{--fa:""}.fa-circle-radiation{--fa:""}.fa-radiation-alt{--fa:""}.fa-restroom{--fa:""}.fa-satellite{--fa:""}.fa-satellite-dish{--fa:""}.fa-sd-card{--fa:""}.fa-sim-card{--fa:""}.fa-person-skating{--fa:""}.fa-skating{--fa:""}.fa-person-skiing{--fa:""}.fa-skiing{--fa:""}.fa-person-skiing-nordic{--fa:""}.fa-skiing-nordic{--fa:""}.fa-sleigh{--fa:""}.fa-comment-sms{--fa:""}.fa-sms{--fa:""}.fa-person-snowboarding{--fa:""}.fa-snowboarding{--fa:""}.fa-snowman{--fa:""}.fa-snowplow{--fa:""}.fa-tenge-sign{--fa:""}.fa-tenge{--fa:""}.fa-toilet{--fa:""}.fa-screwdriver-wrench{--fa:""}.fa-tools{--fa:""}.fa-cable-car{--fa:""}.fa-tram{--fa:""}.fa-fire-flame-curved{--fa:""}.fa-fire-alt{--fa:""}.fa-bacon{--fa:""}.fa-book-medical{--fa:""}.fa-bread-slice{--fa:""}.fa-cheese{--fa:""}.fa-house-chimney-medical{--fa:""}.fa-clinic-medical{--fa:""}.fa-clipboard-user{--fa:""}.fa-comment-medical{--fa:""}.fa-crutch{--fa:""}.fa-disease{--fa:""}.fa-egg{--fa:""}.fa-folder-tree{--fa:""}.fa-burger{--fa:""}.fa-hamburger{--fa:""}.fa-hand-middle-finger{--fa:""}.fa-helmet-safety{--fa:""}.fa-hard-hat{--fa:""}.fa-hat-hard{--fa:""}.fa-hospital-user{--fa:""}.fa-hotdog{--fa:""}.fa-ice-cream{--fa:""}.fa-laptop-medical{--fa:""}.fa-pager{--fa:""}.fa-pepper-hot{--fa:""}.fa-pizza-slice{--fa:""}.fa-sack-dollar{--fa:""}.fa-book-tanakh{--fa:""}.fa-tanakh{--fa:""}.fa-bars-progress{--fa:""}.fa-tasks-alt{--fa:""}.fa-trash-arrow-up{--fa:""}.fa-trash-restore{--fa:""}.fa-trash-can-arrow-up{--fa:""}.fa-trash-restore-alt{--fa:""}.fa-user-nurse{--fa:""}.fa-wave-square{--fa:""}.fa-person-biking{--fa:""}.fa-biking{--fa:""}.fa-border-all{--fa:""}.fa-border-none{--fa:""}.fa-border-top-left{--fa:""}.fa-border-style{--fa:""}.fa-person-digging{--fa:""}.fa-digging{--fa:""}.fa-fan{--fa:""}.fa-icons{--fa:""}.fa-heart-music-camera-bolt{--fa:""}.fa-phone-flip{--fa:""}.fa-phone-alt{--fa:""}.fa-square-phone-flip{--fa:""}.fa-phone-square-alt{--fa:""}.fa-photo-film{--fa:""}.fa-photo-video{--fa:""}.fa-text-slash{--fa:""}.fa-remove-format{--fa:""}.fa-arrow-down-z-a{--fa:""}.fa-sort-alpha-desc{--fa:""}.fa-sort-alpha-down-alt{--fa:""}.fa-arrow-up-z-a{--fa:""}.fa-sort-alpha-up-alt{--fa:""}.fa-arrow-down-short-wide{--fa:""}.fa-sort-amount-desc{--fa:""}.fa-sort-amount-down-alt{--fa:""}.fa-arrow-up-short-wide{--fa:""}.fa-sort-amount-up-alt{--fa:""}.fa-arrow-down-9-1{--fa:""}.fa-sort-numeric-desc{--fa:""}.fa-sort-numeric-down-alt{--fa:""}.fa-arrow-up-9-1{--fa:""}.fa-sort-numeric-up-alt{--fa:""}.fa-spell-check{--fa:""}.fa-voicemail{--fa:""}.fa-hat-cowboy{--fa:""}.fa-hat-cowboy-side{--fa:""}.fa-computer-mouse{--fa:""}.fa-mouse{--fa:""}.fa-radio{--fa:""}.fa-record-vinyl{--fa:""}.fa-walkie-talkie{--fa:""}.fa-caravan{--fa:""}/*!
 * Font Awesome Free 7.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 2026 Fonticons, Inc.
 */:root,:host{--fa-family-brands: 'Font Awesome 7 Brands';--fa-font-brands: normal 400 1em/1 var(--fa-family-brands)}@font-face{font-family:"Font Awesome 7 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/assets/crematory/fonts/fa-brands-400.f276979f97f1cf375d23.woff2)}.fab,.fa-brands,.fa-classic.fa-brands{--fa-family: var(--fa-family-brands);--fa-style: 400}.fa-firefox-browser{--fa:""}.fa-ideal{--fa:""}.fa-microblog{--fa:""}.fa-square-pied-piper{--fa:""}.fa-pied-piper-square{--fa:""}.fa-unity{--fa:""}.fa-dailymotion{--fa:""}.fa-square-instagram{--fa:""}.fa-instagram-square{--fa:""}.fa-mixer{--fa:""}.fa-shopify{--fa:""}.fa-deezer{--fa:""}.fa-edge-legacy{--fa:""}.fa-google-pay{--fa:""}.fa-rust{--fa:""}.fa-tiktok{--fa:""}.fa-unsplash{--fa:""}.fa-cloudflare{--fa:""}.fa-guilded{--fa:""}.fa-hive{--fa:""}.fa-42-group{--fa:""}.fa-innosoft{--fa:""}.fa-instalod{--fa:""}.fa-octopus-deploy{--fa:""}.fa-perbyte{--fa:""}.fa-uncharted{--fa:""}.fa-watchman-monitoring{--fa:""}.fa-wodu{--fa:""}.fa-wirsindhandwerk{--fa:""}.fa-wsh{--fa:""}.fa-bots{--fa:""}.fa-cmplid{--fa:""}.fa-bilibili{--fa:""}.fa-golang{--fa:""}.fa-pix{--fa:""}.fa-sitrox{--fa:""}.fa-hashnode{--fa:""}.fa-meta{--fa:""}.fa-padlet{--fa:""}.fa-nfc-directional{--fa:""}.fa-nfc-symbol{--fa:""}.fa-screenpal{--fa:""}.fa-space-awesome{--fa:""}.fa-square-font-awesome{--fa:""}.fa-square-gitlab{--fa:""}.fa-gitlab-square{--fa:""}.fa-odysee{--fa:""}.fa-stubber{--fa:""}.fa-debian{--fa:""}.fa-shoelace{--fa:""}.fa-threads{--fa:""}.fa-square-threads{--fa:""}.fa-square-x-twitter{--fa:""}.fa-x-twitter{--fa:""}.fa-opensuse{--fa:""}.fa-letterboxd{--fa:""}.fa-square-letterboxd{--fa:""}.fa-mintbit{--fa:""}.fa-google-scholar{--fa:""}.fa-brave{--fa:""}.fa-brave-reverse{--fa:""}.fa-pixiv{--fa:""}.fa-upwork{--fa:""}.fa-webflow{--fa:""}.fa-signal-messenger{--fa:""}.fa-bluesky{--fa:""}.fa-jxl{--fa:""}.fa-square-upwork{--fa:""}.fa-web-awesome{--fa:""}.fa-square-web-awesome{--fa:""}.fa-square-web-awesome-stroke{--fa:""}.fa-dart-lang{--fa:""}.fa-flutter{--fa:""}.fa-files-pinwheel{--fa:""}.fa-css{--fa:""}.fa-square-bluesky{--fa:""}.fa-openai{--fa:""}.fa-square-linkedin{--fa:""}.fa-cash-app{--fa:""}.fa-disqus{--fa:""}.fa-eleventy{--fa:""}.fa-11ty{--fa:""}.fa-kakao-talk{--fa:""}.fa-linktree{--fa:""}.fa-notion{--fa:""}.fa-pandora{--fa:""}.fa-pixelfed{--fa:""}.fa-tidal{--fa:""}.fa-vsco{--fa:""}.fa-w3c{--fa:""}.fa-lumon{--fa:""}.fa-lumon-drop{--fa:""}.fa-square-figma{--fa:""}.fa-tex{--fa:""}.fa-duolingo{--fa:""}.fa-supportnow{--fa:""}.fa-tor-browser{--fa:""}.fa-typescript{--fa:""}.fa-square-deskpro{--fa:""}.fa-circle-zulip{--fa:""}.fa-julia{--fa:""}.fa-zulip{--fa:""}.fa-unison{--fa:""}.fa-board-game-geek{--fa:""}.fa-bgg{--fa:""}.fa-ko-fi{--fa:""}.fa-kubernetes{--fa:""}.fa-postgresql{--fa:""}.fa-scaleway{--fa:""}.fa-venmo{--fa:""}.fa-venmo-v{--fa:""}.fa-unreal-engine{--fa:""}.fa-globaleaks{--fa:""}.fa-solana{--fa:""}.fa-threema{--fa:""}.fa-forgejo{--fa:""}.fa-claude{--fa:""}.fa-gitee{--fa:""}.fa-xmpp{--fa:""}.fa-fediverse{--fa:""}.fa-tailwind-css{--fa:""}.fa-arch-linux{--fa:""}.fa-svelte{--fa:""}.fa-hugging-face{--fa:""}.fa-leetcode{--fa:""}.fa-openstreetmap{--fa:""}.fa-ultralytics{--fa:""}.fa-ultralytics-hub{--fa:""}.fa-ultralytics-yolo{--fa:""}.fa-obsidian{--fa:""}.fa-zoom{--fa:""}.fa-vim{--fa:""}.fa-symfonycasts{--fa:""}.fa-square-twitter{--fa:""}.fa-twitter-square{--fa:""}.fa-square-facebook{--fa:""}.fa-facebook-square{--fa:""}.fa-linkedin{--fa:""}.fa-square-github{--fa:""}.fa-github-square{--fa:""}.fa-twitter{--fa:""}.fa-facebook{--fa:""}.fa-github{--fa:""}.fa-pinterest{--fa:""}.fa-square-pinterest{--fa:""}.fa-pinterest-square{--fa:""}.fa-square-google-plus{--fa:""}.fa-google-plus-square{--fa:""}.fa-google-plus-g{--fa:""}.fa-linkedin-in{--fa:""}.fa-github-alt{--fa:""}.fa-maxcdn{--fa:""}.fa-html5{--fa:""}.fa-css3{--fa:""}.fa-btc{--fa:""}.fa-youtube{--fa:""}.fa-xing{--fa:""}.fa-square-xing{--fa:""}.fa-xing-square{--fa:""}.fa-dropbox{--fa:""}.fa-stack-overflow{--fa:""}.fa-instagram{--fa:""}.fa-flickr{--fa:""}.fa-adn{--fa:""}.fa-bitbucket{--fa:""}.fa-tumblr{--fa:""}.fa-square-tumblr{--fa:""}.fa-tumblr-square{--fa:""}.fa-apple{--fa:""}.fa-windows{--fa:""}.fa-android{--fa:""}.fa-linux{--fa:""}.fa-dribbble{--fa:""}.fa-skype{--fa:""}.fa-foursquare{--fa:""}.fa-trello{--fa:""}.fa-gratipay{--fa:""}.fa-vk{--fa:""}.fa-weibo{--fa:""}.fa-renren{--fa:""}.fa-pagelines{--fa:""}.fa-stack-exchange{--fa:""}.fa-square-vimeo{--fa:""}.fa-vimeo-square{--fa:""}.fa-slack{--fa:""}.fa-slack-hash{--fa:""}.fa-wordpress{--fa:""}.fa-openid{--fa:""}.fa-yahoo{--fa:""}.fa-google{--fa:""}.fa-reddit{--fa:""}.fa-square-reddit{--fa:""}.fa-reddit-square{--fa:""}.fa-stumbleupon-circle{--fa:""}.fa-stumbleupon{--fa:""}.fa-delicious{--fa:""}.fa-digg{--fa:""}.fa-pied-piper-pp{--fa:""}.fa-pied-piper-alt{--fa:""}.fa-drupal{--fa:""}.fa-joomla{--fa:""}.fa-behance{--fa:""}.fa-square-behance{--fa:""}.fa-behance-square{--fa:""}.fa-steam{--fa:""}.fa-square-steam{--fa:""}.fa-steam-square{--fa:""}.fa-spotify{--fa:""}.fa-deviantart{--fa:""}.fa-soundcloud{--fa:""}.fa-vine{--fa:""}.fa-codepen{--fa:""}.fa-jsfiddle{--fa:""}.fa-rebel{--fa:""}.fa-empire{--fa:""}.fa-square-git{--fa:""}.fa-git-square{--fa:""}.fa-git{--fa:""}.fa-hacker-news{--fa:""}.fa-tencent-weibo{--fa:""}.fa-qq{--fa:""}.fa-weixin{--fa:""}.fa-slideshare{--fa:""}.fa-twitch{--fa:""}.fa-yelp{--fa:""}.fa-paypal{--fa:""}.fa-google-wallet{--fa:""}.fa-cc-visa{--fa:""}.fa-cc-mastercard{--fa:""}.fa-cc-discover{--fa:""}.fa-cc-amex{--fa:""}.fa-cc-paypal{--fa:""}.fa-cc-stripe{--fa:""}.fa-lastfm{--fa:""}.fa-square-lastfm{--fa:""}.fa-lastfm-square{--fa:""}.fa-ioxhost{--fa:""}.fa-angellist{--fa:""}.fa-buysellads{--fa:""}.fa-connectdevelop{--fa:""}.fa-dashcube{--fa:""}.fa-forumbee{--fa:""}.fa-leanpub{--fa:""}.fa-sellsy{--fa:""}.fa-shirtsinbulk{--fa:""}.fa-simplybuilt{--fa:""}.fa-skyatlas{--fa:""}.fa-pinterest-p{--fa:""}.fa-whatsapp{--fa:""}.fa-viacoin{--fa:""}.fa-medium{--fa:""}.fa-medium-m{--fa:""}.fa-y-combinator{--fa:""}.fa-optin-monster{--fa:""}.fa-opencart{--fa:""}.fa-expeditedssl{--fa:""}.fa-cc-jcb{--fa:""}.fa-cc-diners-club{--fa:""}.fa-creative-commons{--fa:""}.fa-gg{--fa:""}.fa-gg-circle{--fa:""}.fa-odnoklassniki{--fa:""}.fa-square-odnoklassniki{--fa:""}.fa-odnoklassniki-square{--fa:""}.fa-get-pocket{--fa:""}.fa-wikipedia-w{--fa:""}.fa-safari{--fa:""}.fa-chrome{--fa:""}.fa-firefox{--fa:""}.fa-opera{--fa:""}.fa-internet-explorer{--fa:""}.fa-contao{--fa:""}.fa-500px{--fa:""}.fa-amazon{--fa:""}.fa-houzz{--fa:""}.fa-vimeo-v{--fa:""}.fa-black-tie{--fa:""}.fa-fonticons{--fa:""}.fa-reddit-alien{--fa:""}.fa-edge{--fa:""}.fa-codiepie{--fa:""}.fa-modx{--fa:""}.fa-fort-awesome{--fa:""}.fa-usb{--fa:""}.fa-product-hunt{--fa:""}.fa-mixcloud{--fa:""}.fa-scribd{--fa:""}.fa-bluetooth{--fa:""}.fa-bluetooth-b{--fa:""}.fa-gitlab{--fa:""}.fa-wpbeginner{--fa:""}.fa-wpforms{--fa:""}.fa-envira{--fa:""}.fa-glide{--fa:""}.fa-glide-g{--fa:""}.fa-viadeo{--fa:""}.fa-square-viadeo{--fa:""}.fa-viadeo-square{--fa:""}.fa-snapchat{--fa:""}.fa-snapchat-ghost{--fa:""}.fa-square-snapchat{--fa:""}.fa-snapchat-square{--fa:""}.fa-pied-piper{--fa:""}.fa-first-order{--fa:""}.fa-yoast{--fa:""}.fa-themeisle{--fa:""}.fa-google-plus{--fa:""}.fa-font-awesome{--fa:""}.fa-font-awesome-flag{--fa:""}.fa-font-awesome-logo-full{--fa:""}.fa-linode{--fa:""}.fa-quora{--fa:""}.fa-free-code-camp{--fa:""}.fa-telegram{--fa:""}.fa-telegram-plane{--fa:""}.fa-bandcamp{--fa:""}.fa-grav{--fa:""}.fa-etsy{--fa:""}.fa-imdb{--fa:""}.fa-ravelry{--fa:""}.fa-sellcast{--fa:""}.fa-superpowers{--fa:""}.fa-wpexplorer{--fa:""}.fa-meetup{--fa:""}.fa-square-font-awesome-stroke{--fa:""}.fa-font-awesome-alt{--fa:""}.fa-accessible-icon{--fa:""}.fa-accusoft{--fa:""}.fa-adversal{--fa:""}.fa-affiliatetheme{--fa:""}.fa-algolia{--fa:""}.fa-amilia{--fa:""}.fa-angrycreative{--fa:""}.fa-app-store{--fa:""}.fa-app-store-ios{--fa:""}.fa-apper{--fa:""}.fa-asymmetrik{--fa:""}.fa-audible{--fa:""}.fa-avianex{--fa:""}.fa-aws{--fa:""}.fa-bimobject{--fa:""}.fa-bitcoin{--fa:""}.fa-bity{--fa:""}.fa-blackberry{--fa:""}.fa-blogger{--fa:""}.fa-blogger-b{--fa:""}.fa-buromobelexperte{--fa:""}.fa-centercode{--fa:""}.fa-cloudscale{--fa:""}.fa-cloudsmith{--fa:""}.fa-cloudversify{--fa:""}.fa-cpanel{--fa:""}.fa-css3-alt{--fa:""}.fa-cuttlefish{--fa:""}.fa-d-and-d{--fa:""}.fa-deploydog{--fa:""}.fa-deskpro{--fa:""}.fa-digital-ocean{--fa:""}.fa-discord{--fa:""}.fa-discourse{--fa:""}.fa-dochub{--fa:""}.fa-docker{--fa:""}.fa-draft2digital{--fa:""}.fa-square-dribbble{--fa:""}.fa-dribbble-square{--fa:""}.fa-dyalog{--fa:""}.fa-earlybirds{--fa:""}.fa-erlang{--fa:""}.fa-facebook-f{--fa:""}.fa-facebook-messenger{--fa:""}.fa-firstdraft{--fa:""}.fa-fonticons-fi{--fa:""}.fa-fort-awesome-alt{--fa:""}.fa-freebsd{--fa:""}.fa-gitkraken{--fa:""}.fa-gofore{--fa:""}.fa-goodreads{--fa:""}.fa-goodreads-g{--fa:""}.fa-google-drive{--fa:""}.fa-google-play{--fa:""}.fa-gripfire{--fa:""}.fa-grunt{--fa:""}.fa-gulp{--fa:""}.fa-square-hacker-news{--fa:""}.fa-hacker-news-square{--fa:""}.fa-hire-a-helper{--fa:""}.fa-hotjar{--fa:""}.fa-hubspot{--fa:""}.fa-itunes{--fa:""}.fa-itunes-note{--fa:""}.fa-jenkins{--fa:""}.fa-joget{--fa:""}.fa-js{--fa:""}.fa-square-js{--fa:""}.fa-js-square{--fa:""}.fa-keycdn{--fa:""}.fa-kickstarter{--fa:""}.fa-square-kickstarter{--fa:""}.fa-kickstarter-k{--fa:""}.fa-laravel{--fa:""}.fa-line{--fa:""}.fa-lyft{--fa:""}.fa-magento{--fa:""}.fa-medapps{--fa:""}.fa-medrt{--fa:""}.fa-microsoft{--fa:""}.fa-mix{--fa:""}.fa-mizuni{--fa:""}.fa-monero{--fa:""}.fa-napster{--fa:""}.fa-node-js{--fa:""}.fa-npm{--fa:""}.fa-ns8{--fa:""}.fa-nutritionix{--fa:""}.fa-page4{--fa:""}.fa-palfed{--fa:""}.fa-patreon{--fa:""}.fa-periscope{--fa:""}.fa-phabricator{--fa:""}.fa-phoenix-framework{--fa:""}.fa-playstation{--fa:""}.fa-pushed{--fa:""}.fa-python{--fa:""}.fa-red-river{--fa:""}.fa-wpressr{--fa:""}.fa-rendact{--fa:""}.fa-replyd{--fa:""}.fa-resolving{--fa:""}.fa-rocketchat{--fa:""}.fa-rockrms{--fa:""}.fa-schlix{--fa:""}.fa-searchengin{--fa:""}.fa-servicestack{--fa:""}.fa-sistrix{--fa:""}.fa-speakap{--fa:""}.fa-staylinked{--fa:""}.fa-steam-symbol{--fa:""}.fa-sticker-mule{--fa:""}.fa-studiovinari{--fa:""}.fa-supple{--fa:""}.fa-uber{--fa:""}.fa-uikit{--fa:""}.fa-uniregistry{--fa:""}.fa-untappd{--fa:""}.fa-ussunnah{--fa:""}.fa-vaadin{--fa:""}.fa-viber{--fa:""}.fa-vimeo{--fa:""}.fa-vnv{--fa:""}.fa-square-whatsapp{--fa:""}.fa-whatsapp-square{--fa:""}.fa-whmcs{--fa:""}.fa-wordpress-simple{--fa:""}.fa-xbox{--fa:""}.fa-yandex{--fa:""}.fa-yandex-international{--fa:""}.fa-apple-pay{--fa:""}.fa-cc-apple-pay{--fa:""}.fa-fly{--fa:""}.fa-node{--fa:""}.fa-osi{--fa:""}.fa-react{--fa:""}.fa-autoprefixer{--fa:""}.fa-less{--fa:""}.fa-sass{--fa:""}.fa-vuejs{--fa:""}.fa-angular{--fa:""}.fa-aviato{--fa:""}.fa-ember{--fa:""}.fa-gitter{--fa:""}.fa-hooli{--fa:""}.fa-strava{--fa:""}.fa-stripe{--fa:""}.fa-stripe-s{--fa:""}.fa-typo3{--fa:""}.fa-amazon-pay{--fa:""}.fa-cc-amazon-pay{--fa:""}.fa-ethereum{--fa:""}.fa-korvue{--fa:""}.fa-elementor{--fa:""}.fa-square-youtube{--fa:""}.fa-youtube-square{--fa:""}.fa-flipboard{--fa:""}.fa-hips{--fa:""}.fa-php{--fa:""}.fa-quinscape{--fa:""}.fa-readme{--fa:""}.fa-java{--fa:""}.fa-pied-piper-hat{--fa:""}.fa-creative-commons-by{--fa:""}.fa-creative-commons-nc{--fa:""}.fa-creative-commons-nc-eu{--fa:""}.fa-creative-commons-nc-jp{--fa:""}.fa-creative-commons-nd{--fa:""}.fa-creative-commons-pd{--fa:""}.fa-creative-commons-pd-alt{--fa:""}.fa-creative-commons-remix{--fa:""}.fa-creative-commons-sa{--fa:""}.fa-creative-commons-sampling{--fa:""}.fa-creative-commons-sampling-plus{--fa:""}.fa-creative-commons-share{--fa:""}.fa-creative-commons-zero{--fa:""}.fa-ebay{--fa:""}.fa-keybase{--fa:""}.fa-mastodon{--fa:""}.fa-r-project{--fa:""}.fa-researchgate{--fa:""}.fa-teamspeak{--fa:""}.fa-first-order-alt{--fa:""}.fa-fulcrum{--fa:""}.fa-galactic-republic{--fa:""}.fa-galactic-senate{--fa:""}.fa-jedi-order{--fa:""}.fa-mandalorian{--fa:""}.fa-old-republic{--fa:""}.fa-phoenix-squadron{--fa:""}.fa-sith{--fa:""}.fa-trade-federation{--fa:""}.fa-wolf-pack-battalion{--fa:""}.fa-hornbill{--fa:""}.fa-mailchimp{--fa:""}.fa-megaport{--fa:""}.fa-nimblr{--fa:""}.fa-rev{--fa:""}.fa-shopware{--fa:""}.fa-squarespace{--fa:""}.fa-themeco{--fa:""}.fa-weebly{--fa:""}.fa-wix{--fa:""}.fa-ello{--fa:""}.fa-hackerrank{--fa:""}.fa-kaggle{--fa:""}.fa-markdown{--fa:""}.fa-neos{--fa:""}.fa-zhihu{--fa:""}.fa-alipay{--fa:""}.fa-the-red-yeti{--fa:""}.fa-critical-role{--fa:""}.fa-d-and-d-beyond{--fa:""}.fa-dev{--fa:""}.fa-fantasy-flight-games{--fa:""}.fa-wizards-of-the-coast{--fa:""}.fa-think-peaks{--fa:""}.fa-reacteurope{--fa:""}.fa-artstation{--fa:""}.fa-atlassian{--fa:""}.fa-canadian-maple-leaf{--fa:""}.fa-centos{--fa:""}.fa-confluence{--fa:""}.fa-dhl{--fa:""}.fa-diaspora{--fa:""}.fa-fedex{--fa:""}.fa-fedora{--fa:""}.fa-figma{--fa:""}.fa-intercom{--fa:""}.fa-invision{--fa:""}.fa-jira{--fa:""}.fa-mendeley{--fa:""}.fa-raspberry-pi{--fa:""}.fa-redhat{--fa:""}.fa-sketch{--fa:""}.fa-sourcetree{--fa:""}.fa-suse{--fa:""}.fa-ubuntu{--fa:""}.fa-ups{--fa:""}.fa-usps{--fa:""}.fa-yarn{--fa:""}.fa-airbnb{--fa:""}.fa-battle-net{--fa:""}.fa-bootstrap{--fa:""}.fa-buffer{--fa:""}.fa-chromecast{--fa:""}.fa-evernote{--fa:""}.fa-itch-io{--fa:""}.fa-salesforce{--fa:""}.fa-speaker-deck{--fa:""}.fa-symfony{--fa:""}.fa-waze{--fa:""}.fa-yammer{--fa:""}.fa-git-alt{--fa:""}.fa-stackpath{--fa:""}.fa-cotton-bureau{--fa:""}.fa-buy-n-large{--fa:""}.fa-mdb{--fa:""}.fa-orcid{--fa:""}.fa-swift{--fa:""}.fa-umbraco{--fa:""}/*!
 * Font Awesome Free 7.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 2026 Fonticons, Inc.
 */:root,:host{--fa-family-classic: 'Font Awesome 7 Free';--fa-font-regular: normal 400 1em/1 var(--fa-family-classic);--fa-style-family-classic: var(--fa-family-classic)}@font-face{font-family:"Font Awesome 7 Free";font-style:normal;font-weight:400;font-display:block;src:url(/assets/crematory/fonts/fa-regular-400.cfbad32c79d9dda6af4a.woff2)}.far{--fa-family: var(--fa-family-classic);--fa-style: 400}.fa-classic{--fa-family: var(--fa-family-classic)}.fa-regular{--fa-style: 400}/*!
 * Font Awesome Free 7.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 2026 Fonticons, Inc.
 */:root,:host{--fa-family-classic: 'Font Awesome 7 Free';--fa-font-solid: normal 900 1em/1 var(--fa-family-classic);--fa-style-family-classic: var(--fa-family-classic)}@font-face{font-family:"Font Awesome 7 Free";font-style:normal;font-weight:900;font-display:block;src:url(/assets/crematory/fonts/fa-solid-900.ce9a3fa740bd60b4ac3b.woff2)}.fas{--fa-family: var(--fa-family-classic);--fa-style: 900}.fa-classic{--fa-family: var(--fa-family-classic)}.fa-solid{--fa-style: 900}:root,[data-bs-theme=light]{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fc8b35;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #fc8b35;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #e9ecef;--bs-dark: #212529;--bs-lightest: #fff;--bs-primary-rgb: 252, 139, 53;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 233, 236, 239;--bs-dark-rgb: 33, 37, 41;--bs-lightest-rgb: 255, 255, 255;--bs-primary-text-emphasis: rgb(100.8, 55.6, 21.2);--bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);--bs-success-text-emphasis: rgb(10, 54, 33.6);--bs-info-text-emphasis: rgb(5.2, 80.8, 96);--bs-warning-text-emphasis: rgb(102, 77.2, 2.8);--bs-danger-text-emphasis: rgb(88, 21.2, 27.6);--bs-light-text-emphasis: #495057;--bs-dark-text-emphasis: #495057;--bs-primary-bg-subtle: rgb(254.4, 231.8, 214.6);--bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);--bs-success-bg-subtle: rgb(209, 231, 220.8);--bs-info-bg-subtle: rgb(206.6, 244.4, 252);--bs-warning-bg-subtle: rgb(255, 242.6, 205.4);--bs-danger-bg-subtle: rgb(248, 214.6, 217.8);--bs-light-bg-subtle: rgb(251.5, 252, 252.5);--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: rgb(253.8, 208.6, 174.2);--bs-secondary-border-subtle: rgb(196.2, 199.8, 203);--bs-success-border-subtle: rgb(163, 207, 186.6);--bs-info-border-subtle: rgb(158.2, 233.8, 249);--bs-warning-border-subtle: rgb(255, 230.2, 155.8);--bs-danger-border-subtle: rgb(241, 174.2, 180.6);--bs-light-border-subtle: #e9ecef;--bs-dark-border-subtle: #adb5bd;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-font-sans-serif: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg: #fff;--bs-body-bg-rgb: 255, 255, 255;--bs-emphasis-color: #212529;--bs-emphasis-color-rgb: 33, 37, 41;--bs-secondary-color: rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb: 33, 37, 41;--bs-secondary-bg: #e9ecef;--bs-secondary-bg-rgb: 233, 236, 239;--bs-tertiary-color: rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb: 33, 37, 41;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: #fc8b35;--bs-link-color: #fc8b35;--bs-link-color-rgb: 252, 139, 53;--bs-link-decoration: none;--bs-link-hover-color: rgb(201.6, 111.2, 42.4);--bs-link-hover-color-rgb: 202, 111, 42;--bs-code-color: #d63384;--bs-highlight-color: #212529;--bs-highlight-bg: rgb(255, 242.6, 205.4);--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.375rem;--bs-border-radius-sm: 0.25rem;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-xxl: 2rem;--bs-border-radius-2xl: var(--bs-border-radius-xxl);--bs-border-radius-pill: 50rem;--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width: 0.25rem;--bs-focus-ring-opacity: 0.25;--bs-focus-ring-color: rgba(252, 139, 53, 0.25);--bs-form-valid-color: #198754;--bs-form-valid-border-color: #198754;--bs-form-invalid-color: #dc3545;--bs-form-invalid-border-color: #dc3545}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:#ced4da;border:0;border-top:var(--bs-border-width) solid;opacity:1}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:1rem;font-family:"Open Sans Condensed","Arial Narrow",sans-serif;font-weight:700;line-height:1.1;color:var(--bs-heading-color)}h1,.h1{font-size:calc(1.04375rem + 1.6916666667vw)}@media(min-width: 1200px){h1,.h1{font-size:2.3125rem}}h2,.h2{font-size:calc(1.0229166667rem + 0.8861111111vw)}@media(min-width: 1200px){h2,.h2{font-size:1.6875rem}}h3,.h3{font-size:calc(1.0125rem + 0.4833333333vw)}@media(min-width: 1200px){h3,.h3{font-size:1.375rem}}h4,.h4{font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){h4,.h4{font-size:1.25rem}}h5,.h5{font-size:calc(1.0041666667rem + 0.1611111111vw)}@media(min-width: 1200px){h5,.h5{font-size:1.125rem}}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));text-decoration:none}a:hover{--bs-link-color-rgb: var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:0.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none !important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;line-height:inherit;font-size:calc(1.0166666667rem + 0.6444444444vw)}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button{cursor:pointer;filter:grayscale(1)}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.lead{font-size:1.25rem}}.lead{font-weight:300}.display-1{font-weight:300;line-height:1.1;font-size:calc(1.1333333333rem + 5.1555555556vw)}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-weight:300;line-height:1.1;font-size:calc(1.1166666667rem + 4.5111111111vw)}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-weight:300;line-height:1.1;font-size:calc(1.1rem + 3.8666666667vw)}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-weight:300;line-height:1.1;font-size:calc(1.0833333333rem + 3.2222222222vw)}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-weight:300;line-height:1.1;font-size:calc(1.0666666667rem + 2.5777777778vw)}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-weight:300;line-height:1.1;font-size:calc(1.05rem + 1.9333333333vw)}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.blockquote{font-size:1.25rem}}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-xxxl,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{--bs-gutter-x: 1.875rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container-xs,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container-xs,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container-xs,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container-xs,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container-xs,.container{max-width:1320px}}@media(min-width: 1600px){.container-xxxl,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container-xs,.container{max-width:1540px}}:root{--bs-breakpoint-xxs: 0;--bs-breakpoint-xs: 414px;--bs-breakpoint-sm: 576px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 992px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1400px;--bs-breakpoint-xxxl: 1600px}.row{--bs-gutter-x: 1.875rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--bs-gutter-y));margin-right:calc(-0.5*var(--bs-gutter-x));margin-left:calc(-0.5*var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x: 0}.g-0,.gy-0{--bs-gutter-y: 0}.g-10,.gx-10{--bs-gutter-x: 0.1rem}.g-10,.gy-10{--bs-gutter-y: 0.1rem}.g-25,.gx-25{--bs-gutter-x: 0.25rem}.g-25,.gy-25{--bs-gutter-y: 0.25rem}.g-40,.gx-40{--bs-gutter-x: 0.4rem}.g-40,.gy-40{--bs-gutter-y: 0.4rem}.g-50,.gx-50{--bs-gutter-x: 0.5rem}.g-50,.gy-50{--bs-gutter-y: 0.5rem}.g-60,.gx-60{--bs-gutter-x: 0.6rem}.g-60,.gy-60{--bs-gutter-y: 0.6rem}.g-75,.gx-75{--bs-gutter-x: 0.75rem}.g-75,.gy-75{--bs-gutter-y: 0.75rem}.g-100,.gx-100{--bs-gutter-x: 1rem}.g-100,.gy-100{--bs-gutter-y: 1rem}.g-125,.gx-125{--bs-gutter-x: 1.25rem}.g-125,.gy-125{--bs-gutter-y: 1.25rem}.g-150,.gx-150{--bs-gutter-x: 1.5rem}.g-150,.gy-150{--bs-gutter-y: 1.5rem}.g-175,.gx-175{--bs-gutter-x: 1.75rem}.g-175,.gy-175{--bs-gutter-y: 1.75rem}.g-200,.gx-200{--bs-gutter-x: 2rem}.g-200,.gy-200{--bs-gutter-y: 2rem}.g-250,.gx-250{--bs-gutter-x: 2.5rem}.g-250,.gy-250{--bs-gutter-y: 2.5rem}.g-300,.gx-300{--bs-gutter-x: 3rem}.g-300,.gy-300{--bs-gutter-y: 3rem}.g-400,.gx-400{--bs-gutter-x: 4rem}.g-400,.gy-400{--bs-gutter-y: 4rem}.g-500,.gx-500{--bs-gutter-x: 5rem}.g-500,.gy-500{--bs-gutter-y: 5rem}.g-600,.gx-600{--bs-gutter-x: 6rem}.g-600,.gy-600{--bs-gutter-y: 6rem}.g-700,.gx-700{--bs-gutter-x: 7rem}.g-700,.gy-700{--bs-gutter-y: 7rem}.g-800,.gx-800{--bs-gutter-x: 8rem}.g-800,.gy-800{--bs-gutter-y: 8rem}.g-900,.gx-900{--bs-gutter-x: 9rem}.g-900,.gy-900{--bs-gutter-y: 9rem}.g-1000,.gx-1000{--bs-gutter-x: 10rem}.g-1000,.gy-1000{--bs-gutter-y: 10rem}@media(min-width: 414px){.col-xs{flex:1 0 0}.row-cols-xs-auto>*{flex:0 0 auto;width:auto}.row-cols-xs-1>*{flex:0 0 auto;width:100%}.row-cols-xs-2>*{flex:0 0 auto;width:50%}.row-cols-xs-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xs-4>*{flex:0 0 auto;width:25%}.row-cols-xs-5>*{flex:0 0 auto;width:20%}.row-cols-xs-6>*{flex:0 0 auto;width:16.66666667%}.col-xs-auto{flex:0 0 auto;width:auto}.col-xs-1{flex:0 0 auto;width:8.33333333%}.col-xs-2{flex:0 0 auto;width:16.66666667%}.col-xs-3{flex:0 0 auto;width:25%}.col-xs-4{flex:0 0 auto;width:33.33333333%}.col-xs-5{flex:0 0 auto;width:41.66666667%}.col-xs-6{flex:0 0 auto;width:50%}.col-xs-7{flex:0 0 auto;width:58.33333333%}.col-xs-8{flex:0 0 auto;width:66.66666667%}.col-xs-9{flex:0 0 auto;width:75%}.col-xs-10{flex:0 0 auto;width:83.33333333%}.col-xs-11{flex:0 0 auto;width:91.66666667%}.col-xs-12{flex:0 0 auto;width:100%}.offset-xs-0{margin-left:0}.offset-xs-1{margin-left:8.33333333%}.offset-xs-2{margin-left:16.66666667%}.offset-xs-3{margin-left:25%}.offset-xs-4{margin-left:33.33333333%}.offset-xs-5{margin-left:41.66666667%}.offset-xs-6{margin-left:50%}.offset-xs-7{margin-left:58.33333333%}.offset-xs-8{margin-left:66.66666667%}.offset-xs-9{margin-left:75%}.offset-xs-10{margin-left:83.33333333%}.offset-xs-11{margin-left:91.66666667%}.g-xs-0,.gx-xs-0{--bs-gutter-x: 0}.g-xs-0,.gy-xs-0{--bs-gutter-y: 0}.g-xs-10,.gx-xs-10{--bs-gutter-x: 0.1rem}.g-xs-10,.gy-xs-10{--bs-gutter-y: 0.1rem}.g-xs-25,.gx-xs-25{--bs-gutter-x: 0.25rem}.g-xs-25,.gy-xs-25{--bs-gutter-y: 0.25rem}.g-xs-40,.gx-xs-40{--bs-gutter-x: 0.4rem}.g-xs-40,.gy-xs-40{--bs-gutter-y: 0.4rem}.g-xs-50,.gx-xs-50{--bs-gutter-x: 0.5rem}.g-xs-50,.gy-xs-50{--bs-gutter-y: 0.5rem}.g-xs-60,.gx-xs-60{--bs-gutter-x: 0.6rem}.g-xs-60,.gy-xs-60{--bs-gutter-y: 0.6rem}.g-xs-75,.gx-xs-75{--bs-gutter-x: 0.75rem}.g-xs-75,.gy-xs-75{--bs-gutter-y: 0.75rem}.g-xs-100,.gx-xs-100{--bs-gutter-x: 1rem}.g-xs-100,.gy-xs-100{--bs-gutter-y: 1rem}.g-xs-125,.gx-xs-125{--bs-gutter-x: 1.25rem}.g-xs-125,.gy-xs-125{--bs-gutter-y: 1.25rem}.g-xs-150,.gx-xs-150{--bs-gutter-x: 1.5rem}.g-xs-150,.gy-xs-150{--bs-gutter-y: 1.5rem}.g-xs-175,.gx-xs-175{--bs-gutter-x: 1.75rem}.g-xs-175,.gy-xs-175{--bs-gutter-y: 1.75rem}.g-xs-200,.gx-xs-200{--bs-gutter-x: 2rem}.g-xs-200,.gy-xs-200{--bs-gutter-y: 2rem}.g-xs-250,.gx-xs-250{--bs-gutter-x: 2.5rem}.g-xs-250,.gy-xs-250{--bs-gutter-y: 2.5rem}.g-xs-300,.gx-xs-300{--bs-gutter-x: 3rem}.g-xs-300,.gy-xs-300{--bs-gutter-y: 3rem}.g-xs-400,.gx-xs-400{--bs-gutter-x: 4rem}.g-xs-400,.gy-xs-400{--bs-gutter-y: 4rem}.g-xs-500,.gx-xs-500{--bs-gutter-x: 5rem}.g-xs-500,.gy-xs-500{--bs-gutter-y: 5rem}.g-xs-600,.gx-xs-600{--bs-gutter-x: 6rem}.g-xs-600,.gy-xs-600{--bs-gutter-y: 6rem}.g-xs-700,.gx-xs-700{--bs-gutter-x: 7rem}.g-xs-700,.gy-xs-700{--bs-gutter-y: 7rem}.g-xs-800,.gx-xs-800{--bs-gutter-x: 8rem}.g-xs-800,.gy-xs-800{--bs-gutter-y: 8rem}.g-xs-900,.gx-xs-900{--bs-gutter-x: 9rem}.g-xs-900,.gy-xs-900{--bs-gutter-y: 9rem}.g-xs-1000,.gx-xs-1000{--bs-gutter-x: 10rem}.g-xs-1000,.gy-xs-1000{--bs-gutter-y: 10rem}}@media(min-width: 576px){.col-sm{flex:1 0 0}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x: 0}.g-sm-0,.gy-sm-0{--bs-gutter-y: 0}.g-sm-10,.gx-sm-10{--bs-gutter-x: 0.1rem}.g-sm-10,.gy-sm-10{--bs-gutter-y: 0.1rem}.g-sm-25,.gx-sm-25{--bs-gutter-x: 0.25rem}.g-sm-25,.gy-sm-25{--bs-gutter-y: 0.25rem}.g-sm-40,.gx-sm-40{--bs-gutter-x: 0.4rem}.g-sm-40,.gy-sm-40{--bs-gutter-y: 0.4rem}.g-sm-50,.gx-sm-50{--bs-gutter-x: 0.5rem}.g-sm-50,.gy-sm-50{--bs-gutter-y: 0.5rem}.g-sm-60,.gx-sm-60{--bs-gutter-x: 0.6rem}.g-sm-60,.gy-sm-60{--bs-gutter-y: 0.6rem}.g-sm-75,.gx-sm-75{--bs-gutter-x: 0.75rem}.g-sm-75,.gy-sm-75{--bs-gutter-y: 0.75rem}.g-sm-100,.gx-sm-100{--bs-gutter-x: 1rem}.g-sm-100,.gy-sm-100{--bs-gutter-y: 1rem}.g-sm-125,.gx-sm-125{--bs-gutter-x: 1.25rem}.g-sm-125,.gy-sm-125{--bs-gutter-y: 1.25rem}.g-sm-150,.gx-sm-150{--bs-gutter-x: 1.5rem}.g-sm-150,.gy-sm-150{--bs-gutter-y: 1.5rem}.g-sm-175,.gx-sm-175{--bs-gutter-x: 1.75rem}.g-sm-175,.gy-sm-175{--bs-gutter-y: 1.75rem}.g-sm-200,.gx-sm-200{--bs-gutter-x: 2rem}.g-sm-200,.gy-sm-200{--bs-gutter-y: 2rem}.g-sm-250,.gx-sm-250{--bs-gutter-x: 2.5rem}.g-sm-250,.gy-sm-250{--bs-gutter-y: 2.5rem}.g-sm-300,.gx-sm-300{--bs-gutter-x: 3rem}.g-sm-300,.gy-sm-300{--bs-gutter-y: 3rem}.g-sm-400,.gx-sm-400{--bs-gutter-x: 4rem}.g-sm-400,.gy-sm-400{--bs-gutter-y: 4rem}.g-sm-500,.gx-sm-500{--bs-gutter-x: 5rem}.g-sm-500,.gy-sm-500{--bs-gutter-y: 5rem}.g-sm-600,.gx-sm-600{--bs-gutter-x: 6rem}.g-sm-600,.gy-sm-600{--bs-gutter-y: 6rem}.g-sm-700,.gx-sm-700{--bs-gutter-x: 7rem}.g-sm-700,.gy-sm-700{--bs-gutter-y: 7rem}.g-sm-800,.gx-sm-800{--bs-gutter-x: 8rem}.g-sm-800,.gy-sm-800{--bs-gutter-y: 8rem}.g-sm-900,.gx-sm-900{--bs-gutter-x: 9rem}.g-sm-900,.gy-sm-900{--bs-gutter-y: 9rem}.g-sm-1000,.gx-sm-1000{--bs-gutter-x: 10rem}.g-sm-1000,.gy-sm-1000{--bs-gutter-y: 10rem}}@media(min-width: 768px){.col-md{flex:1 0 0}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x: 0}.g-md-0,.gy-md-0{--bs-gutter-y: 0}.g-md-10,.gx-md-10{--bs-gutter-x: 0.1rem}.g-md-10,.gy-md-10{--bs-gutter-y: 0.1rem}.g-md-25,.gx-md-25{--bs-gutter-x: 0.25rem}.g-md-25,.gy-md-25{--bs-gutter-y: 0.25rem}.g-md-40,.gx-md-40{--bs-gutter-x: 0.4rem}.g-md-40,.gy-md-40{--bs-gutter-y: 0.4rem}.g-md-50,.gx-md-50{--bs-gutter-x: 0.5rem}.g-md-50,.gy-md-50{--bs-gutter-y: 0.5rem}.g-md-60,.gx-md-60{--bs-gutter-x: 0.6rem}.g-md-60,.gy-md-60{--bs-gutter-y: 0.6rem}.g-md-75,.gx-md-75{--bs-gutter-x: 0.75rem}.g-md-75,.gy-md-75{--bs-gutter-y: 0.75rem}.g-md-100,.gx-md-100{--bs-gutter-x: 1rem}.g-md-100,.gy-md-100{--bs-gutter-y: 1rem}.g-md-125,.gx-md-125{--bs-gutter-x: 1.25rem}.g-md-125,.gy-md-125{--bs-gutter-y: 1.25rem}.g-md-150,.gx-md-150{--bs-gutter-x: 1.5rem}.g-md-150,.gy-md-150{--bs-gutter-y: 1.5rem}.g-md-175,.gx-md-175{--bs-gutter-x: 1.75rem}.g-md-175,.gy-md-175{--bs-gutter-y: 1.75rem}.g-md-200,.gx-md-200{--bs-gutter-x: 2rem}.g-md-200,.gy-md-200{--bs-gutter-y: 2rem}.g-md-250,.gx-md-250{--bs-gutter-x: 2.5rem}.g-md-250,.gy-md-250{--bs-gutter-y: 2.5rem}.g-md-300,.gx-md-300{--bs-gutter-x: 3rem}.g-md-300,.gy-md-300{--bs-gutter-y: 3rem}.g-md-400,.gx-md-400{--bs-gutter-x: 4rem}.g-md-400,.gy-md-400{--bs-gutter-y: 4rem}.g-md-500,.gx-md-500{--bs-gutter-x: 5rem}.g-md-500,.gy-md-500{--bs-gutter-y: 5rem}.g-md-600,.gx-md-600{--bs-gutter-x: 6rem}.g-md-600,.gy-md-600{--bs-gutter-y: 6rem}.g-md-700,.gx-md-700{--bs-gutter-x: 7rem}.g-md-700,.gy-md-700{--bs-gutter-y: 7rem}.g-md-800,.gx-md-800{--bs-gutter-x: 8rem}.g-md-800,.gy-md-800{--bs-gutter-y: 8rem}.g-md-900,.gx-md-900{--bs-gutter-x: 9rem}.g-md-900,.gy-md-900{--bs-gutter-y: 9rem}.g-md-1000,.gx-md-1000{--bs-gutter-x: 10rem}.g-md-1000,.gy-md-1000{--bs-gutter-y: 10rem}}@media(min-width: 992px){.col-lg{flex:1 0 0}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x: 0}.g-lg-0,.gy-lg-0{--bs-gutter-y: 0}.g-lg-10,.gx-lg-10{--bs-gutter-x: 0.1rem}.g-lg-10,.gy-lg-10{--bs-gutter-y: 0.1rem}.g-lg-25,.gx-lg-25{--bs-gutter-x: 0.25rem}.g-lg-25,.gy-lg-25{--bs-gutter-y: 0.25rem}.g-lg-40,.gx-lg-40{--bs-gutter-x: 0.4rem}.g-lg-40,.gy-lg-40{--bs-gutter-y: 0.4rem}.g-lg-50,.gx-lg-50{--bs-gutter-x: 0.5rem}.g-lg-50,.gy-lg-50{--bs-gutter-y: 0.5rem}.g-lg-60,.gx-lg-60{--bs-gutter-x: 0.6rem}.g-lg-60,.gy-lg-60{--bs-gutter-y: 0.6rem}.g-lg-75,.gx-lg-75{--bs-gutter-x: 0.75rem}.g-lg-75,.gy-lg-75{--bs-gutter-y: 0.75rem}.g-lg-100,.gx-lg-100{--bs-gutter-x: 1rem}.g-lg-100,.gy-lg-100{--bs-gutter-y: 1rem}.g-lg-125,.gx-lg-125{--bs-gutter-x: 1.25rem}.g-lg-125,.gy-lg-125{--bs-gutter-y: 1.25rem}.g-lg-150,.gx-lg-150{--bs-gutter-x: 1.5rem}.g-lg-150,.gy-lg-150{--bs-gutter-y: 1.5rem}.g-lg-175,.gx-lg-175{--bs-gutter-x: 1.75rem}.g-lg-175,.gy-lg-175{--bs-gutter-y: 1.75rem}.g-lg-200,.gx-lg-200{--bs-gutter-x: 2rem}.g-lg-200,.gy-lg-200{--bs-gutter-y: 2rem}.g-lg-250,.gx-lg-250{--bs-gutter-x: 2.5rem}.g-lg-250,.gy-lg-250{--bs-gutter-y: 2.5rem}.g-lg-300,.gx-lg-300{--bs-gutter-x: 3rem}.g-lg-300,.gy-lg-300{--bs-gutter-y: 3rem}.g-lg-400,.gx-lg-400{--bs-gutter-x: 4rem}.g-lg-400,.gy-lg-400{--bs-gutter-y: 4rem}.g-lg-500,.gx-lg-500{--bs-gutter-x: 5rem}.g-lg-500,.gy-lg-500{--bs-gutter-y: 5rem}.g-lg-600,.gx-lg-600{--bs-gutter-x: 6rem}.g-lg-600,.gy-lg-600{--bs-gutter-y: 6rem}.g-lg-700,.gx-lg-700{--bs-gutter-x: 7rem}.g-lg-700,.gy-lg-700{--bs-gutter-y: 7rem}.g-lg-800,.gx-lg-800{--bs-gutter-x: 8rem}.g-lg-800,.gy-lg-800{--bs-gutter-y: 8rem}.g-lg-900,.gx-lg-900{--bs-gutter-x: 9rem}.g-lg-900,.gy-lg-900{--bs-gutter-y: 9rem}.g-lg-1000,.gx-lg-1000{--bs-gutter-x: 10rem}.g-lg-1000,.gy-lg-1000{--bs-gutter-y: 10rem}}@media(min-width: 1200px){.col-xl{flex:1 0 0}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x: 0}.g-xl-0,.gy-xl-0{--bs-gutter-y: 0}.g-xl-10,.gx-xl-10{--bs-gutter-x: 0.1rem}.g-xl-10,.gy-xl-10{--bs-gutter-y: 0.1rem}.g-xl-25,.gx-xl-25{--bs-gutter-x: 0.25rem}.g-xl-25,.gy-xl-25{--bs-gutter-y: 0.25rem}.g-xl-40,.gx-xl-40{--bs-gutter-x: 0.4rem}.g-xl-40,.gy-xl-40{--bs-gutter-y: 0.4rem}.g-xl-50,.gx-xl-50{--bs-gutter-x: 0.5rem}.g-xl-50,.gy-xl-50{--bs-gutter-y: 0.5rem}.g-xl-60,.gx-xl-60{--bs-gutter-x: 0.6rem}.g-xl-60,.gy-xl-60{--bs-gutter-y: 0.6rem}.g-xl-75,.gx-xl-75{--bs-gutter-x: 0.75rem}.g-xl-75,.gy-xl-75{--bs-gutter-y: 0.75rem}.g-xl-100,.gx-xl-100{--bs-gutter-x: 1rem}.g-xl-100,.gy-xl-100{--bs-gutter-y: 1rem}.g-xl-125,.gx-xl-125{--bs-gutter-x: 1.25rem}.g-xl-125,.gy-xl-125{--bs-gutter-y: 1.25rem}.g-xl-150,.gx-xl-150{--bs-gutter-x: 1.5rem}.g-xl-150,.gy-xl-150{--bs-gutter-y: 1.5rem}.g-xl-175,.gx-xl-175{--bs-gutter-x: 1.75rem}.g-xl-175,.gy-xl-175{--bs-gutter-y: 1.75rem}.g-xl-200,.gx-xl-200{--bs-gutter-x: 2rem}.g-xl-200,.gy-xl-200{--bs-gutter-y: 2rem}.g-xl-250,.gx-xl-250{--bs-gutter-x: 2.5rem}.g-xl-250,.gy-xl-250{--bs-gutter-y: 2.5rem}.g-xl-300,.gx-xl-300{--bs-gutter-x: 3rem}.g-xl-300,.gy-xl-300{--bs-gutter-y: 3rem}.g-xl-400,.gx-xl-400{--bs-gutter-x: 4rem}.g-xl-400,.gy-xl-400{--bs-gutter-y: 4rem}.g-xl-500,.gx-xl-500{--bs-gutter-x: 5rem}.g-xl-500,.gy-xl-500{--bs-gutter-y: 5rem}.g-xl-600,.gx-xl-600{--bs-gutter-x: 6rem}.g-xl-600,.gy-xl-600{--bs-gutter-y: 6rem}.g-xl-700,.gx-xl-700{--bs-gutter-x: 7rem}.g-xl-700,.gy-xl-700{--bs-gutter-y: 7rem}.g-xl-800,.gx-xl-800{--bs-gutter-x: 8rem}.g-xl-800,.gy-xl-800{--bs-gutter-y: 8rem}.g-xl-900,.gx-xl-900{--bs-gutter-x: 9rem}.g-xl-900,.gy-xl-900{--bs-gutter-y: 9rem}.g-xl-1000,.gx-xl-1000{--bs-gutter-x: 10rem}.g-xl-1000,.gy-xl-1000{--bs-gutter-y: 10rem}}@media(min-width: 1400px){.col-xxl{flex:1 0 0}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y: 0}.g-xxl-10,.gx-xxl-10{--bs-gutter-x: 0.1rem}.g-xxl-10,.gy-xxl-10{--bs-gutter-y: 0.1rem}.g-xxl-25,.gx-xxl-25{--bs-gutter-x: 0.25rem}.g-xxl-25,.gy-xxl-25{--bs-gutter-y: 0.25rem}.g-xxl-40,.gx-xxl-40{--bs-gutter-x: 0.4rem}.g-xxl-40,.gy-xxl-40{--bs-gutter-y: 0.4rem}.g-xxl-50,.gx-xxl-50{--bs-gutter-x: 0.5rem}.g-xxl-50,.gy-xxl-50{--bs-gutter-y: 0.5rem}.g-xxl-60,.gx-xxl-60{--bs-gutter-x: 0.6rem}.g-xxl-60,.gy-xxl-60{--bs-gutter-y: 0.6rem}.g-xxl-75,.gx-xxl-75{--bs-gutter-x: 0.75rem}.g-xxl-75,.gy-xxl-75{--bs-gutter-y: 0.75rem}.g-xxl-100,.gx-xxl-100{--bs-gutter-x: 1rem}.g-xxl-100,.gy-xxl-100{--bs-gutter-y: 1rem}.g-xxl-125,.gx-xxl-125{--bs-gutter-x: 1.25rem}.g-xxl-125,.gy-xxl-125{--bs-gutter-y: 1.25rem}.g-xxl-150,.gx-xxl-150{--bs-gutter-x: 1.5rem}.g-xxl-150,.gy-xxl-150{--bs-gutter-y: 1.5rem}.g-xxl-175,.gx-xxl-175{--bs-gutter-x: 1.75rem}.g-xxl-175,.gy-xxl-175{--bs-gutter-y: 1.75rem}.g-xxl-200,.gx-xxl-200{--bs-gutter-x: 2rem}.g-xxl-200,.gy-xxl-200{--bs-gutter-y: 2rem}.g-xxl-250,.gx-xxl-250{--bs-gutter-x: 2.5rem}.g-xxl-250,.gy-xxl-250{--bs-gutter-y: 2.5rem}.g-xxl-300,.gx-xxl-300{--bs-gutter-x: 3rem}.g-xxl-300,.gy-xxl-300{--bs-gutter-y: 3rem}.g-xxl-400,.gx-xxl-400{--bs-gutter-x: 4rem}.g-xxl-400,.gy-xxl-400{--bs-gutter-y: 4rem}.g-xxl-500,.gx-xxl-500{--bs-gutter-x: 5rem}.g-xxl-500,.gy-xxl-500{--bs-gutter-y: 5rem}.g-xxl-600,.gx-xxl-600{--bs-gutter-x: 6rem}.g-xxl-600,.gy-xxl-600{--bs-gutter-y: 6rem}.g-xxl-700,.gx-xxl-700{--bs-gutter-x: 7rem}.g-xxl-700,.gy-xxl-700{--bs-gutter-y: 7rem}.g-xxl-800,.gx-xxl-800{--bs-gutter-x: 8rem}.g-xxl-800,.gy-xxl-800{--bs-gutter-y: 8rem}.g-xxl-900,.gx-xxl-900{--bs-gutter-x: 9rem}.g-xxl-900,.gy-xxl-900{--bs-gutter-y: 9rem}.g-xxl-1000,.gx-xxl-1000{--bs-gutter-x: 10rem}.g-xxl-1000,.gy-xxl-1000{--bs-gutter-y: 10rem}}@media(min-width: 1600px){.col-xxxl{flex:1 0 0}.row-cols-xxxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxxl-auto{flex:0 0 auto;width:auto}.col-xxxl-1{flex:0 0 auto;width:8.33333333%}.col-xxxl-2{flex:0 0 auto;width:16.66666667%}.col-xxxl-3{flex:0 0 auto;width:25%}.col-xxxl-4{flex:0 0 auto;width:33.33333333%}.col-xxxl-5{flex:0 0 auto;width:41.66666667%}.col-xxxl-6{flex:0 0 auto;width:50%}.col-xxxl-7{flex:0 0 auto;width:58.33333333%}.col-xxxl-8{flex:0 0 auto;width:66.66666667%}.col-xxxl-9{flex:0 0 auto;width:75%}.col-xxxl-10{flex:0 0 auto;width:83.33333333%}.col-xxxl-11{flex:0 0 auto;width:91.66666667%}.col-xxxl-12{flex:0 0 auto;width:100%}.offset-xxxl-0{margin-left:0}.offset-xxxl-1{margin-left:8.33333333%}.offset-xxxl-2{margin-left:16.66666667%}.offset-xxxl-3{margin-left:25%}.offset-xxxl-4{margin-left:33.33333333%}.offset-xxxl-5{margin-left:41.66666667%}.offset-xxxl-6{margin-left:50%}.offset-xxxl-7{margin-left:58.33333333%}.offset-xxxl-8{margin-left:66.66666667%}.offset-xxxl-9{margin-left:75%}.offset-xxxl-10{margin-left:83.33333333%}.offset-xxxl-11{margin-left:91.66666667%}.g-xxxl-0,.gx-xxxl-0{--bs-gutter-x: 0}.g-xxxl-0,.gy-xxxl-0{--bs-gutter-y: 0}.g-xxxl-10,.gx-xxxl-10{--bs-gutter-x: 0.1rem}.g-xxxl-10,.gy-xxxl-10{--bs-gutter-y: 0.1rem}.g-xxxl-25,.gx-xxxl-25{--bs-gutter-x: 0.25rem}.g-xxxl-25,.gy-xxxl-25{--bs-gutter-y: 0.25rem}.g-xxxl-40,.gx-xxxl-40{--bs-gutter-x: 0.4rem}.g-xxxl-40,.gy-xxxl-40{--bs-gutter-y: 0.4rem}.g-xxxl-50,.gx-xxxl-50{--bs-gutter-x: 0.5rem}.g-xxxl-50,.gy-xxxl-50{--bs-gutter-y: 0.5rem}.g-xxxl-60,.gx-xxxl-60{--bs-gutter-x: 0.6rem}.g-xxxl-60,.gy-xxxl-60{--bs-gutter-y: 0.6rem}.g-xxxl-75,.gx-xxxl-75{--bs-gutter-x: 0.75rem}.g-xxxl-75,.gy-xxxl-75{--bs-gutter-y: 0.75rem}.g-xxxl-100,.gx-xxxl-100{--bs-gutter-x: 1rem}.g-xxxl-100,.gy-xxxl-100{--bs-gutter-y: 1rem}.g-xxxl-125,.gx-xxxl-125{--bs-gutter-x: 1.25rem}.g-xxxl-125,.gy-xxxl-125{--bs-gutter-y: 1.25rem}.g-xxxl-150,.gx-xxxl-150{--bs-gutter-x: 1.5rem}.g-xxxl-150,.gy-xxxl-150{--bs-gutter-y: 1.5rem}.g-xxxl-175,.gx-xxxl-175{--bs-gutter-x: 1.75rem}.g-xxxl-175,.gy-xxxl-175{--bs-gutter-y: 1.75rem}.g-xxxl-200,.gx-xxxl-200{--bs-gutter-x: 2rem}.g-xxxl-200,.gy-xxxl-200{--bs-gutter-y: 2rem}.g-xxxl-250,.gx-xxxl-250{--bs-gutter-x: 2.5rem}.g-xxxl-250,.gy-xxxl-250{--bs-gutter-y: 2.5rem}.g-xxxl-300,.gx-xxxl-300{--bs-gutter-x: 3rem}.g-xxxl-300,.gy-xxxl-300{--bs-gutter-y: 3rem}.g-xxxl-400,.gx-xxxl-400{--bs-gutter-x: 4rem}.g-xxxl-400,.gy-xxxl-400{--bs-gutter-y: 4rem}.g-xxxl-500,.gx-xxxl-500{--bs-gutter-x: 5rem}.g-xxxl-500,.gy-xxxl-500{--bs-gutter-y: 5rem}.g-xxxl-600,.gx-xxxl-600{--bs-gutter-x: 6rem}.g-xxxl-600,.gy-xxxl-600{--bs-gutter-y: 6rem}.g-xxxl-700,.gx-xxxl-700{--bs-gutter-x: 7rem}.g-xxxl-700,.gy-xxxl-700{--bs-gutter-y: 7rem}.g-xxxl-800,.gx-xxxl-800{--bs-gutter-x: 8rem}.g-xxxl-800,.gy-xxxl-800{--bs-gutter-y: 8rem}.g-xxxl-900,.gx-xxxl-900{--bs-gutter-x: 9rem}.g-xxxl-900,.gy-xxxl-900{--bs-gutter-y: 9rem}.g-xxxl-1000,.gx-xxxl-1000{--bs-gutter-x: 10rem}.g-xxxl-1000,.gy-xxxl-1000{--bs-gutter-y: 10rem}}.table{--bs-table-color-type: initial;--bs-table-bg-type: initial;--bs-table-color-state: initial;--bs-table-bg-state: initial;--bs-table-color: var(--bs-emphasis-color);--bs-table-bg: var(--bs-body-bg);--bs-table-border-color: var(--bs-border-color);--bs-table-accent-bg: transparent;--bs-table-striped-color: var(--bs-emphasis-color);--bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);--bs-table-active-color: var(--bs-emphasis-color);--bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);--bs-table-hover-color: var(--bs-emphasis-color);--bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width)*2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(even){--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-active{--bs-table-color-state: var(--bs-table-active-color);--bs-table-bg-state: var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state: var(--bs-table-hover-color);--bs-table-bg-state: var(--bs-table-hover-bg)}.table-primary{--bs-table-color: #000;--bs-table-bg: rgb(254.4, 231.8, 214.6);--bs-table-border-color: rgb(203.52, 185.44, 171.68);--bs-table-striped-bg: rgb(241.68, 220.21, 203.87);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(228.96, 208.62, 193.14);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(235.32, 214.415, 198.505);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color: #000;--bs-table-bg: rgb(225.6, 227.4, 229);--bs-table-border-color: rgb(180.48, 181.92, 183.2);--bs-table-striped-bg: rgb(214.32, 216.03, 217.55);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(203.04, 204.66, 206.1);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(208.68, 210.345, 211.825);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color: #000;--bs-table-bg: rgb(209, 231, 220.8);--bs-table-border-color: rgb(167.2, 184.8, 176.64);--bs-table-striped-bg: rgb(198.55, 219.45, 209.76);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(188.1, 207.9, 198.72);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(193.325, 213.675, 204.24);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color: #000;--bs-table-bg: rgb(206.6, 244.4, 252);--bs-table-border-color: rgb(165.28, 195.52, 201.6);--bs-table-striped-bg: rgb(196.27, 232.18, 239.4);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(185.94, 219.96, 226.8);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(191.105, 226.07, 233.1);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color: #000;--bs-table-bg: rgb(255, 242.6, 205.4);--bs-table-border-color: rgb(204, 194.08, 164.32);--bs-table-striped-bg: rgb(242.25, 230.47, 195.13);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(229.5, 218.34, 184.86);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(235.875, 224.405, 189.995);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color: #000;--bs-table-bg: rgb(248, 214.6, 217.8);--bs-table-border-color: rgb(198.4, 171.68, 174.24);--bs-table-striped-bg: rgb(235.6, 203.87, 206.91);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(223.2, 193.14, 196.02);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(229.4, 198.505, 201.465);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color: #000;--bs-table-bg: #e9ecef;--bs-table-border-color: rgb(186.4, 188.8, 191.2);--bs-table-striped-bg: rgb(221.35, 224.2, 227.05);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(209.7, 212.4, 215.1);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(215.525, 218.3, 221.075);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color: #fff;--bs-table-bg: #212529;--bs-table-border-color: rgb(77.4, 80.6, 83.8);--bs-table-striped-bg: rgb(44.1, 47.9, 51.7);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(55.2, 58.8, 62.4);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(49.65, 53.35, 57.05);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 413.98px){.table-responsive-xs{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1599.98px){.table-responsive-xxxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.formbody .widget:not(.widget-hr) label{margin-bottom:.5rem}.col-form-label{padding-top:calc(0.375rem + var(--bs-border-width));padding-bottom:calc(0.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + var(--bs-border-width));padding-bottom:calc(0.5rem + var(--bs-border-width));font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.col-form-label-lg{font-size:1.25rem}}.col-form-label-sm{padding-top:calc(0.25rem + var(--bs-border-width));padding-bottom:calc(0.25rem + var(--bs-border-width));font-size:0.75rem}.form-text{margin-top:.25rem;font-size:0.875em;color:var(--bs-secondary-color)}.form-control,.formbody .widget:not(.widget-hr) input.text,.formbody .widget:not(.widget-hr) input.captcha,.formbody .widget:not(.widget-hr) textarea{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control,.formbody .widget:not(.widget-hr) input.text,.formbody .widget:not(.widget-hr) input.captcha,.formbody .widget:not(.widget-hr) textarea{transition:none}}.form-control[type=file],.formbody .widget:not(.widget-hr) input[type=file].text,.formbody .widget:not(.widget-hr) input[type=file].captcha,.formbody .widget:not(.widget-hr) textarea[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]),.formbody .widget:not(.widget-hr) input[type=file].text:not(:disabled):not([readonly]),.formbody .widget:not(.widget-hr) input[type=file].captcha:not(:disabled):not([readonly]),.formbody .widget:not(.widget-hr) textarea[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus,.formbody .widget:not(.widget-hr) input.text:focus,.formbody .widget:not(.widget-hr) input.captcha:focus,.formbody .widget:not(.widget-hr) textarea:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:rgb(253.5,197,154);outline:0;box-shadow:0 0 0 .25rem rgba(252,139,53,.25)}.form-control::-webkit-date-and-time-value,.formbody .widget:not(.widget-hr) input.text::-webkit-date-and-time-value,.formbody .widget:not(.widget-hr) input.captcha::-webkit-date-and-time-value,.formbody .widget:not(.widget-hr) textarea::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit,.formbody .widget:not(.widget-hr) input.text::-webkit-datetime-edit,.formbody .widget:not(.widget-hr) input.captcha::-webkit-datetime-edit,.formbody .widget:not(.widget-hr) textarea::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder, .formbody .widget:not(.widget-hr) input.text::-moz-placeholder, .formbody .widget:not(.widget-hr) input.captcha::-moz-placeholder, .formbody .widget:not(.widget-hr) textarea::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder,.formbody .widget:not(.widget-hr) input.text::placeholder,.formbody .widget:not(.widget-hr) input.captcha::placeholder,.formbody .widget:not(.widget-hr) textarea::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled,.formbody .widget:not(.widget-hr) input.text:disabled,.formbody .widget:not(.widget-hr) input.captcha:disabled,.formbody .widget:not(.widget-hr) textarea:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::file-selector-button,.formbody .widget:not(.widget-hr) input.text::file-selector-button,.formbody .widget:not(.widget-hr) input.captcha::file-selector-button,.formbody .widget:not(.widget-hr) textarea::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button,.formbody .widget:not(.widget-hr) input.text::file-selector-button,.formbody .widget:not(.widget-hr) input.captcha::file-selector-button,.formbody .widget:not(.widget-hr) textarea::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button,.formbody .widget:not(.widget-hr) input.text:hover:not(:disabled):not([readonly])::file-selector-button,.formbody .widget:not(.widget-hr) input.captcha:hover:not(:disabled):not([readonly])::file-selector-button,.formbody .widget:not(.widget-hr) textarea:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:0.75rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.form-control-lg{font-size:1.25rem}}.form-control-lg{border-radius:var(--bs-border-radius-lg)}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}textarea.form-control,.formbody .widget:not(.widget-hr) textarea{min-height:calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0 !important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0 !important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select,.formbody .widget:not(.widget-hr) select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27%3e%3cpath fill=%27none%27 stroke=%27%23343a40%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon, none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-select,.formbody .widget:not(.widget-hr) select{transition:none}}.form-select:focus,.formbody .widget:not(.widget-hr) select:focus{border-color:rgb(253.5,197,154);outline:0;box-shadow:0 0 0 .25rem rgba(252,139,53,.25)}.form-select[multiple],.formbody .widget:not(.widget-hr) select[multiple],.form-select[size]:not([size="1"]),.formbody .widget:not(.widget-hr) select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled,.formbody .widget:not(.widget-hr) select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring,.formbody .widget:not(.widget-hr) select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.75rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.form-select-lg{font-size:1.25rem}}.form-select-lg{border-radius:var(--bs-border-radius-lg)}.form-check,.formbody .widget:not(.widget-hr).widget-radio>fieldset>span,.formbody .widget:not(.widget-hr).widget-checkbox>fieldset>span{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input,.formbody .widget:not(.widget-hr).widget-radio>fieldset>span .form-check-input,.formbody .widget:not(.widget-hr).widget-checkbox>fieldset>span .form-check-input,.form-check .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-radio .form-check input,.formbody .widget:not(.widget-hr).widget-radio>fieldset>span input,.form-check .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-checkbox .form-check input,.formbody .widget:not(.widget-hr).widget-checkbox>fieldset>span input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input,.form-check-reverse .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-radio .form-check-reverse input,.form-check-reverse .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-reverse input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input,.formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-checkbox input{--bs-form-check-bg: var(--bs-body-bg);flex-shrink:0;width:1em;height:1em;margin-top:.25em;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-print-color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox],.formbody .widget:not(.widget-hr).widget-radio input[type=checkbox],.formbody .widget:not(.widget-hr).widget-checkbox input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio],.formbody .widget:not(.widget-hr).widget-radio input[type=radio],.formbody .widget:not(.widget-hr).widget-checkbox input[type=radio]{border-radius:50%}.form-check-input:active,.formbody .widget:not(.widget-hr).widget-radio input:active,.formbody .widget:not(.widget-hr).widget-checkbox input:active{filter:brightness(90%)}.form-check-input:focus,.formbody .widget:not(.widget-hr).widget-radio input:focus,.formbody .widget:not(.widget-hr).widget-checkbox input:focus{border-color:rgb(253.5,197,154);outline:0;box-shadow:0 0 0 .25rem rgba(252,139,53,.25)}.form-check-input:checked,.formbody .widget:not(.widget-hr).widget-radio input:checked,.formbody .widget:not(.widget-hr).widget-checkbox input:checked{background-color:#fc8b35;border-color:#fc8b35}.form-check-input:checked[type=checkbox],.formbody .widget:not(.widget-hr).widget-radio input:checked[type=checkbox],.formbody .widget:not(.widget-hr).widget-checkbox input:checked[type=checkbox]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27m6 10 3 3 6-6%27/%3e%3c/svg%3e")}.form-check-input:checked[type=radio],.formbody .widget:not(.widget-hr).widget-radio input:checked[type=radio],.formbody .widget:not(.widget-hr).widget-checkbox input:checked[type=radio]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%272%27 fill=%27%23fff%27/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate,.formbody .widget:not(.widget-hr).widget-radio input[type=checkbox]:indeterminate,.formbody .widget:not(.widget-hr).widget-checkbox input[type=checkbox]:indeterminate{background-color:#fc8b35;border-color:#fc8b35;--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 20 20%27%3e%3cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%273%27 d=%27M6 10h8%27/%3e%3c/svg%3e")}.form-check-input:disabled,.formbody .widget:not(.widget-hr).widget-radio input:disabled,.formbody .widget:not(.widget-hr).widget-checkbox input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio .form-check-input[disabled]~label,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-input[disabled]~label,.formbody .widget:not(.widget-hr).widget-radio input[disabled]~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio input[disabled]~label,.formbody .widget:not(.widget-hr).widget-checkbox input[disabled]~.form-check-label,.formbody .widget:not(.widget-hr).widget-checkbox input[disabled]~label,.form-check-input:disabled~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio .form-check-input:disabled~label,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-input:disabled~label,.formbody .widget:not(.widget-hr).widget-radio input:disabled~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio input:disabled~label,.formbody .widget:not(.widget-hr).widget-checkbox input:disabled~.form-check-label,.formbody .widget:not(.widget-hr).widget-checkbox input:disabled~label{cursor:default;opacity:.5}.form-switch,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span{padding-left:2.5em}.form-switch .form-check-input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .form-check-input,.form-switch .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-radio .form-switch input,.formbody .widget:not(.widget-hr).widget-radio .widget:not(.widget-hr).widget-switch>fieldset>span input,.form-switch .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-checkbox .form-switch input,.formbody .widget:not(.widget-hr).widget-checkbox .widget:not(.widget-hr).widget-switch>fieldset>span input{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27rgba%280, 0, 0, 0.25%29%27/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .form-check-input,.form-switch .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-radio .form-switch input,.formbody .widget:not(.widget-hr).widget-radio .widget:not(.widget-hr).widget-switch>fieldset>span input,.form-switch .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-checkbox .form-switch input,.formbody .widget:not(.widget-hr).widget-checkbox .widget:not(.widget-hr).widget-switch>fieldset>span input{transition:none}}.form-switch .form-check-input:focus,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .form-check-input:focus,.form-switch .formbody .widget:not(.widget-hr).widget-radio input:focus,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-radio input:focus,.formbody .widget:not(.widget-hr).widget-radio .form-switch input:focus,.formbody .widget:not(.widget-hr).widget-radio .widget:not(.widget-hr).widget-switch>fieldset>span input:focus,.form-switch .formbody .widget:not(.widget-hr).widget-checkbox input:focus,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-checkbox input:focus,.formbody .widget:not(.widget-hr).widget-checkbox .form-switch input:focus,.formbody .widget:not(.widget-hr).widget-checkbox .widget:not(.widget-hr).widget-switch>fieldset>span input:focus{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27rgb%28253.5, 197, 154%29%27/%3e%3c/svg%3e")}.form-switch .form-check-input:checked,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .form-check-input:checked,.form-switch .formbody .widget:not(.widget-hr).widget-radio input:checked,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-radio input:checked,.formbody .widget:not(.widget-hr).widget-radio .form-switch input:checked,.formbody .widget:not(.widget-hr).widget-radio .widget:not(.widget-hr).widget-switch>fieldset>span input:checked,.form-switch .formbody .widget:not(.widget-hr).widget-checkbox input:checked,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span .formbody .widget:not(.widget-hr).widget-checkbox input:checked,.formbody .widget:not(.widget-hr).widget-checkbox .form-switch input:checked,.formbody .widget:not(.widget-hr).widget-checkbox .widget:not(.widget-hr).widget-switch>fieldset>span input:checked{background-position:right center;--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e")}.form-switch.form-check-reverse,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span.form-check-reverse .form-check-input,.form-switch.form-check-reverse .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span.form-check-reverse .formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-radio .form-switch.form-check-reverse input,.formbody .widget:not(.widget-hr).widget-radio .widget:not(.widget-hr).widget-switch>fieldset>span.form-check-reverse input,.form-switch.form-check-reverse .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-switch>fieldset>span.form-check-reverse .formbody .widget:not(.widget-hr).widget-checkbox input,.formbody .widget:not(.widget-hr).widget-checkbox .form-switch.form-check-reverse input,.formbody .widget:not(.widget-hr).widget-checkbox .widget:not(.widget-hr).widget-switch>fieldset>span.form-check-reverse input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-check[disabled]+button,.mod_newsreader .back .btn-check[disabled]+a,.mod_newslist .more .btn-check[disabled]+a,.nav-main-toggler-open .btn-check[disabled]+button,.nav-main-toggler-close .btn-check[disabled]+button,.btn-check:disabled+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-check:disabled+button,.mod_newsreader .back .btn-check:disabled+a,.mod_newslist .more .btn-check:disabled+a,.nav-main-toggler-open .btn-check:disabled+button,.nav-main-toggler-close .btn-check:disabled+button{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgba(0,0,0,0)}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(252,139,53,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(252,139,53,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;-webkit-appearance:none;appearance:none;background-color:#fc8b35;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:rgb(254.1,220.2,194.4)}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:var(--bs-secondary-bg);border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;-moz-appearance:none;appearance:none;background-color:#fc8b35;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:rgb(254.1,220.2,194.4)}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:var(--bs-secondary-bg);border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.formbody .widget:not(.widget-hr) .form-floating>input.text,.formbody .widget:not(.widget-hr) .form-floating>input.captcha,.formbody .widget:not(.widget-hr) .form-floating>textarea,.form-floating>.form-control-plaintext,.form-floating>.form-select,.formbody .widget:not(.widget-hr) .form-floating>select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));min-height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;max-width:100%;height:100%;padding:1rem .75rem;overflow:hidden;color:rgba(var(--bs-body-color-rgb), 0.65);text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.formbody .widget:not(.widget-hr) .form-floating>input.text,.formbody .widget:not(.widget-hr) .form-floating>input.captcha,.formbody .widget:not(.widget-hr) .form-floating>textarea,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder, .formbody .widget:not(.widget-hr) .form-floating>input.text::-moz-placeholder, .formbody .widget:not(.widget-hr) .form-floating>input.captcha::-moz-placeholder, .formbody .widget:not(.widget-hr) .form-floating>textarea::-moz-placeholder, .form-floating>.form-control-plaintext::-moz-placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control::placeholder,.formbody .widget:not(.widget-hr) .form-floating>input.text::placeholder,.formbody .widget:not(.widget-hr) .form-floating>input.captcha::placeholder,.formbody .widget:not(.widget-hr) .form-floating>textarea::placeholder,.form-floating>.form-control-plaintext::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:not(:-moz-placeholder), .formbody .widget:not(.widget-hr) .form-floating>input.text:not(:-moz-placeholder), .formbody .widget:not(.widget-hr) .form-floating>input.captcha:not(:-moz-placeholder), .formbody .widget:not(.widget-hr) .form-floating>textarea:not(:-moz-placeholder), .form-floating>.form-control-plaintext:not(:-moz-placeholder){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.formbody .widget:not(.widget-hr) .form-floating>input.text:focus,.formbody .widget:not(.widget-hr) .form-floating>input.captcha:focus,.formbody .widget:not(.widget-hr) .form-floating>textarea:focus,.form-floating>.form-control:not(:placeholder-shown),.formbody .widget:not(.widget-hr) .form-floating>input.text:not(:placeholder-shown),.formbody .widget:not(.widget-hr) .form-floating>input.captcha:not(:placeholder-shown),.formbody .widget:not(.widget-hr) .form-floating>textarea:not(:placeholder-shown),.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill,.formbody .widget:not(.widget-hr) .form-floating>input.text:-webkit-autofill,.formbody .widget:not(.widget-hr) .form-floating>input.captcha:-webkit-autofill,.formbody .widget:not(.widget-hr) .form-floating>textarea:-webkit-autofill,.form-floating>.form-control-plaintext:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select,.formbody .widget:not(.widget-hr) .form-floating>select{padding-top:1.625rem;padding-bottom:.625rem;padding-left:.75rem}.form-floating>.form-control:not(:-moz-placeholder)~label, .formbody .widget:not(.widget-hr) .form-floating>input.text:not(:-moz-placeholder)~label, .formbody .widget:not(.widget-hr) .form-floating>input.captcha:not(:-moz-placeholder)~label, .formbody .widget:not(.widget-hr) .form-floating>textarea:not(:-moz-placeholder)~label{transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label,.formbody .widget:not(.widget-hr) .form-floating>input.text:focus~label,.formbody .widget:not(.widget-hr) .form-floating>input.captcha:focus~label,.formbody .widget:not(.widget-hr) .form-floating>textarea:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.formbody .widget:not(.widget-hr) .form-floating>input.text:not(:placeholder-shown)~label,.formbody .widget:not(.widget-hr) .form-floating>input.captcha:not(:placeholder-shown)~label,.formbody .widget:not(.widget-hr) .form-floating>textarea:not(:placeholder-shown)~label,.form-floating>.form-control-plaintext~label,.form-floating>.form-select~label,.formbody .widget:not(.widget-hr) .form-floating>select~label{transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:-webkit-autofill~label,.formbody .widget:not(.widget-hr) .form-floating>input.text:-webkit-autofill~label,.formbody .widget:not(.widget-hr) .form-floating>input.captcha:-webkit-autofill~label,.formbody .widget:not(.widget-hr) .form-floating>textarea:-webkit-autofill~label{transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>textarea:not(:-moz-placeholder)~label::after{position:absolute;inset:1rem .375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>textarea:focus~label::after,.form-floating>textarea:not(:placeholder-shown)~label::after{position:absolute;inset:1rem .375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>textarea:disabled~label::after{background-color:var(--bs-secondary-bg)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label,.form-floating>.form-control:disabled~label,.formbody .widget:not(.widget-hr) .form-floating>input.text:disabled~label,.formbody .widget:not(.widget-hr) .form-floating>input.captcha:disabled~label,.formbody .widget:not(.widget-hr) .form-floating>textarea:disabled~label{color:#6c757d}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.formbody .widget:not(.widget-hr) .input-group>input.text,.formbody .widget:not(.widget-hr) .input-group>input.captcha,.formbody .widget:not(.widget-hr) .input-group>textarea,.input-group>.form-select,.formbody .widget:not(.widget-hr) .input-group>select,.input-group>.form-floating{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.formbody .widget:not(.widget-hr) .input-group>input.text:focus,.formbody .widget:not(.widget-hr) .input-group>input.captcha:focus,.formbody .widget:not(.widget-hr) .input-group>textarea:focus,.input-group>.form-select:focus,.formbody .widget:not(.widget-hr) .input-group>select:focus,.input-group>.form-floating:focus-within{z-index:5}.input-group .btn,.input-group .formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-submit .input-group button,.input-group .mod_newsreader .back a,.mod_newsreader .back .input-group a,.input-group .mod_newslist .more a,.mod_newslist .more .input-group a,.input-group .nav-main-toggler-open button,.nav-main-toggler-open .input-group button,.input-group .nav-main-toggler-close button,.nav-main-toggler-close .input-group button{position:relative;z-index:2}.input-group .btn:focus,.input-group .formbody .widget:not(.widget-hr).widget-submit button:focus,.formbody .widget:not(.widget-hr).widget-submit .input-group button:focus,.input-group .mod_newsreader .back a:focus,.mod_newsreader .back .input-group a:focus,.input-group .mod_newslist .more a:focus,.mod_newslist .more .input-group a:focus,.input-group .nav-main-toggler-open button:focus,.nav-main-toggler-open .input-group button:focus,.input-group .nav-main-toggler-close button:focus,.nav-main-toggler-close .input-group button:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.form-control,.formbody .widget:not(.widget-hr) .input-group-lg>input.text,.formbody .widget:not(.widget-hr) .input-group-lg>input.captcha,.formbody .widget:not(.widget-hr) .input-group-lg>textarea,.input-group-lg>.form-select,.formbody .widget:not(.widget-hr) .input-group-lg>select,.input-group-lg>.input-group-text,.input-group-lg>.btn,.formbody .widget:not(.widget-hr).widget-submit .input-group-lg>button,.mod_newsreader .back .input-group-lg>a,.mod_newslist .more .input-group-lg>a,.nav-main-toggler-open .input-group-lg>button,.nav-main-toggler-close .input-group-lg>button{padding:.5rem 1rem;font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.input-group-lg>.form-control,.formbody .widget:not(.widget-hr) .input-group-lg>input.text,.formbody .widget:not(.widget-hr) .input-group-lg>input.captcha,.formbody .widget:not(.widget-hr) .input-group-lg>textarea,.input-group-lg>.form-select,.formbody .widget:not(.widget-hr) .input-group-lg>select,.input-group-lg>.input-group-text,.input-group-lg>.btn,.formbody .widget:not(.widget-hr).widget-submit .input-group-lg>button,.mod_newsreader .back .input-group-lg>a,.mod_newslist .more .input-group-lg>a,.nav-main-toggler-open .input-group-lg>button,.nav-main-toggler-close .input-group-lg>button{font-size:1.25rem}}.input-group-lg>.form-control,.formbody .widget:not(.widget-hr) .input-group-lg>input.text,.formbody .widget:not(.widget-hr) .input-group-lg>input.captcha,.formbody .widget:not(.widget-hr) .input-group-lg>textarea,.input-group-lg>.form-select,.formbody .widget:not(.widget-hr) .input-group-lg>select,.input-group-lg>.input-group-text,.input-group-lg>.btn,.formbody .widget:not(.widget-hr).widget-submit .input-group-lg>button,.mod_newsreader .back .input-group-lg>a,.mod_newslist .more .input-group-lg>a,.nav-main-toggler-open .input-group-lg>button,.nav-main-toggler-close .input-group-lg>button{border-radius:var(--bs-border-radius-lg)}.input-group-sm>.form-control,.formbody .widget:not(.widget-hr) .input-group-sm>input.text,.formbody .widget:not(.widget-hr) .input-group-sm>input.captcha,.formbody .widget:not(.widget-hr) .input-group-sm>textarea,.input-group-sm>.form-select,.formbody .widget:not(.widget-hr) .input-group-sm>select,.input-group-sm>.input-group-text,.input-group-sm>.btn,.formbody .widget:not(.widget-hr).widget-submit .input-group-sm>button,.mod_newsreader .back .input-group-sm>a,.mod_newslist .more .input-group-sm>a,.nav-main-toggler-open .input-group-sm>button,.nav-main-toggler-close .input-group-sm>button{padding:.25rem .5rem;font-size:0.75rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.formbody .widget:not(.widget-hr) .input-group-lg>select,.input-group-sm>.form-select,.formbody .widget:not(.widget-hr) .input-group-sm>select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.formbody .widget:not(.widget-hr) .input-group:not(.has-validation)>.form-floating:not(:last-child)>input.text,.formbody .widget:not(.widget-hr) .input-group:not(.has-validation)>.form-floating:not(:last-child)>input.captcha,.formbody .widget:not(.widget-hr) .input-group:not(.has-validation)>.form-floating:not(:last-child)>textarea,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.formbody .widget:not(.widget-hr) .input-group:not(.has-validation)>.form-floating:not(:last-child)>select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.formbody .widget:not(.widget-hr) .input-group.has-validation>.form-floating:nth-last-child(n+3)>input.text,.formbody .widget:not(.widget-hr) .input-group.has-validation>.form-floating:nth-last-child(n+3)>input.captcha,.formbody .widget:not(.widget-hr) .input-group.has-validation>.form-floating:nth-last-child(n+3)>textarea,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.formbody .widget:not(.widget-hr) .input-group.has-validation>.form-floating:nth-last-child(n+3)>select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(-1*var(--bs-border-width));border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.formbody .widget:not(.widget-hr) .input-group>.form-floating:not(:first-child)>input.text,.formbody .widget:not(.widget-hr) .input-group>.form-floating:not(:first-child)>input.captcha,.formbody .widget:not(.widget-hr) .input-group>.form-floating:not(:first-child)>textarea,.input-group>.form-floating:not(:first-child)>.form-select,.formbody .widget:not(.widget-hr) .input-group>.form-floating:not(:first-child)>select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.75rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.was-validated .formbody .widget:not(.widget-hr) input.text:valid,.formbody .widget:not(.widget-hr) .was-validated input.text:valid,.was-validated .formbody .widget:not(.widget-hr) input.captcha:valid,.formbody .widget:not(.widget-hr) .was-validated input.captcha:valid,.was-validated .formbody .widget:not(.widget-hr) textarea:valid,.formbody .widget:not(.widget-hr) .was-validated textarea:valid,.form-control.is-valid,.formbody .widget:not(.widget-hr) input.is-valid.text,.formbody .widget:not(.widget-hr) input.is-valid.captcha,.formbody .widget:not(.widget-hr) textarea.is-valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23198754%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1%27/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.was-validated .formbody .widget:not(.widget-hr) input.text:valid:focus,.formbody .widget:not(.widget-hr) .was-validated input.text:valid:focus,.was-validated .formbody .widget:not(.widget-hr) input.captcha:valid:focus,.formbody .widget:not(.widget-hr) .was-validated input.captcha:valid:focus,.was-validated .formbody .widget:not(.widget-hr) textarea:valid:focus,.formbody .widget:not(.widget-hr) .was-validated textarea:valid:focus,.form-control.is-valid:focus,.formbody .widget:not(.widget-hr) input.is-valid.text:focus,.formbody .widget:not(.widget-hr) input.is-valid.captcha:focus,.formbody .widget:not(.widget-hr) textarea.is-valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb), 0.25)}.was-validated textarea.form-control:valid,.was-validated .formbody .widget:not(.widget-hr) textarea:valid,.formbody .widget:not(.widget-hr) .was-validated textarea:valid,textarea.form-control.is-valid,.formbody .widget:not(.widget-hr) textarea.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:valid,.was-validated .formbody .widget:not(.widget-hr) select:valid,.formbody .widget:not(.widget-hr) .was-validated select:valid,.form-select.is-valid,.formbody .widget:not(.widget-hr) select.is-valid{border-color:var(--bs-form-valid-border-color)}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .formbody .widget:not(.widget-hr) select:valid:not([multiple]):not([size]),.formbody .widget:not(.widget-hr) .was-validated select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.was-validated .formbody .widget:not(.widget-hr) select:valid:not([multiple])[size="1"],.formbody .widget:not(.widget-hr) .was-validated select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.formbody .widget:not(.widget-hr) select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.formbody .widget:not(.widget-hr) select.is-valid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23198754%27 d=%27M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1%27/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:valid:focus,.was-validated .formbody .widget:not(.widget-hr) select:valid:focus,.formbody .widget:not(.widget-hr) .was-validated select:valid:focus,.form-select.is-valid:focus,.formbody .widget:not(.widget-hr) select.is-valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb), 0.25)}.was-validated .form-control-color:valid,.form-control-color.is-valid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:valid,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:valid,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:valid,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:valid,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:valid,.form-check-input.is-valid,.formbody .widget:not(.widget-hr).widget-radio input.is-valid,.formbody .widget:not(.widget-hr).widget-checkbox input.is-valid{border-color:var(--bs-form-valid-border-color)}.was-validated .form-check-input:valid:checked,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:valid:checked,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:valid:checked,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:valid:checked,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:valid:checked,.form-check-input.is-valid:checked,.formbody .widget:not(.widget-hr).widget-radio input.is-valid:checked,.formbody .widget:not(.widget-hr).widget-checkbox input.is-valid:checked{background-color:var(--bs-form-valid-color)}.was-validated .form-check-input:valid:focus,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:valid:focus,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:valid:focus,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:valid:focus,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:valid:focus,.form-check-input.is-valid:focus,.formbody .widget:not(.widget-hr).widget-radio input.is-valid:focus,.formbody .widget:not(.widget-hr).widget-checkbox input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb), 0.25)}.was-validated .form-check-input:valid~.form-check-label,.was-validated .formbody .widget:not(.widget-hr).widget-radio .form-check-input:valid~label,.formbody .widget:not(.widget-hr).widget-radio .was-validated .form-check-input:valid~label,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox .form-check-input:valid~label,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated .form-check-input:valid~label,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:valid~.form-check-label,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:valid~label,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:valid~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:valid~label,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:valid~.form-check-label,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:valid~label,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:valid~.form-check-label,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:valid~label,.form-check-input.is-valid~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio .form-check-input.is-valid~label,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-input.is-valid~label,.formbody .widget:not(.widget-hr).widget-radio input.is-valid~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio input.is-valid~label,.formbody .widget:not(.widget-hr).widget-checkbox input.is-valid~.form-check-label,.formbody .widget:not(.widget-hr).widget-checkbox input.is-valid~label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-radio input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-radio .form-check-inline input~.valid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-checkbox input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-inline input~.valid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .formbody .widget:not(.widget-hr) .input-group>input.text:not(:focus):valid,.formbody .widget:not(.widget-hr) .was-validated .input-group>input.text:not(:focus):valid,.was-validated .formbody .widget:not(.widget-hr) .input-group>input.captcha:not(:focus):valid,.formbody .widget:not(.widget-hr) .was-validated .input-group>input.captcha:not(:focus):valid,.was-validated .formbody .widget:not(.widget-hr) .input-group>textarea:not(:focus):valid,.formbody .widget:not(.widget-hr) .was-validated .input-group>textarea:not(:focus):valid,.input-group>.form-control:not(:focus).is-valid,.formbody .widget:not(.widget-hr) .input-group>input.text:not(:focus).is-valid,.formbody .widget:not(.widget-hr) .input-group>input.captcha:not(:focus).is-valid,.formbody .widget:not(.widget-hr) .input-group>textarea:not(:focus).is-valid,.was-validated .input-group>.form-select:not(:focus):valid,.was-validated .formbody .widget:not(.widget-hr) .input-group>select:not(:focus):valid,.formbody .widget:not(.widget-hr) .was-validated .input-group>select:not(:focus):valid,.input-group>.form-select:not(:focus).is-valid,.formbody .widget:not(.widget-hr) .input-group>select:not(:focus).is-valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.input-group>.form-floating:not(:focus-within).is-valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.75rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.formbody .widget:not(.widget-hr) input.error~.invalid-feedback,.formbody .widget:not(.widget-hr) textarea.error~.invalid-feedback,.formbody .widget:not(.widget-hr) select.error~.invalid-feedback,.is-invalid~.invalid-tooltip,.formbody .widget:not(.widget-hr) input.error~.invalid-tooltip,.formbody .widget:not(.widget-hr) textarea.error~.invalid-tooltip,.formbody .widget:not(.widget-hr) select.error~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.was-validated .formbody .widget:not(.widget-hr) input.text:invalid,.formbody .widget:not(.widget-hr) .was-validated input.text:invalid,.was-validated .formbody .widget:not(.widget-hr) input.captcha:invalid,.formbody .widget:not(.widget-hr) .was-validated input.captcha:invalid,.was-validated .formbody .widget:not(.widget-hr) textarea:invalid,.formbody .widget:not(.widget-hr) .was-validated textarea:invalid,.form-control.is-invalid,.formbody .widget:not(.widget-hr) input.form-control.error,.formbody .widget:not(.widget-hr) select.form-control.error,.formbody .widget:not(.widget-hr) input.is-invalid.text,.formbody .widget:not(.widget-hr) input.text.error,.formbody .widget:not(.widget-hr) input.is-invalid.captcha,.formbody .widget:not(.widget-hr) input.captcha.error,.formbody .widget:not(.widget-hr) textarea.is-invalid,.formbody .widget:not(.widget-hr) textarea.error{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.was-validated .formbody .widget:not(.widget-hr) input.text:invalid:focus,.formbody .widget:not(.widget-hr) .was-validated input.text:invalid:focus,.was-validated .formbody .widget:not(.widget-hr) input.captcha:invalid:focus,.formbody .widget:not(.widget-hr) .was-validated input.captcha:invalid:focus,.was-validated .formbody .widget:not(.widget-hr) textarea:invalid:focus,.formbody .widget:not(.widget-hr) .was-validated textarea:invalid:focus,.form-control.is-invalid:focus,.formbody .widget:not(.widget-hr) input.form-control.error:focus,.formbody .widget:not(.widget-hr) select.form-control.error:focus,.formbody .widget:not(.widget-hr) input.is-invalid.text:focus,.formbody .widget:not(.widget-hr) input.text.error:focus,.formbody .widget:not(.widget-hr) input.is-invalid.captcha:focus,.formbody .widget:not(.widget-hr) input.captcha.error:focus,.formbody .widget:not(.widget-hr) textarea.is-invalid:focus,.formbody .widget:not(.widget-hr) textarea.error:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb), 0.25)}.was-validated textarea.form-control:invalid,.was-validated .formbody .widget:not(.widget-hr) textarea:invalid,.formbody .widget:not(.widget-hr) .was-validated textarea:invalid,textarea.form-control.is-invalid,.formbody .widget:not(.widget-hr) textarea.is-invalid,.formbody .widget:not(.widget-hr) textarea.error{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:invalid,.was-validated .formbody .widget:not(.widget-hr) select:invalid,.formbody .widget:not(.widget-hr) .was-validated select:invalid,.form-select.is-invalid,.formbody .widget:not(.widget-hr) input.form-select.error,.formbody .widget:not(.widget-hr) textarea.form-select.error,.formbody .widget:not(.widget-hr) select.is-invalid,.formbody .widget:not(.widget-hr) select.error{border-color:var(--bs-form-invalid-border-color)}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .formbody .widget:not(.widget-hr) select:invalid:not([multiple]):not([size]),.formbody .widget:not(.widget-hr) .was-validated select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.was-validated .formbody .widget:not(.widget-hr) select:invalid:not([multiple])[size="1"],.formbody .widget:not(.widget-hr) .was-validated select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.formbody .widget:not(.widget-hr) input.form-select.error:not([multiple]):not([size]),.formbody .widget:not(.widget-hr) textarea.form-select.error:not([multiple]):not([size]),.formbody .widget:not(.widget-hr) select.is-invalid:not([multiple]):not([size]),.formbody .widget:not(.widget-hr) select.error:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.formbody .widget:not(.widget-hr) input.form-select.error:not([multiple])[size="1"],.formbody .widget:not(.widget-hr) textarea.form-select.error:not([multiple])[size="1"],.formbody .widget:not(.widget-hr) select.is-invalid:not([multiple])[size="1"],.formbody .widget:not(.widget-hr) select.error:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 12 12%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:invalid:focus,.was-validated .formbody .widget:not(.widget-hr) select:invalid:focus,.formbody .widget:not(.widget-hr) .was-validated select:invalid:focus,.form-select.is-invalid:focus,.formbody .widget:not(.widget-hr) input.form-select.error:focus,.formbody .widget:not(.widget-hr) textarea.form-select.error:focus,.formbody .widget:not(.widget-hr) select.is-invalid:focus,.formbody .widget:not(.widget-hr) select.error:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb), 0.25)}.was-validated .form-control-color:invalid,.form-control-color.is-invalid,.formbody .widget:not(.widget-hr) input.form-control-color.error,.formbody .widget:not(.widget-hr) textarea.form-control-color.error,.formbody .widget:not(.widget-hr) select.form-control-color.error{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:invalid,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:invalid,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:invalid,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:invalid,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:invalid,.form-check-input.is-invalid,.formbody .widget:not(.widget-hr).widget-radio input.is-invalid,.formbody .widget:not(.widget-hr).widget-checkbox input.is-invalid,.formbody .widget:not(.widget-hr) input.form-check-input.error,.formbody .widget:not(.widget-hr).widget-radio input.error,.formbody .widget:not(.widget-hr).widget-checkbox input.error,.formbody .widget:not(.widget-hr) textarea.form-check-input.error,.formbody .widget:not(.widget-hr) select.form-check-input.error{border-color:var(--bs-form-invalid-border-color)}.was-validated .form-check-input:invalid:checked,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:invalid:checked,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:invalid:checked,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:invalid:checked,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:invalid:checked,.form-check-input.is-invalid:checked,.formbody .widget:not(.widget-hr).widget-radio input.is-invalid:checked,.formbody .widget:not(.widget-hr).widget-checkbox input.is-invalid:checked,.formbody .widget:not(.widget-hr) input.form-check-input.error:checked,.formbody .widget:not(.widget-hr).widget-radio input.error:checked,.formbody .widget:not(.widget-hr).widget-checkbox input.error:checked,.formbody .widget:not(.widget-hr) textarea.form-check-input.error:checked,.formbody .widget:not(.widget-hr) select.form-check-input.error:checked{background-color:var(--bs-form-invalid-color)}.was-validated .form-check-input:invalid:focus,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:invalid:focus,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:invalid:focus,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:invalid:focus,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:invalid:focus,.form-check-input.is-invalid:focus,.formbody .widget:not(.widget-hr).widget-radio input.is-invalid:focus,.formbody .widget:not(.widget-hr).widget-checkbox input.is-invalid:focus,.formbody .widget:not(.widget-hr) input.form-check-input.error:focus,.formbody .widget:not(.widget-hr).widget-radio input.error:focus,.formbody .widget:not(.widget-hr).widget-checkbox input.error:focus,.formbody .widget:not(.widget-hr) textarea.form-check-input.error:focus,.formbody .widget:not(.widget-hr) select.form-check-input.error:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb), 0.25)}.was-validated .form-check-input:invalid~.form-check-label,.was-validated .formbody .widget:not(.widget-hr).widget-radio .form-check-input:invalid~label,.formbody .widget:not(.widget-hr).widget-radio .was-validated .form-check-input:invalid~label,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox .form-check-input:invalid~label,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated .form-check-input:invalid~label,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:invalid~.form-check-label,.was-validated .formbody .widget:not(.widget-hr).widget-radio input:invalid~label,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:invalid~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio .was-validated input:invalid~label,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:invalid~.form-check-label,.was-validated .formbody .widget:not(.widget-hr).widget-checkbox input:invalid~label,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:invalid~.form-check-label,.formbody .widget:not(.widget-hr).widget-checkbox .was-validated input:invalid~label,.form-check-input.is-invalid~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio .form-check-input.is-invalid~label,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-input.is-invalid~label,.formbody .widget:not(.widget-hr).widget-radio input.is-invalid~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio input.is-invalid~label,.formbody .widget:not(.widget-hr).widget-checkbox input.is-invalid~.form-check-label,.formbody .widget:not(.widget-hr).widget-checkbox input.is-invalid~label,.formbody .widget:not(.widget-hr) input.form-check-input.error~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio input.error~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio input.error~label,.formbody .widget:not(.widget-hr).widget-checkbox input.error~.form-check-label,.formbody .widget:not(.widget-hr).widget-checkbox input.error~label,.formbody .widget:not(.widget-hr) textarea.form-check-input.error~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio textarea.form-check-input.error~label,.formbody .widget:not(.widget-hr).widget-checkbox textarea.form-check-input.error~label,.formbody .widget:not(.widget-hr) select.form-check-input.error~.form-check-label,.formbody .widget:not(.widget-hr).widget-radio select.form-check-input.error~label,.formbody .widget:not(.widget-hr).widget-checkbox select.form-check-input.error~label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-radio input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-radio .form-check-inline input~.invalid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-checkbox input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-inline input~.invalid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .formbody .widget:not(.widget-hr) .input-group>input.text:not(:focus):invalid,.formbody .widget:not(.widget-hr) .was-validated .input-group>input.text:not(:focus):invalid,.was-validated .formbody .widget:not(.widget-hr) .input-group>input.captcha:not(:focus):invalid,.formbody .widget:not(.widget-hr) .was-validated .input-group>input.captcha:not(:focus):invalid,.was-validated .formbody .widget:not(.widget-hr) .input-group>textarea:not(:focus):invalid,.formbody .widget:not(.widget-hr) .was-validated .input-group>textarea:not(:focus):invalid,.input-group>.form-control:not(:focus).is-invalid,.formbody .widget:not(.widget-hr) .input-group>input.form-control.error:not(:focus),.formbody .widget:not(.widget-hr) .input-group>input.text:not(:focus).is-invalid,.formbody .widget:not(.widget-hr) .input-group>input.text.error:not(:focus),.formbody .widget:not(.widget-hr) .input-group>input.captcha:not(:focus).is-invalid,.formbody .widget:not(.widget-hr) .input-group>input.captcha.error:not(:focus),.formbody .widget:not(.widget-hr) .input-group>textarea:not(:focus).is-invalid,.formbody .widget:not(.widget-hr) .input-group>textarea.error:not(:focus),.was-validated .input-group>.form-select:not(:focus):invalid,.was-validated .formbody .widget:not(.widget-hr) .input-group>select:not(:focus):invalid,.formbody .widget:not(.widget-hr) .was-validated .input-group>select:not(:focus):invalid,.input-group>.form-select:not(:focus).is-invalid,.formbody .widget:not(.widget-hr) .input-group>input.form-select.error:not(:focus),.formbody .widget:not(.widget-hr) .input-group>select:not(:focus).is-invalid,.formbody .widget:not(.widget-hr) .input-group>select.error:not(:focus),.was-validated .input-group>.form-floating:not(:focus-within):invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.formbody .widget:not(.widget-hr) .input-group>input.form-floating.error:not(:focus-within),.formbody .widget:not(.widget-hr) .input-group>textarea.form-floating.error:not(:focus-within),.formbody .widget:not(.widget-hr) .input-group>select.form-floating.error:not(:focus-within){z-index:4}.btn,.formbody .widget:not(.widget-hr).widget-submit button,.mod_newsreader .back a,.mod_newslist .more a,.nav-main-toggler-open button,.nav-main-toggler-close button{--bs-btn-padding-x: 0.75rem;--bs-btn-padding-y: 0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight: 400;--bs-btn-line-height: 1.5;--bs-btn-color: var(--bs-body-color);--bs-btn-bg: transparent;--bs-btn-border-width: var(--bs-border-width);--bs-btn-border-color: transparent;--bs-btn-border-radius: var(--bs-border-radius);--bs-btn-hover-border-color: transparent;--bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity: 0.65;--bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn,.formbody .widget:not(.widget-hr).widget-submit button,.mod_newsreader .back a,.mod_newslist .more a,.nav-main-toggler-open button,.nav-main-toggler-close button{transition:none}}.btn:hover,.formbody .widget:not(.widget-hr).widget-submit button:hover,.mod_newsreader .back a:hover,.mod_newslist .more a:hover,.nav-main-toggler-open button:hover,.nav-main-toggler-close button:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover,.formbody .widget:not(.widget-hr).widget-submit .btn-check+button:hover,.mod_newsreader .back .btn-check+a:hover,.mod_newslist .more .btn-check+a:hover,.nav-main-toggler-open .btn-check+button:hover,.nav-main-toggler-close .btn-check+button:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button:focus-visible,.mod_newsreader .back a:focus-visible,.mod_newslist .more a:focus-visible,.nav-main-toggler-open button:focus-visible,.nav-main-toggler-close button:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-check:focus-visible+button,.mod_newsreader .back .btn-check:focus-visible+a,.mod_newslist .more .btn-check:focus-visible+a,.nav-main-toggler-open .btn-check:focus-visible+button,.nav-main-toggler-close .btn-check:focus-visible+button{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-check:checked+button,.mod_newsreader .back .btn-check:checked+a,.mod_newslist .more .btn-check:checked+a,.nav-main-toggler-open .btn-check:checked+button,.nav-main-toggler-close .btn-check:checked+button,:not(.btn-check)+.btn:active,.formbody .widget:not(.widget-hr).widget-submit :not(.btn-check)+button:active,.mod_newsreader .back :not(.btn-check)+a:active,.mod_newslist .more :not(.btn-check)+a:active,.nav-main-toggler-open :not(.btn-check)+button:active,.nav-main-toggler-close :not(.btn-check)+button:active,.btn:first-child:active,.formbody .widget:not(.widget-hr).widget-submit button:first-child:active,.mod_newsreader .back a:first-child:active,.mod_newslist .more a:first-child:active,.nav-main-toggler-open button:first-child:active,.nav-main-toggler-close button:first-child:active,.btn.active,.formbody .widget:not(.widget-hr).widget-submit button.active,.mod_newsreader .back a.active,.mod_newslist .more a.active,.nav-main-toggler-open button.active,.nav-main-toggler-close button.active,.btn.show,.formbody .widget:not(.widget-hr).widget-submit button.show,.mod_newsreader .back a.show,.mod_newslist .more a.show,.nav-main-toggler-open button.show,.nav-main-toggler-close button.show{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.formbody .widget:not(.widget-hr).widget-submit .btn-check:checked+button:focus-visible,.mod_newsreader .back .btn-check:checked+a:focus-visible,.mod_newslist .more .btn-check:checked+a:focus-visible,.nav-main-toggler-open .btn-check:checked+button:focus-visible,.nav-main-toggler-close .btn-check:checked+button:focus-visible,:not(.btn-check)+.btn:active:focus-visible,.formbody .widget:not(.widget-hr).widget-submit :not(.btn-check)+button:active:focus-visible,.mod_newsreader .back :not(.btn-check)+a:active:focus-visible,.mod_newslist .more :not(.btn-check)+a:active:focus-visible,.nav-main-toggler-open :not(.btn-check)+button:active:focus-visible,.nav-main-toggler-close :not(.btn-check)+button:active:focus-visible,.btn:first-child:active:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button:first-child:active:focus-visible,.mod_newsreader .back a:first-child:active:focus-visible,.mod_newslist .more a:first-child:active:focus-visible,.nav-main-toggler-open button:first-child:active:focus-visible,.nav-main-toggler-close button:first-child:active:focus-visible,.btn.active:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button.active:focus-visible,.mod_newsreader .back a.active:focus-visible,.mod_newslist .more a.active:focus-visible,.nav-main-toggler-open button.active:focus-visible,.nav-main-toggler-close button.active:focus-visible,.btn.show:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button.show:focus-visible,.mod_newsreader .back a.show:focus-visible,.mod_newslist .more a.show:focus-visible,.nav-main-toggler-open button.show:focus-visible,.nav-main-toggler-close button.show:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked:focus-visible+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-check:checked:focus-visible+button,.mod_newsreader .back .btn-check:checked:focus-visible+a,.mod_newslist .more .btn-check:checked:focus-visible+a,.nav-main-toggler-open .btn-check:checked:focus-visible+button,.nav-main-toggler-close .btn-check:checked:focus-visible+button{box-shadow:var(--bs-btn-focus-box-shadow)}.btn:disabled,.formbody .widget:not(.widget-hr).widget-submit button:disabled,.mod_newsreader .back a:disabled,.mod_newslist .more a:disabled,.nav-main-toggler-open button:disabled,.nav-main-toggler-close button:disabled,.btn.disabled,.formbody .widget:not(.widget-hr).widget-submit button.disabled,.mod_newsreader .back a.disabled,.mod_newslist .more a.disabled,.nav-main-toggler-open button.disabled,.nav-main-toggler-close button.disabled,fieldset:disabled .btn,fieldset:disabled .formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-submit fieldset:disabled button,fieldset:disabled .mod_newsreader .back a,.mod_newsreader .back fieldset:disabled a,fieldset:disabled .mod_newslist .more a,.mod_newslist .more fieldset:disabled a,fieldset:disabled .nav-main-toggler-open button,.nav-main-toggler-open fieldset:disabled button,fieldset:disabled .nav-main-toggler-close button,.nav-main-toggler-close fieldset:disabled button{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary,.formbody .widget:not(.widget-hr).widget-submit button,.mod_newslist .more a,.nav-main-toggler-open button{--bs-btn-color: #000;--bs-btn-bg: #fc8b35;--bs-btn-border-color: #fc8b35;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(252.45, 156.4, 83.3);--bs-btn-hover-border-color: rgb(252.3, 150.6, 73.2);--bs-btn-focus-shadow-rgb: 214, 118, 45;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(252.6, 162.2, 93.4);--bs-btn-active-border-color: rgb(252.3, 150.6, 73.2);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #fc8b35;--bs-btn-disabled-border-color: #fc8b35}.btn-secondary,.nav-main-toggler-close button{--bs-btn-color: #fff;--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);--bs-btn-hover-border-color: rgb(86.4, 93.6, 100);--bs-btn-focus-shadow-rgb: 130, 138, 145;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(86.4, 93.6, 100);--bs-btn-active-border-color: rgb(81, 87.75, 93.75);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}.btn-success{--bs-btn-color: #fff;--bs-btn-bg: #198754;--bs-btn-border-color: #198754;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(21.25, 114.75, 71.4);--bs-btn-hover-border-color: rgb(20, 108, 67.2);--bs-btn-focus-shadow-rgb: 60, 153, 110;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(20, 108, 67.2);--bs-btn-active-border-color: rgb(18.75, 101.25, 63);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #198754;--bs-btn-disabled-border-color: #198754}.btn-info{--bs-btn-color: #000;--bs-btn-bg: #0dcaf0;--bs-btn-border-color: #0dcaf0;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(49.3, 209.95, 242.25);--bs-btn-hover-border-color: rgb(37.2, 207.3, 241.5);--bs-btn-focus-shadow-rgb: 11, 172, 204;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(61.4, 212.6, 243);--bs-btn-active-border-color: rgb(37.2, 207.3, 241.5);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #0dcaf0;--bs-btn-disabled-border-color: #0dcaf0}.btn-warning{--bs-btn-color: #000;--bs-btn-bg: #ffc107;--bs-btn-border-color: #ffc107;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(255, 202.3, 44.2);--bs-btn-hover-border-color: rgb(255, 199.2, 31.8);--bs-btn-focus-shadow-rgb: 217, 164, 6;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(255, 205.4, 56.6);--bs-btn-active-border-color: rgb(255, 199.2, 31.8);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #ffc107;--bs-btn-disabled-border-color: #ffc107}.btn-danger{--bs-btn-color: #fff;--bs-btn-bg: #dc3545;--bs-btn-border-color: #dc3545;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(187, 45.05, 58.65);--bs-btn-hover-border-color: rgb(176, 42.4, 55.2);--bs-btn-focus-shadow-rgb: 225, 83, 97;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(176, 42.4, 55.2);--bs-btn-active-border-color: rgb(165, 39.75, 51.75);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #dc3545;--bs-btn-disabled-border-color: #dc3545}.btn-light{--bs-btn-color: #000;--bs-btn-bg: #e9ecef;--bs-btn-border-color: #e9ecef;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(198.05, 200.6, 203.15);--bs-btn-hover-border-color: rgb(186.4, 188.8, 191.2);--bs-btn-focus-shadow-rgb: 198, 201, 203;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(186.4, 188.8, 191.2);--bs-btn-active-border-color: rgb(174.75, 177, 179.25);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #e9ecef;--bs-btn-disabled-border-color: #e9ecef}.btn-dark{--bs-btn-color: #fff;--bs-btn-bg: #212529;--bs-btn-border-color: #212529;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(66.3, 69.7, 73.1);--bs-btn-hover-border-color: rgb(55.2, 58.8, 62.4);--bs-btn-focus-shadow-rgb: 66, 70, 73;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(77.4, 80.6, 83.8);--bs-btn-active-border-color: rgb(55.2, 58.8, 62.4);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #212529;--bs-btn-disabled-border-color: #212529}.btn-lightest{--bs-btn-color: #000;--bs-btn-bg: #fff;--bs-btn-border-color: #fff;--bs-btn-hover-color: #000;--bs-btn-hover-bg: white;--bs-btn-hover-border-color: white;--bs-btn-focus-shadow-rgb: 217, 217, 217;--bs-btn-active-color: #000;--bs-btn-active-bg: white;--bs-btn-active-border-color: white;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #fff;--bs-btn-disabled-border-color: #fff}.btn-outline-primary,.mod_newsreader .back a{--bs-btn-color: #fc8b35;--bs-btn-border-color: #fc8b35;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #fc8b35;--bs-btn-hover-border-color: #fc8b35;--bs-btn-focus-shadow-rgb: 252, 139, 53;--bs-btn-active-color: #000;--bs-btn-active-bg: #fc8b35;--bs-btn-active-border-color: #fc8b35;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fc8b35;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #fc8b35;--bs-gradient: none}.btn-outline-secondary{--bs-btn-color: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #6c757d;--bs-btn-hover-border-color: #6c757d;--bs-btn-focus-shadow-rgb: 108, 117, 125;--bs-btn-active-color: #fff;--bs-btn-active-bg: #6c757d;--bs-btn-active-border-color: #6c757d;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #6c757d;--bs-gradient: none}.btn-outline-success{--bs-btn-color: #198754;--bs-btn-border-color: #198754;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #198754;--bs-btn-hover-border-color: #198754;--bs-btn-focus-shadow-rgb: 25, 135, 84;--bs-btn-active-color: #fff;--bs-btn-active-bg: #198754;--bs-btn-active-border-color: #198754;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #198754;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #198754;--bs-gradient: none}.btn-outline-info{--bs-btn-color: #0dcaf0;--bs-btn-border-color: #0dcaf0;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #0dcaf0;--bs-btn-hover-border-color: #0dcaf0;--bs-btn-focus-shadow-rgb: 13, 202, 240;--bs-btn-active-color: #000;--bs-btn-active-bg: #0dcaf0;--bs-btn-active-border-color: #0dcaf0;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #0dcaf0;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #0dcaf0;--bs-gradient: none}.btn-outline-warning{--bs-btn-color: #ffc107;--bs-btn-border-color: #ffc107;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #ffc107;--bs-btn-hover-border-color: #ffc107;--bs-btn-focus-shadow-rgb: 255, 193, 7;--bs-btn-active-color: #000;--bs-btn-active-bg: #ffc107;--bs-btn-active-border-color: #ffc107;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffc107;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #ffc107;--bs-gradient: none}.btn-outline-danger{--bs-btn-color: #dc3545;--bs-btn-border-color: #dc3545;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #dc3545;--bs-btn-hover-border-color: #dc3545;--bs-btn-focus-shadow-rgb: 220, 53, 69;--bs-btn-active-color: #fff;--bs-btn-active-bg: #dc3545;--bs-btn-active-border-color: #dc3545;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #dc3545;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #dc3545;--bs-gradient: none}.btn-outline-light{--bs-btn-color: #e9ecef;--bs-btn-border-color: #e9ecef;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #e9ecef;--bs-btn-hover-border-color: #e9ecef;--bs-btn-focus-shadow-rgb: 233, 236, 239;--bs-btn-active-color: #000;--bs-btn-active-bg: #e9ecef;--bs-btn-active-border-color: #e9ecef;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #e9ecef;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #e9ecef;--bs-gradient: none}.btn-outline-dark{--bs-btn-color: #212529;--bs-btn-border-color: #212529;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #212529;--bs-btn-hover-border-color: #212529;--bs-btn-focus-shadow-rgb: 33, 37, 41;--bs-btn-active-color: #fff;--bs-btn-active-bg: #212529;--bs-btn-active-border-color: #212529;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #212529;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #212529;--bs-gradient: none}.btn-outline-lightest{--bs-btn-color: #fff;--bs-btn-border-color: #fff;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #fff;--bs-btn-hover-border-color: #fff;--bs-btn-focus-shadow-rgb: 255, 255, 255;--bs-btn-active-color: #000;--bs-btn-active-bg: #fff;--bs-btn-active-border-color: #fff;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #fff;--bs-gradient: none}.btn-link{--bs-btn-font-weight: 400;--bs-btn-color: var(--bs-link-color);--bs-btn-bg: transparent;--bs-btn-border-color: transparent;--bs-btn-hover-color: var(--bs-link-hover-color);--bs-btn-hover-border-color: transparent;--bs-btn-active-color: var(--bs-link-hover-color);--bs-btn-active-border-color: transparent;--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-border-color: transparent;--bs-btn-box-shadow: 0 0 0 #000;--bs-btn-focus-shadow-rgb: 214, 118, 45;text-decoration:none}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg,.btn-group-lg>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button,.mod_newsreader .back .btn-group-lg>a,.mod_newslist .more .btn-group-lg>a,.nav-main-toggler-open .btn-group-lg>button,.nav-main-toggler-close .btn-group-lg>button{--bs-btn-padding-y: 0.5rem;--bs-btn-padding-x: 1rem;--bs-btn-font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.btn-lg,.btn-group-lg>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button,.mod_newsreader .back .btn-group-lg>a,.mod_newslist .more .btn-group-lg>a,.nav-main-toggler-open .btn-group-lg>button,.nav-main-toggler-close .btn-group-lg>button{--bs-btn-font-size:1.25rem}}.btn-lg,.btn-group-lg>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button,.mod_newsreader .back .btn-group-lg>a,.mod_newslist .more .btn-group-lg>a,.nav-main-toggler-open .btn-group-lg>button,.nav-main-toggler-close .btn-group-lg>button{--bs-btn-border-radius: var(--bs-border-radius-lg)}.btn-sm,.btn-group-sm>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-sm>button,.mod_newsreader .back .btn-group-sm>a,.mod_newslist .more .btn-group-sm>a,.nav-main-toggler-open .btn-group-sm>button,.nav-main-toggler-close .btn-group-sm>button{--bs-btn-padding-y: 0.25rem;--bs-btn-padding-x: 0.5rem;--bs-btn-font-size:0.75rem;--bs-btn-border-radius: var(--bs-border-radius-sm)}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button,.mod_newsreader .back .btn-group>a,.mod_newslist .more .btn-group>a,.nav-main-toggler-open .btn-group>button,.nav-main-toggler-close .btn-group>button,.btn-group-vertical>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button,.mod_newsreader .back .btn-group-vertical>a,.mod_newslist .more .btn-group-vertical>a,.nav-main-toggler-open .btn-group-vertical>button,.nav-main-toggler-close .btn-group-vertical>button{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-check:checked+button,.mod_newsreader .back .btn-group>.btn-check:checked+a,.mod_newslist .more .btn-group>.btn-check:checked+a,.nav-main-toggler-open .btn-group>.btn-check:checked+button,.nav-main-toggler-close .btn-group>.btn-check:checked+button,.btn-group>.btn-check:focus+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-check:focus+button,.mod_newsreader .back .btn-group>.btn-check:focus+a,.mod_newslist .more .btn-group>.btn-check:focus+a,.nav-main-toggler-open .btn-group>.btn-check:focus+button,.nav-main-toggler-close .btn-group>.btn-check:focus+button,.btn-group>.btn:hover,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:hover,.mod_newsreader .back .btn-group>a:hover,.mod_newslist .more .btn-group>a:hover,.nav-main-toggler-open .btn-group>button:hover,.nav-main-toggler-close .btn-group>button:hover,.btn-group>.btn:focus,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:focus,.mod_newsreader .back .btn-group>a:focus,.mod_newslist .more .btn-group>a:focus,.nav-main-toggler-open .btn-group>button:focus,.nav-main-toggler-close .btn-group>button:focus,.btn-group>.btn:active,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:active,.mod_newsreader .back .btn-group>a:active,.mod_newslist .more .btn-group>a:active,.nav-main-toggler-open .btn-group>button:active,.nav-main-toggler-close .btn-group>button:active,.btn-group>.btn.active,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button.active,.mod_newsreader .back .btn-group>a.active,.mod_newslist .more .btn-group>a.active,.nav-main-toggler-open .btn-group>button.active,.nav-main-toggler-close .btn-group>button.active,.btn-group-vertical>.btn-check:checked+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-check:checked+button,.mod_newsreader .back .btn-group-vertical>.btn-check:checked+a,.mod_newslist .more .btn-group-vertical>.btn-check:checked+a,.nav-main-toggler-open .btn-group-vertical>.btn-check:checked+button,.nav-main-toggler-close .btn-group-vertical>.btn-check:checked+button,.btn-group-vertical>.btn-check:focus+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-check:focus+button,.mod_newsreader .back .btn-group-vertical>.btn-check:focus+a,.mod_newslist .more .btn-group-vertical>.btn-check:focus+a,.nav-main-toggler-open .btn-group-vertical>.btn-check:focus+button,.nav-main-toggler-close .btn-group-vertical>.btn-check:focus+button,.btn-group-vertical>.btn:hover,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:hover,.mod_newsreader .back .btn-group-vertical>a:hover,.mod_newslist .more .btn-group-vertical>a:hover,.nav-main-toggler-open .btn-group-vertical>button:hover,.nav-main-toggler-close .btn-group-vertical>button:hover,.btn-group-vertical>.btn:focus,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:focus,.mod_newsreader .back .btn-group-vertical>a:focus,.mod_newslist .more .btn-group-vertical>a:focus,.nav-main-toggler-open .btn-group-vertical>button:focus,.nav-main-toggler-close .btn-group-vertical>button:focus,.btn-group-vertical>.btn:active,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:active,.mod_newsreader .back .btn-group-vertical>a:active,.mod_newslist .more .btn-group-vertical>a:active,.nav-main-toggler-open .btn-group-vertical>button:active,.nav-main-toggler-close .btn-group-vertical>button:active,.btn-group-vertical>.btn.active,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button.active,.mod_newsreader .back .btn-group-vertical>a.active,.mod_newslist .more .btn-group-vertical>a.active,.nav-main-toggler-open .btn-group-vertical>button.active,.nav-main-toggler-close .btn-group-vertical>button.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>:not(.btn-check:first-child)+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group>:not(.btn-check:first-child)+button,.mod_newsreader .back .btn-group>:not(.btn-check:first-child)+a,.mod_newslist .more .btn-group>:not(.btn-check:first-child)+a,.nav-main-toggler-open .btn-group>:not(.btn-check:first-child)+button,.nav-main-toggler-close .btn-group>:not(.btn-check:first-child)+button,.btn-group>.btn-group:not(:first-child){margin-left:calc(-1*var(--bs-border-width))}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:not(:last-child):not(.dropdown-toggle),.mod_newsreader .back .btn-group>a:not(:last-child):not(.dropdown-toggle),.mod_newslist .more .btn-group>a:not(:last-child):not(.dropdown-toggle),.nav-main-toggler-open .btn-group>button:not(:last-child):not(.dropdown-toggle),.nav-main-toggler-close .btn-group>button:not(:last-child):not(.dropdown-toggle),.btn-group>.btn.dropdown-toggle-split:first-child,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button.dropdown-toggle-split:first-child,.mod_newsreader .back .btn-group>a.dropdown-toggle-split:first-child,.mod_newslist .more .btn-group>a.dropdown-toggle-split:first-child,.nav-main-toggler-open .btn-group>button.dropdown-toggle-split:first-child,.nav-main-toggler-close .btn-group>button.dropdown-toggle-split:first-child,.btn-group>.btn-group:not(:last-child)>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-group:not(:last-child)>button,.mod_newsreader .back .btn-group>.btn-group:not(:last-child)>a,.mod_newslist .more .btn-group>.btn-group:not(:last-child)>a,.nav-main-toggler-open .btn-group>.btn-group:not(:last-child)>button,.nav-main-toggler-close .btn-group>.btn-group:not(:last-child)>button{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:nth-child(n+3),.mod_newsreader .back .btn-group>a:nth-child(n+3),.mod_newslist .more .btn-group>a:nth-child(n+3),.nav-main-toggler-open .btn-group>button:nth-child(n+3),.nav-main-toggler-close .btn-group>button:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group>:not(.btn-check)+button,.mod_newsreader .back .btn-group>:not(.btn-check)+a,.mod_newslist .more .btn-group>:not(.btn-check)+a,.nav-main-toggler-open .btn-group>:not(.btn-check)+button,.nav-main-toggler-close .btn-group>:not(.btn-check)+button,.btn-group>.btn-group:not(:first-child)>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-group:not(:first-child)>button,.mod_newsreader .back .btn-group>.btn-group:not(:first-child)>a,.mod_newslist .more .btn-group>.btn-group:not(:first-child)>a,.nav-main-toggler-open .btn-group>.btn-group:not(:first-child)>button,.nav-main-toggler-close .btn-group>.btn-group:not(:first-child)>button{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split,.formbody .widget:not(.widget-hr).widget-submit .btn-group-sm>button+.dropdown-toggle-split,.mod_newsreader .back .btn-group-sm>a+.dropdown-toggle-split,.mod_newslist .more .btn-group-sm>a+.dropdown-toggle-split,.nav-main-toggler-open .btn-group-sm>button+.dropdown-toggle-split,.nav-main-toggler-close .btn-group-sm>button+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button+.dropdown-toggle-split,.mod_newsreader .back .btn-group-lg>a+.dropdown-toggle-split,.mod_newslist .more .btn-group-lg>a+.dropdown-toggle-split,.nav-main-toggler-open .btn-group-lg>button+.dropdown-toggle-split,.nav-main-toggler-close .btn-group-lg>button+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button,.mod_newsreader .back .btn-group-vertical>a,.mod_newslist .more .btn-group-vertical>a,.nav-main-toggler-open .btn-group-vertical>button,.nav-main-toggler-close .btn-group-vertical>button,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:not(:first-child),.mod_newsreader .back .btn-group-vertical>a:not(:first-child),.mod_newslist .more .btn-group-vertical>a:not(:first-child),.nav-main-toggler-open .btn-group-vertical>button:not(:first-child),.nav-main-toggler-close .btn-group-vertical>button:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:calc(-1*var(--bs-border-width))}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),.mod_newsreader .back .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.mod_newslist .more .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.nav-main-toggler-open .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),.nav-main-toggler-close .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-group:not(:last-child)>button,.mod_newsreader .back .btn-group-vertical>.btn-group:not(:last-child)>a,.mod_newslist .more .btn-group-vertical>.btn-group:not(:last-child)>a,.nav-main-toggler-open .btn-group-vertical>.btn-group:not(:last-child)>button,.nav-main-toggler-close .btn-group-vertical>.btn-group:not(:last-child)>button{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:nth-child(n+3),.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:nth-child(n+3),.mod_newsreader .back .btn-group-vertical>a:nth-child(n+3),.mod_newslist .more .btn-group-vertical>a:nth-child(n+3),.nav-main-toggler-open .btn-group-vertical>button:nth-child(n+3),.nav-main-toggler-close .btn-group-vertical>button:nth-child(n+3),.btn-group-vertical>:not(.btn-check)+.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>:not(.btn-check)+button,.mod_newsreader .back .btn-group-vertical>:not(.btn-check)+a,.mod_newslist .more .btn-group-vertical>:not(.btn-check)+a,.nav-main-toggler-open .btn-group-vertical>:not(.btn-check)+button,.nav-main-toggler-close .btn-group-vertical>:not(.btn-check)+button,.btn-group-vertical>.btn-group:not(:first-child)>.btn,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-group:not(:first-child)>button,.mod_newsreader .back .btn-group-vertical>.btn-group:not(:first-child)>a,.mod_newslist .more .btn-group-vertical>.btn-group:not(:first-child)>a,.nav-main-toggler-open .btn-group-vertical>.btn-group:not(:first-child)>button,.nav-main-toggler-close .btn-group-vertical>.btn-group:not(:first-child)>button{border-top-left-radius:0;border-top-right-radius:0}.card{--bs-card-spacer-y: 1rem;--bs-card-spacer-x: 1rem;--bs-card-title-spacer-y: 0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width: var(--bs-border-width);--bs-card-border-color: var(--bs-border-color-translucent);--bs-card-border-radius: var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y: 0.5rem;--bs-card-cap-padding-x: 1rem;--bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg: var(--bs-body-bg);--bs-card-img-overlay-padding: 1rem;--bs-card-group-margin: 0.9375rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-0.5*var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-bottom:calc(-1*var(--bs-card-cap-padding-y));margin-left:calc(-0.5*var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-left:calc(-0.5*var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child)>.card-img-top,.card-group>.card:not(:last-child)>.card-header{border-top-right-radius:0}.card-group>.card:not(:last-child)>.card-img-bottom,.card-group>.card:not(:last-child)>.card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child)>.card-img-top,.card-group>.card:not(:first-child)>.card-header{border-top-left-radius:0}.card-group>.card:not(:first-child)>.card-img-bottom,.card-group>.card:not(:first-child)>.card-footer{border-bottom-left-radius:0}}.accordion{--bs-accordion-color: var(--bs-body-color);--bs-accordion-bg: var(--bs-body-bg);--bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;--bs-accordion-border-color: var(--bs-border-color);--bs-accordion-border-width: var(--bs-border-width);--bs-accordion-border-radius: var(--bs-border-radius);--bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x: 1.25rem;--bs-accordion-btn-padding-y: 1rem;--bs-accordion-btn-color: var(--bs-body-color);--bs-accordion-btn-bg: var(--bs-accordion-bg);--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27none%27 stroke=%27%23212529%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpath d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");--bs-accordion-btn-icon-width: 1.25rem;--bs-accordion-btn-icon-transform: rotate(-180deg);--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27none%27 stroke=%27rgb%28100.8, 55.6, 21.2%29%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpath d=%27m2 5 6 6 6-6%27/%3e%3c/svg%3e");--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(252, 139, 53, 0.25);--bs-accordion-body-padding-x: 1.25rem;--bs-accordion-body-padding-y: 1rem;--bs-accordion-active-color: var(--bs-primary-text-emphasis);--bs-accordion-active-bg: var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1*var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type>.accordion-header .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type>.accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush>.accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush>.accordion-item:first-child{border-top:0}.accordion-flush>.accordion-item:last-child{border-bottom:0}.accordion-flush>.accordion-item>.accordion-collapse,.accordion-flush>.accordion-item>.accordion-header .accordion-button,.accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed{border-radius:0}.alert{--bs-alert-bg: transparent;--bs-alert-padding-x: 1rem;--bs-alert-padding-y: 1rem;--bs-alert-margin-bottom: 1rem;--bs-alert-color: inherit;--bs-alert-border-color: transparent;--bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius: var(--bs-border-radius);--bs-alert-link-color: inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color: var(--bs-primary-text-emphasis);--bs-alert-bg: var(--bs-primary-bg-subtle);--bs-alert-border-color: var(--bs-primary-border-subtle);--bs-alert-link-color: var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color: var(--bs-secondary-text-emphasis);--bs-alert-bg: var(--bs-secondary-bg-subtle);--bs-alert-border-color: var(--bs-secondary-border-subtle);--bs-alert-link-color: var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color: var(--bs-success-text-emphasis);--bs-alert-bg: var(--bs-success-bg-subtle);--bs-alert-border-color: var(--bs-success-border-subtle);--bs-alert-link-color: var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color: var(--bs-info-text-emphasis);--bs-alert-bg: var(--bs-info-bg-subtle);--bs-alert-border-color: var(--bs-info-border-subtle);--bs-alert-link-color: var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color: var(--bs-warning-text-emphasis);--bs-alert-bg: var(--bs-warning-bg-subtle);--bs-alert-border-color: var(--bs-warning-border-subtle);--bs-alert-link-color: var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color: var(--bs-danger-text-emphasis);--bs-alert-bg: var(--bs-danger-bg-subtle);--bs-alert-border-color: var(--bs-danger-border-subtle);--bs-alert-link-color: var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color: var(--bs-light-text-emphasis);--bs-alert-bg: var(--bs-light-bg-subtle);--bs-alert-border-color: var(--bs-light-border-subtle);--bs-alert-link-color: var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color: var(--bs-dark-text-emphasis);--bs-alert-bg: var(--bs-dark-bg-subtle);--bs-alert-border-color: var(--bs-dark-border-subtle);--bs-alert-link-color: var(--bs-dark-text-emphasis)}.alert-lightest{--bs-alert-color: var(--bs-lightest-text-emphasis);--bs-alert-bg: var(--bs-lightest-bg-subtle);--bs-alert-border-color: var(--bs-lightest-border-subtle);--bs-alert-link-color: var(--bs-lightest-text-emphasis)}.list-group{--bs-list-group-color: var(--bs-body-color);--bs-list-group-bg: var(--bs-body-bg);--bs-list-group-border-color: var(--bs-border-color);--bs-list-group-border-width: var(--bs-border-width);--bs-list-group-border-radius: var(--bs-border-radius);--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: 0.5rem;--bs-list-group-action-color: var(--bs-secondary-color);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-tertiary-bg);--bs-list-group-action-active-color: var(--bs-body-color);--bs-list-group-action-active-bg: var(--bs-secondary-bg);--bs-list-group-disabled-color: var(--bs-secondary-color);--bs-list-group-disabled-bg: var(--bs-body-bg);--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #fc8b35;--bs-list-group-active-border-color: #fc8b35;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1*var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:not(.active):hover,.list-group-item-action:not(.active):focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:not(.active):active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media(min-width: 414px){.list-group-horizontal-xs{flex-direction:row}.list-group-horizontal-xs>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xs>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xs>.list-group-item.active{margin-top:0}.list-group-horizontal-xs>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xs>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1600px){.list-group-horizontal-xxxl{flex-direction:row}.list-group-horizontal-xxxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxxl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color: var(--bs-primary-text-emphasis);--bs-list-group-bg: var(--bs-primary-bg-subtle);--bs-list-group-border-color: var(--bs-primary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-primary-border-subtle);--bs-list-group-active-color: var(--bs-primary-bg-subtle);--bs-list-group-active-bg: var(--bs-primary-text-emphasis);--bs-list-group-active-border-color: var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color: var(--bs-secondary-text-emphasis);--bs-list-group-bg: var(--bs-secondary-bg-subtle);--bs-list-group-border-color: var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);--bs-list-group-active-color: var(--bs-secondary-bg-subtle);--bs-list-group-active-bg: var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color: var(--bs-success-text-emphasis);--bs-list-group-bg: var(--bs-success-bg-subtle);--bs-list-group-border-color: var(--bs-success-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-success-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-success-border-subtle);--bs-list-group-active-color: var(--bs-success-bg-subtle);--bs-list-group-active-bg: var(--bs-success-text-emphasis);--bs-list-group-active-border-color: var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color: var(--bs-info-text-emphasis);--bs-list-group-bg: var(--bs-info-bg-subtle);--bs-list-group-border-color: var(--bs-info-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-info-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-info-border-subtle);--bs-list-group-active-color: var(--bs-info-bg-subtle);--bs-list-group-active-bg: var(--bs-info-text-emphasis);--bs-list-group-active-border-color: var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color: var(--bs-warning-text-emphasis);--bs-list-group-bg: var(--bs-warning-bg-subtle);--bs-list-group-border-color: var(--bs-warning-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-warning-border-subtle);--bs-list-group-active-color: var(--bs-warning-bg-subtle);--bs-list-group-active-bg: var(--bs-warning-text-emphasis);--bs-list-group-active-border-color: var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color: var(--bs-danger-text-emphasis);--bs-list-group-bg: var(--bs-danger-bg-subtle);--bs-list-group-border-color: var(--bs-danger-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-danger-border-subtle);--bs-list-group-active-color: var(--bs-danger-bg-subtle);--bs-list-group-active-bg: var(--bs-danger-text-emphasis);--bs-list-group-active-border-color: var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color: var(--bs-light-text-emphasis);--bs-list-group-bg: var(--bs-light-bg-subtle);--bs-list-group-border-color: var(--bs-light-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-light-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-light-border-subtle);--bs-list-group-active-color: var(--bs-light-bg-subtle);--bs-list-group-active-bg: var(--bs-light-text-emphasis);--bs-list-group-active-border-color: var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color: var(--bs-dark-text-emphasis);--bs-list-group-bg: var(--bs-dark-bg-subtle);--bs-list-group-border-color: var(--bs-dark-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-dark-border-subtle);--bs-list-group-active-color: var(--bs-dark-bg-subtle);--bs-list-group-active-bg: var(--bs-dark-text-emphasis);--bs-list-group-active-border-color: var(--bs-dark-text-emphasis)}.list-group-item-lightest{--bs-list-group-color: var(--bs-lightest-text-emphasis);--bs-list-group-bg: var(--bs-lightest-bg-subtle);--bs-list-group-border-color: var(--bs-lightest-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-lightest-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-lightest-border-subtle);--bs-list-group-active-color: var(--bs-lightest-bg-subtle);--bs-list-group-active-bg: var(--bs-lightest-text-emphasis);--bs-list-group-active-border-color: var(--bs-lightest-text-emphasis)}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#000 !important;background-color:RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#fff !important;background-color:RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#000 !important;background-color:RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#000 !important;background-color:RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#000 !important;background-color:RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#fff !important;background-color:RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-lightest{color:#000 !important;background-color:RGBA(var(--bs-lightest-rgb), var(--bs-bg-opacity, 1)) !important}.link-primary{color:RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-primary:hover,.link-primary:focus{color:RGBA(253, 162, 93, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(253, 162, 93, var(--bs-link-underline-opacity, 1)) !important}.link-secondary{color:RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-secondary:hover,.link-secondary:focus{color:RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important}.link-success{color:RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-success:hover,.link-success:focus{color:RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important}.link-info{color:RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-info:hover,.link-info:focus{color:RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important}.link-warning{color:RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-warning:hover,.link-warning:focus{color:RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important}.link-danger{color:RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-danger:hover,.link-danger:focus{color:RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important}.link-light{color:RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-light:hover,.link-light:focus{color:RGBA(237, 240, 242, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(237, 240, 242, var(--bs-link-underline-opacity, 1)) !important}.link-dark{color:RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-dark:hover,.link-dark:focus{color:RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important}.link-lightest{color:RGBA(var(--bs-lightest-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-lightest-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-lightest:hover,.link-lightest:focus{color:RGBA(255, 255, 255, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 255, 255, var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis:hover,.link-body-emphasis:focus{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));text-underline-offset:.25em;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media(prefers-reduced-motion: reduce){.icon-link>.bi{transition:none}}.icon-link-hover:hover>.bi,.icon-link-hover:focus-visible>.bi{transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio,.video_container .responsive{position:relative;width:100%}.ratio::before,.video_container .responsive::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*,.video_container .responsive>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-3x2,.video_container .responsive.ratio-32{--bs-aspect-ratio: 66.6666666667%}.ratio-4x3,.video_container .responsive.ratio-43{--bs-aspect-ratio: 75%}.ratio-16x9,.video_container .responsive.ratio-169{--bs-aspect-ratio: 56.25%}.ratio-16x10,.video_container .responsive.ratio-1610{--bs-aspect-ratio: 62.5%}.ratio-21x9,.video_container .responsive.ratio-219{--bs-aspect-ratio: 42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}.sticky-bottom{position:sticky;bottom:0;z-index:1020}@media(min-width: 414px){.sticky-xs-top{position:sticky;top:0;z-index:1020}.sticky-xs-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1600px){.sticky-xxxl-top{position:sticky;top:0;z-index:1020}.sticky-xxxl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.visually-hidden:not(caption),.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption){position:absolute !important}.visually-hidden *,.visually-hidden-focusable:not(:focus):not(:focus-within) *{overflow:hidden !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:var(--bs-border-width);min-height:1em;background-color:currentcolor;opacity:1}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.object-fit-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-none{-o-object-fit:none !important;object-fit:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.overflow-x-auto{overflow-x:auto !important}.overflow-x-hidden{overflow-x:hidden !important}.overflow-x-visible{overflow-x:visible !important}.overflow-x-scroll{overflow-x:scroll !important}.overflow-y-auto{overflow-y:auto !important}.overflow-y-hidden{overflow-y:hidden !important}.overflow-y-visible{overflow-y:visible !important}.overflow-y-scroll{overflow-y:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-inline-grid{display:inline-grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:var(--bs-box-shadow) !important}.shadow-sm{box-shadow:var(--bs-box-shadow-sm) !important}.shadow-lg{box-shadow:var(--bs-box-shadow-lg) !important}.shadow-none{box-shadow:none !important}.focus-ring-primary{--bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.focus-ring-lightest{--bs-focus-ring-color: rgba(var(--bs-lightest-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-0{border:0 !important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-top-0{border-top:0 !important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-start-0{border-left:0 !important}.border-primary{--bs-border-opacity: 1;border-color:rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important}.border-secondary{--bs-border-opacity: 1;border-color:rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important}.border-success{--bs-border-opacity: 1;border-color:rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important}.border-info{--bs-border-opacity: 1;border-color:rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important}.border-warning{--bs-border-opacity: 1;border-color:rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important}.border-danger{--bs-border-opacity: 1;border-color:rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important}.border-light{--bs-border-opacity: 1;border-color:rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important}.border-dark{--bs-border-opacity: 1;border-color:rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important}.border-lightest{--bs-border-opacity: 1;border-color:rgba(var(--bs-lightest-rgb), var(--bs-border-opacity)) !important}.border-black{--bs-border-opacity: 1;border-color:rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important}.border-white{--bs-border-opacity: 1;border-color:rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle) !important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle) !important}.border-success-subtle{border-color:var(--bs-success-border-subtle) !important}.border-info-subtle{border-color:var(--bs-info-border-subtle) !important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle) !important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle) !important}.border-light-subtle{border-color:var(--bs-light-border-subtle) !important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle) !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.border-opacity-10{--bs-border-opacity: 0.1}.border-opacity-25{--bs-border-opacity: 0.25}.border-opacity-50{--bs-border-opacity: 0.5}.border-opacity-75{--bs-border-opacity: 0.75}.border-opacity-100{--bs-border-opacity: 1}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center,.pw-teaser-special>.row{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-10{margin:.1rem !important}.m-25{margin:.25rem !important}.m-40{margin:.4rem !important}.m-50{margin:.5rem !important}.m-60{margin:.6rem !important}.m-75{margin:.75rem !important}.m-100{margin:1rem !important}.m-125{margin:1.25rem !important}.m-150{margin:1.5rem !important}.m-175{margin:1.75rem !important}.m-200{margin:2rem !important}.m-250{margin:2.5rem !important}.m-300{margin:3rem !important}.m-400{margin:4rem !important}.m-500{margin:5rem !important}.m-600{margin:6rem !important}.m-700{margin:7rem !important}.m-800{margin:8rem !important}.m-900{margin:9rem !important}.m-1000{margin:10rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-100{margin-right:1rem !important;margin-left:1rem !important}.mx-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-200{margin-right:2rem !important;margin-left:2rem !important}.mx-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-300{margin-right:3rem !important;margin-left:3rem !important}.mx-400{margin-right:4rem !important;margin-left:4rem !important}.mx-500{margin-right:5rem !important;margin-left:5rem !important}.mx-600{margin-right:6rem !important;margin-left:6rem !important}.mx-700{margin-right:7rem !important;margin-left:7rem !important}.mx-800{margin-right:8rem !important;margin-left:8rem !important}.mx-900{margin-right:9rem !important;margin-left:9rem !important}.mx-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-10{margin-top:.1rem !important}.mt-25{margin-top:.25rem !important}.mt-40{margin-top:.4rem !important}.mt-50{margin-top:.5rem !important}.mt-60{margin-top:.6rem !important}.mt-75{margin-top:.75rem !important}.mt-100{margin-top:1rem !important}.mt-125{margin-top:1.25rem !important}.mt-150{margin-top:1.5rem !important}.mt-175{margin-top:1.75rem !important}.mt-200{margin-top:2rem !important}.mt-250{margin-top:2.5rem !important}.mt-300{margin-top:3rem !important}.mt-400{margin-top:4rem !important}.mt-500{margin-top:5rem !important}.mt-600{margin-top:6rem !important}.mt-700{margin-top:7rem !important}.mt-800{margin-top:8rem !important}.mt-900{margin-top:9rem !important}.mt-1000{margin-top:10rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-10{margin-right:.1rem !important}.me-25{margin-right:.25rem !important}.me-40{margin-right:.4rem !important}.me-50{margin-right:.5rem !important}.me-60{margin-right:.6rem !important}.me-75{margin-right:.75rem !important}.me-100{margin-right:1rem !important}.me-125{margin-right:1.25rem !important}.me-150{margin-right:1.5rem !important}.me-175{margin-right:1.75rem !important}.me-200{margin-right:2rem !important}.me-250{margin-right:2.5rem !important}.me-300{margin-right:3rem !important}.me-400{margin-right:4rem !important}.me-500{margin-right:5rem !important}.me-600{margin-right:6rem !important}.me-700{margin-right:7rem !important}.me-800{margin-right:8rem !important}.me-900{margin-right:9rem !important}.me-1000{margin-right:10rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-10{margin-bottom:.1rem !important}.mb-25{margin-bottom:.25rem !important}.mb-40{margin-bottom:.4rem !important}.mb-50{margin-bottom:.5rem !important}.mb-60{margin-bottom:.6rem !important}.mb-75{margin-bottom:.75rem !important}.mb-100{margin-bottom:1rem !important}.mb-125{margin-bottom:1.25rem !important}.mb-150{margin-bottom:1.5rem !important}.mb-175{margin-bottom:1.75rem !important}.mb-200{margin-bottom:2rem !important}.mb-250{margin-bottom:2.5rem !important}.mb-300{margin-bottom:3rem !important}.mb-400{margin-bottom:4rem !important}.mb-500{margin-bottom:5rem !important}.mb-600{margin-bottom:6rem !important}.mb-700{margin-bottom:7rem !important}.mb-800{margin-bottom:8rem !important}.mb-900{margin-bottom:9rem !important}.mb-1000{margin-bottom:10rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-10{margin-left:.1rem !important}.ms-25{margin-left:.25rem !important}.ms-40{margin-left:.4rem !important}.ms-50{margin-left:.5rem !important}.ms-60{margin-left:.6rem !important}.ms-75{margin-left:.75rem !important}.ms-100{margin-left:1rem !important}.ms-125{margin-left:1.25rem !important}.ms-150{margin-left:1.5rem !important}.ms-175{margin-left:1.75rem !important}.ms-200{margin-left:2rem !important}.ms-250{margin-left:2.5rem !important}.ms-300{margin-left:3rem !important}.ms-400{margin-left:4rem !important}.ms-500{margin-left:5rem !important}.ms-600{margin-left:6rem !important}.ms-700{margin-left:7rem !important}.ms-800{margin-left:8rem !important}.ms-900{margin-left:9rem !important}.ms-1000{margin-left:10rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-10{padding:.1rem !important}.p-25{padding:.25rem !important}.p-40{padding:.4rem !important}.p-50{padding:.5rem !important}.p-60{padding:.6rem !important}.p-75{padding:.75rem !important}.p-100{padding:1rem !important}.p-125{padding:1.25rem !important}.p-150{padding:1.5rem !important}.p-175{padding:1.75rem !important}.p-200{padding:2rem !important}.p-250{padding:2.5rem !important}.p-300{padding:3rem !important}.p-400{padding:4rem !important}.p-500{padding:5rem !important}.p-600{padding:6rem !important}.p-700{padding:7rem !important}.p-800{padding:8rem !important}.p-900{padding:9rem !important}.p-1000{padding:10rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-100{padding-right:1rem !important;padding-left:1rem !important}.px-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-200{padding-right:2rem !important;padding-left:2rem !important}.px-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-300{padding-right:3rem !important;padding-left:3rem !important}.px-400{padding-right:4rem !important;padding-left:4rem !important}.px-500{padding-right:5rem !important;padding-left:5rem !important}.px-600{padding-right:6rem !important;padding-left:6rem !important}.px-700{padding-right:7rem !important;padding-left:7rem !important}.px-800{padding-right:8rem !important;padding-left:8rem !important}.px-900{padding-right:9rem !important;padding-left:9rem !important}.px-1000{padding-right:10rem !important;padding-left:10rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-0{padding-top:0 !important}.pt-10{padding-top:.1rem !important}.pt-25{padding-top:.25rem !important}.pt-40{padding-top:.4rem !important}.pt-50{padding-top:.5rem !important}.pt-60{padding-top:.6rem !important}.pt-75{padding-top:.75rem !important}.pt-100{padding-top:1rem !important}.pt-125{padding-top:1.25rem !important}.pt-150{padding-top:1.5rem !important}.pt-175{padding-top:1.75rem !important}.pt-200{padding-top:2rem !important}.pt-250{padding-top:2.5rem !important}.pt-300{padding-top:3rem !important}.pt-400{padding-top:4rem !important}.pt-500{padding-top:5rem !important}.pt-600{padding-top:6rem !important}.pt-700{padding-top:7rem !important}.pt-800{padding-top:8rem !important}.pt-900{padding-top:9rem !important}.pt-1000{padding-top:10rem !important}.pe-0{padding-right:0 !important}.pe-10{padding-right:.1rem !important}.pe-25{padding-right:.25rem !important}.pe-40{padding-right:.4rem !important}.pe-50{padding-right:.5rem !important}.pe-60{padding-right:.6rem !important}.pe-75{padding-right:.75rem !important}.pe-100{padding-right:1rem !important}.pe-125{padding-right:1.25rem !important}.pe-150{padding-right:1.5rem !important}.pe-175{padding-right:1.75rem !important}.pe-200{padding-right:2rem !important}.pe-250{padding-right:2.5rem !important}.pe-300{padding-right:3rem !important}.pe-400{padding-right:4rem !important}.pe-500{padding-right:5rem !important}.pe-600{padding-right:6rem !important}.pe-700{padding-right:7rem !important}.pe-800{padding-right:8rem !important}.pe-900{padding-right:9rem !important}.pe-1000{padding-right:10rem !important}.pb-0{padding-bottom:0 !important}.pb-10{padding-bottom:.1rem !important}.pb-25{padding-bottom:.25rem !important}.pb-40{padding-bottom:.4rem !important}.pb-50{padding-bottom:.5rem !important}.pb-60{padding-bottom:.6rem !important}.pb-75{padding-bottom:.75rem !important}.pb-100{padding-bottom:1rem !important}.pb-125{padding-bottom:1.25rem !important}.pb-150{padding-bottom:1.5rem !important}.pb-175{padding-bottom:1.75rem !important}.pb-200{padding-bottom:2rem !important}.pb-250{padding-bottom:2.5rem !important}.pb-300{padding-bottom:3rem !important}.pb-400{padding-bottom:4rem !important}.pb-500{padding-bottom:5rem !important}.pb-600{padding-bottom:6rem !important}.pb-700{padding-bottom:7rem !important}.pb-800{padding-bottom:8rem !important}.pb-900{padding-bottom:9rem !important}.pb-1000{padding-bottom:10rem !important}.ps-0{padding-left:0 !important}.ps-10{padding-left:.1rem !important}.ps-25{padding-left:.25rem !important}.ps-40{padding-left:.4rem !important}.ps-50{padding-left:.5rem !important}.ps-60{padding-left:.6rem !important}.ps-75{padding-left:.75rem !important}.ps-100{padding-left:1rem !important}.ps-125{padding-left:1.25rem !important}.ps-150{padding-left:1.5rem !important}.ps-175{padding-left:1.75rem !important}.ps-200{padding-left:2rem !important}.ps-250{padding-left:2.5rem !important}.ps-300{padding-left:3rem !important}.ps-400{padding-left:4rem !important}.ps-500{padding-left:5rem !important}.ps-600{padding-left:6rem !important}.ps-700{padding-left:7rem !important}.ps-800{padding-left:8rem !important}.ps-900{padding-left:9rem !important}.ps-1000{padding-left:10rem !important}.gap-0{gap:0 !important}.gap-10{gap:.1rem !important}.gap-25{gap:.25rem !important}.gap-40{gap:.4rem !important}.gap-50{gap:.5rem !important}.gap-60{gap:.6rem !important}.gap-75{gap:.75rem !important}.gap-100{gap:1rem !important}.gap-125{gap:1.25rem !important}.gap-150{gap:1.5rem !important}.gap-175{gap:1.75rem !important}.gap-200{gap:2rem !important}.gap-250{gap:2.5rem !important}.gap-300{gap:3rem !important}.gap-400{gap:4rem !important}.gap-500{gap:5rem !important}.gap-600{gap:6rem !important}.gap-700{gap:7rem !important}.gap-800{gap:8rem !important}.gap-900{gap:9rem !important}.gap-1000{gap:10rem !important}.row-gap-0{row-gap:0 !important}.row-gap-10{row-gap:.1rem !important}.row-gap-25{row-gap:.25rem !important}.row-gap-40{row-gap:.4rem !important}.row-gap-50{row-gap:.5rem !important}.row-gap-60{row-gap:.6rem !important}.row-gap-75{row-gap:.75rem !important}.row-gap-100{row-gap:1rem !important}.row-gap-125{row-gap:1.25rem !important}.row-gap-150{row-gap:1.5rem !important}.row-gap-175{row-gap:1.75rem !important}.row-gap-200{row-gap:2rem !important}.row-gap-250{row-gap:2.5rem !important}.row-gap-300{row-gap:3rem !important}.row-gap-400{row-gap:4rem !important}.row-gap-500{row-gap:5rem !important}.row-gap-600{row-gap:6rem !important}.row-gap-700{row-gap:7rem !important}.row-gap-800{row-gap:8rem !important}.row-gap-900{row-gap:9rem !important}.row-gap-1000{row-gap:10rem !important}.column-gap-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.04375rem + 1.6916666667vw) !important}.fs-2{font-size:calc(1.0229166667rem + 0.8861111111vw) !important}.fs-3{font-size:calc(1.0125rem + 0.4833333333vw) !important}.fs-4{font-size:calc(1.0083333333rem + 0.3222222222vw) !important}.fs-5{font-size:calc(1.0041666667rem + 0.1611111111vw) !important}.fs-6{font-size:1rem !important}.fs-xs{font-size:0.625rem !important}.fs-sm{font-size:0.75rem !important}.fs-md{font-size:0.875rem !important}.fs-lg{font-size:calc(1.0083333333rem + 0.3222222222vw) !important}.fs-xl{font-size:calc(1.0166666667rem + 0.6444444444vw) !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-lighter{font-weight:lighter !important}.fw-light{font-weight:300 !important}.fw-normal{font-weight:400 !important}.fw-medium{font-weight:500 !important}.fw-semibold{font-weight:600 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-lightest{--bs-text-opacity: 1;color:rgba(var(--bs-lightest-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--bs-text-opacity: 1;color:hsla(0,0%,100%,.5) !important}.text-body-secondary{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-body-tertiary{--bs-text-opacity: 1;color:var(--bs-tertiary-color) !important}.text-body-emphasis{--bs-text-opacity: 1;color:var(--bs-emphasis-color) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis) !important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis) !important}.text-success-emphasis{color:var(--bs-success-text-emphasis) !important}.text-info-emphasis{color:var(--bs-info-text-emphasis) !important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis) !important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis) !important}.text-light-emphasis{color:var(--bs-light-text-emphasis) !important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis) !important}.link-opacity-10{--bs-link-opacity: 0.1}.link-opacity-10-hover:hover{--bs-link-opacity: 0.1}.link-opacity-25{--bs-link-opacity: 0.25}.link-opacity-25-hover:hover{--bs-link-opacity: 0.25}.link-opacity-50{--bs-link-opacity: 0.5}.link-opacity-50-hover:hover{--bs-link-opacity: 0.5}.link-opacity-75{--bs-link-opacity: 0.75}.link-opacity-75-hover:hover{--bs-link-opacity: 0.75}.link-opacity-100{--bs-link-opacity: 1}.link-opacity-100-hover:hover{--bs-link-opacity: 1}.link-offset-1{text-underline-offset:.125em !important}.link-offset-1-hover:hover{text-underline-offset:.125em !important}.link-offset-2{text-underline-offset:.25em !important}.link-offset-2-hover:hover{text-underline-offset:.25em !important}.link-offset-3{text-underline-offset:.375em !important}.link-offset-3-hover:hover{text-underline-offset:.375em !important}.link-underline-primary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-secondary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-success{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-info{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-warning{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-danger{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-light{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-dark{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-lightest{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-lightest-rgb), var(--bs-link-underline-opacity)) !important}.link-underline{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-underline-opacity-0{--bs-link-underline-opacity: 0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity: 0}.link-underline-opacity-10{--bs-link-underline-opacity: 0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity: 0.1}.link-underline-opacity-25{--bs-link-underline-opacity: 0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity: 0.25}.link-underline-opacity-50{--bs-link-underline-opacity: 0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity: 0.5}.link-underline-opacity-75{--bs-link-underline-opacity: 0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity: 0.75}.link-underline-opacity-100{--bs-link-underline-opacity: 1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity: 1}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-lightest{--bs-bg-opacity: 1;background-color:rgba(var(--bs-lightest-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-body-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-body-tertiary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle) !important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle) !important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle) !important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle) !important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle) !important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle) !important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle) !important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle) !important}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:var(--bs-border-radius) !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:var(--bs-border-radius-sm) !important}.rounded-2{border-radius:var(--bs-border-radius) !important}.rounded-3{border-radius:var(--bs-border-radius-lg) !important}.rounded-4{border-radius:var(--bs-border-radius-xl) !important}.rounded-5{border-radius:var(--bs-border-radius-xxl) !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:var(--bs-border-radius-pill) !important}.rounded-top{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm) !important;border-top-right-radius:var(--bs-border-radius-sm) !important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg) !important;border-top-right-radius:var(--bs-border-radius-lg) !important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl) !important;border-top-right-radius:var(--bs-border-radius-xl) !important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl) !important;border-top-right-radius:var(--bs-border-radius-xxl) !important}.rounded-top-circle{border-top-left-radius:50% !important;border-top-right-radius:50% !important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill) !important;border-top-right-radius:var(--bs-border-radius-pill) !important}.rounded-end{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm) !important;border-bottom-right-radius:var(--bs-border-radius-sm) !important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg) !important;border-bottom-right-radius:var(--bs-border-radius-lg) !important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl) !important;border-bottom-right-radius:var(--bs-border-radius-xl) !important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-right-radius:var(--bs-border-radius-xxl) !important}.rounded-end-circle{border-top-right-radius:50% !important;border-bottom-right-radius:50% !important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill) !important;border-bottom-right-radius:var(--bs-border-radius-pill) !important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm) !important;border-bottom-left-radius:var(--bs-border-radius-sm) !important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg) !important;border-bottom-left-radius:var(--bs-border-radius-lg) !important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl) !important;border-bottom-left-radius:var(--bs-border-radius-xl) !important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-left-radius:var(--bs-border-radius-xxl) !important}.rounded-bottom-circle{border-bottom-right-radius:50% !important;border-bottom-left-radius:50% !important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill) !important;border-bottom-left-radius:var(--bs-border-radius-pill) !important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm) !important;border-top-left-radius:var(--bs-border-radius-sm) !important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg) !important;border-top-left-radius:var(--bs-border-radius-lg) !important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl) !important;border-top-left-radius:var(--bs-border-radius-xl) !important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl) !important;border-top-left-radius:var(--bs-border-radius-xxl) !important}.rounded-start-circle{border-bottom-left-radius:50% !important;border-top-left-radius:50% !important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill) !important;border-top-left-radius:var(--bs-border-radius-pill) !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.z-n1{z-index:-1 !important}.z-0{z-index:0 !important}.z-1{z-index:1 !important}.z-2{z-index:2 !important}.z-3{z-index:3 !important}@media(min-width: 414px){.float-xs-start{float:left !important}.float-xs-end{float:right !important}.float-xs-none{float:none !important}.object-fit-xs-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-xs-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-xs-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-xs-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-xs-none{-o-object-fit:none !important;object-fit:none !important}.d-xs-inline{display:inline !important}.d-xs-inline-block{display:inline-block !important}.d-xs-block{display:block !important}.d-xs-grid{display:grid !important}.d-xs-inline-grid{display:inline-grid !important}.d-xs-table{display:table !important}.d-xs-table-row{display:table-row !important}.d-xs-table-cell{display:table-cell !important}.d-xs-flex{display:flex !important}.d-xs-inline-flex{display:inline-flex !important}.d-xs-none{display:none !important}.flex-xs-fill{flex:1 1 auto !important}.flex-xs-row{flex-direction:row !important}.flex-xs-column{flex-direction:column !important}.flex-xs-row-reverse{flex-direction:row-reverse !important}.flex-xs-column-reverse{flex-direction:column-reverse !important}.flex-xs-grow-0{flex-grow:0 !important}.flex-xs-grow-1{flex-grow:1 !important}.flex-xs-shrink-0{flex-shrink:0 !important}.flex-xs-shrink-1{flex-shrink:1 !important}.flex-xs-wrap{flex-wrap:wrap !important}.flex-xs-nowrap{flex-wrap:nowrap !important}.flex-xs-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xs-start{justify-content:flex-start !important}.justify-content-xs-end{justify-content:flex-end !important}.justify-content-xs-center{justify-content:center !important}.justify-content-xs-between{justify-content:space-between !important}.justify-content-xs-around{justify-content:space-around !important}.justify-content-xs-evenly{justify-content:space-evenly !important}.align-items-xs-start{align-items:flex-start !important}.align-items-xs-end{align-items:flex-end !important}.align-items-xs-center{align-items:center !important}.align-items-xs-baseline{align-items:baseline !important}.align-items-xs-stretch{align-items:stretch !important}.align-content-xs-start{align-content:flex-start !important}.align-content-xs-end{align-content:flex-end !important}.align-content-xs-center{align-content:center !important}.align-content-xs-between{align-content:space-between !important}.align-content-xs-around{align-content:space-around !important}.align-content-xs-stretch{align-content:stretch !important}.align-self-xs-auto{align-self:auto !important}.align-self-xs-start{align-self:flex-start !important}.align-self-xs-end{align-self:flex-end !important}.align-self-xs-center{align-self:center !important}.align-self-xs-baseline{align-self:baseline !important}.align-self-xs-stretch{align-self:stretch !important}.order-xs-first{order:-1 !important}.order-xs-0{order:0 !important}.order-xs-1{order:1 !important}.order-xs-2{order:2 !important}.order-xs-3{order:3 !important}.order-xs-4{order:4 !important}.order-xs-5{order:5 !important}.order-xs-last{order:6 !important}.m-xs-0{margin:0 !important}.m-xs-10{margin:.1rem !important}.m-xs-25{margin:.25rem !important}.m-xs-40{margin:.4rem !important}.m-xs-50{margin:.5rem !important}.m-xs-60{margin:.6rem !important}.m-xs-75{margin:.75rem !important}.m-xs-100{margin:1rem !important}.m-xs-125{margin:1.25rem !important}.m-xs-150{margin:1.5rem !important}.m-xs-175{margin:1.75rem !important}.m-xs-200{margin:2rem !important}.m-xs-250{margin:2.5rem !important}.m-xs-300{margin:3rem !important}.m-xs-400{margin:4rem !important}.m-xs-500{margin:5rem !important}.m-xs-600{margin:6rem !important}.m-xs-700{margin:7rem !important}.m-xs-800{margin:8rem !important}.m-xs-900{margin:9rem !important}.m-xs-1000{margin:10rem !important}.m-xs-auto{margin:auto !important}.mx-xs-0{margin-right:0 !important;margin-left:0 !important}.mx-xs-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-xs-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xs-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-xs-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xs-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-xs-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-xs-100{margin-right:1rem !important;margin-left:1rem !important}.mx-xs-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-xs-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xs-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-xs-200{margin-right:2rem !important;margin-left:2rem !important}.mx-xs-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-xs-300{margin-right:3rem !important;margin-left:3rem !important}.mx-xs-400{margin-right:4rem !important;margin-left:4rem !important}.mx-xs-500{margin-right:5rem !important;margin-left:5rem !important}.mx-xs-600{margin-right:6rem !important;margin-left:6rem !important}.mx-xs-700{margin-right:7rem !important;margin-left:7rem !important}.mx-xs-800{margin-right:8rem !important;margin-left:8rem !important}.mx-xs-900{margin-right:9rem !important;margin-left:9rem !important}.mx-xs-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-xs-auto{margin-right:auto !important;margin-left:auto !important}.my-xs-0{margin-top:0 !important;margin-bottom:0 !important}.my-xs-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-xs-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xs-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-xs-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xs-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-xs-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-xs-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-xs-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-xs-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xs-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-xs-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-xs-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-xs-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-xs-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-xs-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-xs-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-xs-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-xs-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-xs-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-xs-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-xs-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xs-0{margin-top:0 !important}.mt-xs-10{margin-top:.1rem !important}.mt-xs-25{margin-top:.25rem !important}.mt-xs-40{margin-top:.4rem !important}.mt-xs-50{margin-top:.5rem !important}.mt-xs-60{margin-top:.6rem !important}.mt-xs-75{margin-top:.75rem !important}.mt-xs-100{margin-top:1rem !important}.mt-xs-125{margin-top:1.25rem !important}.mt-xs-150{margin-top:1.5rem !important}.mt-xs-175{margin-top:1.75rem !important}.mt-xs-200{margin-top:2rem !important}.mt-xs-250{margin-top:2.5rem !important}.mt-xs-300{margin-top:3rem !important}.mt-xs-400{margin-top:4rem !important}.mt-xs-500{margin-top:5rem !important}.mt-xs-600{margin-top:6rem !important}.mt-xs-700{margin-top:7rem !important}.mt-xs-800{margin-top:8rem !important}.mt-xs-900{margin-top:9rem !important}.mt-xs-1000{margin-top:10rem !important}.mt-xs-auto{margin-top:auto !important}.me-xs-0{margin-right:0 !important}.me-xs-10{margin-right:.1rem !important}.me-xs-25{margin-right:.25rem !important}.me-xs-40{margin-right:.4rem !important}.me-xs-50{margin-right:.5rem !important}.me-xs-60{margin-right:.6rem !important}.me-xs-75{margin-right:.75rem !important}.me-xs-100{margin-right:1rem !important}.me-xs-125{margin-right:1.25rem !important}.me-xs-150{margin-right:1.5rem !important}.me-xs-175{margin-right:1.75rem !important}.me-xs-200{margin-right:2rem !important}.me-xs-250{margin-right:2.5rem !important}.me-xs-300{margin-right:3rem !important}.me-xs-400{margin-right:4rem !important}.me-xs-500{margin-right:5rem !important}.me-xs-600{margin-right:6rem !important}.me-xs-700{margin-right:7rem !important}.me-xs-800{margin-right:8rem !important}.me-xs-900{margin-right:9rem !important}.me-xs-1000{margin-right:10rem !important}.me-xs-auto{margin-right:auto !important}.mb-xs-0{margin-bottom:0 !important}.mb-xs-10{margin-bottom:.1rem !important}.mb-xs-25{margin-bottom:.25rem !important}.mb-xs-40{margin-bottom:.4rem !important}.mb-xs-50{margin-bottom:.5rem !important}.mb-xs-60{margin-bottom:.6rem !important}.mb-xs-75{margin-bottom:.75rem !important}.mb-xs-100{margin-bottom:1rem !important}.mb-xs-125{margin-bottom:1.25rem !important}.mb-xs-150{margin-bottom:1.5rem !important}.mb-xs-175{margin-bottom:1.75rem !important}.mb-xs-200{margin-bottom:2rem !important}.mb-xs-250{margin-bottom:2.5rem !important}.mb-xs-300{margin-bottom:3rem !important}.mb-xs-400{margin-bottom:4rem !important}.mb-xs-500{margin-bottom:5rem !important}.mb-xs-600{margin-bottom:6rem !important}.mb-xs-700{margin-bottom:7rem !important}.mb-xs-800{margin-bottom:8rem !important}.mb-xs-900{margin-bottom:9rem !important}.mb-xs-1000{margin-bottom:10rem !important}.mb-xs-auto{margin-bottom:auto !important}.ms-xs-0{margin-left:0 !important}.ms-xs-10{margin-left:.1rem !important}.ms-xs-25{margin-left:.25rem !important}.ms-xs-40{margin-left:.4rem !important}.ms-xs-50{margin-left:.5rem !important}.ms-xs-60{margin-left:.6rem !important}.ms-xs-75{margin-left:.75rem !important}.ms-xs-100{margin-left:1rem !important}.ms-xs-125{margin-left:1.25rem !important}.ms-xs-150{margin-left:1.5rem !important}.ms-xs-175{margin-left:1.75rem !important}.ms-xs-200{margin-left:2rem !important}.ms-xs-250{margin-left:2.5rem !important}.ms-xs-300{margin-left:3rem !important}.ms-xs-400{margin-left:4rem !important}.ms-xs-500{margin-left:5rem !important}.ms-xs-600{margin-left:6rem !important}.ms-xs-700{margin-left:7rem !important}.ms-xs-800{margin-left:8rem !important}.ms-xs-900{margin-left:9rem !important}.ms-xs-1000{margin-left:10rem !important}.ms-xs-auto{margin-left:auto !important}.p-xs-0{padding:0 !important}.p-xs-10{padding:.1rem !important}.p-xs-25{padding:.25rem !important}.p-xs-40{padding:.4rem !important}.p-xs-50{padding:.5rem !important}.p-xs-60{padding:.6rem !important}.p-xs-75{padding:.75rem !important}.p-xs-100{padding:1rem !important}.p-xs-125{padding:1.25rem !important}.p-xs-150{padding:1.5rem !important}.p-xs-175{padding:1.75rem !important}.p-xs-200{padding:2rem !important}.p-xs-250{padding:2.5rem !important}.p-xs-300{padding:3rem !important}.p-xs-400{padding:4rem !important}.p-xs-500{padding:5rem !important}.p-xs-600{padding:6rem !important}.p-xs-700{padding:7rem !important}.p-xs-800{padding:8rem !important}.p-xs-900{padding:9rem !important}.p-xs-1000{padding:10rem !important}.px-xs-0{padding-right:0 !important;padding-left:0 !important}.px-xs-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-xs-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-xs-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-xs-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-xs-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-xs-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-xs-100{padding-right:1rem !important;padding-left:1rem !important}.px-xs-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-xs-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xs-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-xs-200{padding-right:2rem !important;padding-left:2rem !important}.px-xs-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-xs-300{padding-right:3rem !important;padding-left:3rem !important}.px-xs-400{padding-right:4rem !important;padding-left:4rem !important}.px-xs-500{padding-right:5rem !important;padding-left:5rem !important}.px-xs-600{padding-right:6rem !important;padding-left:6rem !important}.px-xs-700{padding-right:7rem !important;padding-left:7rem !important}.px-xs-800{padding-right:8rem !important;padding-left:8rem !important}.px-xs-900{padding-right:9rem !important;padding-left:9rem !important}.px-xs-1000{padding-right:10rem !important;padding-left:10rem !important}.py-xs-0{padding-top:0 !important;padding-bottom:0 !important}.py-xs-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-xs-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xs-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-xs-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xs-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-xs-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-xs-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-xs-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-xs-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xs-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-xs-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-xs-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-xs-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-xs-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-xs-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-xs-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-xs-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-xs-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-xs-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-xs-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-xs-0{padding-top:0 !important}.pt-xs-10{padding-top:.1rem !important}.pt-xs-25{padding-top:.25rem !important}.pt-xs-40{padding-top:.4rem !important}.pt-xs-50{padding-top:.5rem !important}.pt-xs-60{padding-top:.6rem !important}.pt-xs-75{padding-top:.75rem !important}.pt-xs-100{padding-top:1rem !important}.pt-xs-125{padding-top:1.25rem !important}.pt-xs-150{padding-top:1.5rem !important}.pt-xs-175{padding-top:1.75rem !important}.pt-xs-200{padding-top:2rem !important}.pt-xs-250{padding-top:2.5rem !important}.pt-xs-300{padding-top:3rem !important}.pt-xs-400{padding-top:4rem !important}.pt-xs-500{padding-top:5rem !important}.pt-xs-600{padding-top:6rem !important}.pt-xs-700{padding-top:7rem !important}.pt-xs-800{padding-top:8rem !important}.pt-xs-900{padding-top:9rem !important}.pt-xs-1000{padding-top:10rem !important}.pe-xs-0{padding-right:0 !important}.pe-xs-10{padding-right:.1rem !important}.pe-xs-25{padding-right:.25rem !important}.pe-xs-40{padding-right:.4rem !important}.pe-xs-50{padding-right:.5rem !important}.pe-xs-60{padding-right:.6rem !important}.pe-xs-75{padding-right:.75rem !important}.pe-xs-100{padding-right:1rem !important}.pe-xs-125{padding-right:1.25rem !important}.pe-xs-150{padding-right:1.5rem !important}.pe-xs-175{padding-right:1.75rem !important}.pe-xs-200{padding-right:2rem !important}.pe-xs-250{padding-right:2.5rem !important}.pe-xs-300{padding-right:3rem !important}.pe-xs-400{padding-right:4rem !important}.pe-xs-500{padding-right:5rem !important}.pe-xs-600{padding-right:6rem !important}.pe-xs-700{padding-right:7rem !important}.pe-xs-800{padding-right:8rem !important}.pe-xs-900{padding-right:9rem !important}.pe-xs-1000{padding-right:10rem !important}.pb-xs-0{padding-bottom:0 !important}.pb-xs-10{padding-bottom:.1rem !important}.pb-xs-25{padding-bottom:.25rem !important}.pb-xs-40{padding-bottom:.4rem !important}.pb-xs-50{padding-bottom:.5rem !important}.pb-xs-60{padding-bottom:.6rem !important}.pb-xs-75{padding-bottom:.75rem !important}.pb-xs-100{padding-bottom:1rem !important}.pb-xs-125{padding-bottom:1.25rem !important}.pb-xs-150{padding-bottom:1.5rem !important}.pb-xs-175{padding-bottom:1.75rem !important}.pb-xs-200{padding-bottom:2rem !important}.pb-xs-250{padding-bottom:2.5rem !important}.pb-xs-300{padding-bottom:3rem !important}.pb-xs-400{padding-bottom:4rem !important}.pb-xs-500{padding-bottom:5rem !important}.pb-xs-600{padding-bottom:6rem !important}.pb-xs-700{padding-bottom:7rem !important}.pb-xs-800{padding-bottom:8rem !important}.pb-xs-900{padding-bottom:9rem !important}.pb-xs-1000{padding-bottom:10rem !important}.ps-xs-0{padding-left:0 !important}.ps-xs-10{padding-left:.1rem !important}.ps-xs-25{padding-left:.25rem !important}.ps-xs-40{padding-left:.4rem !important}.ps-xs-50{padding-left:.5rem !important}.ps-xs-60{padding-left:.6rem !important}.ps-xs-75{padding-left:.75rem !important}.ps-xs-100{padding-left:1rem !important}.ps-xs-125{padding-left:1.25rem !important}.ps-xs-150{padding-left:1.5rem !important}.ps-xs-175{padding-left:1.75rem !important}.ps-xs-200{padding-left:2rem !important}.ps-xs-250{padding-left:2.5rem !important}.ps-xs-300{padding-left:3rem !important}.ps-xs-400{padding-left:4rem !important}.ps-xs-500{padding-left:5rem !important}.ps-xs-600{padding-left:6rem !important}.ps-xs-700{padding-left:7rem !important}.ps-xs-800{padding-left:8rem !important}.ps-xs-900{padding-left:9rem !important}.ps-xs-1000{padding-left:10rem !important}.gap-xs-0{gap:0 !important}.gap-xs-10{gap:.1rem !important}.gap-xs-25{gap:.25rem !important}.gap-xs-40{gap:.4rem !important}.gap-xs-50{gap:.5rem !important}.gap-xs-60{gap:.6rem !important}.gap-xs-75{gap:.75rem !important}.gap-xs-100{gap:1rem !important}.gap-xs-125{gap:1.25rem !important}.gap-xs-150{gap:1.5rem !important}.gap-xs-175{gap:1.75rem !important}.gap-xs-200{gap:2rem !important}.gap-xs-250{gap:2.5rem !important}.gap-xs-300{gap:3rem !important}.gap-xs-400{gap:4rem !important}.gap-xs-500{gap:5rem !important}.gap-xs-600{gap:6rem !important}.gap-xs-700{gap:7rem !important}.gap-xs-800{gap:8rem !important}.gap-xs-900{gap:9rem !important}.gap-xs-1000{gap:10rem !important}.row-gap-xs-0{row-gap:0 !important}.row-gap-xs-10{row-gap:.1rem !important}.row-gap-xs-25{row-gap:.25rem !important}.row-gap-xs-40{row-gap:.4rem !important}.row-gap-xs-50{row-gap:.5rem !important}.row-gap-xs-60{row-gap:.6rem !important}.row-gap-xs-75{row-gap:.75rem !important}.row-gap-xs-100{row-gap:1rem !important}.row-gap-xs-125{row-gap:1.25rem !important}.row-gap-xs-150{row-gap:1.5rem !important}.row-gap-xs-175{row-gap:1.75rem !important}.row-gap-xs-200{row-gap:2rem !important}.row-gap-xs-250{row-gap:2.5rem !important}.row-gap-xs-300{row-gap:3rem !important}.row-gap-xs-400{row-gap:4rem !important}.row-gap-xs-500{row-gap:5rem !important}.row-gap-xs-600{row-gap:6rem !important}.row-gap-xs-700{row-gap:7rem !important}.row-gap-xs-800{row-gap:8rem !important}.row-gap-xs-900{row-gap:9rem !important}.row-gap-xs-1000{row-gap:10rem !important}.column-gap-xs-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-xs-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-xs-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-xs-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-xs-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-xs-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-xs-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-xs-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-xs-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-xs-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-xs-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-xs-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-xs-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-xs-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-xs-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-xs-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-xs-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-xs-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-xs-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-xs-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-xs-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.text-xs-start{text-align:left !important}.text-xs-end{text-align:right !important}.text-xs-center{text-align:center !important}}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.object-fit-sm-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-sm-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-sm-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-sm-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-sm-none{-o-object-fit:none !important;object-fit:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-inline-grid{display:inline-grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-10{margin:.1rem !important}.m-sm-25{margin:.25rem !important}.m-sm-40{margin:.4rem !important}.m-sm-50{margin:.5rem !important}.m-sm-60{margin:.6rem !important}.m-sm-75{margin:.75rem !important}.m-sm-100{margin:1rem !important}.m-sm-125{margin:1.25rem !important}.m-sm-150{margin:1.5rem !important}.m-sm-175{margin:1.75rem !important}.m-sm-200{margin:2rem !important}.m-sm-250{margin:2.5rem !important}.m-sm-300{margin:3rem !important}.m-sm-400{margin:4rem !important}.m-sm-500{margin:5rem !important}.m-sm-600{margin:6rem !important}.m-sm-700{margin:7rem !important}.m-sm-800{margin:8rem !important}.m-sm-900{margin:9rem !important}.m-sm-1000{margin:10rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-sm-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-sm-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-sm-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-sm-100{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-sm-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-sm-200{margin-right:2rem !important;margin-left:2rem !important}.mx-sm-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-sm-300{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-400{margin-right:4rem !important;margin-left:4rem !important}.mx-sm-500{margin-right:5rem !important;margin-left:5rem !important}.mx-sm-600{margin-right:6rem !important;margin-left:6rem !important}.mx-sm-700{margin-right:7rem !important;margin-left:7rem !important}.mx-sm-800{margin-right:8rem !important;margin-left:8rem !important}.mx-sm-900{margin-right:9rem !important;margin-left:9rem !important}.mx-sm-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-sm-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-sm-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-sm-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-sm-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-sm-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-sm-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-sm-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-sm-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-sm-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-sm-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-sm-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-sm-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-sm-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-sm-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-10{margin-top:.1rem !important}.mt-sm-25{margin-top:.25rem !important}.mt-sm-40{margin-top:.4rem !important}.mt-sm-50{margin-top:.5rem !important}.mt-sm-60{margin-top:.6rem !important}.mt-sm-75{margin-top:.75rem !important}.mt-sm-100{margin-top:1rem !important}.mt-sm-125{margin-top:1.25rem !important}.mt-sm-150{margin-top:1.5rem !important}.mt-sm-175{margin-top:1.75rem !important}.mt-sm-200{margin-top:2rem !important}.mt-sm-250{margin-top:2.5rem !important}.mt-sm-300{margin-top:3rem !important}.mt-sm-400{margin-top:4rem !important}.mt-sm-500{margin-top:5rem !important}.mt-sm-600{margin-top:6rem !important}.mt-sm-700{margin-top:7rem !important}.mt-sm-800{margin-top:8rem !important}.mt-sm-900{margin-top:9rem !important}.mt-sm-1000{margin-top:10rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-10{margin-right:.1rem !important}.me-sm-25{margin-right:.25rem !important}.me-sm-40{margin-right:.4rem !important}.me-sm-50{margin-right:.5rem !important}.me-sm-60{margin-right:.6rem !important}.me-sm-75{margin-right:.75rem !important}.me-sm-100{margin-right:1rem !important}.me-sm-125{margin-right:1.25rem !important}.me-sm-150{margin-right:1.5rem !important}.me-sm-175{margin-right:1.75rem !important}.me-sm-200{margin-right:2rem !important}.me-sm-250{margin-right:2.5rem !important}.me-sm-300{margin-right:3rem !important}.me-sm-400{margin-right:4rem !important}.me-sm-500{margin-right:5rem !important}.me-sm-600{margin-right:6rem !important}.me-sm-700{margin-right:7rem !important}.me-sm-800{margin-right:8rem !important}.me-sm-900{margin-right:9rem !important}.me-sm-1000{margin-right:10rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-10{margin-bottom:.1rem !important}.mb-sm-25{margin-bottom:.25rem !important}.mb-sm-40{margin-bottom:.4rem !important}.mb-sm-50{margin-bottom:.5rem !important}.mb-sm-60{margin-bottom:.6rem !important}.mb-sm-75{margin-bottom:.75rem !important}.mb-sm-100{margin-bottom:1rem !important}.mb-sm-125{margin-bottom:1.25rem !important}.mb-sm-150{margin-bottom:1.5rem !important}.mb-sm-175{margin-bottom:1.75rem !important}.mb-sm-200{margin-bottom:2rem !important}.mb-sm-250{margin-bottom:2.5rem !important}.mb-sm-300{margin-bottom:3rem !important}.mb-sm-400{margin-bottom:4rem !important}.mb-sm-500{margin-bottom:5rem !important}.mb-sm-600{margin-bottom:6rem !important}.mb-sm-700{margin-bottom:7rem !important}.mb-sm-800{margin-bottom:8rem !important}.mb-sm-900{margin-bottom:9rem !important}.mb-sm-1000{margin-bottom:10rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-10{margin-left:.1rem !important}.ms-sm-25{margin-left:.25rem !important}.ms-sm-40{margin-left:.4rem !important}.ms-sm-50{margin-left:.5rem !important}.ms-sm-60{margin-left:.6rem !important}.ms-sm-75{margin-left:.75rem !important}.ms-sm-100{margin-left:1rem !important}.ms-sm-125{margin-left:1.25rem !important}.ms-sm-150{margin-left:1.5rem !important}.ms-sm-175{margin-left:1.75rem !important}.ms-sm-200{margin-left:2rem !important}.ms-sm-250{margin-left:2.5rem !important}.ms-sm-300{margin-left:3rem !important}.ms-sm-400{margin-left:4rem !important}.ms-sm-500{margin-left:5rem !important}.ms-sm-600{margin-left:6rem !important}.ms-sm-700{margin-left:7rem !important}.ms-sm-800{margin-left:8rem !important}.ms-sm-900{margin-left:9rem !important}.ms-sm-1000{margin-left:10rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-10{padding:.1rem !important}.p-sm-25{padding:.25rem !important}.p-sm-40{padding:.4rem !important}.p-sm-50{padding:.5rem !important}.p-sm-60{padding:.6rem !important}.p-sm-75{padding:.75rem !important}.p-sm-100{padding:1rem !important}.p-sm-125{padding:1.25rem !important}.p-sm-150{padding:1.5rem !important}.p-sm-175{padding:1.75rem !important}.p-sm-200{padding:2rem !important}.p-sm-250{padding:2.5rem !important}.p-sm-300{padding:3rem !important}.p-sm-400{padding:4rem !important}.p-sm-500{padding:5rem !important}.p-sm-600{padding:6rem !important}.p-sm-700{padding:7rem !important}.p-sm-800{padding:8rem !important}.p-sm-900{padding:9rem !important}.p-sm-1000{padding:10rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-sm-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-sm-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-sm-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-sm-100{padding-right:1rem !important;padding-left:1rem !important}.px-sm-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-sm-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-sm-200{padding-right:2rem !important;padding-left:2rem !important}.px-sm-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-sm-300{padding-right:3rem !important;padding-left:3rem !important}.px-sm-400{padding-right:4rem !important;padding-left:4rem !important}.px-sm-500{padding-right:5rem !important;padding-left:5rem !important}.px-sm-600{padding-right:6rem !important;padding-left:6rem !important}.px-sm-700{padding-right:7rem !important;padding-left:7rem !important}.px-sm-800{padding-right:8rem !important;padding-left:8rem !important}.px-sm-900{padding-right:9rem !important;padding-left:9rem !important}.px-sm-1000{padding-right:10rem !important;padding-left:10rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-sm-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-sm-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-sm-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-sm-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-sm-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-sm-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-sm-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-sm-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-sm-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-sm-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-sm-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-sm-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-sm-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-sm-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-sm-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-10{padding-top:.1rem !important}.pt-sm-25{padding-top:.25rem !important}.pt-sm-40{padding-top:.4rem !important}.pt-sm-50{padding-top:.5rem !important}.pt-sm-60{padding-top:.6rem !important}.pt-sm-75{padding-top:.75rem !important}.pt-sm-100{padding-top:1rem !important}.pt-sm-125{padding-top:1.25rem !important}.pt-sm-150{padding-top:1.5rem !important}.pt-sm-175{padding-top:1.75rem !important}.pt-sm-200{padding-top:2rem !important}.pt-sm-250{padding-top:2.5rem !important}.pt-sm-300{padding-top:3rem !important}.pt-sm-400{padding-top:4rem !important}.pt-sm-500{padding-top:5rem !important}.pt-sm-600{padding-top:6rem !important}.pt-sm-700{padding-top:7rem !important}.pt-sm-800{padding-top:8rem !important}.pt-sm-900{padding-top:9rem !important}.pt-sm-1000{padding-top:10rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-10{padding-right:.1rem !important}.pe-sm-25{padding-right:.25rem !important}.pe-sm-40{padding-right:.4rem !important}.pe-sm-50{padding-right:.5rem !important}.pe-sm-60{padding-right:.6rem !important}.pe-sm-75{padding-right:.75rem !important}.pe-sm-100{padding-right:1rem !important}.pe-sm-125{padding-right:1.25rem !important}.pe-sm-150{padding-right:1.5rem !important}.pe-sm-175{padding-right:1.75rem !important}.pe-sm-200{padding-right:2rem !important}.pe-sm-250{padding-right:2.5rem !important}.pe-sm-300{padding-right:3rem !important}.pe-sm-400{padding-right:4rem !important}.pe-sm-500{padding-right:5rem !important}.pe-sm-600{padding-right:6rem !important}.pe-sm-700{padding-right:7rem !important}.pe-sm-800{padding-right:8rem !important}.pe-sm-900{padding-right:9rem !important}.pe-sm-1000{padding-right:10rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-10{padding-bottom:.1rem !important}.pb-sm-25{padding-bottom:.25rem !important}.pb-sm-40{padding-bottom:.4rem !important}.pb-sm-50{padding-bottom:.5rem !important}.pb-sm-60{padding-bottom:.6rem !important}.pb-sm-75{padding-bottom:.75rem !important}.pb-sm-100{padding-bottom:1rem !important}.pb-sm-125{padding-bottom:1.25rem !important}.pb-sm-150{padding-bottom:1.5rem !important}.pb-sm-175{padding-bottom:1.75rem !important}.pb-sm-200{padding-bottom:2rem !important}.pb-sm-250{padding-bottom:2.5rem !important}.pb-sm-300{padding-bottom:3rem !important}.pb-sm-400{padding-bottom:4rem !important}.pb-sm-500{padding-bottom:5rem !important}.pb-sm-600{padding-bottom:6rem !important}.pb-sm-700{padding-bottom:7rem !important}.pb-sm-800{padding-bottom:8rem !important}.pb-sm-900{padding-bottom:9rem !important}.pb-sm-1000{padding-bottom:10rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-10{padding-left:.1rem !important}.ps-sm-25{padding-left:.25rem !important}.ps-sm-40{padding-left:.4rem !important}.ps-sm-50{padding-left:.5rem !important}.ps-sm-60{padding-left:.6rem !important}.ps-sm-75{padding-left:.75rem !important}.ps-sm-100{padding-left:1rem !important}.ps-sm-125{padding-left:1.25rem !important}.ps-sm-150{padding-left:1.5rem !important}.ps-sm-175{padding-left:1.75rem !important}.ps-sm-200{padding-left:2rem !important}.ps-sm-250{padding-left:2.5rem !important}.ps-sm-300{padding-left:3rem !important}.ps-sm-400{padding-left:4rem !important}.ps-sm-500{padding-left:5rem !important}.ps-sm-600{padding-left:6rem !important}.ps-sm-700{padding-left:7rem !important}.ps-sm-800{padding-left:8rem !important}.ps-sm-900{padding-left:9rem !important}.ps-sm-1000{padding-left:10rem !important}.gap-sm-0{gap:0 !important}.gap-sm-10{gap:.1rem !important}.gap-sm-25{gap:.25rem !important}.gap-sm-40{gap:.4rem !important}.gap-sm-50{gap:.5rem !important}.gap-sm-60{gap:.6rem !important}.gap-sm-75{gap:.75rem !important}.gap-sm-100{gap:1rem !important}.gap-sm-125{gap:1.25rem !important}.gap-sm-150{gap:1.5rem !important}.gap-sm-175{gap:1.75rem !important}.gap-sm-200{gap:2rem !important}.gap-sm-250{gap:2.5rem !important}.gap-sm-300{gap:3rem !important}.gap-sm-400{gap:4rem !important}.gap-sm-500{gap:5rem !important}.gap-sm-600{gap:6rem !important}.gap-sm-700{gap:7rem !important}.gap-sm-800{gap:8rem !important}.gap-sm-900{gap:9rem !important}.gap-sm-1000{gap:10rem !important}.row-gap-sm-0{row-gap:0 !important}.row-gap-sm-10{row-gap:.1rem !important}.row-gap-sm-25{row-gap:.25rem !important}.row-gap-sm-40{row-gap:.4rem !important}.row-gap-sm-50{row-gap:.5rem !important}.row-gap-sm-60{row-gap:.6rem !important}.row-gap-sm-75{row-gap:.75rem !important}.row-gap-sm-100{row-gap:1rem !important}.row-gap-sm-125{row-gap:1.25rem !important}.row-gap-sm-150{row-gap:1.5rem !important}.row-gap-sm-175{row-gap:1.75rem !important}.row-gap-sm-200{row-gap:2rem !important}.row-gap-sm-250{row-gap:2.5rem !important}.row-gap-sm-300{row-gap:3rem !important}.row-gap-sm-400{row-gap:4rem !important}.row-gap-sm-500{row-gap:5rem !important}.row-gap-sm-600{row-gap:6rem !important}.row-gap-sm-700{row-gap:7rem !important}.row-gap-sm-800{row-gap:8rem !important}.row-gap-sm-900{row-gap:9rem !important}.row-gap-sm-1000{row-gap:10rem !important}.column-gap-sm-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-sm-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-sm-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-sm-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-sm-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-sm-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-sm-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-sm-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-sm-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-sm-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-sm-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-sm-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-sm-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-sm-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-sm-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-sm-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-sm-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-sm-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-sm-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-sm-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-sm-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.object-fit-md-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-md-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-md-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-md-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-md-none{-o-object-fit:none !important;object-fit:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-inline-grid{display:inline-grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-10{margin:.1rem !important}.m-md-25{margin:.25rem !important}.m-md-40{margin:.4rem !important}.m-md-50{margin:.5rem !important}.m-md-60{margin:.6rem !important}.m-md-75{margin:.75rem !important}.m-md-100{margin:1rem !important}.m-md-125{margin:1.25rem !important}.m-md-150{margin:1.5rem !important}.m-md-175{margin:1.75rem !important}.m-md-200{margin:2rem !important}.m-md-250{margin:2.5rem !important}.m-md-300{margin:3rem !important}.m-md-400{margin:4rem !important}.m-md-500{margin:5rem !important}.m-md-600{margin:6rem !important}.m-md-700{margin:7rem !important}.m-md-800{margin:8rem !important}.m-md-900{margin:9rem !important}.m-md-1000{margin:10rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-md-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-md-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-md-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-md-100{margin-right:1rem !important;margin-left:1rem !important}.mx-md-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-md-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-md-200{margin-right:2rem !important;margin-left:2rem !important}.mx-md-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-md-300{margin-right:3rem !important;margin-left:3rem !important}.mx-md-400{margin-right:4rem !important;margin-left:4rem !important}.mx-md-500{margin-right:5rem !important;margin-left:5rem !important}.mx-md-600{margin-right:6rem !important;margin-left:6rem !important}.mx-md-700{margin-right:7rem !important;margin-left:7rem !important}.mx-md-800{margin-right:8rem !important;margin-left:8rem !important}.mx-md-900{margin-right:9rem !important;margin-left:9rem !important}.mx-md-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-md-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-md-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-md-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-md-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-md-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-md-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-md-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-md-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-md-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-md-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-md-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-md-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-md-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-md-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-10{margin-top:.1rem !important}.mt-md-25{margin-top:.25rem !important}.mt-md-40{margin-top:.4rem !important}.mt-md-50{margin-top:.5rem !important}.mt-md-60{margin-top:.6rem !important}.mt-md-75{margin-top:.75rem !important}.mt-md-100{margin-top:1rem !important}.mt-md-125{margin-top:1.25rem !important}.mt-md-150{margin-top:1.5rem !important}.mt-md-175{margin-top:1.75rem !important}.mt-md-200{margin-top:2rem !important}.mt-md-250{margin-top:2.5rem !important}.mt-md-300{margin-top:3rem !important}.mt-md-400{margin-top:4rem !important}.mt-md-500{margin-top:5rem !important}.mt-md-600{margin-top:6rem !important}.mt-md-700{margin-top:7rem !important}.mt-md-800{margin-top:8rem !important}.mt-md-900{margin-top:9rem !important}.mt-md-1000{margin-top:10rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-10{margin-right:.1rem !important}.me-md-25{margin-right:.25rem !important}.me-md-40{margin-right:.4rem !important}.me-md-50{margin-right:.5rem !important}.me-md-60{margin-right:.6rem !important}.me-md-75{margin-right:.75rem !important}.me-md-100{margin-right:1rem !important}.me-md-125{margin-right:1.25rem !important}.me-md-150{margin-right:1.5rem !important}.me-md-175{margin-right:1.75rem !important}.me-md-200{margin-right:2rem !important}.me-md-250{margin-right:2.5rem !important}.me-md-300{margin-right:3rem !important}.me-md-400{margin-right:4rem !important}.me-md-500{margin-right:5rem !important}.me-md-600{margin-right:6rem !important}.me-md-700{margin-right:7rem !important}.me-md-800{margin-right:8rem !important}.me-md-900{margin-right:9rem !important}.me-md-1000{margin-right:10rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-10{margin-bottom:.1rem !important}.mb-md-25{margin-bottom:.25rem !important}.mb-md-40{margin-bottom:.4rem !important}.mb-md-50{margin-bottom:.5rem !important}.mb-md-60{margin-bottom:.6rem !important}.mb-md-75{margin-bottom:.75rem !important}.mb-md-100{margin-bottom:1rem !important}.mb-md-125{margin-bottom:1.25rem !important}.mb-md-150{margin-bottom:1.5rem !important}.mb-md-175{margin-bottom:1.75rem !important}.mb-md-200{margin-bottom:2rem !important}.mb-md-250{margin-bottom:2.5rem !important}.mb-md-300{margin-bottom:3rem !important}.mb-md-400{margin-bottom:4rem !important}.mb-md-500{margin-bottom:5rem !important}.mb-md-600{margin-bottom:6rem !important}.mb-md-700{margin-bottom:7rem !important}.mb-md-800{margin-bottom:8rem !important}.mb-md-900{margin-bottom:9rem !important}.mb-md-1000{margin-bottom:10rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-10{margin-left:.1rem !important}.ms-md-25{margin-left:.25rem !important}.ms-md-40{margin-left:.4rem !important}.ms-md-50{margin-left:.5rem !important}.ms-md-60{margin-left:.6rem !important}.ms-md-75{margin-left:.75rem !important}.ms-md-100{margin-left:1rem !important}.ms-md-125{margin-left:1.25rem !important}.ms-md-150{margin-left:1.5rem !important}.ms-md-175{margin-left:1.75rem !important}.ms-md-200{margin-left:2rem !important}.ms-md-250{margin-left:2.5rem !important}.ms-md-300{margin-left:3rem !important}.ms-md-400{margin-left:4rem !important}.ms-md-500{margin-left:5rem !important}.ms-md-600{margin-left:6rem !important}.ms-md-700{margin-left:7rem !important}.ms-md-800{margin-left:8rem !important}.ms-md-900{margin-left:9rem !important}.ms-md-1000{margin-left:10rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-10{padding:.1rem !important}.p-md-25{padding:.25rem !important}.p-md-40{padding:.4rem !important}.p-md-50{padding:.5rem !important}.p-md-60{padding:.6rem !important}.p-md-75{padding:.75rem !important}.p-md-100{padding:1rem !important}.p-md-125{padding:1.25rem !important}.p-md-150{padding:1.5rem !important}.p-md-175{padding:1.75rem !important}.p-md-200{padding:2rem !important}.p-md-250{padding:2.5rem !important}.p-md-300{padding:3rem !important}.p-md-400{padding:4rem !important}.p-md-500{padding:5rem !important}.p-md-600{padding:6rem !important}.p-md-700{padding:7rem !important}.p-md-800{padding:8rem !important}.p-md-900{padding:9rem !important}.p-md-1000{padding:10rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-md-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-md-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-md-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-md-100{padding-right:1rem !important;padding-left:1rem !important}.px-md-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-md-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-md-200{padding-right:2rem !important;padding-left:2rem !important}.px-md-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-md-300{padding-right:3rem !important;padding-left:3rem !important}.px-md-400{padding-right:4rem !important;padding-left:4rem !important}.px-md-500{padding-right:5rem !important;padding-left:5rem !important}.px-md-600{padding-right:6rem !important;padding-left:6rem !important}.px-md-700{padding-right:7rem !important;padding-left:7rem !important}.px-md-800{padding-right:8rem !important;padding-left:8rem !important}.px-md-900{padding-right:9rem !important;padding-left:9rem !important}.px-md-1000{padding-right:10rem !important;padding-left:10rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-md-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-md-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-md-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-md-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-md-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-md-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-md-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-md-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-md-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-md-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-md-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-md-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-md-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-md-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-md-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-md-0{padding-top:0 !important}.pt-md-10{padding-top:.1rem !important}.pt-md-25{padding-top:.25rem !important}.pt-md-40{padding-top:.4rem !important}.pt-md-50{padding-top:.5rem !important}.pt-md-60{padding-top:.6rem !important}.pt-md-75{padding-top:.75rem !important}.pt-md-100{padding-top:1rem !important}.pt-md-125{padding-top:1.25rem !important}.pt-md-150{padding-top:1.5rem !important}.pt-md-175{padding-top:1.75rem !important}.pt-md-200{padding-top:2rem !important}.pt-md-250{padding-top:2.5rem !important}.pt-md-300{padding-top:3rem !important}.pt-md-400{padding-top:4rem !important}.pt-md-500{padding-top:5rem !important}.pt-md-600{padding-top:6rem !important}.pt-md-700{padding-top:7rem !important}.pt-md-800{padding-top:8rem !important}.pt-md-900{padding-top:9rem !important}.pt-md-1000{padding-top:10rem !important}.pe-md-0{padding-right:0 !important}.pe-md-10{padding-right:.1rem !important}.pe-md-25{padding-right:.25rem !important}.pe-md-40{padding-right:.4rem !important}.pe-md-50{padding-right:.5rem !important}.pe-md-60{padding-right:.6rem !important}.pe-md-75{padding-right:.75rem !important}.pe-md-100{padding-right:1rem !important}.pe-md-125{padding-right:1.25rem !important}.pe-md-150{padding-right:1.5rem !important}.pe-md-175{padding-right:1.75rem !important}.pe-md-200{padding-right:2rem !important}.pe-md-250{padding-right:2.5rem !important}.pe-md-300{padding-right:3rem !important}.pe-md-400{padding-right:4rem !important}.pe-md-500{padding-right:5rem !important}.pe-md-600{padding-right:6rem !important}.pe-md-700{padding-right:7rem !important}.pe-md-800{padding-right:8rem !important}.pe-md-900{padding-right:9rem !important}.pe-md-1000{padding-right:10rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-10{padding-bottom:.1rem !important}.pb-md-25{padding-bottom:.25rem !important}.pb-md-40{padding-bottom:.4rem !important}.pb-md-50{padding-bottom:.5rem !important}.pb-md-60{padding-bottom:.6rem !important}.pb-md-75{padding-bottom:.75rem !important}.pb-md-100{padding-bottom:1rem !important}.pb-md-125{padding-bottom:1.25rem !important}.pb-md-150{padding-bottom:1.5rem !important}.pb-md-175{padding-bottom:1.75rem !important}.pb-md-200{padding-bottom:2rem !important}.pb-md-250{padding-bottom:2.5rem !important}.pb-md-300{padding-bottom:3rem !important}.pb-md-400{padding-bottom:4rem !important}.pb-md-500{padding-bottom:5rem !important}.pb-md-600{padding-bottom:6rem !important}.pb-md-700{padding-bottom:7rem !important}.pb-md-800{padding-bottom:8rem !important}.pb-md-900{padding-bottom:9rem !important}.pb-md-1000{padding-bottom:10rem !important}.ps-md-0{padding-left:0 !important}.ps-md-10{padding-left:.1rem !important}.ps-md-25{padding-left:.25rem !important}.ps-md-40{padding-left:.4rem !important}.ps-md-50{padding-left:.5rem !important}.ps-md-60{padding-left:.6rem !important}.ps-md-75{padding-left:.75rem !important}.ps-md-100{padding-left:1rem !important}.ps-md-125{padding-left:1.25rem !important}.ps-md-150{padding-left:1.5rem !important}.ps-md-175{padding-left:1.75rem !important}.ps-md-200{padding-left:2rem !important}.ps-md-250{padding-left:2.5rem !important}.ps-md-300{padding-left:3rem !important}.ps-md-400{padding-left:4rem !important}.ps-md-500{padding-left:5rem !important}.ps-md-600{padding-left:6rem !important}.ps-md-700{padding-left:7rem !important}.ps-md-800{padding-left:8rem !important}.ps-md-900{padding-left:9rem !important}.ps-md-1000{padding-left:10rem !important}.gap-md-0{gap:0 !important}.gap-md-10{gap:.1rem !important}.gap-md-25{gap:.25rem !important}.gap-md-40{gap:.4rem !important}.gap-md-50{gap:.5rem !important}.gap-md-60{gap:.6rem !important}.gap-md-75{gap:.75rem !important}.gap-md-100{gap:1rem !important}.gap-md-125{gap:1.25rem !important}.gap-md-150{gap:1.5rem !important}.gap-md-175{gap:1.75rem !important}.gap-md-200{gap:2rem !important}.gap-md-250{gap:2.5rem !important}.gap-md-300{gap:3rem !important}.gap-md-400{gap:4rem !important}.gap-md-500{gap:5rem !important}.gap-md-600{gap:6rem !important}.gap-md-700{gap:7rem !important}.gap-md-800{gap:8rem !important}.gap-md-900{gap:9rem !important}.gap-md-1000{gap:10rem !important}.row-gap-md-0{row-gap:0 !important}.row-gap-md-10{row-gap:.1rem !important}.row-gap-md-25{row-gap:.25rem !important}.row-gap-md-40{row-gap:.4rem !important}.row-gap-md-50{row-gap:.5rem !important}.row-gap-md-60{row-gap:.6rem !important}.row-gap-md-75{row-gap:.75rem !important}.row-gap-md-100{row-gap:1rem !important}.row-gap-md-125{row-gap:1.25rem !important}.row-gap-md-150{row-gap:1.5rem !important}.row-gap-md-175{row-gap:1.75rem !important}.row-gap-md-200{row-gap:2rem !important}.row-gap-md-250{row-gap:2.5rem !important}.row-gap-md-300{row-gap:3rem !important}.row-gap-md-400{row-gap:4rem !important}.row-gap-md-500{row-gap:5rem !important}.row-gap-md-600{row-gap:6rem !important}.row-gap-md-700{row-gap:7rem !important}.row-gap-md-800{row-gap:8rem !important}.row-gap-md-900{row-gap:9rem !important}.row-gap-md-1000{row-gap:10rem !important}.column-gap-md-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-md-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-md-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-md-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-md-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-md-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-md-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-md-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-md-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-md-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-md-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-md-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-md-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-md-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-md-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-md-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-md-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-md-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-md-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-md-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-md-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.object-fit-lg-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-lg-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-lg-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-lg-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-lg-none{-o-object-fit:none !important;object-fit:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-inline-grid{display:inline-grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-10{margin:.1rem !important}.m-lg-25{margin:.25rem !important}.m-lg-40{margin:.4rem !important}.m-lg-50{margin:.5rem !important}.m-lg-60{margin:.6rem !important}.m-lg-75{margin:.75rem !important}.m-lg-100{margin:1rem !important}.m-lg-125{margin:1.25rem !important}.m-lg-150{margin:1.5rem !important}.m-lg-175{margin:1.75rem !important}.m-lg-200{margin:2rem !important}.m-lg-250{margin:2.5rem !important}.m-lg-300{margin:3rem !important}.m-lg-400{margin:4rem !important}.m-lg-500{margin:5rem !important}.m-lg-600{margin:6rem !important}.m-lg-700{margin:7rem !important}.m-lg-800{margin:8rem !important}.m-lg-900{margin:9rem !important}.m-lg-1000{margin:10rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-lg-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-lg-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-lg-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-lg-100{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-lg-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-lg-200{margin-right:2rem !important;margin-left:2rem !important}.mx-lg-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-lg-300{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-400{margin-right:4rem !important;margin-left:4rem !important}.mx-lg-500{margin-right:5rem !important;margin-left:5rem !important}.mx-lg-600{margin-right:6rem !important;margin-left:6rem !important}.mx-lg-700{margin-right:7rem !important;margin-left:7rem !important}.mx-lg-800{margin-right:8rem !important;margin-left:8rem !important}.mx-lg-900{margin-right:9rem !important;margin-left:9rem !important}.mx-lg-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-lg-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-lg-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-lg-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-lg-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-lg-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-lg-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-lg-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-lg-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-lg-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-lg-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-lg-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-lg-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-lg-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-lg-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-10{margin-top:.1rem !important}.mt-lg-25{margin-top:.25rem !important}.mt-lg-40{margin-top:.4rem !important}.mt-lg-50{margin-top:.5rem !important}.mt-lg-60{margin-top:.6rem !important}.mt-lg-75{margin-top:.75rem !important}.mt-lg-100{margin-top:1rem !important}.mt-lg-125{margin-top:1.25rem !important}.mt-lg-150{margin-top:1.5rem !important}.mt-lg-175{margin-top:1.75rem !important}.mt-lg-200{margin-top:2rem !important}.mt-lg-250{margin-top:2.5rem !important}.mt-lg-300{margin-top:3rem !important}.mt-lg-400{margin-top:4rem !important}.mt-lg-500{margin-top:5rem !important}.mt-lg-600{margin-top:6rem !important}.mt-lg-700{margin-top:7rem !important}.mt-lg-800{margin-top:8rem !important}.mt-lg-900{margin-top:9rem !important}.mt-lg-1000{margin-top:10rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-10{margin-right:.1rem !important}.me-lg-25{margin-right:.25rem !important}.me-lg-40{margin-right:.4rem !important}.me-lg-50{margin-right:.5rem !important}.me-lg-60{margin-right:.6rem !important}.me-lg-75{margin-right:.75rem !important}.me-lg-100{margin-right:1rem !important}.me-lg-125{margin-right:1.25rem !important}.me-lg-150{margin-right:1.5rem !important}.me-lg-175{margin-right:1.75rem !important}.me-lg-200{margin-right:2rem !important}.me-lg-250{margin-right:2.5rem !important}.me-lg-300{margin-right:3rem !important}.me-lg-400{margin-right:4rem !important}.me-lg-500{margin-right:5rem !important}.me-lg-600{margin-right:6rem !important}.me-lg-700{margin-right:7rem !important}.me-lg-800{margin-right:8rem !important}.me-lg-900{margin-right:9rem !important}.me-lg-1000{margin-right:10rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-10{margin-bottom:.1rem !important}.mb-lg-25{margin-bottom:.25rem !important}.mb-lg-40{margin-bottom:.4rem !important}.mb-lg-50{margin-bottom:.5rem !important}.mb-lg-60{margin-bottom:.6rem !important}.mb-lg-75{margin-bottom:.75rem !important}.mb-lg-100{margin-bottom:1rem !important}.mb-lg-125{margin-bottom:1.25rem !important}.mb-lg-150{margin-bottom:1.5rem !important}.mb-lg-175{margin-bottom:1.75rem !important}.mb-lg-200{margin-bottom:2rem !important}.mb-lg-250{margin-bottom:2.5rem !important}.mb-lg-300{margin-bottom:3rem !important}.mb-lg-400{margin-bottom:4rem !important}.mb-lg-500{margin-bottom:5rem !important}.mb-lg-600{margin-bottom:6rem !important}.mb-lg-700{margin-bottom:7rem !important}.mb-lg-800{margin-bottom:8rem !important}.mb-lg-900{margin-bottom:9rem !important}.mb-lg-1000{margin-bottom:10rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-10{margin-left:.1rem !important}.ms-lg-25{margin-left:.25rem !important}.ms-lg-40{margin-left:.4rem !important}.ms-lg-50{margin-left:.5rem !important}.ms-lg-60{margin-left:.6rem !important}.ms-lg-75{margin-left:.75rem !important}.ms-lg-100{margin-left:1rem !important}.ms-lg-125{margin-left:1.25rem !important}.ms-lg-150{margin-left:1.5rem !important}.ms-lg-175{margin-left:1.75rem !important}.ms-lg-200{margin-left:2rem !important}.ms-lg-250{margin-left:2.5rem !important}.ms-lg-300{margin-left:3rem !important}.ms-lg-400{margin-left:4rem !important}.ms-lg-500{margin-left:5rem !important}.ms-lg-600{margin-left:6rem !important}.ms-lg-700{margin-left:7rem !important}.ms-lg-800{margin-left:8rem !important}.ms-lg-900{margin-left:9rem !important}.ms-lg-1000{margin-left:10rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-10{padding:.1rem !important}.p-lg-25{padding:.25rem !important}.p-lg-40{padding:.4rem !important}.p-lg-50{padding:.5rem !important}.p-lg-60{padding:.6rem !important}.p-lg-75{padding:.75rem !important}.p-lg-100{padding:1rem !important}.p-lg-125{padding:1.25rem !important}.p-lg-150{padding:1.5rem !important}.p-lg-175{padding:1.75rem !important}.p-lg-200{padding:2rem !important}.p-lg-250{padding:2.5rem !important}.p-lg-300{padding:3rem !important}.p-lg-400{padding:4rem !important}.p-lg-500{padding:5rem !important}.p-lg-600{padding:6rem !important}.p-lg-700{padding:7rem !important}.p-lg-800{padding:8rem !important}.p-lg-900{padding:9rem !important}.p-lg-1000{padding:10rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-lg-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-lg-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-lg-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-lg-100{padding-right:1rem !important;padding-left:1rem !important}.px-lg-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-lg-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-lg-200{padding-right:2rem !important;padding-left:2rem !important}.px-lg-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-lg-300{padding-right:3rem !important;padding-left:3rem !important}.px-lg-400{padding-right:4rem !important;padding-left:4rem !important}.px-lg-500{padding-right:5rem !important;padding-left:5rem !important}.px-lg-600{padding-right:6rem !important;padding-left:6rem !important}.px-lg-700{padding-right:7rem !important;padding-left:7rem !important}.px-lg-800{padding-right:8rem !important;padding-left:8rem !important}.px-lg-900{padding-right:9rem !important;padding-left:9rem !important}.px-lg-1000{padding-right:10rem !important;padding-left:10rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-lg-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-lg-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-lg-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-lg-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-lg-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-lg-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-lg-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-lg-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-lg-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-lg-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-lg-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-lg-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-lg-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-lg-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-lg-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-10{padding-top:.1rem !important}.pt-lg-25{padding-top:.25rem !important}.pt-lg-40{padding-top:.4rem !important}.pt-lg-50{padding-top:.5rem !important}.pt-lg-60{padding-top:.6rem !important}.pt-lg-75{padding-top:.75rem !important}.pt-lg-100{padding-top:1rem !important}.pt-lg-125{padding-top:1.25rem !important}.pt-lg-150{padding-top:1.5rem !important}.pt-lg-175{padding-top:1.75rem !important}.pt-lg-200{padding-top:2rem !important}.pt-lg-250{padding-top:2.5rem !important}.pt-lg-300{padding-top:3rem !important}.pt-lg-400{padding-top:4rem !important}.pt-lg-500{padding-top:5rem !important}.pt-lg-600{padding-top:6rem !important}.pt-lg-700{padding-top:7rem !important}.pt-lg-800{padding-top:8rem !important}.pt-lg-900{padding-top:9rem !important}.pt-lg-1000{padding-top:10rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-10{padding-right:.1rem !important}.pe-lg-25{padding-right:.25rem !important}.pe-lg-40{padding-right:.4rem !important}.pe-lg-50{padding-right:.5rem !important}.pe-lg-60{padding-right:.6rem !important}.pe-lg-75{padding-right:.75rem !important}.pe-lg-100{padding-right:1rem !important}.pe-lg-125{padding-right:1.25rem !important}.pe-lg-150{padding-right:1.5rem !important}.pe-lg-175{padding-right:1.75rem !important}.pe-lg-200{padding-right:2rem !important}.pe-lg-250{padding-right:2.5rem !important}.pe-lg-300{padding-right:3rem !important}.pe-lg-400{padding-right:4rem !important}.pe-lg-500{padding-right:5rem !important}.pe-lg-600{padding-right:6rem !important}.pe-lg-700{padding-right:7rem !important}.pe-lg-800{padding-right:8rem !important}.pe-lg-900{padding-right:9rem !important}.pe-lg-1000{padding-right:10rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-10{padding-bottom:.1rem !important}.pb-lg-25{padding-bottom:.25rem !important}.pb-lg-40{padding-bottom:.4rem !important}.pb-lg-50{padding-bottom:.5rem !important}.pb-lg-60{padding-bottom:.6rem !important}.pb-lg-75{padding-bottom:.75rem !important}.pb-lg-100{padding-bottom:1rem !important}.pb-lg-125{padding-bottom:1.25rem !important}.pb-lg-150{padding-bottom:1.5rem !important}.pb-lg-175{padding-bottom:1.75rem !important}.pb-lg-200{padding-bottom:2rem !important}.pb-lg-250{padding-bottom:2.5rem !important}.pb-lg-300{padding-bottom:3rem !important}.pb-lg-400{padding-bottom:4rem !important}.pb-lg-500{padding-bottom:5rem !important}.pb-lg-600{padding-bottom:6rem !important}.pb-lg-700{padding-bottom:7rem !important}.pb-lg-800{padding-bottom:8rem !important}.pb-lg-900{padding-bottom:9rem !important}.pb-lg-1000{padding-bottom:10rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-10{padding-left:.1rem !important}.ps-lg-25{padding-left:.25rem !important}.ps-lg-40{padding-left:.4rem !important}.ps-lg-50{padding-left:.5rem !important}.ps-lg-60{padding-left:.6rem !important}.ps-lg-75{padding-left:.75rem !important}.ps-lg-100{padding-left:1rem !important}.ps-lg-125{padding-left:1.25rem !important}.ps-lg-150{padding-left:1.5rem !important}.ps-lg-175{padding-left:1.75rem !important}.ps-lg-200{padding-left:2rem !important}.ps-lg-250{padding-left:2.5rem !important}.ps-lg-300{padding-left:3rem !important}.ps-lg-400{padding-left:4rem !important}.ps-lg-500{padding-left:5rem !important}.ps-lg-600{padding-left:6rem !important}.ps-lg-700{padding-left:7rem !important}.ps-lg-800{padding-left:8rem !important}.ps-lg-900{padding-left:9rem !important}.ps-lg-1000{padding-left:10rem !important}.gap-lg-0{gap:0 !important}.gap-lg-10{gap:.1rem !important}.gap-lg-25{gap:.25rem !important}.gap-lg-40{gap:.4rem !important}.gap-lg-50{gap:.5rem !important}.gap-lg-60{gap:.6rem !important}.gap-lg-75{gap:.75rem !important}.gap-lg-100{gap:1rem !important}.gap-lg-125{gap:1.25rem !important}.gap-lg-150{gap:1.5rem !important}.gap-lg-175{gap:1.75rem !important}.gap-lg-200{gap:2rem !important}.gap-lg-250{gap:2.5rem !important}.gap-lg-300{gap:3rem !important}.gap-lg-400{gap:4rem !important}.gap-lg-500{gap:5rem !important}.gap-lg-600{gap:6rem !important}.gap-lg-700{gap:7rem !important}.gap-lg-800{gap:8rem !important}.gap-lg-900{gap:9rem !important}.gap-lg-1000{gap:10rem !important}.row-gap-lg-0{row-gap:0 !important}.row-gap-lg-10{row-gap:.1rem !important}.row-gap-lg-25{row-gap:.25rem !important}.row-gap-lg-40{row-gap:.4rem !important}.row-gap-lg-50{row-gap:.5rem !important}.row-gap-lg-60{row-gap:.6rem !important}.row-gap-lg-75{row-gap:.75rem !important}.row-gap-lg-100{row-gap:1rem !important}.row-gap-lg-125{row-gap:1.25rem !important}.row-gap-lg-150{row-gap:1.5rem !important}.row-gap-lg-175{row-gap:1.75rem !important}.row-gap-lg-200{row-gap:2rem !important}.row-gap-lg-250{row-gap:2.5rem !important}.row-gap-lg-300{row-gap:3rem !important}.row-gap-lg-400{row-gap:4rem !important}.row-gap-lg-500{row-gap:5rem !important}.row-gap-lg-600{row-gap:6rem !important}.row-gap-lg-700{row-gap:7rem !important}.row-gap-lg-800{row-gap:8rem !important}.row-gap-lg-900{row-gap:9rem !important}.row-gap-lg-1000{row-gap:10rem !important}.column-gap-lg-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-lg-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-lg-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-lg-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-lg-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-lg-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-lg-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-lg-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-lg-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-lg-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-lg-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-lg-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-lg-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-lg-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-lg-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-lg-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-lg-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-lg-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-lg-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-lg-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-lg-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.object-fit-xl-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-xl-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-xl-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-xl-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-xl-none{-o-object-fit:none !important;object-fit:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-inline-grid{display:inline-grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-10{margin:.1rem !important}.m-xl-25{margin:.25rem !important}.m-xl-40{margin:.4rem !important}.m-xl-50{margin:.5rem !important}.m-xl-60{margin:.6rem !important}.m-xl-75{margin:.75rem !important}.m-xl-100{margin:1rem !important}.m-xl-125{margin:1.25rem !important}.m-xl-150{margin:1.5rem !important}.m-xl-175{margin:1.75rem !important}.m-xl-200{margin:2rem !important}.m-xl-250{margin:2.5rem !important}.m-xl-300{margin:3rem !important}.m-xl-400{margin:4rem !important}.m-xl-500{margin:5rem !important}.m-xl-600{margin:6rem !important}.m-xl-700{margin:7rem !important}.m-xl-800{margin:8rem !important}.m-xl-900{margin:9rem !important}.m-xl-1000{margin:10rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-xl-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-xl-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-xl-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-xl-100{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-xl-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-xl-200{margin-right:2rem !important;margin-left:2rem !important}.mx-xl-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-xl-300{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-400{margin-right:4rem !important;margin-left:4rem !important}.mx-xl-500{margin-right:5rem !important;margin-left:5rem !important}.mx-xl-600{margin-right:6rem !important;margin-left:6rem !important}.mx-xl-700{margin-right:7rem !important;margin-left:7rem !important}.mx-xl-800{margin-right:8rem !important;margin-left:8rem !important}.mx-xl-900{margin-right:9rem !important;margin-left:9rem !important}.mx-xl-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-xl-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-xl-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-xl-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-xl-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-xl-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-xl-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-xl-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-xl-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-xl-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-xl-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-xl-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-xl-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-xl-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-xl-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-10{margin-top:.1rem !important}.mt-xl-25{margin-top:.25rem !important}.mt-xl-40{margin-top:.4rem !important}.mt-xl-50{margin-top:.5rem !important}.mt-xl-60{margin-top:.6rem !important}.mt-xl-75{margin-top:.75rem !important}.mt-xl-100{margin-top:1rem !important}.mt-xl-125{margin-top:1.25rem !important}.mt-xl-150{margin-top:1.5rem !important}.mt-xl-175{margin-top:1.75rem !important}.mt-xl-200{margin-top:2rem !important}.mt-xl-250{margin-top:2.5rem !important}.mt-xl-300{margin-top:3rem !important}.mt-xl-400{margin-top:4rem !important}.mt-xl-500{margin-top:5rem !important}.mt-xl-600{margin-top:6rem !important}.mt-xl-700{margin-top:7rem !important}.mt-xl-800{margin-top:8rem !important}.mt-xl-900{margin-top:9rem !important}.mt-xl-1000{margin-top:10rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-10{margin-right:.1rem !important}.me-xl-25{margin-right:.25rem !important}.me-xl-40{margin-right:.4rem !important}.me-xl-50{margin-right:.5rem !important}.me-xl-60{margin-right:.6rem !important}.me-xl-75{margin-right:.75rem !important}.me-xl-100{margin-right:1rem !important}.me-xl-125{margin-right:1.25rem !important}.me-xl-150{margin-right:1.5rem !important}.me-xl-175{margin-right:1.75rem !important}.me-xl-200{margin-right:2rem !important}.me-xl-250{margin-right:2.5rem !important}.me-xl-300{margin-right:3rem !important}.me-xl-400{margin-right:4rem !important}.me-xl-500{margin-right:5rem !important}.me-xl-600{margin-right:6rem !important}.me-xl-700{margin-right:7rem !important}.me-xl-800{margin-right:8rem !important}.me-xl-900{margin-right:9rem !important}.me-xl-1000{margin-right:10rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-10{margin-bottom:.1rem !important}.mb-xl-25{margin-bottom:.25rem !important}.mb-xl-40{margin-bottom:.4rem !important}.mb-xl-50{margin-bottom:.5rem !important}.mb-xl-60{margin-bottom:.6rem !important}.mb-xl-75{margin-bottom:.75rem !important}.mb-xl-100{margin-bottom:1rem !important}.mb-xl-125{margin-bottom:1.25rem !important}.mb-xl-150{margin-bottom:1.5rem !important}.mb-xl-175{margin-bottom:1.75rem !important}.mb-xl-200{margin-bottom:2rem !important}.mb-xl-250{margin-bottom:2.5rem !important}.mb-xl-300{margin-bottom:3rem !important}.mb-xl-400{margin-bottom:4rem !important}.mb-xl-500{margin-bottom:5rem !important}.mb-xl-600{margin-bottom:6rem !important}.mb-xl-700{margin-bottom:7rem !important}.mb-xl-800{margin-bottom:8rem !important}.mb-xl-900{margin-bottom:9rem !important}.mb-xl-1000{margin-bottom:10rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-10{margin-left:.1rem !important}.ms-xl-25{margin-left:.25rem !important}.ms-xl-40{margin-left:.4rem !important}.ms-xl-50{margin-left:.5rem !important}.ms-xl-60{margin-left:.6rem !important}.ms-xl-75{margin-left:.75rem !important}.ms-xl-100{margin-left:1rem !important}.ms-xl-125{margin-left:1.25rem !important}.ms-xl-150{margin-left:1.5rem !important}.ms-xl-175{margin-left:1.75rem !important}.ms-xl-200{margin-left:2rem !important}.ms-xl-250{margin-left:2.5rem !important}.ms-xl-300{margin-left:3rem !important}.ms-xl-400{margin-left:4rem !important}.ms-xl-500{margin-left:5rem !important}.ms-xl-600{margin-left:6rem !important}.ms-xl-700{margin-left:7rem !important}.ms-xl-800{margin-left:8rem !important}.ms-xl-900{margin-left:9rem !important}.ms-xl-1000{margin-left:10rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-10{padding:.1rem !important}.p-xl-25{padding:.25rem !important}.p-xl-40{padding:.4rem !important}.p-xl-50{padding:.5rem !important}.p-xl-60{padding:.6rem !important}.p-xl-75{padding:.75rem !important}.p-xl-100{padding:1rem !important}.p-xl-125{padding:1.25rem !important}.p-xl-150{padding:1.5rem !important}.p-xl-175{padding:1.75rem !important}.p-xl-200{padding:2rem !important}.p-xl-250{padding:2.5rem !important}.p-xl-300{padding:3rem !important}.p-xl-400{padding:4rem !important}.p-xl-500{padding:5rem !important}.p-xl-600{padding:6rem !important}.p-xl-700{padding:7rem !important}.p-xl-800{padding:8rem !important}.p-xl-900{padding:9rem !important}.p-xl-1000{padding:10rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-xl-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-xl-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-xl-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-xl-100{padding-right:1rem !important;padding-left:1rem !important}.px-xl-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-xl-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-xl-200{padding-right:2rem !important;padding-left:2rem !important}.px-xl-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-xl-300{padding-right:3rem !important;padding-left:3rem !important}.px-xl-400{padding-right:4rem !important;padding-left:4rem !important}.px-xl-500{padding-right:5rem !important;padding-left:5rem !important}.px-xl-600{padding-right:6rem !important;padding-left:6rem !important}.px-xl-700{padding-right:7rem !important;padding-left:7rem !important}.px-xl-800{padding-right:8rem !important;padding-left:8rem !important}.px-xl-900{padding-right:9rem !important;padding-left:9rem !important}.px-xl-1000{padding-right:10rem !important;padding-left:10rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-xl-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-xl-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-xl-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-xl-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-xl-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-xl-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-xl-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-xl-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-xl-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-xl-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-xl-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-xl-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-xl-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-xl-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-xl-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-10{padding-top:.1rem !important}.pt-xl-25{padding-top:.25rem !important}.pt-xl-40{padding-top:.4rem !important}.pt-xl-50{padding-top:.5rem !important}.pt-xl-60{padding-top:.6rem !important}.pt-xl-75{padding-top:.75rem !important}.pt-xl-100{padding-top:1rem !important}.pt-xl-125{padding-top:1.25rem !important}.pt-xl-150{padding-top:1.5rem !important}.pt-xl-175{padding-top:1.75rem !important}.pt-xl-200{padding-top:2rem !important}.pt-xl-250{padding-top:2.5rem !important}.pt-xl-300{padding-top:3rem !important}.pt-xl-400{padding-top:4rem !important}.pt-xl-500{padding-top:5rem !important}.pt-xl-600{padding-top:6rem !important}.pt-xl-700{padding-top:7rem !important}.pt-xl-800{padding-top:8rem !important}.pt-xl-900{padding-top:9rem !important}.pt-xl-1000{padding-top:10rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-10{padding-right:.1rem !important}.pe-xl-25{padding-right:.25rem !important}.pe-xl-40{padding-right:.4rem !important}.pe-xl-50{padding-right:.5rem !important}.pe-xl-60{padding-right:.6rem !important}.pe-xl-75{padding-right:.75rem !important}.pe-xl-100{padding-right:1rem !important}.pe-xl-125{padding-right:1.25rem !important}.pe-xl-150{padding-right:1.5rem !important}.pe-xl-175{padding-right:1.75rem !important}.pe-xl-200{padding-right:2rem !important}.pe-xl-250{padding-right:2.5rem !important}.pe-xl-300{padding-right:3rem !important}.pe-xl-400{padding-right:4rem !important}.pe-xl-500{padding-right:5rem !important}.pe-xl-600{padding-right:6rem !important}.pe-xl-700{padding-right:7rem !important}.pe-xl-800{padding-right:8rem !important}.pe-xl-900{padding-right:9rem !important}.pe-xl-1000{padding-right:10rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-10{padding-bottom:.1rem !important}.pb-xl-25{padding-bottom:.25rem !important}.pb-xl-40{padding-bottom:.4rem !important}.pb-xl-50{padding-bottom:.5rem !important}.pb-xl-60{padding-bottom:.6rem !important}.pb-xl-75{padding-bottom:.75rem !important}.pb-xl-100{padding-bottom:1rem !important}.pb-xl-125{padding-bottom:1.25rem !important}.pb-xl-150{padding-bottom:1.5rem !important}.pb-xl-175{padding-bottom:1.75rem !important}.pb-xl-200{padding-bottom:2rem !important}.pb-xl-250{padding-bottom:2.5rem !important}.pb-xl-300{padding-bottom:3rem !important}.pb-xl-400{padding-bottom:4rem !important}.pb-xl-500{padding-bottom:5rem !important}.pb-xl-600{padding-bottom:6rem !important}.pb-xl-700{padding-bottom:7rem !important}.pb-xl-800{padding-bottom:8rem !important}.pb-xl-900{padding-bottom:9rem !important}.pb-xl-1000{padding-bottom:10rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-10{padding-left:.1rem !important}.ps-xl-25{padding-left:.25rem !important}.ps-xl-40{padding-left:.4rem !important}.ps-xl-50{padding-left:.5rem !important}.ps-xl-60{padding-left:.6rem !important}.ps-xl-75{padding-left:.75rem !important}.ps-xl-100{padding-left:1rem !important}.ps-xl-125{padding-left:1.25rem !important}.ps-xl-150{padding-left:1.5rem !important}.ps-xl-175{padding-left:1.75rem !important}.ps-xl-200{padding-left:2rem !important}.ps-xl-250{padding-left:2.5rem !important}.ps-xl-300{padding-left:3rem !important}.ps-xl-400{padding-left:4rem !important}.ps-xl-500{padding-left:5rem !important}.ps-xl-600{padding-left:6rem !important}.ps-xl-700{padding-left:7rem !important}.ps-xl-800{padding-left:8rem !important}.ps-xl-900{padding-left:9rem !important}.ps-xl-1000{padding-left:10rem !important}.gap-xl-0{gap:0 !important}.gap-xl-10{gap:.1rem !important}.gap-xl-25{gap:.25rem !important}.gap-xl-40{gap:.4rem !important}.gap-xl-50{gap:.5rem !important}.gap-xl-60{gap:.6rem !important}.gap-xl-75{gap:.75rem !important}.gap-xl-100{gap:1rem !important}.gap-xl-125{gap:1.25rem !important}.gap-xl-150{gap:1.5rem !important}.gap-xl-175{gap:1.75rem !important}.gap-xl-200{gap:2rem !important}.gap-xl-250{gap:2.5rem !important}.gap-xl-300{gap:3rem !important}.gap-xl-400{gap:4rem !important}.gap-xl-500{gap:5rem !important}.gap-xl-600{gap:6rem !important}.gap-xl-700{gap:7rem !important}.gap-xl-800{gap:8rem !important}.gap-xl-900{gap:9rem !important}.gap-xl-1000{gap:10rem !important}.row-gap-xl-0{row-gap:0 !important}.row-gap-xl-10{row-gap:.1rem !important}.row-gap-xl-25{row-gap:.25rem !important}.row-gap-xl-40{row-gap:.4rem !important}.row-gap-xl-50{row-gap:.5rem !important}.row-gap-xl-60{row-gap:.6rem !important}.row-gap-xl-75{row-gap:.75rem !important}.row-gap-xl-100{row-gap:1rem !important}.row-gap-xl-125{row-gap:1.25rem !important}.row-gap-xl-150{row-gap:1.5rem !important}.row-gap-xl-175{row-gap:1.75rem !important}.row-gap-xl-200{row-gap:2rem !important}.row-gap-xl-250{row-gap:2.5rem !important}.row-gap-xl-300{row-gap:3rem !important}.row-gap-xl-400{row-gap:4rem !important}.row-gap-xl-500{row-gap:5rem !important}.row-gap-xl-600{row-gap:6rem !important}.row-gap-xl-700{row-gap:7rem !important}.row-gap-xl-800{row-gap:8rem !important}.row-gap-xl-900{row-gap:9rem !important}.row-gap-xl-1000{row-gap:10rem !important}.column-gap-xl-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-xl-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-xl-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-xl-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-xl-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-xl-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-xl-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-xl-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-xl-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-xl-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-xl-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-xl-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-xl-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-xl-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-xl-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-xl-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-xl-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-xl-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-xl-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-xl-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-xl-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.object-fit-xxl-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-xxl-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-xxl-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-xxl-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-xxl-none{-o-object-fit:none !important;object-fit:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-inline-grid{display:inline-grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-10{margin:.1rem !important}.m-xxl-25{margin:.25rem !important}.m-xxl-40{margin:.4rem !important}.m-xxl-50{margin:.5rem !important}.m-xxl-60{margin:.6rem !important}.m-xxl-75{margin:.75rem !important}.m-xxl-100{margin:1rem !important}.m-xxl-125{margin:1.25rem !important}.m-xxl-150{margin:1.5rem !important}.m-xxl-175{margin:1.75rem !important}.m-xxl-200{margin:2rem !important}.m-xxl-250{margin:2.5rem !important}.m-xxl-300{margin:3rem !important}.m-xxl-400{margin:4rem !important}.m-xxl-500{margin:5rem !important}.m-xxl-600{margin:6rem !important}.m-xxl-700{margin:7rem !important}.m-xxl-800{margin:8rem !important}.m-xxl-900{margin:9rem !important}.m-xxl-1000{margin:10rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-xxl-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-xxl-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-xxl-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-xxl-100{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-xxl-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-xxl-200{margin-right:2rem !important;margin-left:2rem !important}.mx-xxl-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-xxl-300{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-400{margin-right:4rem !important;margin-left:4rem !important}.mx-xxl-500{margin-right:5rem !important;margin-left:5rem !important}.mx-xxl-600{margin-right:6rem !important;margin-left:6rem !important}.mx-xxl-700{margin-right:7rem !important;margin-left:7rem !important}.mx-xxl-800{margin-right:8rem !important;margin-left:8rem !important}.mx-xxl-900{margin-right:9rem !important;margin-left:9rem !important}.mx-xxl-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-xxl-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-xxl-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-xxl-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-xxl-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-xxl-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-xxl-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-xxl-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-xxl-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-xxl-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-xxl-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-xxl-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-xxl-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-xxl-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-xxl-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-10{margin-top:.1rem !important}.mt-xxl-25{margin-top:.25rem !important}.mt-xxl-40{margin-top:.4rem !important}.mt-xxl-50{margin-top:.5rem !important}.mt-xxl-60{margin-top:.6rem !important}.mt-xxl-75{margin-top:.75rem !important}.mt-xxl-100{margin-top:1rem !important}.mt-xxl-125{margin-top:1.25rem !important}.mt-xxl-150{margin-top:1.5rem !important}.mt-xxl-175{margin-top:1.75rem !important}.mt-xxl-200{margin-top:2rem !important}.mt-xxl-250{margin-top:2.5rem !important}.mt-xxl-300{margin-top:3rem !important}.mt-xxl-400{margin-top:4rem !important}.mt-xxl-500{margin-top:5rem !important}.mt-xxl-600{margin-top:6rem !important}.mt-xxl-700{margin-top:7rem !important}.mt-xxl-800{margin-top:8rem !important}.mt-xxl-900{margin-top:9rem !important}.mt-xxl-1000{margin-top:10rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-10{margin-right:.1rem !important}.me-xxl-25{margin-right:.25rem !important}.me-xxl-40{margin-right:.4rem !important}.me-xxl-50{margin-right:.5rem !important}.me-xxl-60{margin-right:.6rem !important}.me-xxl-75{margin-right:.75rem !important}.me-xxl-100{margin-right:1rem !important}.me-xxl-125{margin-right:1.25rem !important}.me-xxl-150{margin-right:1.5rem !important}.me-xxl-175{margin-right:1.75rem !important}.me-xxl-200{margin-right:2rem !important}.me-xxl-250{margin-right:2.5rem !important}.me-xxl-300{margin-right:3rem !important}.me-xxl-400{margin-right:4rem !important}.me-xxl-500{margin-right:5rem !important}.me-xxl-600{margin-right:6rem !important}.me-xxl-700{margin-right:7rem !important}.me-xxl-800{margin-right:8rem !important}.me-xxl-900{margin-right:9rem !important}.me-xxl-1000{margin-right:10rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-10{margin-bottom:.1rem !important}.mb-xxl-25{margin-bottom:.25rem !important}.mb-xxl-40{margin-bottom:.4rem !important}.mb-xxl-50{margin-bottom:.5rem !important}.mb-xxl-60{margin-bottom:.6rem !important}.mb-xxl-75{margin-bottom:.75rem !important}.mb-xxl-100{margin-bottom:1rem !important}.mb-xxl-125{margin-bottom:1.25rem !important}.mb-xxl-150{margin-bottom:1.5rem !important}.mb-xxl-175{margin-bottom:1.75rem !important}.mb-xxl-200{margin-bottom:2rem !important}.mb-xxl-250{margin-bottom:2.5rem !important}.mb-xxl-300{margin-bottom:3rem !important}.mb-xxl-400{margin-bottom:4rem !important}.mb-xxl-500{margin-bottom:5rem !important}.mb-xxl-600{margin-bottom:6rem !important}.mb-xxl-700{margin-bottom:7rem !important}.mb-xxl-800{margin-bottom:8rem !important}.mb-xxl-900{margin-bottom:9rem !important}.mb-xxl-1000{margin-bottom:10rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-10{margin-left:.1rem !important}.ms-xxl-25{margin-left:.25rem !important}.ms-xxl-40{margin-left:.4rem !important}.ms-xxl-50{margin-left:.5rem !important}.ms-xxl-60{margin-left:.6rem !important}.ms-xxl-75{margin-left:.75rem !important}.ms-xxl-100{margin-left:1rem !important}.ms-xxl-125{margin-left:1.25rem !important}.ms-xxl-150{margin-left:1.5rem !important}.ms-xxl-175{margin-left:1.75rem !important}.ms-xxl-200{margin-left:2rem !important}.ms-xxl-250{margin-left:2.5rem !important}.ms-xxl-300{margin-left:3rem !important}.ms-xxl-400{margin-left:4rem !important}.ms-xxl-500{margin-left:5rem !important}.ms-xxl-600{margin-left:6rem !important}.ms-xxl-700{margin-left:7rem !important}.ms-xxl-800{margin-left:8rem !important}.ms-xxl-900{margin-left:9rem !important}.ms-xxl-1000{margin-left:10rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-10{padding:.1rem !important}.p-xxl-25{padding:.25rem !important}.p-xxl-40{padding:.4rem !important}.p-xxl-50{padding:.5rem !important}.p-xxl-60{padding:.6rem !important}.p-xxl-75{padding:.75rem !important}.p-xxl-100{padding:1rem !important}.p-xxl-125{padding:1.25rem !important}.p-xxl-150{padding:1.5rem !important}.p-xxl-175{padding:1.75rem !important}.p-xxl-200{padding:2rem !important}.p-xxl-250{padding:2.5rem !important}.p-xxl-300{padding:3rem !important}.p-xxl-400{padding:4rem !important}.p-xxl-500{padding:5rem !important}.p-xxl-600{padding:6rem !important}.p-xxl-700{padding:7rem !important}.p-xxl-800{padding:8rem !important}.p-xxl-900{padding:9rem !important}.p-xxl-1000{padding:10rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-xxl-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-xxl-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-xxl-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-xxl-100{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-xxl-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-xxl-200{padding-right:2rem !important;padding-left:2rem !important}.px-xxl-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-xxl-300{padding-right:3rem !important;padding-left:3rem !important}.px-xxl-400{padding-right:4rem !important;padding-left:4rem !important}.px-xxl-500{padding-right:5rem !important;padding-left:5rem !important}.px-xxl-600{padding-right:6rem !important;padding-left:6rem !important}.px-xxl-700{padding-right:7rem !important;padding-left:7rem !important}.px-xxl-800{padding-right:8rem !important;padding-left:8rem !important}.px-xxl-900{padding-right:9rem !important;padding-left:9rem !important}.px-xxl-1000{padding-right:10rem !important;padding-left:10rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-xxl-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-xxl-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-xxl-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-xxl-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-xxl-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-xxl-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-xxl-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-xxl-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-xxl-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-xxl-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-xxl-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-xxl-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-xxl-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-xxl-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-xxl-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-10{padding-top:.1rem !important}.pt-xxl-25{padding-top:.25rem !important}.pt-xxl-40{padding-top:.4rem !important}.pt-xxl-50{padding-top:.5rem !important}.pt-xxl-60{padding-top:.6rem !important}.pt-xxl-75{padding-top:.75rem !important}.pt-xxl-100{padding-top:1rem !important}.pt-xxl-125{padding-top:1.25rem !important}.pt-xxl-150{padding-top:1.5rem !important}.pt-xxl-175{padding-top:1.75rem !important}.pt-xxl-200{padding-top:2rem !important}.pt-xxl-250{padding-top:2.5rem !important}.pt-xxl-300{padding-top:3rem !important}.pt-xxl-400{padding-top:4rem !important}.pt-xxl-500{padding-top:5rem !important}.pt-xxl-600{padding-top:6rem !important}.pt-xxl-700{padding-top:7rem !important}.pt-xxl-800{padding-top:8rem !important}.pt-xxl-900{padding-top:9rem !important}.pt-xxl-1000{padding-top:10rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-10{padding-right:.1rem !important}.pe-xxl-25{padding-right:.25rem !important}.pe-xxl-40{padding-right:.4rem !important}.pe-xxl-50{padding-right:.5rem !important}.pe-xxl-60{padding-right:.6rem !important}.pe-xxl-75{padding-right:.75rem !important}.pe-xxl-100{padding-right:1rem !important}.pe-xxl-125{padding-right:1.25rem !important}.pe-xxl-150{padding-right:1.5rem !important}.pe-xxl-175{padding-right:1.75rem !important}.pe-xxl-200{padding-right:2rem !important}.pe-xxl-250{padding-right:2.5rem !important}.pe-xxl-300{padding-right:3rem !important}.pe-xxl-400{padding-right:4rem !important}.pe-xxl-500{padding-right:5rem !important}.pe-xxl-600{padding-right:6rem !important}.pe-xxl-700{padding-right:7rem !important}.pe-xxl-800{padding-right:8rem !important}.pe-xxl-900{padding-right:9rem !important}.pe-xxl-1000{padding-right:10rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-10{padding-bottom:.1rem !important}.pb-xxl-25{padding-bottom:.25rem !important}.pb-xxl-40{padding-bottom:.4rem !important}.pb-xxl-50{padding-bottom:.5rem !important}.pb-xxl-60{padding-bottom:.6rem !important}.pb-xxl-75{padding-bottom:.75rem !important}.pb-xxl-100{padding-bottom:1rem !important}.pb-xxl-125{padding-bottom:1.25rem !important}.pb-xxl-150{padding-bottom:1.5rem !important}.pb-xxl-175{padding-bottom:1.75rem !important}.pb-xxl-200{padding-bottom:2rem !important}.pb-xxl-250{padding-bottom:2.5rem !important}.pb-xxl-300{padding-bottom:3rem !important}.pb-xxl-400{padding-bottom:4rem !important}.pb-xxl-500{padding-bottom:5rem !important}.pb-xxl-600{padding-bottom:6rem !important}.pb-xxl-700{padding-bottom:7rem !important}.pb-xxl-800{padding-bottom:8rem !important}.pb-xxl-900{padding-bottom:9rem !important}.pb-xxl-1000{padding-bottom:10rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-10{padding-left:.1rem !important}.ps-xxl-25{padding-left:.25rem !important}.ps-xxl-40{padding-left:.4rem !important}.ps-xxl-50{padding-left:.5rem !important}.ps-xxl-60{padding-left:.6rem !important}.ps-xxl-75{padding-left:.75rem !important}.ps-xxl-100{padding-left:1rem !important}.ps-xxl-125{padding-left:1.25rem !important}.ps-xxl-150{padding-left:1.5rem !important}.ps-xxl-175{padding-left:1.75rem !important}.ps-xxl-200{padding-left:2rem !important}.ps-xxl-250{padding-left:2.5rem !important}.ps-xxl-300{padding-left:3rem !important}.ps-xxl-400{padding-left:4rem !important}.ps-xxl-500{padding-left:5rem !important}.ps-xxl-600{padding-left:6rem !important}.ps-xxl-700{padding-left:7rem !important}.ps-xxl-800{padding-left:8rem !important}.ps-xxl-900{padding-left:9rem !important}.ps-xxl-1000{padding-left:10rem !important}.gap-xxl-0{gap:0 !important}.gap-xxl-10{gap:.1rem !important}.gap-xxl-25{gap:.25rem !important}.gap-xxl-40{gap:.4rem !important}.gap-xxl-50{gap:.5rem !important}.gap-xxl-60{gap:.6rem !important}.gap-xxl-75{gap:.75rem !important}.gap-xxl-100{gap:1rem !important}.gap-xxl-125{gap:1.25rem !important}.gap-xxl-150{gap:1.5rem !important}.gap-xxl-175{gap:1.75rem !important}.gap-xxl-200{gap:2rem !important}.gap-xxl-250{gap:2.5rem !important}.gap-xxl-300{gap:3rem !important}.gap-xxl-400{gap:4rem !important}.gap-xxl-500{gap:5rem !important}.gap-xxl-600{gap:6rem !important}.gap-xxl-700{gap:7rem !important}.gap-xxl-800{gap:8rem !important}.gap-xxl-900{gap:9rem !important}.gap-xxl-1000{gap:10rem !important}.row-gap-xxl-0{row-gap:0 !important}.row-gap-xxl-10{row-gap:.1rem !important}.row-gap-xxl-25{row-gap:.25rem !important}.row-gap-xxl-40{row-gap:.4rem !important}.row-gap-xxl-50{row-gap:.5rem !important}.row-gap-xxl-60{row-gap:.6rem !important}.row-gap-xxl-75{row-gap:.75rem !important}.row-gap-xxl-100{row-gap:1rem !important}.row-gap-xxl-125{row-gap:1.25rem !important}.row-gap-xxl-150{row-gap:1.5rem !important}.row-gap-xxl-175{row-gap:1.75rem !important}.row-gap-xxl-200{row-gap:2rem !important}.row-gap-xxl-250{row-gap:2.5rem !important}.row-gap-xxl-300{row-gap:3rem !important}.row-gap-xxl-400{row-gap:4rem !important}.row-gap-xxl-500{row-gap:5rem !important}.row-gap-xxl-600{row-gap:6rem !important}.row-gap-xxl-700{row-gap:7rem !important}.row-gap-xxl-800{row-gap:8rem !important}.row-gap-xxl-900{row-gap:9rem !important}.row-gap-xxl-1000{row-gap:10rem !important}.column-gap-xxl-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-xxl-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-xxl-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-xxl-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-xxl-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-xxl-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-xxl-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-xxl-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-xxl-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-xxl-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-xxl-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-xxl-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-xxl-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-xxl-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-xxl-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-xxl-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-xxl-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-xxl-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-xxl-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-xxl-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-xxl-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}@media(min-width: 1600px){.float-xxxl-start{float:left !important}.float-xxxl-end{float:right !important}.float-xxxl-none{float:none !important}.object-fit-xxxl-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-xxxl-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-xxxl-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-xxxl-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-xxxl-none{-o-object-fit:none !important;object-fit:none !important}.d-xxxl-inline{display:inline !important}.d-xxxl-inline-block{display:inline-block !important}.d-xxxl-block{display:block !important}.d-xxxl-grid{display:grid !important}.d-xxxl-inline-grid{display:inline-grid !important}.d-xxxl-table{display:table !important}.d-xxxl-table-row{display:table-row !important}.d-xxxl-table-cell{display:table-cell !important}.d-xxxl-flex{display:flex !important}.d-xxxl-inline-flex{display:inline-flex !important}.d-xxxl-none{display:none !important}.flex-xxxl-fill{flex:1 1 auto !important}.flex-xxxl-row{flex-direction:row !important}.flex-xxxl-column{flex-direction:column !important}.flex-xxxl-row-reverse{flex-direction:row-reverse !important}.flex-xxxl-column-reverse{flex-direction:column-reverse !important}.flex-xxxl-grow-0{flex-grow:0 !important}.flex-xxxl-grow-1{flex-grow:1 !important}.flex-xxxl-shrink-0{flex-shrink:0 !important}.flex-xxxl-shrink-1{flex-shrink:1 !important}.flex-xxxl-wrap{flex-wrap:wrap !important}.flex-xxxl-nowrap{flex-wrap:nowrap !important}.flex-xxxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxxl-start{justify-content:flex-start !important}.justify-content-xxxl-end{justify-content:flex-end !important}.justify-content-xxxl-center{justify-content:center !important}.justify-content-xxxl-between{justify-content:space-between !important}.justify-content-xxxl-around{justify-content:space-around !important}.justify-content-xxxl-evenly{justify-content:space-evenly !important}.align-items-xxxl-start{align-items:flex-start !important}.align-items-xxxl-end{align-items:flex-end !important}.align-items-xxxl-center{align-items:center !important}.align-items-xxxl-baseline{align-items:baseline !important}.align-items-xxxl-stretch{align-items:stretch !important}.align-content-xxxl-start{align-content:flex-start !important}.align-content-xxxl-end{align-content:flex-end !important}.align-content-xxxl-center{align-content:center !important}.align-content-xxxl-between{align-content:space-between !important}.align-content-xxxl-around{align-content:space-around !important}.align-content-xxxl-stretch{align-content:stretch !important}.align-self-xxxl-auto{align-self:auto !important}.align-self-xxxl-start{align-self:flex-start !important}.align-self-xxxl-end{align-self:flex-end !important}.align-self-xxxl-center{align-self:center !important}.align-self-xxxl-baseline{align-self:baseline !important}.align-self-xxxl-stretch{align-self:stretch !important}.order-xxxl-first{order:-1 !important}.order-xxxl-0{order:0 !important}.order-xxxl-1{order:1 !important}.order-xxxl-2{order:2 !important}.order-xxxl-3{order:3 !important}.order-xxxl-4{order:4 !important}.order-xxxl-5{order:5 !important}.order-xxxl-last{order:6 !important}.m-xxxl-0{margin:0 !important}.m-xxxl-10{margin:.1rem !important}.m-xxxl-25{margin:.25rem !important}.m-xxxl-40{margin:.4rem !important}.m-xxxl-50{margin:.5rem !important}.m-xxxl-60{margin:.6rem !important}.m-xxxl-75{margin:.75rem !important}.m-xxxl-100{margin:1rem !important}.m-xxxl-125{margin:1.25rem !important}.m-xxxl-150{margin:1.5rem !important}.m-xxxl-175{margin:1.75rem !important}.m-xxxl-200{margin:2rem !important}.m-xxxl-250{margin:2.5rem !important}.m-xxxl-300{margin:3rem !important}.m-xxxl-400{margin:4rem !important}.m-xxxl-500{margin:5rem !important}.m-xxxl-600{margin:6rem !important}.m-xxxl-700{margin:7rem !important}.m-xxxl-800{margin:8rem !important}.m-xxxl-900{margin:9rem !important}.m-xxxl-1000{margin:10rem !important}.m-xxxl-auto{margin:auto !important}.mx-xxxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxxl-10{margin-right:.1rem !important;margin-left:.1rem !important}.mx-xxxl-25{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxxl-40{margin-right:.4rem !important;margin-left:.4rem !important}.mx-xxxl-50{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxxl-60{margin-right:.6rem !important;margin-left:.6rem !important}.mx-xxxl-75{margin-right:.75rem !important;margin-left:.75rem !important}.mx-xxxl-100{margin-right:1rem !important;margin-left:1rem !important}.mx-xxxl-125{margin-right:1.25rem !important;margin-left:1.25rem !important}.mx-xxxl-150{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxxl-175{margin-right:1.75rem !important;margin-left:1.75rem !important}.mx-xxxl-200{margin-right:2rem !important;margin-left:2rem !important}.mx-xxxl-250{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-xxxl-300{margin-right:3rem !important;margin-left:3rem !important}.mx-xxxl-400{margin-right:4rem !important;margin-left:4rem !important}.mx-xxxl-500{margin-right:5rem !important;margin-left:5rem !important}.mx-xxxl-600{margin-right:6rem !important;margin-left:6rem !important}.mx-xxxl-700{margin-right:7rem !important;margin-left:7rem !important}.mx-xxxl-800{margin-right:8rem !important;margin-left:8rem !important}.mx-xxxl-900{margin-right:9rem !important;margin-left:9rem !important}.mx-xxxl-1000{margin-right:10rem !important;margin-left:10rem !important}.mx-xxxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxxl-10{margin-top:.1rem !important;margin-bottom:.1rem !important}.my-xxxl-25{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxxl-40{margin-top:.4rem !important;margin-bottom:.4rem !important}.my-xxxl-50{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxxl-60{margin-top:.6rem !important;margin-bottom:.6rem !important}.my-xxxl-75{margin-top:.75rem !important;margin-bottom:.75rem !important}.my-xxxl-100{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxxl-125{margin-top:1.25rem !important;margin-bottom:1.25rem !important}.my-xxxl-150{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxxl-175{margin-top:1.75rem !important;margin-bottom:1.75rem !important}.my-xxxl-200{margin-top:2rem !important;margin-bottom:2rem !important}.my-xxxl-250{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-xxxl-300{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxxl-400{margin-top:4rem !important;margin-bottom:4rem !important}.my-xxxl-500{margin-top:5rem !important;margin-bottom:5rem !important}.my-xxxl-600{margin-top:6rem !important;margin-bottom:6rem !important}.my-xxxl-700{margin-top:7rem !important;margin-bottom:7rem !important}.my-xxxl-800{margin-top:8rem !important;margin-bottom:8rem !important}.my-xxxl-900{margin-top:9rem !important;margin-bottom:9rem !important}.my-xxxl-1000{margin-top:10rem !important;margin-bottom:10rem !important}.my-xxxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxxl-0{margin-top:0 !important}.mt-xxxl-10{margin-top:.1rem !important}.mt-xxxl-25{margin-top:.25rem !important}.mt-xxxl-40{margin-top:.4rem !important}.mt-xxxl-50{margin-top:.5rem !important}.mt-xxxl-60{margin-top:.6rem !important}.mt-xxxl-75{margin-top:.75rem !important}.mt-xxxl-100{margin-top:1rem !important}.mt-xxxl-125{margin-top:1.25rem !important}.mt-xxxl-150{margin-top:1.5rem !important}.mt-xxxl-175{margin-top:1.75rem !important}.mt-xxxl-200{margin-top:2rem !important}.mt-xxxl-250{margin-top:2.5rem !important}.mt-xxxl-300{margin-top:3rem !important}.mt-xxxl-400{margin-top:4rem !important}.mt-xxxl-500{margin-top:5rem !important}.mt-xxxl-600{margin-top:6rem !important}.mt-xxxl-700{margin-top:7rem !important}.mt-xxxl-800{margin-top:8rem !important}.mt-xxxl-900{margin-top:9rem !important}.mt-xxxl-1000{margin-top:10rem !important}.mt-xxxl-auto{margin-top:auto !important}.me-xxxl-0{margin-right:0 !important}.me-xxxl-10{margin-right:.1rem !important}.me-xxxl-25{margin-right:.25rem !important}.me-xxxl-40{margin-right:.4rem !important}.me-xxxl-50{margin-right:.5rem !important}.me-xxxl-60{margin-right:.6rem !important}.me-xxxl-75{margin-right:.75rem !important}.me-xxxl-100{margin-right:1rem !important}.me-xxxl-125{margin-right:1.25rem !important}.me-xxxl-150{margin-right:1.5rem !important}.me-xxxl-175{margin-right:1.75rem !important}.me-xxxl-200{margin-right:2rem !important}.me-xxxl-250{margin-right:2.5rem !important}.me-xxxl-300{margin-right:3rem !important}.me-xxxl-400{margin-right:4rem !important}.me-xxxl-500{margin-right:5rem !important}.me-xxxl-600{margin-right:6rem !important}.me-xxxl-700{margin-right:7rem !important}.me-xxxl-800{margin-right:8rem !important}.me-xxxl-900{margin-right:9rem !important}.me-xxxl-1000{margin-right:10rem !important}.me-xxxl-auto{margin-right:auto !important}.mb-xxxl-0{margin-bottom:0 !important}.mb-xxxl-10{margin-bottom:.1rem !important}.mb-xxxl-25{margin-bottom:.25rem !important}.mb-xxxl-40{margin-bottom:.4rem !important}.mb-xxxl-50{margin-bottom:.5rem !important}.mb-xxxl-60{margin-bottom:.6rem !important}.mb-xxxl-75{margin-bottom:.75rem !important}.mb-xxxl-100{margin-bottom:1rem !important}.mb-xxxl-125{margin-bottom:1.25rem !important}.mb-xxxl-150{margin-bottom:1.5rem !important}.mb-xxxl-175{margin-bottom:1.75rem !important}.mb-xxxl-200{margin-bottom:2rem !important}.mb-xxxl-250{margin-bottom:2.5rem !important}.mb-xxxl-300{margin-bottom:3rem !important}.mb-xxxl-400{margin-bottom:4rem !important}.mb-xxxl-500{margin-bottom:5rem !important}.mb-xxxl-600{margin-bottom:6rem !important}.mb-xxxl-700{margin-bottom:7rem !important}.mb-xxxl-800{margin-bottom:8rem !important}.mb-xxxl-900{margin-bottom:9rem !important}.mb-xxxl-1000{margin-bottom:10rem !important}.mb-xxxl-auto{margin-bottom:auto !important}.ms-xxxl-0{margin-left:0 !important}.ms-xxxl-10{margin-left:.1rem !important}.ms-xxxl-25{margin-left:.25rem !important}.ms-xxxl-40{margin-left:.4rem !important}.ms-xxxl-50{margin-left:.5rem !important}.ms-xxxl-60{margin-left:.6rem !important}.ms-xxxl-75{margin-left:.75rem !important}.ms-xxxl-100{margin-left:1rem !important}.ms-xxxl-125{margin-left:1.25rem !important}.ms-xxxl-150{margin-left:1.5rem !important}.ms-xxxl-175{margin-left:1.75rem !important}.ms-xxxl-200{margin-left:2rem !important}.ms-xxxl-250{margin-left:2.5rem !important}.ms-xxxl-300{margin-left:3rem !important}.ms-xxxl-400{margin-left:4rem !important}.ms-xxxl-500{margin-left:5rem !important}.ms-xxxl-600{margin-left:6rem !important}.ms-xxxl-700{margin-left:7rem !important}.ms-xxxl-800{margin-left:8rem !important}.ms-xxxl-900{margin-left:9rem !important}.ms-xxxl-1000{margin-left:10rem !important}.ms-xxxl-auto{margin-left:auto !important}.p-xxxl-0{padding:0 !important}.p-xxxl-10{padding:.1rem !important}.p-xxxl-25{padding:.25rem !important}.p-xxxl-40{padding:.4rem !important}.p-xxxl-50{padding:.5rem !important}.p-xxxl-60{padding:.6rem !important}.p-xxxl-75{padding:.75rem !important}.p-xxxl-100{padding:1rem !important}.p-xxxl-125{padding:1.25rem !important}.p-xxxl-150{padding:1.5rem !important}.p-xxxl-175{padding:1.75rem !important}.p-xxxl-200{padding:2rem !important}.p-xxxl-250{padding:2.5rem !important}.p-xxxl-300{padding:3rem !important}.p-xxxl-400{padding:4rem !important}.p-xxxl-500{padding:5rem !important}.p-xxxl-600{padding:6rem !important}.p-xxxl-700{padding:7rem !important}.p-xxxl-800{padding:8rem !important}.p-xxxl-900{padding:9rem !important}.p-xxxl-1000{padding:10rem !important}.px-xxxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxxl-10{padding-right:.1rem !important;padding-left:.1rem !important}.px-xxxl-25{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxxl-40{padding-right:.4rem !important;padding-left:.4rem !important}.px-xxxl-50{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxxl-60{padding-right:.6rem !important;padding-left:.6rem !important}.px-xxxl-75{padding-right:.75rem !important;padding-left:.75rem !important}.px-xxxl-100{padding-right:1rem !important;padding-left:1rem !important}.px-xxxl-125{padding-right:1.25rem !important;padding-left:1.25rem !important}.px-xxxl-150{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxxl-175{padding-right:1.75rem !important;padding-left:1.75rem !important}.px-xxxl-200{padding-right:2rem !important;padding-left:2rem !important}.px-xxxl-250{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-xxxl-300{padding-right:3rem !important;padding-left:3rem !important}.px-xxxl-400{padding-right:4rem !important;padding-left:4rem !important}.px-xxxl-500{padding-right:5rem !important;padding-left:5rem !important}.px-xxxl-600{padding-right:6rem !important;padding-left:6rem !important}.px-xxxl-700{padding-right:7rem !important;padding-left:7rem !important}.px-xxxl-800{padding-right:8rem !important;padding-left:8rem !important}.px-xxxl-900{padding-right:9rem !important;padding-left:9rem !important}.px-xxxl-1000{padding-right:10rem !important;padding-left:10rem !important}.py-xxxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxxl-10{padding-top:.1rem !important;padding-bottom:.1rem !important}.py-xxxl-25{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxxl-40{padding-top:.4rem !important;padding-bottom:.4rem !important}.py-xxxl-50{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxxl-60{padding-top:.6rem !important;padding-bottom:.6rem !important}.py-xxxl-75{padding-top:.75rem !important;padding-bottom:.75rem !important}.py-xxxl-100{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxxl-125{padding-top:1.25rem !important;padding-bottom:1.25rem !important}.py-xxxl-150{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxxl-175{padding-top:1.75rem !important;padding-bottom:1.75rem !important}.py-xxxl-200{padding-top:2rem !important;padding-bottom:2rem !important}.py-xxxl-250{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-xxxl-300{padding-top:3rem !important;padding-bottom:3rem !important}.py-xxxl-400{padding-top:4rem !important;padding-bottom:4rem !important}.py-xxxl-500{padding-top:5rem !important;padding-bottom:5rem !important}.py-xxxl-600{padding-top:6rem !important;padding-bottom:6rem !important}.py-xxxl-700{padding-top:7rem !important;padding-bottom:7rem !important}.py-xxxl-800{padding-top:8rem !important;padding-bottom:8rem !important}.py-xxxl-900{padding-top:9rem !important;padding-bottom:9rem !important}.py-xxxl-1000{padding-top:10rem !important;padding-bottom:10rem !important}.pt-xxxl-0{padding-top:0 !important}.pt-xxxl-10{padding-top:.1rem !important}.pt-xxxl-25{padding-top:.25rem !important}.pt-xxxl-40{padding-top:.4rem !important}.pt-xxxl-50{padding-top:.5rem !important}.pt-xxxl-60{padding-top:.6rem !important}.pt-xxxl-75{padding-top:.75rem !important}.pt-xxxl-100{padding-top:1rem !important}.pt-xxxl-125{padding-top:1.25rem !important}.pt-xxxl-150{padding-top:1.5rem !important}.pt-xxxl-175{padding-top:1.75rem !important}.pt-xxxl-200{padding-top:2rem !important}.pt-xxxl-250{padding-top:2.5rem !important}.pt-xxxl-300{padding-top:3rem !important}.pt-xxxl-400{padding-top:4rem !important}.pt-xxxl-500{padding-top:5rem !important}.pt-xxxl-600{padding-top:6rem !important}.pt-xxxl-700{padding-top:7rem !important}.pt-xxxl-800{padding-top:8rem !important}.pt-xxxl-900{padding-top:9rem !important}.pt-xxxl-1000{padding-top:10rem !important}.pe-xxxl-0{padding-right:0 !important}.pe-xxxl-10{padding-right:.1rem !important}.pe-xxxl-25{padding-right:.25rem !important}.pe-xxxl-40{padding-right:.4rem !important}.pe-xxxl-50{padding-right:.5rem !important}.pe-xxxl-60{padding-right:.6rem !important}.pe-xxxl-75{padding-right:.75rem !important}.pe-xxxl-100{padding-right:1rem !important}.pe-xxxl-125{padding-right:1.25rem !important}.pe-xxxl-150{padding-right:1.5rem !important}.pe-xxxl-175{padding-right:1.75rem !important}.pe-xxxl-200{padding-right:2rem !important}.pe-xxxl-250{padding-right:2.5rem !important}.pe-xxxl-300{padding-right:3rem !important}.pe-xxxl-400{padding-right:4rem !important}.pe-xxxl-500{padding-right:5rem !important}.pe-xxxl-600{padding-right:6rem !important}.pe-xxxl-700{padding-right:7rem !important}.pe-xxxl-800{padding-right:8rem !important}.pe-xxxl-900{padding-right:9rem !important}.pe-xxxl-1000{padding-right:10rem !important}.pb-xxxl-0{padding-bottom:0 !important}.pb-xxxl-10{padding-bottom:.1rem !important}.pb-xxxl-25{padding-bottom:.25rem !important}.pb-xxxl-40{padding-bottom:.4rem !important}.pb-xxxl-50{padding-bottom:.5rem !important}.pb-xxxl-60{padding-bottom:.6rem !important}.pb-xxxl-75{padding-bottom:.75rem !important}.pb-xxxl-100{padding-bottom:1rem !important}.pb-xxxl-125{padding-bottom:1.25rem !important}.pb-xxxl-150{padding-bottom:1.5rem !important}.pb-xxxl-175{padding-bottom:1.75rem !important}.pb-xxxl-200{padding-bottom:2rem !important}.pb-xxxl-250{padding-bottom:2.5rem !important}.pb-xxxl-300{padding-bottom:3rem !important}.pb-xxxl-400{padding-bottom:4rem !important}.pb-xxxl-500{padding-bottom:5rem !important}.pb-xxxl-600{padding-bottom:6rem !important}.pb-xxxl-700{padding-bottom:7rem !important}.pb-xxxl-800{padding-bottom:8rem !important}.pb-xxxl-900{padding-bottom:9rem !important}.pb-xxxl-1000{padding-bottom:10rem !important}.ps-xxxl-0{padding-left:0 !important}.ps-xxxl-10{padding-left:.1rem !important}.ps-xxxl-25{padding-left:.25rem !important}.ps-xxxl-40{padding-left:.4rem !important}.ps-xxxl-50{padding-left:.5rem !important}.ps-xxxl-60{padding-left:.6rem !important}.ps-xxxl-75{padding-left:.75rem !important}.ps-xxxl-100{padding-left:1rem !important}.ps-xxxl-125{padding-left:1.25rem !important}.ps-xxxl-150{padding-left:1.5rem !important}.ps-xxxl-175{padding-left:1.75rem !important}.ps-xxxl-200{padding-left:2rem !important}.ps-xxxl-250{padding-left:2.5rem !important}.ps-xxxl-300{padding-left:3rem !important}.ps-xxxl-400{padding-left:4rem !important}.ps-xxxl-500{padding-left:5rem !important}.ps-xxxl-600{padding-left:6rem !important}.ps-xxxl-700{padding-left:7rem !important}.ps-xxxl-800{padding-left:8rem !important}.ps-xxxl-900{padding-left:9rem !important}.ps-xxxl-1000{padding-left:10rem !important}.gap-xxxl-0{gap:0 !important}.gap-xxxl-10{gap:.1rem !important}.gap-xxxl-25{gap:.25rem !important}.gap-xxxl-40{gap:.4rem !important}.gap-xxxl-50{gap:.5rem !important}.gap-xxxl-60{gap:.6rem !important}.gap-xxxl-75{gap:.75rem !important}.gap-xxxl-100{gap:1rem !important}.gap-xxxl-125{gap:1.25rem !important}.gap-xxxl-150{gap:1.5rem !important}.gap-xxxl-175{gap:1.75rem !important}.gap-xxxl-200{gap:2rem !important}.gap-xxxl-250{gap:2.5rem !important}.gap-xxxl-300{gap:3rem !important}.gap-xxxl-400{gap:4rem !important}.gap-xxxl-500{gap:5rem !important}.gap-xxxl-600{gap:6rem !important}.gap-xxxl-700{gap:7rem !important}.gap-xxxl-800{gap:8rem !important}.gap-xxxl-900{gap:9rem !important}.gap-xxxl-1000{gap:10rem !important}.row-gap-xxxl-0{row-gap:0 !important}.row-gap-xxxl-10{row-gap:.1rem !important}.row-gap-xxxl-25{row-gap:.25rem !important}.row-gap-xxxl-40{row-gap:.4rem !important}.row-gap-xxxl-50{row-gap:.5rem !important}.row-gap-xxxl-60{row-gap:.6rem !important}.row-gap-xxxl-75{row-gap:.75rem !important}.row-gap-xxxl-100{row-gap:1rem !important}.row-gap-xxxl-125{row-gap:1.25rem !important}.row-gap-xxxl-150{row-gap:1.5rem !important}.row-gap-xxxl-175{row-gap:1.75rem !important}.row-gap-xxxl-200{row-gap:2rem !important}.row-gap-xxxl-250{row-gap:2.5rem !important}.row-gap-xxxl-300{row-gap:3rem !important}.row-gap-xxxl-400{row-gap:4rem !important}.row-gap-xxxl-500{row-gap:5rem !important}.row-gap-xxxl-600{row-gap:6rem !important}.row-gap-xxxl-700{row-gap:7rem !important}.row-gap-xxxl-800{row-gap:8rem !important}.row-gap-xxxl-900{row-gap:9rem !important}.row-gap-xxxl-1000{row-gap:10rem !important}.column-gap-xxxl-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-xxxl-10{-moz-column-gap:.1rem !important;column-gap:.1rem !important}.column-gap-xxxl-25{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-xxxl-40{-moz-column-gap:.4rem !important;column-gap:.4rem !important}.column-gap-xxxl-50{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-xxxl-60{-moz-column-gap:.6rem !important;column-gap:.6rem !important}.column-gap-xxxl-75{-moz-column-gap:.75rem !important;column-gap:.75rem !important}.column-gap-xxxl-100{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-xxxl-125{-moz-column-gap:1.25rem !important;column-gap:1.25rem !important}.column-gap-xxxl-150{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-xxxl-175{-moz-column-gap:1.75rem !important;column-gap:1.75rem !important}.column-gap-xxxl-200{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-xxxl-250{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-xxxl-300{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-xxxl-400{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-xxxl-500{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-xxxl-600{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-xxxl-700{-moz-column-gap:7rem !important;column-gap:7rem !important}.column-gap-xxxl-800{-moz-column-gap:8rem !important;column-gap:8rem !important}.column-gap-xxxl-900{-moz-column-gap:9rem !important;column-gap:9rem !important}.column-gap-xxxl-1000{-moz-column-gap:10rem !important;column-gap:10rem !important}.text-xxxl-start{text-align:left !important}.text-xxxl-end{text-align:right !important}.text-xxxl-center{text-align:center !important}}@media(min-width: 1200px){.fs-1{font-size:2.3125rem !important}.fs-2{font-size:1.6875rem !important}.fs-3{font-size:1.375rem !important}.fs-4{font-size:1.25rem !important}.fs-5{font-size:1.125rem !important}.fs-lg{font-size:1.25rem !important}.fs-xl{font-size:1.5rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-inline-grid{display:inline-grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}b,strong{font-weight:600}.font-narrow{font-family:"Open Sans Condensed","Arial Narrow",sans-serif}h1,.h1,h2,h3,h4,h5,h6,.h2,.h3,.h4,.h5,.h6{margin-top:2rem;hyphens:auto}@media(min-width: 992px){h1,.h1,h2,h3,h4,h5,h6,.h2,.h3,.h4,.h5,.h6{hyphens:manual}}h1,.h1{position:relative;margin-top:2rem !important;margin-bottom:2rem !important;padding-top:.5rem;text-transform:uppercase}h1::before,.h1::before{position:absolute;top:0;left:0;display:inline-block;width:70px;height:3px;background-color:#fc8b35;content:" "}h1[class*=col-]::before,[class*=col-].h1::before{left:.9375rem}h2,.h2{color:#495057}#subfooter .ce_text:first-child h4,#subfooter .ce_text:first-child .h4{margin-top:0}#subfooter h4,#subfooter .h4{margin-top:1rem;text-transform:uppercase}@media(min-width: 992px){#subfooter h4,#subfooter .h4{margin-top:0}}#footer p.content-headline-virtual{margin-top:0;margin-bottom:0}ol,ul,dl{margin-bottom:.5rem;padding-left:1.3em}ol li,ul li{padding-bottom:.5rem}.text-center ul{list-style:inside}ul.list-icon{padding-left:1.3em;list-style:none}ul.list-icon li{text-indent:-1.3em}ul.list-icon li::before{display:inline-block;font-weight:900;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;float:left;width:1.3em;color:#fc8b35}ul.list-icon.list-check li::before{content:""}ul.list-icon.list-check-circle li::before{content:""}ul.list-icon.list-special{font-weight:700;font-size:1.25rem}ul.list-icon.list-special li::before{color:#198754}ul.list-icon.list-minus li::before{content:""}ul.list-icon.list-plus-circle li::before{content:""}.list-check-center ul,ul.list-check-center{padding-left:0;text-align:center;list-style:none}.list-check-center ul li::before,ul.list-check-center li::before{display:inline-block;font-weight:900;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:1.5em;color:#fc8b35}.table{--bs-table-bg: unset}.blockquote{font-size:1rem;font-style:italic}.blockquote .blockquote-footer{margin-top:0;font-style:normal}a:not(.btn),button:not(.btn){transition:color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out}.content-hyperlink{margin:0 0 1rem}.btn-primary,.formbody .widget:not(.widget-hr).widget-submit button,.mod_newslist .more a,.nav-main-toggler-open button{color:#fff}.link-icon-right{text-indent:0 !important}.link-icon-right::after{display:inline-block;font-weight:900;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.link-icon-right.icon-angle-double-up::after{content:" "}.link-icon-right.icon-angle-double-right::after{content:" "}.link-icon-right.icon-angle-double-down::after{content:" "}.link-icon-right.icon-angle-double-left::after{content:" "}.link-icon-right.icon-external-link-alt::after{content:" "}.link-icon-left::before{display:inline-block;font-weight:900;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.link-icon-left.icon-angle-double-up::before{content:" "}.link-icon-left.icon-angle-double-right::before{content:" "}.link-icon-left.icon-angle-double-down::before{content:" "}.link-icon-left.icon-angle-double-left::before{content:" "}.link-icon-left.icon-external-link-alt::before{content:" "}.link-icon-left-fw{position:relative;display:inline-block;padding-left:1.2em}.link-icon-left-fw::before{display:inline-block;font-weight:900;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:0;left:0;display:block;width:1em;height:100%;text-align:center}.link-icon-left-fw.icon-angle-double-up::before{content:""}.link-icon-left-fw.icon-angle-double-right::before{content:""}.link-icon-left-fw.icon-angle-double-down::before{content:""}.link-icon-left-fw.icon-angle-double-left::before{content:""}.link-icon-left-fw.icon-external-link-alt::before{content:""}.content-text.media--right figure{float:right;margin-left:1.875rem}.content-text.media--left figure{float:left;margin-right:1.875rem}.content-text.media--left .rte>ol,.content-text.media--left .rte>ul{overflow:hidden}.content-text.media--right::after,.content-text.media--left::after{display:block;clear:both;content:""}@media(max-width: 767.98px){.content-text.media--right figure,.content-text.media--left figure{float:none;margin-right:0;margin-left:0}}.content-text.media--above+h1,.content-text.media--above+.h1,.content-text.media--above+h2,.content-text.media--above+.h2,.content-text.media--above+h3,.content-text.media--above+.h3,.content-text.media--above+h4,.content-text.media--above+.h4,.content-text.media--above+h5,.content-text.media--above+.h5,.content-text.media--above+h6,.content-text.media--above+.h6,.content-text.media--right+h1,.content-text.media--right+.h1,.content-text.media--right+h2,.content-text.media--right+.h2,.content-text.media--right+h3,.content-text.media--right+.h3,.content-text.media--right+h4,.content-text.media--right+.h4,.content-text.media--right+h5,.content-text.media--right+.h5,.content-text.media--right+h6,.content-text.media--right+.h6,.content-text.media--left+h1,.content-text.media--left+.h1,.content-text.media--left+h2,.content-text.media--left+.h2,.content-text.media--left+h3,.content-text.media--left+.h3,.content-text.media--left+h4,.content-text.media--left+.h4,.content-text.media--left+h5,.content-text.media--left+.h5,.content-text.media--left+h6,.content-text.media--left+.h6{margin-top:0}.content-text.img-float_below p:nth-last-child(2){margin-bottom:0}img{width:auto}.img-caption{display:table}.img-caption .figure-caption{display:table-caption;line-height:1.25;caption-side:bottom}.content-gallery figure{margin-bottom:0}.content-gallery ul{--bs-gutter-x: 1.875rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*var(--bs-gutter-y));margin-right:calc(-0.5*var(--bs-gutter-x));margin-left:calc(-0.5*var(--bs-gutter-x));justify-content:center;margin-top:.5rem;padding:0;list-style:none}.content-gallery li{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y);padding-bottom:1.875rem}@media(min-width: 414px){.content-gallery--cols-2 li{flex:0 0 auto;width:50%}}@media(min-width: 414px){.content-gallery--cols-3 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-3 li{flex:0 0 auto;width:33.33333333%}}@media(min-width: 414px){.content-gallery--cols-4 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-4 li{flex:0 0 auto;width:25%}}@media(min-width: 414px){.content-gallery--cols-5 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-5 li{flex:0 0 auto;width:25%}}@media(min-width: 414px){.content-gallery--cols-6 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-6 li{flex:0 0 auto;width:16.66666667%}}@media(min-width: 414px){.content-gallery--cols-7 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-7 li{flex:0 0 auto;width:14.28571429%}}@media(min-width: 414px){.content-gallery--cols-8 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-8 li{flex:0 0 auto;width:12.5%}}@media(min-width: 414px){.content-gallery--cols-9 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-9 li{flex:0 0 auto;width:11.11111111%}}@media(min-width: 414px){.content-gallery--cols-10 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-10 li{flex:0 0 auto;width:10%}}@media(min-width: 414px){.content-gallery--cols-11 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-11 li{flex:0 0 auto;width:9.09090909%}}@media(min-width: 414px){.content-gallery--cols-12 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.content-gallery--cols-12 li{flex:0 0 auto;width:8.33333333%}}html{scroll-behavior:smooth}body.debug::before{position:fixed;top:0;left:0;z-index:1000000;display:block;content:"XXS"}@media(min-width: 414px){body.debug::before{content:"XS"}}@media(min-width: 576px){body.debug::before{content:"SM"}}@media(min-width: 768px){body.debug::before{content:"MD"}}@media(min-width: 992px){body.debug::before{content:"LG"}}@media(min-width: 1200px){body.debug::before{content:"XL"}}@media(min-width: 1400px){body.debug::before{content:"XXL"}}@media(min-width: 1600px){body.debug::before{content:"3XL"}}#header>.inside,#footer>.inside,#container>.inside,#mainteaser>.inside,#subfooter>.inside,#hofff-consent-banner>.inside{--bs-gutter-x: 1.875rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 1200px){#header>.inside,#footer>.inside,#container>.inside,#mainteaser>.inside,#subfooter>.inside,#hofff-consent-banner>.inside{width:1140px}}@media(min-width: 1400px){#header>.inside,#footer>.inside,#container>.inside,#mainteaser>.inside,#subfooter>.inside,#hofff-consent-banner>.inside{width:1320px}}@media(min-width: 768px){#header>.inside>.row{justify-content:center}}@media(min-width: 992px){#header>.inside>.row{justify-content:space-between}}@media(min-width: 576px){#left{flex:0 0 auto;width:25%}}#main{padding-bottom:2rem}@media(min-width: 576px){.layout-col-left #main{flex:0 0 auto;width:75%}}@media(min-width: 576px){#right{flex:0 0 auto;width:25%}}#subfooter>.inside>.row{margin:0 0 .9375rem;padding:1rem 0;background-color:#e9ecef;border-bottom:solid #fc8b35 2px;border-radius:var(--bs-border-radius)}#footer{padding-bottom:.5rem}#footer>.inside>.row{align-items:center;justify-content:center}@media(min-width: 992px){#footer>.inside>.row{justify-content:space-between}}#footer .pw-footer-hl{padding-bottom:.5rem;text-align:center}#footer .pw-footer-nav,#footer .pw-footer-hl{flex:0 0 auto;width:auto}.nav-main-toggler-open,.nav-main-toggler-close{margin-bottom:0}@media(max-width: 413.98px){.nav-main-toggler-open button,.nav-main-toggler-close button{--bs-btn-padding-x: 0.5rem;--bs-btn-padding-y: 0.25rem;--bs-btn-font-size: 0.75rem}}.nav-main-toggler-open{position:absolute;top:.9375rem;right:.9375rem}.nav-main-toggler-close{padding-bottom:max(1px, calc(15.9895833333vw - 22px));padding-top:.9375rem;padding-right:.9375rem;text-align:right;border-bottom:solid #fff 3px}@media(min-width: 414px){.nav-main-toggler-close{padding-bottom:max(1px, calc(14.4270833333vw - 25px))}}@media(min-width: 576px){.nav-main-toggler-close{padding-bottom:max(1px, calc(15.46875vw - 25px))}}@media(min-width: 768px){.nav-main-toggler-close{padding-bottom:2.5875rem}}@media(min-width: 992px){.nav-main-container{flex:0 0 auto;width:auto}}@media(max-width: 767.98px){.nav-main-container{position:fixed;top:0;right:-100%;z-index:101;width:65.5%;height:100%;margin:0;padding:0;overflow-y:scroll;color:#fff;background:#fc8b35;transition:right .3s ease}.menu-open .nav-main-container{right:0}}@media(max-width: 767.98px){.nav-main-container{width:50%}}@media(max-width: 575.98px){.nav-main-container{width:75%}}@media(max-width: 413.98px){.nav-main-container{width:100%}}.nav-main{height:100%;text-align:center}@media(min-width: 768px){.nav-main{position:relative;z-index:100;border-top:solid var(--bs-border-width)}}@media(min-width: 992px){.nav-main{border-top:none}}.nav-main .level_1{margin:0;padding:0;line-height:1.5;list-style:none}@media(min-width: 768px){.nav-main .level_1{display:flex;justify-content:center;height:100%}}@media(min-width: 992px){.nav-main .level_1{justify-content:flex-end}}.nav-main .level_1>li{position:relative;margin:0;padding:0;border-bottom:solid #fff 1px}@media(min-width: 992px){.nav-main .level_1>li:last-child>a,.nav-main .level_1>li:last-child>strong{padding-right:0}}@media(min-width: 768px){.nav-main .level_1>li{display:flex;align-items:center;height:100%;border-bottom:none}}.nav-main .level_1>li>a,.nav-main .level_1>li>strong{position:relative;display:block;padding:.5rem;color:#fff;font-weight:300;font-size:1.25rem;text-transform:uppercase}@media(min-width: 768px){.nav-main .level_1>li>a,.nav-main .level_1>li>strong{padding:.5rem 1rem;color:#495057}.nav-main .level_1>li>a::after,.nav-main .level_1>li>strong::after{position:absolute;bottom:0;left:1rem;width:50px;height:2px;background-color:#fc8b35;opacity:0;transition:opacity .3s ease-in;content:""}}@media(min-width: 992px){.nav-main .level_1>li>a,.nav-main .level_1>li>strong{padding:.5rem;font-size:1.125rem}.nav-main .level_1>li>a::after,.nav-main .level_1>li>strong::after{left:.5rem}}@media(min-width: 1200px){.nav-main .level_1>li>a,.nav-main .level_1>li>strong{padding:.5rem 1rem;font-size:1.25rem}.nav-main .level_1>li>a::after,.nav-main .level_1>li>strong::after{left:1rem}}.nav-main .level_1>li a:hover,.nav-main .level_1>li a.trail,.nav-main .level_1>li strong{color:#000}@media(min-width: 768px){.nav-main .level_1>li a:hover,.nav-main .level_1>li a.trail,.nav-main .level_1>li strong{color:#fc8b35}}.nav-main .level_1>li>strong,.nav-main .level_1>li>a.active{font-weight:400}.nav-main .level_1>li:hover>a,.nav-main .level_1>li:hover strong,.nav-main .level_1>li:focus>a,.nav-main .level_1>li:focus strong{color:#000}@media(min-width: 768px){.nav-main .level_1>li:hover>a,.nav-main .level_1>li:hover strong,.nav-main .level_1>li:focus>a,.nav-main .level_1>li:focus strong{color:#fc8b35}.nav-main .level_1>li:hover>a::after,.nav-main .level_1>li:hover strong::after,.nav-main .level_1>li:focus>a::after,.nav-main .level_1>li:focus strong::after{opacity:1}}@media(min-width: 768px){.nav-main .level_1>li:hover .level_2,.nav-main .level_1>li:focus .level_2{top:100%;left:0;opacity:1;transition:left 1ms linear,top 1ms linear,opacity .3s ease-in}.touch-device .nav-main .level_1>li:hover .level_2,.touch-device .nav-main .level_1>li:focus .level_2{display:block;transition:none}}.nav-main .level_2{margin:0;padding:0 0 1rem;line-height:1.5;list-style:none}@media(min-width: 768px){.nav-main .level_2{position:absolute;top:-10000px;left:-10000px;z-index:1;min-width:100%;padding:0;overflow:hidden;font-size:1rem;line-height:1;white-space:nowrap;text-align:left;background-color:#fff;opacity:0;transition:left 1ms linear .3s,top 1ms linear .3s,opacity .3s ease-out}.touch-device .nav-main .level_2{display:none;transition:none}}.nav-main .level_2>li{padding:0}@media(min-width: 768px){.nav-main .level_2>li{border-bottom:solid 1px #dee2e6}}.nav-main .level_2>li.last{border-bottom:none}.nav-main .level_2>li>a,.nav-main .level_2>li>strong{display:block;padding:0 .9375rem;color:#fff}@media(min-width: 768px){.nav-main .level_2>li>a,.nav-main .level_2>li>strong{padding:1rem 1.5rem;color:#495057}}@media(min-width: 992px){.nav-main .level_2>li>a,.nav-main .level_2>li>strong{padding:1rem}}@media(min-width: 1200px){.nav-main .level_2>li>a,.nav-main .level_2>li>strong{padding:1rem 1.5rem}}.nav-main .level_2>li a:hover,.nav-main .level_2>li a.trail,.nav-main .level_2>li strong{color:#000}@media(min-width: 768px){.nav-main .level_2>li a:hover,.nav-main .level_2>li a.trail,.nav-main .level_2>li strong{color:#fc8b35}}.nav-main .level_2>li strong{font-weight:400}.nav-meta{display:inline-block;padding-left:.25rem;font-size:.75rem}.nav-meta .level_1{margin:0;padding:0;line-height:1.5;list-style:none}.nav-meta .level_1>li{position:relative;display:inline-block;margin:0;padding:0 .5rem}.nav-meta .level_1>li::before{position:absolute;top:20%;left:0;display:block;width:1px;height:60%;background-color:#212529;content:""}.nav-meta .level_1>li:last-child{padding-right:0}.nav-meta .level_1>li>strong,.nav-meta .level_1>li>a.active{font-weight:700}.nav-consent{font-size:0.75rem}.nav-consent .level_1{margin:0;padding:0;line-height:1.5;list-style:none;display:flex}.nav-consent .level_1>li{position:relative;margin:0;padding:0 .5rem}.nav-consent .level_1>li::before{position:absolute;top:20%;left:0;display:block;width:1px;height:60%;background-color:#212529;content:""}.nav-consent .level_1>li:first-child{padding-left:0}.nav-consent .level_1>li:first-child::before{content:none}.nav-consent .level_1>li:last-child{padding-right:0}.nav-consent .level_1>li>strong,.nav-consent .level_1>li>a.active{font-weight:700}.nav-social-icons{padding-bottom:.5rem;font-size:.5rem}.nav-social-icons ul{margin:0;padding:0;line-height:1;list-style:none;display:flex;justify-content:center}.nav-social-icons ul li{margin:0;padding:0}.nav-social-icons ul li.first{padding-left:0}.nav-social-icons ul li.last{padding-right:0}.nav-social-icons ul li a{display:block}.nav-social-icons ul li.-ctx-fab-instagram a{color:#3f729b}.nav-social-icons ul li.-ctx-fab-facebook a{color:#3b5998}.nav-social-icons ul li.-ctx-fas-envelope-open-text a{color:#2d894b}.pw-logo{padding-top:1rem;padding-bottom:1rem}@media(min-width: 992px){.pw-logo{flex:0 0 auto;width:auto}}.pw-logo p{margin:0;padding:0;font-size:1.6875rem;line-height:1}.pw-logo p strong{font-size:2.3125rem}.pw-logo a{color:#fc8b35}.pw-logo a strong{color:#495057}.pw-logo .content-image{max-width:75%;margin-bottom:0}@media(min-width: 414px){.pw-logo .content-image{max-width:75%}}@media(min-width: 576px){.pw-logo .content-image{max-width:80%}}@media(min-width: 768px){.pw-logo .content-image{max-width:none;text-align:center}}@media(min-width: 992px){.pw-logo .content-image{text-align:left}}.pw-logo .content-image figure{margin-bottom:0}.pw-teaser-special{position:relative;margin-top:40px}.pw-teaser-special::before{position:absolute;top:0;left:.9375rem;z-index:99;width:calc(100% - 1.875rem);height:80%;background-color:#fff;box-shadow:0 0 15px #495057;content:""}@media(min-width: 768px){.pw-teaser-special{left:-30px;margin-top:0;margin-left:auto}.pw-teaser-special::before{top:-1.875rem;left:0;width:100%;height:40px}}.pw-teaser-special>.row>div{z-index:100;padding-right:.9375rem;padding-left:.9375rem;background-color:#fff}@media(max-width: 767.98px){.pw-teaser-special>.row>div{flex:0 0 calc(100% - 1.875rem);max-width:calc(100% - 1.875rem)}}@media(min-width: 768px){.pw-teaser-special>.row>div{padding-right:1.875rem;padding-left:1.875rem}.pw-teaser-special>.row>div>:first-child{margin-top:0;padding-top:0}}.card{margin-top:2rem;margin-bottom:2rem}.card .content-image{margin-bottom:0}.card .content-image.card-top img{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.card .content-image:not(.card-top) img{border-radius:0 !important}.card.bg-light{border:none}.card.bg-light .card-header,.card.bg-light .card-footer{background-color:#6c757d}.card.bg-light .card-header *,.card.bg-light .card-footer *{color:#fff}.card.border-primary .card-header{background-color:#fc8b35}.card.border-primary .card-header *{color:#fff}.handorgel__header{font-size:calc(1.0083333333rem + 0.3222222222vw)}@media(min-width: 1200px){.handorgel__header{font-size:1.25rem}}.handorgel__header{margin:0;padding:0;font-weight:700;font-family:var(--bs-font-sans-serif);border-top:1px solid #fc8b35}.handorgel__header--opened .handorgel__header__button{color:#212529}.handorgel__header--opened .handorgel__header__button::before{top:-52%;color:#212529;content:""}.handorgel__header--opened .handorgel__header__button::after{top:28%;color:#212529;content:""}.handorgel__header--opened .handorgel__header__button:hover{color:#fc8b35}.handorgel__header--opened .handorgel__header__button:hover::before{top:28%;color:#fc8b35}.handorgel__header--opened .handorgel__header__button:hover::after{top:112%;color:#212529}.handorgel__header__button{position:relative;display:block;width:100%;margin:0;padding:1rem 0 1rem 1.5rem;overflow:hidden;color:#fc8b35;text-align:left;background:rgba(0,0,0,0);border:none;border-radius:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.handorgel__header__button::before,.handorgel__header__button::after{display:inline-block;font-weight:900;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;left:2px;transition:top .3s ease-out}.handorgel__header__button::before{top:28%;content:""}.handorgel__header__button::after{top:112%;content:""}.handorgel__header__button:hover,.handorgel__header__button:focus{color:#212529}.handorgel__header__button:hover::before,.handorgel__header__button:focus::before{top:-52%;color:#fc8b35}.handorgel__header__button:hover::after,.handorgel__header__button:focus::after{top:28%;color:#212529}.handorgel__content{height:0;overflow:hidden;transition:height .1s ease}.handorgel__content #nojs{display:none}.handorgel__content--open{display:block;transition:height .2s ease}.handorgel__content--opened{overflow:visible}.handorgel__content__inner{padding-bottom:1rem;padding-left:1.5rem;opacity:0;transition:opacity .1s ease}.handorgel__content__inner :last-child{margin-bottom:0;padding-bottom:0}.handorgel__content--opened .handorgel__content__inner{opacity:1;transition:opacity .3s ease}.content-accordion{border-bottom:1px solid #fc8b35}.mod_newslist .layout_latest,.mod_newslist .layout_full,.mod_newsreader .layout_latest,.mod_newsreader .layout_full{margin-top:2rem}.mod_newslist .info,.mod_newsreader .info{font-size:0.875rem;margin-bottom:.5rem}.mod_newslist .info time::before,.mod_newsreader .info time::before{display:inline-block;font-weight:400;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:" "}.mod_newslist h2,.mod_newslist .h2{margin-top:0 !important;margin-bottom:.5rem;padding-bottom:.5rem}.mod_newslist h2 a,.mod_newslist .h2 a{color:#495057}.mod_newslist .info{padding-bottom:.5rem;border-bottom:1px solid #dee2e6}.mod_newslist .more{margin-bottom:0}.mod_newslist .featured{padding:.9375rem;border:3px solid #fc8b35;border-radius:.375rem}.mod_newsreader h1,.mod_newsreader .h1{margin-top:0 !important}.mod_newsreader .back{margin-top:2rem;margin-bottom:0}.table-sm th,.table-sm td{padding-top:0;padding-bottom:0;padding-left:0}.pw-meta-text{font-size:.75rem;text-align:center}@media(min-width: 992px){.pw-meta-text{text-align:right}}.pw-meta-text>div{display:inline-block}.pw-meta-text p{margin-bottom:0}.pw-google-map{margin-top:1.875rem;line-height:0}.pw-google-map iframe{width:100%;height:500px;border-radius:.375rem}@media(min-width: 992px){.pw-google-map iframe{height:400px}}.pw-google-map iframe{height:350px}.hofff-consent-privacy-settings-button button{font-size:0.875rem}.pw-mainteaser-default>.pw-mainteaser-default-element{position:relative;background-color:#e9ecef;border-bottom:solid #fc8b35 2px;border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.pw-mainteaser-default .content-image,.pw-mainteaser-default figure{margin-bottom:0}@media(min-width: 768px){.pw-mainteaser-default .pw-slider-inner{position:absolute;bottom:1.875rem;left:0;width:100%;padding:0}}.pw-mainteaser-default .pw-slider-inner .pw-slider-elements{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y);flex:0 0 auto;width:100%;padding-bottom:.9375rem}@media(min-width: 768px){.pw-mainteaser-default .pw-slider-inner .pw-slider-elements{flex:0 0 auto;width:50%}.pw-mainteaser-default .pw-slider-inner .pw-slider-elements .content_headline,.pw-mainteaser-default .pw-slider-inner .pw-slider-elements .content_headline_virtual,.pw-mainteaser-default .pw-slider-inner .pw-slider-elements p{padding-right:.46875rem;padding-left:.46875rem;color:#fff;line-height:1.4}.pw-mainteaser-default .pw-slider-inner .pw-slider-elements .content_headline>span,.pw-mainteaser-default .pw-slider-inner .pw-slider-elements .content_headline_virtual>span,.pw-mainteaser-default .pw-slider-inner .pw-slider-elements p>span{background-color:rgba(252,139,53,.5);box-shadow:.46875rem 0 0 0 rgba(252,139,53,.5),-0.46875rem 0 0 0 rgba(252,139,53,.5);-webkit-box-decoration-break:clone;box-decoration-break:clone}}@media(min-width: 768px){.pw-mainteaser-default .pw-slider-inner .pw-slider-elements .ce_hyperlink{margin-bottom:0}}.swiper-button-prev,.swiper-button-next{--swiper-theme-color: #fc8b35;background:rgba(0,0,0,0);border:none}.swiper-pagination-bullet-active{--swiper-theme-color: #fc8b35}.formbody .widget:not(.widget-hr){margin-bottom:1rem}.formbody .widget:not(.widget-hr) label{cursor:pointer}.formbody .widget:not(.widget-hr) legend{font-size:1rem}.formbody .widget:not(.widget-hr) legend p{padding-bottom:0}.formbody .widget:not(.widget-hr).widget-radio legend,.formbody .widget:not(.widget-hr).widget-checkbox legend{float:none}.formbody .widget:not(.widget-hr).widget-radio input,.formbody .widget:not(.widget-hr).widget-checkbox input{cursor:pointer}.formbody .widget:not(.widget-hr).widget-radio label,.formbody .widget:not(.widget-hr).widget-checkbox label{margin-bottom:0;cursor:pointer}.formbody .widget:not(.widget-hr).widget-radio.error label,.formbody .widget:not(.widget-hr).widget-checkbox.error label{color:#dc3545}.formbody .widget:not(.widget-hr).widget-radio.error label::before,.formbody .widget:not(.widget-hr).widget-checkbox.error label::before{border-color:#dc3545}@media(min-width: 768px){.formbody .widget:not(.widget-hr).widget-radio.col_2>fieldset,.formbody .widget:not(.widget-hr).widget-checkbox.col_2>fieldset{display:flex;flex-wrap:wrap}.formbody .widget:not(.widget-hr).widget-radio.col_2>fieldset>legend,.formbody .widget:not(.widget-hr).widget-radio.col_2>fieldset>span,.formbody .widget:not(.widget-hr).widget-checkbox.col_2>fieldset>legend,.formbody .widget:not(.widget-hr).widget-checkbox.col_2>fieldset>span{flex:0 0 auto}.formbody .widget:not(.widget-hr).widget-radio.col_2>fieldset>legend,.formbody .widget:not(.widget-hr).widget-checkbox.col_2>fieldset>legend{width:100%}.formbody .widget:not(.widget-hr).widget-radio.col_2>fieldset>span,.formbody .widget:not(.widget-hr).widget-checkbox.col_2>fieldset>span{width:50%;padding-right:1.875rem}}.formbody .widget:not(.widget-hr).widget-explanation :last-child,.formbody .widget:not(.widget-hr).widget-headline :last-child{margin-bottom:0}.formbody .widget:not(.widget-hr).widget-calendar>div{position:relative;padding-right:calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2))}.formbody .widget:not(.widget-hr).widget-calendar>div input{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.formbody .widget:not(.widget-hr).widget-calendar>div .input-button{position:absolute;top:0;right:0;width:calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));height:calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));overflow:hidden;background-color:#fc8b35;border:1px solid #dee2e6;border-left:none;border-radius:0 var(--bs-border-radius) var(--bs-border-radius) 0;cursor:pointer}.formbody .widget:not(.widget-hr).widget-calendar>div .input-button::after{display:inline-block;font-weight:400;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:0;right:0;left:0;color:#fff;font-size:1.25rem;line-height:1.8em;text-align:center}.formbody .widget:not(.widget-hr).widget-calendar>div .input-button svg{position:relative;z-index:-1}.formbody .widget:not(.widget-hr).widget-altcha{margin-bottom:0}.form-message,.form-confirmation{font-weight:600}a.invisible,a span.invisible,label span.invisible,legend span.invisible,table span.invisible{width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}a.invisible:not(caption),a span.invisible:not(caption),label span.invisible:not(caption),legend span.invisible:not(caption),table span.invisible:not(caption){position:absolute !important}a.invisible *,a span.invisible *,label span.invisible *,legend span.invisible *,table span.invisible *{overflow:hidden !important}.ce_hofff_horizontalrule{position:relative;margin-top:2.5rem;margin-bottom:2.5rem}.widget-hr .ce_hofff_horizontalrule{margin-top:1rem}.ce_hofff_horizontalrule hr{margin-top:0;margin-bottom:0}.ce_hofff_horizontalrule a{position:absolute;top:-0.7em;left:calc(50% - 4em);display:block;width:8em;font-size:.875rem;text-align:center;text-decoration:none;background-color:#fff}.ce_hofff_horizontalrule a::before{display:inline-block;font-weight:900;font-family:"Font Awesome 7 Free";font-style:normal;font-variant:normal;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:" "}.ce_hofff_horizontalrule.w-100{position:static;margin-top:0;margin-bottom:0}.ce_hofff_horizontalrule.w-100 hr{height:0;color:rgba(0,0,0,0)}#colorbox,#cboxOverlay,#cboxWrapper{overflow:visible !important}div#cboxTitle{top:100%;margin-right:5px;margin-left:5px}.alert :first-child,.card-header :first-child,.card-body :first-child,.card-footer :first-child{margin-top:0;padding-top:0}.alert :last-child,.card-header :last-child,.card-body :last-child,.card-footer :last-child{margin-bottom:0;padding-bottom:0}.card figure{margin-top:0 !important;margin-bottom:0 !important}.col-ready{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}.content-player{margin-bottom:0}.content-player figure{margin-bottom:0;line-height:0}.content-player figure video,.content-player figure audio{width:100%;height:auto}.video_container{margin:0}
