/**
 * Swiper 14.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: August 26, 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;
}


.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

/*! xxx, Stand: xxx, © hofff.com | Nicky Hoff
 * based on:
*//*!
 * Font Awesome Free 7.3.1 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.
 */.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-canvas-square{padding-block:.125em;margin-block-end:-0.125em}.fa-canvas-roomy{padding-block:.25em;padding-inline:.125em;margin-block-end:-0.25em;box-sizing:content-box}.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, ease-in-out)}.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, ease-in-out)}.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, 1.5s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-flip-360{animation-name:fa-flip-360;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, 0.75s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.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))}.fa-spin-snap{animation-name:fa-spin-snap;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 3s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-snap-4{animation-name:fa-spin-snap-4;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 2.4s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-snap-8{animation-name:fa-spin-snap-8;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 4s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-buzz{animation-name:fa-buzz;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 0.6s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-wag{animation-name:fa-wag;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 0.9s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-out);transform-origin:bottom center}.fa-float{animation-name:fa-float;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 3s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out);will-change:transform}.fa-swing{animation-name:fa-swing;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1.2s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-out);transform-origin:top center}.fa-jello{animation-name:fa-jello;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 0.9s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-out)}@media(prefers-reduced-motion: reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-flip-360,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse,.fa-buzz,.fa-float,.fa-jello,.fa-spin-snap,.fa-spin-snap-4,.fa-spin-snap-8,.fa-swing,.fa-wag{animation:none !important;transition:none !important}}@keyframes fa-beat{0%{transform:scale(1)}25%{transform:scale(calc(1.25 * var(--fa-beat-scale, 1.25)))}45%{transform:scale(calc(1.22 * var(--fa-beat-scale, 1.22)))}65%{transform:scale(calc(1.25 * var(--fa-beat-scale, 1.25)))}90%{transform:scale(1)}}@keyframes fa-bounce{0%{transform:scale(1, 1) translateY(0);animation-timing-function:var(--fa-animation-timing)}14%{transform:scale(var(--fa-bounce-start-scale-x, 1.06), var(--fa-bounce-start-scale-y, 0.94)) translateY(var(--fa-bounce-anticipation, 3px));animation-timing-function:cubic-bezier(0.33, 0, 0.66, 0.33)}32%{transform:scale(var(--fa-bounce-jump-scale-x, 0.94), var(--fa-bounce-jump-scale-y, 1.12)) translateY(calc(-1 * var(--fa-bounce-height, 0.5em)));animation-timing-function:cubic-bezier(0.33, 0.66, 0.66, 1)}52%{transform:scale(1, 1) translateY(calc(-1 * var(--fa-bounce-height, 0.5em) * 1.1));animation-timing-function:cubic-bezier(0.5, 0, 1, 0.5)}70%{transform:scale(var(--fa-bounce-land-scale-x, 1.06), var(--fa-bounce-land-scale-y, 0.92)) translateY(0);animation-timing-function:cubic-bezier(0.33, 0.33, 0.66, 1)}85%{transform:scale(0.98, 1.04) translateY(calc(-2px * var(--fa-bounce-rebound, 1)));animation-timing-function:cubic-bezier(0.33, 0, 0.66, 1)}100%{transform:scale(1, 1) translateY(0)}}@keyframes fa-fade{0%{opacity:1;transform:scale(1);animation-timing-function:cubic-bezier(0.2, 0, 0.4, 1)}40%{opacity:var(--fa-fade-opacity, 0.4);transform:scale(0.98);animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}100%{opacity:1;transform:scale(1)}}@keyframes fa-beat-fade{0%{opacity:var(--fa-beat-fade-opacity, 0.4);transform:scale(1);animation-timing-function:cubic-bezier(0.2, 0, 0.4, 1)}25%{opacity:calc(var(--fa-beat-fade-opacity, 0.4) + .4);transform:scale(var(--fa-beat-fade-scale, 1.28));animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}45%{opacity:1;transform:scale(var(--fa-beat-fade-scale, 1.25));animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}65%{opacity:calc(var(--fa-beat-fade-opacity, 0.4) + .4);transform:scale(var(--fa-beat-fade-scale, 1.28));animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}100%{opacity:var(--fa-beat-fade-opacity, 0.4);transform:scale(1)}}@keyframes fa-flip{0%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);animation-timing-function:cubic-bezier(0.2, 0, 0.4, 1)}8%{transform:perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);animation-timing-function:cubic-bezier(0.33, 0, 0.66, 0.33)}35%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));animation-timing-function:linear}65%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.5));animation-timing-function:cubic-bezier(0.33, 0.66, 0.66, 1)}92%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));animation-timing-function:cubic-bezier(0.33, 0, 0.66, 1)}100%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg))}}@keyframes fa-flip-360{0%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);animation-timing-function:cubic-bezier(0.2, 0, 0.4, 1)}8%{transform:perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);animation-timing-function:cubic-bezier(0.33, 0, 0.66, 0.33)}50%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));animation-timing-function:cubic-bezier(0.33, 0.66, 0.66, 1)}80%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));animation-timing-function:cubic-bezier(0.33, 0, 0.66, 1)}100%{transform:perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg))}}@keyframes fa-shake{0%{transform:rotate(0deg);animation-timing-function:cubic-bezier(0.2, 0, 0.8, 1)}8%{transform:rotate(35deg) translateX(1px);animation-timing-function:cubic-bezier(0.3, 0, 0.7, 1)}20%{transform:rotate(-22deg) translateX(-1px);animation-timing-function:cubic-bezier(0.3, 0, 0.7, 1)}35%{transform:rotate(15deg) translateX(1px);animation-timing-function:cubic-bezier(0.3, 0, 0.7, 1)}50%{transform:rotate(-9deg);animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}65%{transform:rotate(5deg);animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}78%{transform:rotate(-3deg);animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}90%{transform:rotate(1deg);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}100%{transform:rotate(0deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes fa-spin-snap{0%{transform:rotate(0deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}12%{transform:rotate(60deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}16.67%{transform:rotate(60deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}28.67%{transform:rotate(120deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}33.33%{transform:rotate(120deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}45.33%{transform:rotate(180deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}50%{transform:rotate(180deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}62%{transform:rotate(240deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}66.67%{transform:rotate(240deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}78.67%{transform:rotate(300deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}83.33%{transform:rotate(300deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}95.33%{transform:rotate(360deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}100%{transform:rotate(360deg)}}@keyframes fa-spin-snap-4{0%{transform:rotate(0deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}15%{transform:rotate(90deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}25%{transform:rotate(90deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}40%{transform:rotate(180deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}50%{transform:rotate(180deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}65%{transform:rotate(270deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}75%{transform:rotate(270deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}90%{transform:rotate(360deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}100%{transform:rotate(360deg)}}@keyframes fa-spin-snap-8{0%{transform:rotate(0deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}9%{transform:rotate(45deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}12.5%{transform:rotate(45deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}21.5%{transform:rotate(90deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}25%{transform:rotate(90deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}34%{transform:rotate(135deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}37.5%{transform:rotate(135deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}46.5%{transform:rotate(180deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}50%{transform:rotate(180deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}59%{transform:rotate(225deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}62.5%{transform:rotate(225deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}71.5%{transform:rotate(270deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}75%{transform:rotate(270deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}84%{transform:rotate(315deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}87.5%{transform:rotate(315deg);animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}96.5%{transform:rotate(360deg);animation-timing-function:cubic-bezier(0.8, 0, 1, 1)}100%{transform:rotate(360deg)}}@keyframes fa-buzz{0%{transform:translateX(0) rotate(0deg);animation-timing-function:cubic-bezier(0.1, 0, 0.9, 1)}5%{transform:translateX(var(--fa-buzz-distance, 4px)) rotate(0.5deg)}10%{transform:translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.5deg)}15%{transform:translateX(var(--fa-buzz-distance, 4px)) rotate(0.3deg)}20%{transform:translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.3deg)}25%{transform:translateX(calc(var(--fa-buzz-distance, 4px) * 0.7)) rotate(0.2deg)}30%{transform:translateX(calc(-1 * var(--fa-buzz-distance, 4px) * 0.7)) rotate(-0.2deg)}35%{transform:translateX(calc(var(--fa-buzz-distance, 4px) * 0.4)) rotate(0.1deg)}40%{transform:translateX(0) rotate(0deg)}100%{transform:translateX(0) rotate(0deg)}}@keyframes fa-wag{0%{transform:rotate(0deg);animation-timing-function:cubic-bezier(0.2, 0, 0.6, 1)}12%{transform:rotate(var(--fa-wag-angle, 12deg));animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}24%{transform:rotate(2deg);animation-timing-function:cubic-bezier(0.2, 0, 0.6, 1)}36%{transform:rotate(calc(var(--fa-wag-angle, 12deg) * 0.85));animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}48%{transform:rotate(1deg);animation-timing-function:cubic-bezier(0.2, 0, 0.6, 1)}58%{transform:rotate(calc(var(--fa-wag-angle, 12deg) * 0.6));animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}68%{transform:rotate(0deg)}100%{transform:rotate(0deg)}}@keyframes fa-float{0%{transform:translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));animation-timing-function:cubic-bezier(0.33, 0, 0.66, 0.33)}15%{transform:translateY(calc(-0.4 * var(--fa-float-height, 6px))) translateX(var(--fa-float-drift, 1px)) rotate(var(--fa-float-tilt, 1deg)) scale(1, 1);animation-timing-function:cubic-bezier(0.33, 0.66, 0.66, 1)}35%{transform:translateY(calc(-1 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-stretch-x, 0.98), var(--fa-float-stretch-y, 1.03));animation-timing-function:cubic-bezier(0.5, 0, 0.5, 0)}50%{transform:translateY(calc(-0.92 * var(--fa-float-height, 6px))) translateX(calc(-0.5 * var(--fa-float-drift, 1px))) rotate(calc(-0.5 * var(--fa-float-tilt, 1deg))) scale(0.995, 1.01);animation-timing-function:cubic-bezier(0.33, 0, 0.66, 0.33)}70%{transform:translateY(calc(-0.3 * var(--fa-float-height, 6px))) translateX(calc(-1 * var(--fa-float-drift, 1px))) rotate(calc(-1 * var(--fa-float-tilt, 1deg))) scale(1, 1);animation-timing-function:cubic-bezier(0.33, 0.66, 0.66, 1)}90%{transform:translateY(calc(0.05 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));animation-timing-function:cubic-bezier(0.33, 0, 0.66, 1)}100%{transform:translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98))}}@keyframes fa-swing{0%{transform:rotate(0deg);animation-timing-function:cubic-bezier(0.2, 0, 0.8, 1)}8%{transform:rotate(var(--fa-swing-angle, 22deg));animation-timing-function:cubic-bezier(0.3, 0, 0.7, 1)}18%{transform:rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.85));animation-timing-function:cubic-bezier(0.3, 0, 0.7, 1)}28%{transform:rotate(calc(var(--fa-swing-angle, 22deg) * 0.65));animation-timing-function:cubic-bezier(0.35, 0, 0.65, 1)}38%{transform:rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.45));animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}48%{transform:rotate(calc(var(--fa-swing-angle, 22deg) * 0.25));animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}56%{transform:rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.1));animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}64%{transform:rotate(0deg)}100%{transform:rotate(0deg)}}@keyframes fa-jello{0%{transform:scale(1, 1);animation-timing-function:cubic-bezier(0.2, 0, 0.8, 1)}12%{transform:scale(var(--fa-jello-scale-x, 1.15), calc(2 - var(--fa-jello-scale-x, 1.15)));animation-timing-function:cubic-bezier(0.3, 0, 0.7, 1)}24%{transform:scale(calc(2 - var(--fa-jello-scale-y, 1.12)), var(--fa-jello-scale-y, 1.12));animation-timing-function:cubic-bezier(0.3, 0, 0.7, 1)}36%{transform:scale(calc(1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5), calc(2 - (1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5)));animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}48%{transform:scale(calc(2 - (1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3)), calc(1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3));animation-timing-function:cubic-bezier(0.4, 0, 0.6, 1)}58%{transform:scale(1.02, 0.98);animation-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}68%{transform:scale(1, 1)}100%{transform:scale(1, 1)}}.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-lotus{--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.3.1 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/pt/fonts/fa-brands-400.41062caea457897b1d3b.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-build-awesome{--fa:""}.fa-codeberg{--fa:""}.fa-devpost{--fa:""}.fa-internet-archive{--fa:""}.fa-lets-encrypt{--fa:""}.fa-matrix{--fa:""}.fa-mattermost{--fa:""}.fa-nextcloud{--fa:""}.fa-roblox-creator-studio{--fa:""}.fa-square-build-awesome-stroke{--fa:""}.fa-substack{--fa:""}.fa-tesla{--fa:""}.fa-xrp{--fa:""}.fa-xrpl{--fa:""}.fa-youtube-shorts{--fa:""}.fa-ror{--fa:""}.fa-visual-studio{--fa:""}.fa-dolibarr{--fa:""}.fa-obs-studio{--fa:""}.fa-storybook{--fa:""}.fa-a11y-project{--fa:""}.fa-copilot{--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.3.1 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/pt/fonts/fa-regular-400.fa2e58edfd73d8341e07.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.3.1 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/pt/fonts/fa-solid-900.dcef2f69dbd5989a2e69.woff2)}.fas{--fa-family: var(--fa-family-classic);--fa-style: 900}.fa-classic{--fa-family: var(--fa-family-classic)}.fa-solid{--fa-style: 900}/*!
 * Bootstrap  v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */@font-face{font-weight:100 1000;font-family:"Roboto Flex Variable";font-style:normal;font-display:swap;src:url(/assets/pt/fonts/roboto-flex-latin-wght-normal.9797824a50b3751d889c.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-weight:100 900;font-family:"Roboto Condensed Variable";font-style:normal;font-display:swap;src:url(/assets/pt/fonts/roboto-condensed-latin-wght-normal.b95d69aeeb0d915cbe35.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-weight:100 900;font-family:"Roboto Condensed Variable";font-style:italic;font-display:swap;src:url(/assets/pt/fonts/roboto-condensed-latin-wght-italic.a3ff4722fbadab90576b.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-weight:200 700;font-family:"Yanone Kaffeesatz Variable";font-style:normal;font-display:swap;src:url(/assets/pt/fonts/yanone-kaffeesatz-latin-wght-normal.d841aab7b59d35174eff.woff2) format("woff2-variations");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-weight:400;font-family:"pt-icons";font-style:normal;src:url(/assets/pt/fonts/pt-icons.0e35440b108b38a01dfe.woff2) format("woff2"),url(/assets/pt/fonts/pt-icons.394f41d9990c40559cd2.woff) format("woff"),url(/assets/pt/fonts/pt-icons.e6374d0063352d0bed83.ttf) format("truetype"),url(/assets/pt/img/pt-icons.777bf58bf13013ea245c.svg#pt-icons) format("svg");font-display:swap}.icon{display:inline-block;font-weight:normal;font-family:pt-icons;font-style:normal;font-variant:normal;vertical-align:middle;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root,[data-bs-theme=light]{--bs-blue: #128ee6;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #691120;--bs-orange: #ff5e00;--bs-yellow: #e8e000;--bs-green: #52600b;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #fff;--bs-gray: #73787a;--bs-gray-dark: #31353d;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #73787a;--bs-gray-700: #454b4d;--bs-gray-800: #31353d;--bs-gray-900: #161e21;--bs-primary: #128ee6;--bs-secondary: #73787a;--bs-success: #52600b;--bs-info: #0dcaf0;--bs-warning: #e8e000;--bs-danger: #691120;--bs-light: #f8f9fa;--bs-dark: #161e21;--bs-highlight: #ff5e00;--bs-primary-rgb: 18, 142, 230;--bs-secondary-rgb: 115, 120, 122;--bs-success-rgb: 82, 96, 11;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 232, 224, 0;--bs-danger-rgb: 105, 17, 32;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 22, 30, 33;--bs-highlight-rgb: 255, 94, 0;--bs-primary-text-emphasis: rgb(2.8235294118%, 22.2745098039%, 36.0784313725%);--bs-secondary-text-emphasis: rgb(18.0392156863%, 18.8235294118%, 19.137254902%);--bs-success-text-emphasis: rgb(12.862745098%, 15.0588235294%, 1.7254901961%);--bs-info-text-emphasis: rgb(2.0392156863%, 31.6862745098%, 37.6470588235%);--bs-warning-text-emphasis: rgb(36.3921568627%, 35.137254902%, 0%);--bs-danger-text-emphasis: rgb(16.4705882353%, 2.6666666667%, 5.0196078431%);--bs-light-text-emphasis: #454b4d;--bs-dark-text-emphasis: #454b4d;--bs-primary-bg-subtle: rgb(81.4117647059%, 91.137254902%, 98.0392156863%);--bs-secondary-bg-subtle: rgb(89.0196078431%, 89.4117647059%, 89.568627451%);--bs-success-bg-subtle: rgb(86.431372549%, 87.5294117647%, 80.862745098%);--bs-info-bg-subtle: rgb(81.0196078431%, 95.8431372549%, 98.8235294118%);--bs-warning-bg-subtle: rgb(98.1960784314%, 97.568627451%, 80%);--bs-danger-bg-subtle: rgb(88.2352941176%, 81.3333333333%, 82.5098039216%);--bs-light-bg-subtle: rgb(98.6274509804%, 98.8235294118%, 99.0196078431%);--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: rgb(62.8235294118%, 82.2745098039%, 96.0784313725%);--bs-secondary-border-subtle: rgb(78.0392156863%, 78.8235294118%, 79.137254902%);--bs-success-border-subtle: rgb(72.862745098%, 75.0588235294%, 61.7254901961%);--bs-info-border-subtle: rgb(62.0392156863%, 91.6862745098%, 97.6470588235%);--bs-warning-border-subtle: rgb(96.3921568627%, 95.137254902%, 60%);--bs-danger-border-subtle: rgb(76.4705882353%, 62.6666666667%, 65.0196078431%);--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: "Roboto Flex Variable", system-ui, -apple-system, "Segoe UI", "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:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){:root,[data-bs-theme=light]{--bs-body-font-size:1rem}}:root,[data-bs-theme=light]{--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #31353d;--bs-body-color-rgb: 49, 53, 61;--bs-body-bg: #fff;--bs-body-bg-rgb: 255, 255, 255;--bs-emphasis-color: #000;--bs-emphasis-color-rgb: 0, 0, 0;--bs-secondary-color: rgba(49, 53, 61, 0.75);--bs-secondary-color-rgb: 49, 53, 61;--bs-secondary-bg: #e9ecef;--bs-secondary-bg-rgb: 233, 236, 239;--bs-tertiary-color: rgba(49, 53, 61, 0.5);--bs-tertiary-color-rgb: 49, 53, 61;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: #000;--bs-link-color: #128ee6;--bs-link-color-rgb: 18, 142, 230;--bs-link-decoration: underline;--bs-link-hover-color: rgb(5.6470588235%, 44.5490196078%, 72.1568627451%);--bs-link-hover-color-rgb: 14, 114, 184;--bs-code-color: #d63384;--bs-highlight-color: #31353d;--bs-highlight-bg: rgb(98.1960784314%, 97.568627451%, 80%);--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #ced4da;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.625rem;--bs-border-radius-sm: 0.3125rem;--bs-border-radius-lg: 0.9375rem;--bs-border-radius-xl: 1.25rem;--bs-border-radius-xxl: 2.5rem;--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(18, 142, 230, 0.25);--bs-form-valid-color: #52600b;--bs-form-valid-border-color: #52600b;--bs-form-invalid-color: #691120;--bs-form-invalid-border-color: #691120}*,*::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:1px solid;opacity:1}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:400;line-height:1.2;color:var(--bs-heading-color)}h1,.h1{font-size:calc(0.9395833333rem + 2.4972222222vw)}@media(min-width: 1200px){h1,.h1{font-size:2.8125rem}}h2,.h2{font-size:calc(0.9208333333rem + 1.7722222222vw)}@media(min-width: 1200px){h2,.h2{font-size:2.25rem}}h3,.h3{font-size:calc(0.9125rem + 1.45vw)}@media(min-width: 1200px){h3,.h3{font-size:2rem}}h4,.h4{font-size:calc(0.9041666667rem + 1.1277777778vw)}@media(min-width: 1200px){h4,.h4{font-size:1.75rem}}h5,.h5{font-size:calc(0.8958333333rem + 0.8055555556vw)}@media(min-width: 1200px){h5,.h5{font-size:1.5rem}}h6,.h6{font-size:calc(0.8916666667rem + 0.6444444444vw)}@media(min-width: 1200px){h6,.h6{font-size:1.375rem}}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:underline}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:.3125rem}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{font-weight:600;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(0.8958333333rem + 0.8055555556vw)}@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(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.lead{font-size:1.25rem}}.lead{font-weight:300}.display-1{font-weight:300;line-height:1.2;font-size:calc(1.0125rem + 5.3166666667vw)}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-weight:300;line-height:1.2;font-size:calc(0.9958333333rem + 4.6722222222vw)}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-weight:300;line-height:1.2;font-size:calc(0.9791666667rem + 4.0277777778vw)}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-weight:300;line-height:1.2;font-size:calc(0.9625rem + 3.3833333333vw)}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-weight:300;line-height:1.2;font-size:calc(0.9458333333rem + 2.7388888889vw)}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-weight:300;line-height:1.2;font-size:calc(0.9291666667rem + 2.0944444444vw)}@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(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.blockquote{font-size:1rem}}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#73787a}.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-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}@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-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}}@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-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}}@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-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}}@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-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}}@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-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}}@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-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}}@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-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}}.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(81.4117647059%, 91.137254902%, 98.0392156863%);--bs-table-border-color: rgb(65.1294117647%, 72.9098039216%, 78.431372549%);--bs-table-striped-bg: rgb(77.3411764706%, 86.5803921569%, 93.137254902%);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(73.2705882353%, 82.0235294118%, 88.2352941176%);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(75.3058823529%, 84.3019607843%, 90.6862745098%);--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(89.0196078431%, 89.4117647059%, 89.568627451%);--bs-table-border-color: rgb(71.2156862745%, 71.5294117647%, 71.6549019608%);--bs-table-striped-bg: rgb(84.568627451%, 84.9411764706%, 85.0901960784%);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(80.1176470588%, 80.4705882353%, 80.6117647059%);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(82.3431372549%, 82.7058823529%, 82.8509803922%);--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(86.431372549%, 87.5294117647%, 80.862745098%);--bs-table-border-color: rgb(69.1450980392%, 70.0235294118%, 64.6901960784%);--bs-table-striped-bg: rgb(82.1098039216%, 83.1529411765%, 76.8196078431%);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(77.7882352941%, 78.7764705882%, 72.7764705882%);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(79.9490196078%, 80.9647058824%, 74.7980392157%);--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(81.0196078431%, 95.8431372549%, 98.8235294118%);--bs-table-border-color: rgb(64.8156862745%, 76.6745098039%, 79.0588235294%);--bs-table-striped-bg: rgb(76.968627451%, 91.0509803922%, 93.8823529412%);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(72.9176470588%, 86.2588235294%, 88.9411764706%);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(74.9431372549%, 88.6549019608%, 91.4117647059%);--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(98.1960784314%, 97.568627451%, 80%);--bs-table-border-color: rgb(78.5568627451%, 78.0549019608%, 64%);--bs-table-striped-bg: rgb(93.2862745098%, 92.6901960784%, 76%);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(88.3764705882%, 87.8117647059%, 72%);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(90.831372549%, 90.2509803922%, 74%);--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(88.2352941176%, 81.3333333333%, 82.5098039216%);--bs-table-border-color: rgb(70.5882352941%, 65.0666666667%, 66.0078431373%);--bs-table-striped-bg: rgb(83.8235294118%, 77.2666666667%, 78.3843137255%);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(79.4117647059%, 73.2%, 74.2588235294%);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(81.6176470588%, 75.2333333333%, 76.3215686275%);--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: #f8f9fa;--bs-table-border-color: rgb(77.8039215686%, 78.1176470588%, 78.431372549%);--bs-table-striped-bg: rgb(92.3921568627%, 92.7647058824%, 93.137254902%);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(87.5294117647%, 87.8823529412%, 88.2352941176%);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(89.9607843137%, 90.3235294118%, 90.6862745098%);--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: #161e21;--bs-table-border-color: rgb(26.9019607843%, 29.4117647059%, 30.3529411765%);--bs-table-striped-bg: rgb(13.1960784314%, 16.1764705882%, 17.2941176471%);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(17.7647058824%, 20.5882352941%, 21.6470588235%);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(15.4803921569%, 18.3823529412%, 19.4705882353%);--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 fieldset.legend-default legend,.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(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.col-form-label-lg{font-size:1.125rem}}.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:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.form-control,.formbody .widget:not(.widget-hr) input.text,.formbody .widget:not(.widget-hr) input.captcha,.formbody .widget:not(.widget-hr) textarea{font-size:1rem}}.form-control,.formbody .widget:not(.widget-hr) input.text,.formbody .widget:not(.widget-hr) input.captcha,.formbody .widget:not(.widget-hr) textarea{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(53.5294117647%,77.8431372549%,95.0980392157%);outline:0;box-shadow:0 0 0 .25rem rgba(18,142,230,.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(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.form-control-lg{font-size:1.125rem}}.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%2331353d%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:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.form-select,.formbody .widget:not(.widget-hr) select{font-size:1rem}}.form-select,.formbody .widget:not(.widget-hr) select{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(53.5294117647%,77.8431372549%,95.0980392157%);outline:0;box-shadow:0 0 0 .25rem rgba(18,142,230,.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(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.form-select-lg{font-size:1.125rem}}.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(53.5294117647%,77.8431372549%,95.0980392157%);outline:0;box-shadow:0 0 0 .25rem rgba(18,142,230,.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:#128ee6;border-color:#128ee6}.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:#128ee6;border-color:#128ee6;--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='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%2853.5294117647%, 77.8431372549%, 95.0980392157%%29'/%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,.formbody .widget:not(.widget-hr).widget-inline>fieldset>span{display:inline-block;margin-right:.25rem}.btn-check,.formbody .widget:not(.widget-hr).widget-toggle-btn input{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.pt-rc-testimonial-more .btn-check[disabled]+a,.mod_recommendationreader .back .btn-check[disabled]+a,.pt-filter-detail+.clearall .btn-check[disabled]+a,.pt-filter-detail .widget-submit .btn-check[disabled]+input,.pt-finder .formbody .widget-submit .btn-check[disabled]+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-check[disabled]+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-check[disabled]+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-check[disabled]+label,.formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more input[disabled]+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back input[disabled]+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall input[disabled]+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit input[disabled]+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit input[disabled]+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn input[disabled]+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons input[disabled]+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn input[disabled]+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit input[disabled]+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn input[disabled]+button,.formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+label,.pagination ul li .btn-check[disabled]+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input[disabled]+a,.pagination ul li .btn-check[disabled]+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input[disabled]+strong,.mod_newslist .back .btn-check[disabled]+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back input[disabled]+a,.mod_newsreader .back .btn-check[disabled]+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back input[disabled]+a,.mod_newslist .more .btn-check[disabled]+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more input[disabled]+a,.mod_newsreader .more .btn-check[disabled]+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more input[disabled]+a,.pt-teaser-footer .btn-check[disabled]+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer input[disabled]+a,.pt-nav-main-toggler .btn-check[disabled]+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn input[disabled]+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler input[disabled]+button,.btn-check:disabled+.btn,.pt-rc-testimonial-more .btn-check:disabled+a,.mod_recommendationreader .back .btn-check:disabled+a,.pt-filter-detail+.clearall .btn-check:disabled+a,.pt-filter-detail .widget-submit .btn-check:disabled+input,.pt-finder .formbody .widget-submit .btn-check:disabled+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-check:disabled+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-check:disabled+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-check:disabled+label,.formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more input:disabled+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back input:disabled+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall input:disabled+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit input:disabled+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit input:disabled+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn input:disabled+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons input:disabled+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn input:disabled+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit input:disabled+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn input:disabled+button,.formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+label,.pagination ul li .btn-check:disabled+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:disabled+a,.pagination ul li .btn-check:disabled+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:disabled+strong,.mod_newslist .back .btn-check:disabled+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back input:disabled+a,.mod_newsreader .back .btn-check:disabled+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back input:disabled+a,.mod_newslist .more .btn-check:disabled+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more input:disabled+a,.mod_newsreader .more .btn-check:disabled+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more input:disabled+a,.pt-teaser-footer .btn-check:disabled+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer input:disabled+a,.pt-nav-main-toggler .btn-check:disabled+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn input:disabled+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler input: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(18,142,230,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(18,142,230,.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:#128ee6;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(72.1176470588%,86.7058823529%,97.0588235294%)}.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:#128ee6;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(72.1176470588%,86.7058823529%,97.0588235294%)}.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:#73787a}.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 .pt-rc-testimonial-more a,.pt-rc-testimonial-more .input-group a,.input-group .mod_recommendationreader .back a,.mod_recommendationreader .back .input-group a,.input-group .pt-filter-detail+.clearall a,.pt-filter-detail+.clearall .input-group a,.input-group .pt-filter-detail .widget-submit input,.pt-filter-detail .widget-submit .input-group input,.input-group .pt-finder .formbody .widget-submit .submit,.pt-finder .formbody .widget-submit .input-group .submit,.input-group .pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .input-group .duplication-button,.input-group .formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-submit .input-group button,.input-group .formbody .widget:not(.widget-hr).widget-toggle-btn label,.formbody .widget:not(.widget-hr).widget-toggle-btn .input-group label,.input-group .pagination ul li a,.pagination ul li .input-group a,.input-group .pagination ul li strong,.pagination ul li .input-group strong,.input-group .mod_newslist .back a,.mod_newslist .back .input-group a,.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 .mod_newsreader .more a,.mod_newsreader .more .input-group a,.input-group .pt-teaser-footer a,.pt-teaser-footer .input-group a,.input-group .pt-nav-main-toggler button,.pt-nav-main-toggler .input-group button{position:relative;z-index:2}.input-group .btn:focus,.input-group .pt-rc-testimonial-more a:focus,.pt-rc-testimonial-more .input-group a:focus,.input-group .mod_recommendationreader .back a:focus,.mod_recommendationreader .back .input-group a:focus,.input-group .pt-filter-detail+.clearall a:focus,.pt-filter-detail+.clearall .input-group a:focus,.input-group .pt-filter-detail .widget-submit input:focus,.pt-filter-detail .widget-submit .input-group input:focus,.input-group .pt-finder .formbody .widget-submit .submit:focus,.pt-finder .formbody .widget-submit .input-group .submit:focus,.input-group .pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button:focus,.pico-duplication .formbody .allow-duplication .duplication-buttons .input-group .duplication-button: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 .formbody .widget:not(.widget-hr).widget-toggle-btn label:focus,.formbody .widget:not(.widget-hr).widget-toggle-btn .input-group label:focus,.input-group .pagination ul li a:focus,.pagination ul li .input-group a:focus,.input-group .pagination ul li strong:focus,.pagination ul li .input-group strong:focus,.input-group .mod_newslist .back a:focus,.mod_newslist .back .input-group a: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 .mod_newsreader .more a:focus,.mod_newsreader .more .input-group a:focus,.input-group .pt-teaser-footer a:focus,.pt-teaser-footer .input-group a:focus,.input-group .pt-nav-main-toggler button:focus,.pt-nav-main-toggler .input-group button:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.input-group-text{font-size:1rem}}.input-group-text{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,.pt-rc-testimonial-more .input-group-lg>a,.mod_recommendationreader .back .input-group-lg>a,.pt-filter-detail+.clearall .input-group-lg>a,.pt-filter-detail .widget-submit .input-group-lg>input,.pt-finder .formbody .widget-submit .input-group-lg>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .input-group-lg>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .input-group-lg>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .input-group-lg>label,.pagination ul li .input-group-lg>a,.pagination ul li .input-group-lg>strong,.mod_newslist .back .input-group-lg>a,.mod_newsreader .back .input-group-lg>a,.mod_newslist .more .input-group-lg>a,.mod_newsreader .more .input-group-lg>a,.pt-teaser-footer .input-group-lg>a,.pt-nav-main-toggler .input-group-lg>button{padding:.5rem 1rem;font-size:calc(0.8833333333rem + 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,.pt-rc-testimonial-more .input-group-lg>a,.mod_recommendationreader .back .input-group-lg>a,.pt-filter-detail+.clearall .input-group-lg>a,.pt-filter-detail .widget-submit .input-group-lg>input,.pt-finder .formbody .widget-submit .input-group-lg>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .input-group-lg>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .input-group-lg>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .input-group-lg>label,.pagination ul li .input-group-lg>a,.pagination ul li .input-group-lg>strong,.mod_newslist .back .input-group-lg>a,.mod_newsreader .back .input-group-lg>a,.mod_newslist .more .input-group-lg>a,.mod_newsreader .more .input-group-lg>a,.pt-teaser-footer .input-group-lg>a,.pt-nav-main-toggler .input-group-lg>button{font-size:1.125rem}}.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,.pt-rc-testimonial-more .input-group-lg>a,.mod_recommendationreader .back .input-group-lg>a,.pt-filter-detail+.clearall .input-group-lg>a,.pt-filter-detail .widget-submit .input-group-lg>input,.pt-finder .formbody .widget-submit .input-group-lg>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .input-group-lg>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .input-group-lg>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .input-group-lg>label,.pagination ul li .input-group-lg>a,.pagination ul li .input-group-lg>strong,.mod_newslist .back .input-group-lg>a,.mod_newsreader .back .input-group-lg>a,.mod_newslist .more .input-group-lg>a,.mod_newsreader .more .input-group-lg>a,.pt-teaser-footer .input-group-lg>a,.pt-nav-main-toggler .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,.pt-rc-testimonial-more .input-group-sm>a,.mod_recommendationreader .back .input-group-sm>a,.pt-filter-detail+.clearall .input-group-sm>a,.pt-filter-detail .widget-submit .input-group-sm>input,.pt-finder .formbody .widget-submit .input-group-sm>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .input-group-sm>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .input-group-sm>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .input-group-sm>label,.pagination ul li .input-group-sm>a,.pagination ul li .input-group-sm>strong,.mod_newslist .back .input-group-sm>a,.mod_newsreader .back .input-group-sm>a,.mod_newslist .more .input-group-sm>a,.mod_newsreader .more .input-group-sm>a,.pt-teaser-footer .input-group-sm>a,.pt-nav-main-toggler .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%2352600b%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%2352600b%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,.formbody .widget:not(.widget-hr).widget-inline>fieldset>span .form-check-input~.valid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-radio input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-inline>fieldset>span .formbody .widget:not(.widget-hr).widget-radio input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-radio .form-check-inline input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-radio .widget:not(.widget-hr).widget-inline>fieldset>span input~.valid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-checkbox input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-inline>fieldset>span .formbody .widget:not(.widget-hr).widget-checkbox input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-inline input~.valid-feedback,.formbody .widget:not(.widget-hr).widget-checkbox .widget:not(.widget-hr).widget-inline>fieldset>span 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%23691120%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%23691120%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%23691120%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%23691120%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,.formbody .widget:not(.widget-hr).widget-inline>fieldset>span .form-check-input~.invalid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-radio input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-inline>fieldset>span .formbody .widget:not(.widget-hr).widget-radio input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-radio .form-check-inline input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-radio .widget:not(.widget-hr).widget-inline>fieldset>span input~.invalid-feedback,.form-check-inline .formbody .widget:not(.widget-hr).widget-checkbox input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-inline>fieldset>span .formbody .widget:not(.widget-hr).widget-checkbox input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-checkbox .form-check-inline input~.invalid-feedback,.formbody .widget:not(.widget-hr).widget-checkbox .widget:not(.widget-hr).widget-inline>fieldset>span 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,.pt-rc-testimonial-more a,.mod_recommendationreader .back a,.pt-filter-detail+.clearall a,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button,.formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-toggle-btn label,.pagination ul li a,.pagination ul li strong,.mod_newslist .back a,.mod_newsreader .back a,.mod_newslist .more a,.mod_newsreader .more a,.pt-teaser-footer a,.pt-nav-main-toggler button{--bs-btn-padding-x: 0.9375rem;--bs-btn-padding-y: 0.125rem;--bs-btn-font-family: Roboto Condensed Variable, Arial Narrow, sans-serif;--bs-btn-font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.btn,.pt-rc-testimonial-more a,.mod_recommendationreader .back a,.pt-filter-detail+.clearall a,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button,.formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-toggle-btn label,.pagination ul li a,.pagination ul li strong,.mod_newslist .back a,.mod_newsreader .back a,.mod_newslist .more a,.mod_newsreader .more a,.pt-teaser-footer a,.pt-nav-main-toggler button{--bs-btn-font-size:1rem}}.btn,.pt-rc-testimonial-more a,.mod_recommendationreader .back a,.pt-filter-detail+.clearall a,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button,.formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-toggle-btn label,.pagination ul li a,.pagination ul li strong,.mod_newslist .back a,.mod_newsreader .back a,.mod_newslist .more a,.mod_newsreader .more a,.pt-teaser-footer a,.pt-nav-main-toggler button{--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: 50rem;--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;text-decoration:none;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,.pt-rc-testimonial-more a,.mod_recommendationreader .back a,.pt-filter-detail+.clearall a,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button,.formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-toggle-btn label,.pagination ul li a,.pagination ul li strong,.mod_newslist .back a,.mod_newsreader .back a,.mod_newslist .more a,.mod_newsreader .more a,.pt-teaser-footer a,.pt-nav-main-toggler button{transition:none}}.btn:hover,.pt-rc-testimonial-more a:hover,.mod_recommendationreader .back a:hover,.pt-filter-detail+.clearall a:hover,.pt-filter-detail .widget-submit input:hover,.pt-finder .formbody .widget-submit .submit:hover,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button:hover,.formbody .widget:not(.widget-hr).widget-submit button:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn label:hover,.pagination ul li a:hover,.pagination ul li strong:hover,.mod_newslist .back a:hover,.mod_newsreader .back a:hover,.mod_newslist .more a:hover,.mod_newsreader .more a:hover,.pt-teaser-footer a:hover,.pt-nav-main-toggler 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,.pt-rc-testimonial-more .btn-check+a:hover,.mod_recommendationreader .back .btn-check+a:hover,.pt-filter-detail+.clearall .btn-check+a:hover,.pt-filter-detail .widget-submit .btn-check+input:hover,.pt-finder .formbody .widget-submit .btn-check+.submit:hover,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-check+.duplication-button:hover,.formbody .widget:not(.widget-hr).widget-submit .btn-check+button:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-check+label:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn input+.btn:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more input+a:hover,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back input+a:hover,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall input+a:hover,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit input+input:hover,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn input+input:hover,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit input+.submit:hover,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn input+.submit:hover,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons input+.duplication-button:hover,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn input+.duplication-button:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit input+button:hover,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn input+button:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn input+label:hover,.pagination ul li .btn-check+a:hover,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input+a:hover,.pagination ul li .btn-check+strong:hover,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input+strong:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input+strong:hover,.mod_newslist .back .btn-check+a:hover,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back input+a:hover,.mod_newsreader .back .btn-check+a:hover,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back input+a:hover,.mod_newslist .more .btn-check+a:hover,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more input+a:hover,.mod_newsreader .more .btn-check+a:hover,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more input+a:hover,.pt-teaser-footer .btn-check+a:hover,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn input+a:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer input+a:hover,.pt-nav-main-toggler .btn-check+button:hover,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn input+button:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler input+button:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible,.pt-rc-testimonial-more a:focus-visible,.mod_recommendationreader .back a:focus-visible,.pt-filter-detail+.clearall a:focus-visible,.pt-filter-detail .widget-submit input:focus-visible,.pt-finder .formbody .widget-submit .submit:focus-visible,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn label:focus-visible,.pagination ul li a:focus-visible,.pagination ul li strong:focus-visible,.mod_newslist .back a:focus-visible,.mod_newsreader .back a:focus-visible,.mod_newslist .more a:focus-visible,.mod_newsreader .more a:focus-visible,.pt-teaser-footer a:focus-visible,.pt-nav-main-toggler 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,.pt-rc-testimonial-more .btn-check:focus-visible+a,.mod_recommendationreader .back .btn-check:focus-visible+a,.pt-filter-detail+.clearall .btn-check:focus-visible+a,.pt-filter-detail .widget-submit .btn-check:focus-visible+input,.pt-finder .formbody .widget-submit .btn-check:focus-visible+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-check:focus-visible+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-check:focus-visible+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-check:focus-visible+label,.formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more input:focus-visible+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back input:focus-visible+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall input:focus-visible+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit input:focus-visible+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit input:focus-visible+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons input:focus-visible+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit input:focus-visible+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+button,.formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+label,.pagination ul li .btn-check:focus-visible+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:focus-visible+a,.pagination ul li .btn-check:focus-visible+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:focus-visible+strong,.mod_newslist .back .btn-check:focus-visible+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back input:focus-visible+a,.mod_newsreader .back .btn-check:focus-visible+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back input:focus-visible+a,.mod_newslist .more .btn-check:focus-visible+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more input:focus-visible+a,.mod_newsreader .more .btn-check:focus-visible+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more input:focus-visible+a,.pt-teaser-footer .btn-check:focus-visible+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer input:focus-visible+a,.pt-nav-main-toggler .btn-check:focus-visible+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn input:focus-visible+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler input: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,.pt-rc-testimonial-more .btn-check:checked+a,.mod_recommendationreader .back .btn-check:checked+a,.pt-filter-detail+.clearall .btn-check:checked+a,.pt-filter-detail .widget-submit .btn-check:checked+input,.pt-finder .formbody .widget-submit .btn-check:checked+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-check:checked+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-check:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-check:checked+label,.formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more input:checked+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back input:checked+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall input:checked+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit input:checked+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit input:checked+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn input:checked+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons input:checked+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn input:checked+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit input:checked+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn input:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+label,.pagination ul li .btn-check:checked+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:checked+a,.pagination ul li .btn-check:checked+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:checked+strong,.mod_newslist .back .btn-check:checked+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back input:checked+a,.mod_newsreader .back .btn-check:checked+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back input:checked+a,.mod_newslist .more .btn-check:checked+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more input:checked+a,.mod_newsreader .more .btn-check:checked+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more input:checked+a,.pt-teaser-footer .btn-check:checked+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer input:checked+a,.pt-nav-main-toggler .btn-check:checked+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler input:checked+button,:not(.btn-check)+.btn:active,.pt-rc-testimonial-more :not(.btn-check)+a:active,.mod_recommendationreader .back :not(.btn-check)+a:active,.pt-filter-detail+.clearall :not(.btn-check)+a:active,.pt-filter-detail .widget-submit :not(.btn-check)+input:active,.pt-finder .formbody .widget-submit :not(.btn-check)+.submit:active,.pico-duplication .formbody .allow-duplication .duplication-buttons :not(.btn-check)+.duplication-button:active,.formbody .widget:not(.widget-hr).widget-submit :not(.btn-check)+button:active,.formbody .widget:not(.widget-hr).widget-toggle-btn :not(.btn-check)+label:active,.pagination ul li :not(.btn-check)+a:active,.pagination ul li :not(.btn-check)+strong:active,.mod_newslist .back :not(.btn-check)+a:active,.mod_newsreader .back :not(.btn-check)+a:active,.mod_newslist .more :not(.btn-check)+a:active,.mod_newsreader .more :not(.btn-check)+a:active,.pt-teaser-footer :not(.btn-check)+a:active,.pt-nav-main-toggler :not(.btn-check)+button:active,.btn:first-child:active,.pt-rc-testimonial-more a:first-child:active,.mod_recommendationreader .back a:first-child:active,.pt-filter-detail+.clearall a:first-child:active,.pt-filter-detail .widget-submit input:first-child:active,.pt-finder .formbody .widget-submit .submit:first-child:active,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button:first-child:active,.formbody .widget:not(.widget-hr).widget-submit button:first-child:active,.formbody .widget:not(.widget-hr).widget-toggle-btn label:first-child:active,.pagination ul li a:first-child:active,.pagination ul li strong:first-child:active,.mod_newslist .back a:first-child:active,.mod_newsreader .back a:first-child:active,.mod_newslist .more a:first-child:active,.mod_newsreader .more a:first-child:active,.pt-teaser-footer a:first-child:active,.pt-nav-main-toggler button:first-child:active,.btn.active,.pt-rc-testimonial-more a.active,.mod_recommendationreader .back a.active,.pt-filter-detail+.clearall a.active,.pt-filter-detail .widget-submit input.active,.pt-finder .formbody .widget-submit .active.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .active.duplication-button,.formbody .widget:not(.widget-hr).widget-submit button.active,.formbody .widget:not(.widget-hr).widget-toggle-btn label.active,.pagination ul li a.active,.pagination ul li strong.active,.mod_newslist .back a.active,.mod_newsreader .back a.active,.mod_newslist .more a.active,.mod_newsreader .more a.active,.pt-teaser-footer a.active,.pt-nav-main-toggler button.active,.btn.show,.pt-rc-testimonial-more a.show,.mod_recommendationreader .back a.show,.pt-filter-detail+.clearall a.show,.pt-filter-detail .widget-submit input.show,.pt-finder .formbody .widget-submit .show.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .show.duplication-button,.formbody .widget:not(.widget-hr).widget-submit button.show,.formbody .widget:not(.widget-hr).widget-toggle-btn label.show,.pagination ul li a.show,.pagination ul li strong.show,.mod_newslist .back a.show,.mod_newsreader .back a.show,.mod_newslist .more a.show,.mod_newsreader .more a.show,.pt-teaser-footer a.show,.pt-nav-main-toggler 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,.pt-rc-testimonial-more .btn-check:checked+a:focus-visible,.mod_recommendationreader .back .btn-check:checked+a:focus-visible,.pt-filter-detail+.clearall .btn-check:checked+a:focus-visible,.pt-filter-detail .widget-submit .btn-check:checked+input:focus-visible,.pt-finder .formbody .widget-submit .btn-check:checked+.submit:focus-visible,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-check:checked+.duplication-button:focus-visible,.formbody .widget:not(.widget-hr).widget-submit .btn-check:checked+button:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-check:checked+label:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+.btn:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more input:checked+a:focus-visible,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back input:checked+a:focus-visible,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall input:checked+a:focus-visible,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit input:checked+input:focus-visible,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+input:focus-visible,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit input:checked+.submit:focus-visible,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn input:checked+.submit:focus-visible,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons input:checked+.duplication-button:focus-visible,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn input:checked+.duplication-button:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit input:checked+button:focus-visible,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn input:checked+button:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+label:focus-visible,.pagination ul li .btn-check:checked+a:focus-visible,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:checked+a:focus-visible,.pagination ul li .btn-check:checked+strong:focus-visible,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+strong:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:checked+strong:focus-visible,.mod_newslist .back .btn-check:checked+a:focus-visible,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back input:checked+a:focus-visible,.mod_newsreader .back .btn-check:checked+a:focus-visible,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back input:checked+a:focus-visible,.mod_newslist .more .btn-check:checked+a:focus-visible,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more input:checked+a:focus-visible,.mod_newsreader .more .btn-check:checked+a:focus-visible,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more input:checked+a:focus-visible,.pt-teaser-footer .btn-check:checked+a:focus-visible,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+a:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer input:checked+a:focus-visible,.pt-nav-main-toggler .btn-check:checked+button:focus-visible,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+button:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler input:checked+button:focus-visible,:not(.btn-check)+.btn:active:focus-visible,.pt-rc-testimonial-more :not(.btn-check)+a:active:focus-visible,.mod_recommendationreader .back :not(.btn-check)+a:active:focus-visible,.pt-filter-detail+.clearall :not(.btn-check)+a:active:focus-visible,.pt-filter-detail .widget-submit :not(.btn-check)+input:active:focus-visible,.pt-finder .formbody .widget-submit :not(.btn-check)+.submit:active:focus-visible,.pico-duplication .formbody .allow-duplication .duplication-buttons :not(.btn-check)+.duplication-button:active:focus-visible,.formbody .widget:not(.widget-hr).widget-submit :not(.btn-check)+button:active:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn :not(.btn-check)+label:active:focus-visible,.pagination ul li :not(.btn-check)+a:active:focus-visible,.pagination ul li :not(.btn-check)+strong:active:focus-visible,.mod_newslist .back :not(.btn-check)+a:active:focus-visible,.mod_newsreader .back :not(.btn-check)+a:active:focus-visible,.mod_newslist .more :not(.btn-check)+a:active:focus-visible,.mod_newsreader .more :not(.btn-check)+a:active:focus-visible,.pt-teaser-footer :not(.btn-check)+a:active:focus-visible,.pt-nav-main-toggler :not(.btn-check)+button:active:focus-visible,.btn:first-child:active:focus-visible,.pt-rc-testimonial-more a:first-child:active:focus-visible,.mod_recommendationreader .back a:first-child:active:focus-visible,.pt-filter-detail+.clearall a:first-child:active:focus-visible,.pt-filter-detail .widget-submit input:first-child:active:focus-visible,.pt-finder .formbody .widget-submit .submit:first-child:active:focus-visible,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button:first-child:active:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button:first-child:active:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn label:first-child:active:focus-visible,.pagination ul li a:first-child:active:focus-visible,.pagination ul li strong:first-child:active:focus-visible,.mod_newslist .back a:first-child:active:focus-visible,.mod_newsreader .back a:first-child:active:focus-visible,.mod_newslist .more a:first-child:active:focus-visible,.mod_newsreader .more a:first-child:active:focus-visible,.pt-teaser-footer a:first-child:active:focus-visible,.pt-nav-main-toggler button:first-child:active:focus-visible,.btn.active:focus-visible,.pt-rc-testimonial-more a.active:focus-visible,.mod_recommendationreader .back a.active:focus-visible,.pt-filter-detail+.clearall a.active:focus-visible,.pt-filter-detail .widget-submit input.active:focus-visible,.pt-finder .formbody .widget-submit .active.submit:focus-visible,.pico-duplication .formbody .allow-duplication .duplication-buttons .active.duplication-button:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button.active:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn label.active:focus-visible,.pagination ul li a.active:focus-visible,.pagination ul li strong.active:focus-visible,.mod_newslist .back a.active:focus-visible,.mod_newsreader .back a.active:focus-visible,.mod_newslist .more a.active:focus-visible,.mod_newsreader .more a.active:focus-visible,.pt-teaser-footer a.active:focus-visible,.pt-nav-main-toggler button.active:focus-visible,.btn.show:focus-visible,.pt-rc-testimonial-more a.show:focus-visible,.mod_recommendationreader .back a.show:focus-visible,.pt-filter-detail+.clearall a.show:focus-visible,.pt-filter-detail .widget-submit input.show:focus-visible,.pt-finder .formbody .widget-submit .show.submit:focus-visible,.pico-duplication .formbody .allow-duplication .duplication-buttons .show.duplication-button:focus-visible,.formbody .widget:not(.widget-hr).widget-submit button.show:focus-visible,.formbody .widget:not(.widget-hr).widget-toggle-btn label.show:focus-visible,.pagination ul li a.show:focus-visible,.pagination ul li strong.show:focus-visible,.mod_newslist .back a.show:focus-visible,.mod_newsreader .back a.show:focus-visible,.mod_newslist .more a.show:focus-visible,.mod_newsreader .more a.show:focus-visible,.pt-teaser-footer a.show:focus-visible,.pt-nav-main-toggler button.show:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked:focus-visible+.btn,.pt-rc-testimonial-more .btn-check:checked:focus-visible+a,.mod_recommendationreader .back .btn-check:checked:focus-visible+a,.pt-filter-detail+.clearall .btn-check:checked:focus-visible+a,.pt-filter-detail .widget-submit .btn-check:checked:focus-visible+input,.pt-finder .formbody .widget-submit .btn-check:checked:focus-visible+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-check:checked:focus-visible+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-check:checked:focus-visible+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-check:checked:focus-visible+label,.formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more input:checked:focus-visible+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back input:checked:focus-visible+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall input:checked:focus-visible+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit input:checked:focus-visible+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit input:checked:focus-visible+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons input:checked:focus-visible+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit input:checked:focus-visible+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+button,.formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+label,.pagination ul li .btn-check:checked:focus-visible+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:checked:focus-visible+a,.pagination ul li .btn-check:checked:focus-visible+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li input:checked:focus-visible+strong,.mod_newslist .back .btn-check:checked:focus-visible+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back input:checked:focus-visible+a,.mod_newsreader .back .btn-check:checked:focus-visible+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back input:checked:focus-visible+a,.mod_newslist .more .btn-check:checked:focus-visible+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more input:checked:focus-visible+a,.mod_newsreader .more .btn-check:checked:focus-visible+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more input:checked:focus-visible+a,.pt-teaser-footer .btn-check:checked:focus-visible+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer input:checked:focus-visible+a,.pt-nav-main-toggler .btn-check:checked:focus-visible+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn input:checked:focus-visible+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler input:checked:focus-visible+button{box-shadow:var(--bs-btn-focus-box-shadow)}.btn:disabled,.pt-rc-testimonial-more a:disabled,.mod_recommendationreader .back a:disabled,.pt-filter-detail+.clearall a:disabled,.pt-filter-detail .widget-submit input:disabled,.pt-finder .formbody .widget-submit .submit:disabled,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button:disabled,.formbody .widget:not(.widget-hr).widget-submit button:disabled,.formbody .widget:not(.widget-hr).widget-toggle-btn label:disabled,.pagination ul li a:disabled,.mod_newslist .back a:disabled,.mod_newsreader .back a:disabled,.mod_newslist .more a:disabled,.mod_newsreader .more a:disabled,.pt-teaser-footer a:disabled,.pt-nav-main-toggler button:disabled,.btn.disabled,.pt-rc-testimonial-more a.disabled,.mod_recommendationreader .back a.disabled,.pt-filter-detail+.clearall a.disabled,.pt-filter-detail .widget-submit input.disabled,.pt-finder .formbody .widget-submit .disabled.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .disabled.duplication-button,.formbody .widget:not(.widget-hr).widget-submit button.disabled,.formbody .widget:not(.widget-hr).widget-toggle-btn label.disabled,.pagination ul li a.disabled,.pagination ul li strong,.mod_newslist .back a.disabled,.mod_newsreader .back a.disabled,.mod_newslist .more a.disabled,.mod_newsreader .more a.disabled,.pt-teaser-footer a.disabled,.pt-nav-main-toggler button.disabled,fieldset:disabled .btn,fieldset:disabled .pt-rc-testimonial-more a,.pt-rc-testimonial-more fieldset:disabled a,fieldset:disabled .mod_recommendationreader .back a,.mod_recommendationreader .back fieldset:disabled a,fieldset:disabled .pt-filter-detail+.clearall a,.pt-filter-detail+.clearall fieldset:disabled a,fieldset:disabled .pt-filter-detail .widget-submit input,.pt-filter-detail .widget-submit fieldset:disabled input,fieldset:disabled .pt-finder .formbody .widget-submit .submit,.pt-finder .formbody .widget-submit fieldset:disabled .submit,fieldset:disabled .pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons fieldset:disabled .duplication-button,fieldset:disabled .formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-submit fieldset:disabled button,fieldset:disabled .formbody .widget:not(.widget-hr).widget-toggle-btn label,.formbody .widget:not(.widget-hr).widget-toggle-btn fieldset:disabled label,fieldset:disabled .pagination ul li a,.pagination ul li fieldset:disabled a,fieldset:disabled .mod_newslist .back a,.mod_newslist .back fieldset:disabled a,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 .mod_newsreader .more a,.mod_newsreader .more fieldset:disabled a,fieldset:disabled .pt-teaser-footer a,.pt-teaser-footer fieldset:disabled a,fieldset:disabled .pt-nav-main-toggler button,.pt-nav-main-toggler 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,.pagination ul li a,.pagination ul li strong,.mod_newslist .back a,.mod_newsreader .back a,.mod_newslist .more a,.mod_newsreader .more a,.pt-teaser-footer a,.pt-nav-main-toggler button{--bs-btn-color: #000;--bs-btn-bg: #128ee6;--bs-btn-border-color: #128ee6;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(25.6470588235%, 64.5490196078%, 92.1568627451%);--bs-btn-hover-border-color: rgb(25.6470588235%, 64.5490196078%, 92.1568627451%);--bs-btn-focus-shadow-rgb: 15, 121, 196;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(72.1176470588%, 86.7058823529%, 97.0588235294%);--bs-btn-active-border-color: rgb(72.1176470588%, 86.7058823529%, 97.0588235294%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #128ee6;--bs-btn-disabled-border-color: #128ee6}.btn-secondary{--bs-btn-color: #000;--bs-btn-bg: #73787a;--bs-btn-border-color: #73787a;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(56.0784313725%, 57.6470588235%, 58.2745098039%);--bs-btn-hover-border-color: rgb(56.0784313725%, 57.6470588235%, 58.2745098039%);--bs-btn-focus-shadow-rgb: 98, 102, 104;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(83.5294117647%, 84.1176470588%, 84.3529411765%);--bs-btn-active-border-color: rgb(83.5294117647%, 84.1176470588%, 84.3529411765%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #73787a;--bs-btn-disabled-border-color: #73787a}.btn-success,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button--add{--bs-btn-color: #fff;--bs-btn-bg: #52600b;--bs-btn-border-color: #52600b;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(24.1176470588%, 28.2352941176%, 3.2352941176%);--bs-btn-hover-border-color: rgb(24.1176470588%, 28.2352941176%, 3.2352941176%);--bs-btn-focus-shadow-rgb: 108, 120, 48;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(12.862745098%, 15.0588235294%, 1.7254901961%);--bs-btn-active-border-color: rgb(12.862745098%, 15.0588235294%, 1.7254901961%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #52600b;--bs-btn-disabled-border-color: #52600b}.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(24.0784313725%, 83.3725490196%, 95.2941176471%);--bs-btn-hover-border-color: rgb(24.0784313725%, 83.3725490196%, 95.2941176471%);--bs-btn-focus-shadow-rgb: 11, 172, 204;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(71.5294117647%, 93.7647058824%, 98.2352941176%);--bs-btn-active-border-color: rgb(71.5294117647%, 93.7647058824%, 98.2352941176%);--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,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit{--bs-btn-color: #000;--bs-btn-bg: #e8e000;--bs-btn-border-color: #e8e000;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(92.7843137255%, 90.2745098039%, 20%);--bs-btn-hover-border-color: rgb(92.7843137255%, 90.2745098039%, 20%);--bs-btn-focus-shadow-rgb: 197, 190, 0;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(97.2941176471%, 96.3529411765%, 70%);--bs-btn-active-border-color: rgb(97.2941176471%, 96.3529411765%, 70%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #e8e000;--bs-btn-disabled-border-color: #e8e000}.btn-danger,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button--remove{--bs-btn-color: #fff;--bs-btn-bg: #691120;--bs-btn-border-color: #691120;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(30.8823529412%, 5%, 9.4117647059%);--bs-btn-hover-border-color: rgb(30.8823529412%, 5%, 9.4117647059%);--bs-btn-focus-shadow-rgb: 128, 53, 65;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(16.4705882353%, 2.6666666667%, 5.0196078431%);--bs-btn-active-border-color: rgb(16.4705882353%, 2.6666666667%, 5.0196078431%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #691120;--bs-btn-disabled-border-color: #691120}.btn-light{--bs-btn-color: #000;--bs-btn-bg: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(72.9411764706%, 73.2352941176%, 73.5294117647%);--bs-btn-hover-border-color: rgb(72.9411764706%, 73.2352941176%, 73.5294117647%);--bs-btn-focus-shadow-rgb: 211, 212, 213;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(38.9019607843%, 39.0588235294%, 39.2156862745%);--bs-btn-active-border-color: rgb(38.9019607843%, 39.0588235294%, 39.2156862745%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #f8f9fa;--bs-btn-disabled-border-color: #f8f9fa}.btn-dark{--bs-btn-color: #fff;--bs-btn-bg: #161e21;--bs-btn-border-color: #161e21;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(26.9019607843%, 29.4117647059%, 30.3529411765%);--bs-btn-hover-border-color: rgb(26.9019607843%, 29.4117647059%, 30.3529411765%);--bs-btn-focus-shadow-rgb: 57, 64, 66;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(72.5882352941%, 73.5294117647%, 73.8823529412%);--bs-btn-active-border-color: rgb(72.5882352941%, 73.5294117647%, 73.8823529412%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #161e21;--bs-btn-disabled-border-color: #161e21}.btn-highlight{--bs-btn-color: #000;--bs-btn-bg: #ff5e00;--bs-btn-border-color: #ff5e00;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(100%, 49.4901960784%, 20%);--bs-btn-hover-border-color: rgb(100%, 49.4901960784%, 20%);--bs-btn-focus-shadow-rgb: 217, 80, 0;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(100%, 81.0588235294%, 70%);--bs-btn-active-border-color: rgb(100%, 81.0588235294%, 70%);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #ff5e00;--bs-btn-disabled-border-color: #ff5e00}.btn-outline-primary{--bs-btn-color: #128ee6;--bs-btn-border-color: #128ee6;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #128ee6;--bs-btn-hover-border-color: #128ee6;--bs-btn-focus-shadow-rgb: 18, 142, 230;--bs-btn-active-color: #000;--bs-btn-active-bg: #128ee6;--bs-btn-active-border-color: #128ee6;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #128ee6;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #128ee6;--bs-gradient: none}.btn-outline-secondary{--bs-btn-color: #73787a;--bs-btn-border-color: #73787a;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #73787a;--bs-btn-hover-border-color: #73787a;--bs-btn-focus-shadow-rgb: 115, 120, 122;--bs-btn-active-color: #000;--bs-btn-active-bg: #73787a;--bs-btn-active-border-color: #73787a;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #73787a;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #73787a;--bs-gradient: none}.btn-outline-success{--bs-btn-color: #52600b;--bs-btn-border-color: #52600b;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #52600b;--bs-btn-hover-border-color: #52600b;--bs-btn-focus-shadow-rgb: 82, 96, 11;--bs-btn-active-color: #fff;--bs-btn-active-bg: #52600b;--bs-btn-active-border-color: #52600b;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #52600b;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #52600b;--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: #e8e000;--bs-btn-border-color: #e8e000;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #e8e000;--bs-btn-hover-border-color: #e8e000;--bs-btn-focus-shadow-rgb: 232, 224, 0;--bs-btn-active-color: #000;--bs-btn-active-bg: #e8e000;--bs-btn-active-border-color: #e8e000;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #e8e000;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #e8e000;--bs-gradient: none}.btn-outline-danger{--bs-btn-color: #691120;--bs-btn-border-color: #691120;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #691120;--bs-btn-hover-border-color: #691120;--bs-btn-focus-shadow-rgb: 105, 17, 32;--bs-btn-active-color: #fff;--bs-btn-active-bg: #691120;--bs-btn-active-border-color: #691120;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #691120;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #691120;--bs-gradient: none}.btn-outline-light{--bs-btn-color: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #f8f9fa;--bs-btn-hover-border-color: #f8f9fa;--bs-btn-focus-shadow-rgb: 248, 249, 250;--bs-btn-active-color: #000;--bs-btn-active-bg: #f8f9fa;--bs-btn-active-border-color: #f8f9fa;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #f8f9fa;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #f8f9fa;--bs-gradient: none}.btn-outline-dark{--bs-btn-color: #161e21;--bs-btn-border-color: #161e21;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #161e21;--bs-btn-hover-border-color: #161e21;--bs-btn-focus-shadow-rgb: 22, 30, 33;--bs-btn-active-color: #fff;--bs-btn-active-bg: #161e21;--bs-btn-active-border-color: #161e21;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #161e21;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #161e21;--bs-gradient: none}.btn-outline-highlight,.pt-rc-testimonial-more a,.mod_recommendationreader .back a{--bs-btn-color: #ff5e00;--bs-btn-border-color: #ff5e00;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #ff5e00;--bs-btn-hover-border-color: #ff5e00;--bs-btn-focus-shadow-rgb: 255, 94, 0;--bs-btn-active-color: #000;--bs-btn-active-bg: #ff5e00;--bs-btn-active-border-color: #ff5e00;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ff5e00;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #ff5e00;--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: #73787a;--bs-btn-disabled-border-color: transparent;--bs-btn-box-shadow: 0 0 0 #000;--bs-btn-focus-shadow-rgb: 15, 121, 196;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit,.formbody .widget:not(.widget-hr).widget-toggle-btn .art-group label,.pt-nav-main-toggler button,.btn-group-lg>.btn,.pt-rc-testimonial-more .btn-group-lg>a,.mod_recommendationreader .back .btn-group-lg>a,.pt-filter-detail+.clearall .btn-group-lg>a,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-lg>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-lg>label,.pagination ul li .btn-group-lg>a,.pagination ul li .btn-group-lg>strong,.mod_newslist .back .btn-group-lg>a,.mod_newsreader .back .btn-group-lg>a,.mod_newslist .more .btn-group-lg>a,.mod_newsreader .more .btn-group-lg>a,.pt-teaser-footer .btn-group-lg>a,.pt-nav-main-toggler .btn-group-lg>button{--bs-btn-padding-y: 0.5rem;--bs-btn-padding-x: 1rem;--bs-btn-font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.btn-lg,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit,.formbody .widget:not(.widget-hr).widget-toggle-btn .art-group label,.pt-nav-main-toggler button,.btn-group-lg>.btn,.pt-rc-testimonial-more .btn-group-lg>a,.mod_recommendationreader .back .btn-group-lg>a,.pt-filter-detail+.clearall .btn-group-lg>a,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-lg>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-lg>label,.pagination ul li .btn-group-lg>a,.pagination ul li .btn-group-lg>strong,.mod_newslist .back .btn-group-lg>a,.mod_newsreader .back .btn-group-lg>a,.mod_newslist .more .btn-group-lg>a,.mod_newsreader .more .btn-group-lg>a,.pt-teaser-footer .btn-group-lg>a,.pt-nav-main-toggler .btn-group-lg>button{--bs-btn-font-size:1.125rem}}.btn-lg,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit,.formbody .widget:not(.widget-hr).widget-toggle-btn .art-group label,.pt-nav-main-toggler button,.btn-group-lg>.btn,.pt-rc-testimonial-more .btn-group-lg>a,.mod_recommendationreader .back .btn-group-lg>a,.pt-filter-detail+.clearall .btn-group-lg>a,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-lg>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-lg>label,.pagination ul li .btn-group-lg>a,.pagination ul li .btn-group-lg>strong,.mod_newslist .back .btn-group-lg>a,.mod_newsreader .back .btn-group-lg>a,.mod_newslist .more .btn-group-lg>a,.mod_newsreader .more .btn-group-lg>a,.pt-teaser-footer .btn-group-lg>a,.pt-nav-main-toggler .btn-group-lg>button{--bs-btn-border-radius: 50rem}.btn-sm,.pt-rc-testimonial-more a,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button--remove,.pagination ul li a,.pagination ul li strong,.mod_newslist .back a,.mod_newsreader .back a,.mod_newslist .more a,.mod_newsreader .more a,.btn-group-sm>.btn,.pt-rc-testimonial-more .btn-group-sm>a,.mod_recommendationreader .back .btn-group-sm>a,.pt-filter-detail+.clearall .btn-group-sm>a,.pt-filter-detail .widget-submit .btn-group-sm>input,.pt-finder .formbody .widget-submit .btn-group-sm>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-sm>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-sm>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-sm>label,.pagination ul li .btn-group-sm>a,.pagination ul li .btn-group-sm>strong,.pt-teaser-footer .btn-group-sm>a,.pt-nav-main-toggler .btn-group-sm>button{--bs-btn-padding-y: 0.0625rem;--bs-btn-padding-x: 0.625rem;--bs-btn-font-size:0.75rem;--bs-btn-border-radius: 50rem}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.pt-rc-testimonial-more .btn-group>a,.mod_recommendationreader .back .btn-group>a,.pt-filter-detail+.clearall .btn-group>a,.pt-filter-detail .widget-submit .btn-group>input,.pt-finder .formbody .widget-submit .btn-group>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label,.pagination ul li .btn-group>a,.pagination ul li .btn-group>strong,.mod_newslist .back .btn-group>a,.mod_newsreader .back .btn-group>a,.mod_newslist .more .btn-group>a,.mod_newsreader .more .btn-group>a,.pt-teaser-footer .btn-group>a,.pt-nav-main-toggler .btn-group>button,.btn-group-vertical>.btn,.pt-rc-testimonial-more .btn-group-vertical>a,.mod_recommendationreader .back .btn-group-vertical>a,.pt-filter-detail+.clearall .btn-group-vertical>a,.pt-filter-detail .widget-submit .btn-group-vertical>input,.pt-finder .formbody .widget-submit .btn-group-vertical>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label,.pagination ul li .btn-group-vertical>a,.pagination ul li .btn-group-vertical>strong,.mod_newslist .back .btn-group-vertical>a,.mod_newsreader .back .btn-group-vertical>a,.mod_newslist .more .btn-group-vertical>a,.mod_newsreader .more .btn-group-vertical>a,.pt-teaser-footer .btn-group-vertical>a,.pt-nav-main-toggler .btn-group-vertical>button{position:relative;flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.pt-rc-testimonial-more .btn-group>.btn-check:checked+a,.mod_recommendationreader .back .btn-group>.btn-check:checked+a,.pt-filter-detail+.clearall .btn-group>.btn-check:checked+a,.pt-filter-detail .widget-submit .btn-group>.btn-check:checked+input,.pt-finder .formbody .widget-submit .btn-group>.btn-check:checked+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.btn-check:checked+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-check:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>.btn-check:checked+label,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more .btn-group>input:checked+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back .btn-group>input:checked+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall .btn-group>input:checked+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit .btn-group>input:checked+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit .btn-group>input:checked+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons .btn-group>input:checked+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit .btn-group>input:checked+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+label,.pagination ul li .btn-group>.btn-check:checked+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group>input:checked+a,.pagination ul li .btn-group>.btn-check:checked+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group>input:checked+strong,.mod_newslist .back .btn-group>.btn-check:checked+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back .btn-group>input:checked+a,.mod_newsreader .back .btn-group>.btn-check:checked+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back .btn-group>input:checked+a,.mod_newslist .more .btn-group>.btn-check:checked+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more .btn-group>input:checked+a,.mod_newsreader .more .btn-group>.btn-check:checked+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more .btn-group>input:checked+a,.pt-teaser-footer .btn-group>.btn-check:checked+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer .btn-group>input:checked+a,.pt-nav-main-toggler .btn-group>.btn-check:checked+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler .btn-group>input:checked+button,.btn-group>.btn-check:focus+.btn,.pt-rc-testimonial-more .btn-group>.btn-check:focus+a,.mod_recommendationreader .back .btn-group>.btn-check:focus+a,.pt-filter-detail+.clearall .btn-group>.btn-check:focus+a,.pt-filter-detail .widget-submit .btn-group>.btn-check:focus+input,.pt-finder .formbody .widget-submit .btn-group>.btn-check:focus+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.btn-check:focus+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-check:focus+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>.btn-check:focus+label,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more .btn-group>input:focus+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back .btn-group>input:focus+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall .btn-group>input:focus+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit .btn-group>input:focus+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit .btn-group>input:focus+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons .btn-group>input:focus+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit .btn-group>input:focus+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+label,.pagination ul li .btn-group>.btn-check:focus+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group>input:focus+a,.pagination ul li .btn-group>.btn-check:focus+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group>input:focus+strong,.mod_newslist .back .btn-group>.btn-check:focus+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back .btn-group>input:focus+a,.mod_newsreader .back .btn-group>.btn-check:focus+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back .btn-group>input:focus+a,.mod_newslist .more .btn-group>.btn-check:focus+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more .btn-group>input:focus+a,.mod_newsreader .more .btn-group>.btn-check:focus+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more .btn-group>input:focus+a,.pt-teaser-footer .btn-group>.btn-check:focus+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer .btn-group>input:focus+a,.pt-nav-main-toggler .btn-group>.btn-check:focus+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>input:focus+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler .btn-group>input:focus+button,.btn-group>.btn:hover,.pt-rc-testimonial-more .btn-group>a:hover,.mod_recommendationreader .back .btn-group>a:hover,.pt-filter-detail+.clearall .btn-group>a:hover,.pt-filter-detail .widget-submit .btn-group>input:hover,.pt-finder .formbody .widget-submit .btn-group>.submit:hover,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.duplication-button:hover,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label:hover,.pagination ul li .btn-group>a:hover,.pagination ul li .btn-group>strong:hover,.mod_newslist .back .btn-group>a:hover,.mod_newsreader .back .btn-group>a:hover,.mod_newslist .more .btn-group>a:hover,.mod_newsreader .more .btn-group>a:hover,.pt-teaser-footer .btn-group>a:hover,.pt-nav-main-toggler .btn-group>button:hover,.btn-group>.btn:focus,.pt-rc-testimonial-more .btn-group>a:focus,.mod_recommendationreader .back .btn-group>a:focus,.pt-filter-detail+.clearall .btn-group>a:focus,.pt-filter-detail .widget-submit .btn-group>input:focus,.pt-finder .formbody .widget-submit .btn-group>.submit:focus,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.duplication-button:focus,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:focus,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label:focus,.pagination ul li .btn-group>a:focus,.pagination ul li .btn-group>strong:focus,.mod_newslist .back .btn-group>a:focus,.mod_newsreader .back .btn-group>a:focus,.mod_newslist .more .btn-group>a:focus,.mod_newsreader .more .btn-group>a:focus,.pt-teaser-footer .btn-group>a:focus,.pt-nav-main-toggler .btn-group>button:focus,.btn-group>.btn:active,.pt-rc-testimonial-more .btn-group>a:active,.mod_recommendationreader .back .btn-group>a:active,.pt-filter-detail+.clearall .btn-group>a:active,.pt-filter-detail .widget-submit .btn-group>input:active,.pt-finder .formbody .widget-submit .btn-group>.submit:active,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.duplication-button:active,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:active,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label:active,.pagination ul li .btn-group>a:active,.pagination ul li .btn-group>strong:active,.mod_newslist .back .btn-group>a:active,.mod_newsreader .back .btn-group>a:active,.mod_newslist .more .btn-group>a:active,.mod_newsreader .more .btn-group>a:active,.pt-teaser-footer .btn-group>a:active,.pt-nav-main-toggler .btn-group>button:active,.btn-group>.btn.active,.pt-rc-testimonial-more .btn-group>a.active,.mod_recommendationreader .back .btn-group>a.active,.pt-filter-detail+.clearall .btn-group>a.active,.pt-filter-detail .widget-submit .btn-group>input.active,.pt-finder .formbody .widget-submit .btn-group>.active.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.active.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button.active,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label.active,.pagination ul li .btn-group>a.active,.pagination ul li .btn-group>strong.active,.mod_newslist .back .btn-group>a.active,.mod_newsreader .back .btn-group>a.active,.mod_newslist .more .btn-group>a.active,.mod_newsreader .more .btn-group>a.active,.pt-teaser-footer .btn-group>a.active,.pt-nav-main-toggler .btn-group>button.active,.btn-group-vertical>.btn-check:checked+.btn,.pt-rc-testimonial-more .btn-group-vertical>.btn-check:checked+a,.mod_recommendationreader .back .btn-group-vertical>.btn-check:checked+a,.pt-filter-detail+.clearall .btn-group-vertical>.btn-check:checked+a,.pt-filter-detail .widget-submit .btn-group-vertical>.btn-check:checked+input,.pt-finder .formbody .widget-submit .btn-group-vertical>.btn-check:checked+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.btn-check:checked+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-check:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>.btn-check:checked+label,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more .btn-group-vertical>input:checked+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back .btn-group-vertical>input:checked+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall .btn-group-vertical>input:checked+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit .btn-group-vertical>input:checked+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit .btn-group-vertical>input:checked+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons .btn-group-vertical>input:checked+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit .btn-group-vertical>input:checked+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+label,.pagination ul li .btn-group-vertical>.btn-check:checked+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group-vertical>input:checked+a,.pagination ul li .btn-group-vertical>.btn-check:checked+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group-vertical>input:checked+strong,.mod_newslist .back .btn-group-vertical>.btn-check:checked+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back .btn-group-vertical>input:checked+a,.mod_newsreader .back .btn-group-vertical>.btn-check:checked+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back .btn-group-vertical>input:checked+a,.mod_newslist .more .btn-group-vertical>.btn-check:checked+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more .btn-group-vertical>input:checked+a,.mod_newsreader .more .btn-group-vertical>.btn-check:checked+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more .btn-group-vertical>input:checked+a,.pt-teaser-footer .btn-group-vertical>.btn-check:checked+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer .btn-group-vertical>input:checked+a,.pt-nav-main-toggler .btn-group-vertical>.btn-check:checked+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:checked+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler .btn-group-vertical>input:checked+button,.btn-group-vertical>.btn-check:focus+.btn,.pt-rc-testimonial-more .btn-group-vertical>.btn-check:focus+a,.mod_recommendationreader .back .btn-group-vertical>.btn-check:focus+a,.pt-filter-detail+.clearall .btn-group-vertical>.btn-check:focus+a,.pt-filter-detail .widget-submit .btn-group-vertical>.btn-check:focus+input,.pt-finder .formbody .widget-submit .btn-group-vertical>.btn-check:focus+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.btn-check:focus+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-check:focus+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>.btn-check:focus+label,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+.btn,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-rc-testimonial-more .btn-group-vertical>input:focus+a,.pt-rc-testimonial-more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_recommendationreader .back .btn-group-vertical>input:focus+a,.mod_recommendationreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail+.clearall .btn-group-vertical>input:focus+a,.pt-filter-detail+.clearall .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-filter-detail .widget-submit .btn-group-vertical>input:focus+input,.pt-filter-detail .widget-submit .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+input,.pt-finder .formbody .widget:not(.widget-hr).widget-toggle-btn .widget-submit .btn-group-vertical>input:focus+.submit,.pt-finder .formbody .widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+.submit,.pico-duplication .formbody .widget:not(.widget-hr).widget-toggle-btn .allow-duplication .duplication-buttons .btn-group-vertical>input:focus+.duplication-button,.pico-duplication .formbody .allow-duplication .duplication-buttons .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+.duplication-button,.formbody .widget:not(.widget-hr).widget-toggle-btn .widget:not(.widget-hr).widget-submit .btn-group-vertical>input:focus+button,.formbody .widget:not(.widget-hr).widget-submit .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+label,.pagination ul li .btn-group-vertical>.btn-check:focus+a,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group-vertical>input:focus+a,.pagination ul li .btn-group-vertical>.btn-check:focus+strong,.pagination ul li .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+strong,.formbody .widget:not(.widget-hr).widget-toggle-btn .pagination ul li .btn-group-vertical>input:focus+strong,.mod_newslist .back .btn-group-vertical>.btn-check:focus+a,.mod_newslist .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .back .btn-group-vertical>input:focus+a,.mod_newsreader .back .btn-group-vertical>.btn-check:focus+a,.mod_newsreader .back .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .back .btn-group-vertical>input:focus+a,.mod_newslist .more .btn-group-vertical>.btn-check:focus+a,.mod_newslist .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newslist .more .btn-group-vertical>input:focus+a,.mod_newsreader .more .btn-group-vertical>.btn-check:focus+a,.mod_newsreader .more .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .mod_newsreader .more .btn-group-vertical>input:focus+a,.pt-teaser-footer .btn-group-vertical>.btn-check:focus+a,.pt-teaser-footer .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+a,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-teaser-footer .btn-group-vertical>input:focus+a,.pt-nav-main-toggler .btn-group-vertical>.btn-check:focus+button,.pt-nav-main-toggler .formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>input:focus+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .pt-nav-main-toggler .btn-group-vertical>input:focus+button,.btn-group-vertical>.btn:hover,.pt-rc-testimonial-more .btn-group-vertical>a:hover,.mod_recommendationreader .back .btn-group-vertical>a:hover,.pt-filter-detail+.clearall .btn-group-vertical>a:hover,.pt-filter-detail .widget-submit .btn-group-vertical>input:hover,.pt-finder .formbody .widget-submit .btn-group-vertical>.submit:hover,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button:hover,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label:hover,.pagination ul li .btn-group-vertical>a:hover,.pagination ul li .btn-group-vertical>strong:hover,.mod_newslist .back .btn-group-vertical>a:hover,.mod_newsreader .back .btn-group-vertical>a:hover,.mod_newslist .more .btn-group-vertical>a:hover,.mod_newsreader .more .btn-group-vertical>a:hover,.pt-teaser-footer .btn-group-vertical>a:hover,.pt-nav-main-toggler .btn-group-vertical>button:hover,.btn-group-vertical>.btn:focus,.pt-rc-testimonial-more .btn-group-vertical>a:focus,.mod_recommendationreader .back .btn-group-vertical>a:focus,.pt-filter-detail+.clearall .btn-group-vertical>a:focus,.pt-filter-detail .widget-submit .btn-group-vertical>input:focus,.pt-finder .formbody .widget-submit .btn-group-vertical>.submit:focus,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button:focus,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:focus,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label:focus,.pagination ul li .btn-group-vertical>a:focus,.pagination ul li .btn-group-vertical>strong:focus,.mod_newslist .back .btn-group-vertical>a:focus,.mod_newsreader .back .btn-group-vertical>a:focus,.mod_newslist .more .btn-group-vertical>a:focus,.mod_newsreader .more .btn-group-vertical>a:focus,.pt-teaser-footer .btn-group-vertical>a:focus,.pt-nav-main-toggler .btn-group-vertical>button:focus,.btn-group-vertical>.btn:active,.pt-rc-testimonial-more .btn-group-vertical>a:active,.mod_recommendationreader .back .btn-group-vertical>a:active,.pt-filter-detail+.clearall .btn-group-vertical>a:active,.pt-filter-detail .widget-submit .btn-group-vertical>input:active,.pt-finder .formbody .widget-submit .btn-group-vertical>.submit:active,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button:active,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:active,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label:active,.pagination ul li .btn-group-vertical>a:active,.pagination ul li .btn-group-vertical>strong:active,.mod_newslist .back .btn-group-vertical>a:active,.mod_newsreader .back .btn-group-vertical>a:active,.mod_newslist .more .btn-group-vertical>a:active,.mod_newsreader .more .btn-group-vertical>a:active,.pt-teaser-footer .btn-group-vertical>a:active,.pt-nav-main-toggler .btn-group-vertical>button:active,.btn-group-vertical>.btn.active,.pt-rc-testimonial-more .btn-group-vertical>a.active,.mod_recommendationreader .back .btn-group-vertical>a.active,.pt-filter-detail+.clearall .btn-group-vertical>a.active,.pt-filter-detail .widget-submit .btn-group-vertical>input.active,.pt-finder .formbody .widget-submit .btn-group-vertical>.active.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.active.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button.active,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label.active,.pagination ul li .btn-group-vertical>a.active,.pagination ul li .btn-group-vertical>strong.active,.mod_newslist .back .btn-group-vertical>a.active,.mod_newsreader .back .btn-group-vertical>a.active,.mod_newslist .more .btn-group-vertical>a.active,.mod_newsreader .more .btn-group-vertical>a.active,.pt-teaser-footer .btn-group-vertical>a.active,.pt-nav-main-toggler .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:50rem}.btn-group>:not(.btn-check:first-child)+.btn,.pt-rc-testimonial-more .btn-group>:not(.btn-check:first-child)+a,.mod_recommendationreader .back .btn-group>:not(.btn-check:first-child)+a,.pt-filter-detail+.clearall .btn-group>:not(.btn-check:first-child)+a,.pt-filter-detail .widget-submit .btn-group>:not(.btn-check:first-child)+input,.pt-finder .formbody .widget-submit .btn-group>:not(.btn-check:first-child)+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>:not(.btn-check:first-child)+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>:not(.btn-check:first-child)+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>:not(.btn-check:first-child)+label,.pagination ul li .btn-group>:not(.btn-check:first-child)+a,.pagination ul li .btn-group>:not(.btn-check:first-child)+strong,.mod_newslist .back .btn-group>:not(.btn-check:first-child)+a,.mod_newsreader .back .btn-group>:not(.btn-check:first-child)+a,.mod_newslist .more .btn-group>:not(.btn-check:first-child)+a,.mod_newsreader .more .btn-group>:not(.btn-check:first-child)+a,.pt-teaser-footer .btn-group>:not(.btn-check:first-child)+a,.pt-nav-main-toggler .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),.pt-rc-testimonial-more .btn-group>a:not(:last-child):not(.dropdown-toggle),.mod_recommendationreader .back .btn-group>a:not(:last-child):not(.dropdown-toggle),.pt-filter-detail+.clearall .btn-group>a:not(:last-child):not(.dropdown-toggle),.pt-filter-detail .widget-submit .btn-group>input:not(:last-child):not(.dropdown-toggle),.pt-finder .formbody .widget-submit .btn-group>.submit:not(:last-child):not(.dropdown-toggle),.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.duplication-button:not(:last-child):not(.dropdown-toggle),.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:not(:last-child):not(.dropdown-toggle),.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label:not(:last-child):not(.dropdown-toggle),.pagination ul li .btn-group>a:not(:last-child):not(.dropdown-toggle),.pagination ul li .btn-group>strong:not(:last-child):not(.dropdown-toggle),.mod_newslist .back .btn-group>a: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),.mod_newsreader .more .btn-group>a:not(:last-child):not(.dropdown-toggle),.pt-teaser-footer .btn-group>a:not(:last-child):not(.dropdown-toggle),.pt-nav-main-toggler .btn-group>button:not(:last-child):not(.dropdown-toggle),.btn-group>.btn.dropdown-toggle-split:first-child,.pt-rc-testimonial-more .btn-group>a.dropdown-toggle-split:first-child,.mod_recommendationreader .back .btn-group>a.dropdown-toggle-split:first-child,.pt-filter-detail+.clearall .btn-group>a.dropdown-toggle-split:first-child,.pt-filter-detail .widget-submit .btn-group>input.dropdown-toggle-split:first-child,.pt-finder .formbody .widget-submit .btn-group>.dropdown-toggle-split.submit:first-child,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.dropdown-toggle-split.duplication-button:first-child,.formbody .widget:not(.widget-hr).widget-submit .btn-group>button.dropdown-toggle-split:first-child,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label.dropdown-toggle-split:first-child,.pagination ul li .btn-group>a.dropdown-toggle-split:first-child,.pagination ul li .btn-group>strong.dropdown-toggle-split:first-child,.mod_newslist .back .btn-group>a.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,.mod_newsreader .more .btn-group>a.dropdown-toggle-split:first-child,.pt-teaser-footer .btn-group>a.dropdown-toggle-split:first-child,.pt-nav-main-toggler .btn-group>button.dropdown-toggle-split:first-child,.btn-group>.btn-group:not(:last-child)>.btn,.pt-rc-testimonial-more .btn-group>.btn-group:not(:last-child)>a,.mod_recommendationreader .back .btn-group>.btn-group:not(:last-child)>a,.pt-filter-detail+.clearall .btn-group>.btn-group:not(:last-child)>a,.pt-filter-detail .widget-submit .btn-group>.btn-group:not(:last-child)>input,.pt-finder .formbody .widget-submit .btn-group>.btn-group:not(:last-child)>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.btn-group:not(:last-child)>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-group:not(:last-child)>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>.btn-group:not(:last-child)>label,.pagination ul li .btn-group>.btn-group:not(:last-child)>a,.pagination ul li .btn-group>.btn-group:not(:last-child)>strong,.mod_newslist .back .btn-group>.btn-group:not(:last-child)>a,.mod_newsreader .back .btn-group>.btn-group:not(:last-child)>a,.mod_newslist .more .btn-group>.btn-group:not(:last-child)>a,.mod_newsreader .more .btn-group>.btn-group:not(:last-child)>a,.pt-teaser-footer .btn-group>.btn-group:not(:last-child)>a,.pt-nav-main-toggler .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),.pt-rc-testimonial-more .btn-group>a:nth-child(n+3),.mod_recommendationreader .back .btn-group>a:nth-child(n+3),.pt-filter-detail+.clearall .btn-group>a:nth-child(n+3),.pt-filter-detail .widget-submit .btn-group>input:nth-child(n+3),.pt-finder .formbody .widget-submit .btn-group>.submit:nth-child(n+3),.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.duplication-button:nth-child(n+3),.formbody .widget:not(.widget-hr).widget-submit .btn-group>button:nth-child(n+3),.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>label:nth-child(n+3),.pagination ul li .btn-group>a:nth-child(n+3),.pagination ul li .btn-group>strong:nth-child(n+3),.mod_newslist .back .btn-group>a:nth-child(n+3),.mod_newsreader .back .btn-group>a:nth-child(n+3),.mod_newslist .more .btn-group>a:nth-child(n+3),.mod_newsreader .more .btn-group>a:nth-child(n+3),.pt-teaser-footer .btn-group>a:nth-child(n+3),.pt-nav-main-toggler .btn-group>button:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.pt-rc-testimonial-more .btn-group>:not(.btn-check)+a,.mod_recommendationreader .back .btn-group>:not(.btn-check)+a,.pt-filter-detail+.clearall .btn-group>:not(.btn-check)+a,.pt-filter-detail .widget-submit .btn-group>:not(.btn-check)+input,.pt-finder .formbody .widget-submit .btn-group>:not(.btn-check)+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>:not(.btn-check)+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>:not(.btn-check)+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>:not(.btn-check)+label,.pagination ul li .btn-group>:not(.btn-check)+a,.pagination ul li .btn-group>:not(.btn-check)+strong,.mod_newslist .back .btn-group>:not(.btn-check)+a,.mod_newsreader .back .btn-group>:not(.btn-check)+a,.mod_newslist .more .btn-group>:not(.btn-check)+a,.mod_newsreader .more .btn-group>:not(.btn-check)+a,.pt-teaser-footer .btn-group>:not(.btn-check)+a,.pt-nav-main-toggler .btn-group>:not(.btn-check)+button,.btn-group>.btn-group:not(:first-child)>.btn,.pt-rc-testimonial-more .btn-group>.btn-group:not(:first-child)>a,.mod_recommendationreader .back .btn-group>.btn-group:not(:first-child)>a,.pt-filter-detail+.clearall .btn-group>.btn-group:not(:first-child)>a,.pt-filter-detail .widget-submit .btn-group>.btn-group:not(:first-child)>input,.pt-finder .formbody .widget-submit .btn-group>.btn-group:not(:first-child)>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group>.btn-group:not(:first-child)>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group>.btn-group:not(:first-child)>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group>.btn-group:not(:first-child)>label,.pagination ul li .btn-group>.btn-group:not(:first-child)>a,.pagination ul li .btn-group>.btn-group:not(:first-child)>strong,.mod_newslist .back .btn-group>.btn-group:not(:first-child)>a,.mod_newsreader .back .btn-group>.btn-group:not(:first-child)>a,.mod_newslist .more .btn-group>.btn-group:not(:first-child)>a,.mod_newsreader .more .btn-group>.btn-group:not(:first-child)>a,.pt-teaser-footer .btn-group>.btn-group:not(:first-child)>a,.pt-nav-main-toggler .btn-group>.btn-group:not(:first-child)>button{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.703125rem;padding-left:.703125rem}.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,.pt-rc-testimonial-more a+.dropdown-toggle-split,.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button--remove+.dropdown-toggle-split,.pagination ul li a+.dropdown-toggle-split,.pagination ul li strong+.dropdown-toggle-split,.mod_newslist .back a+.dropdown-toggle-split,.mod_newsreader .back a+.dropdown-toggle-split,.mod_newslist .more a+.dropdown-toggle-split,.mod_newsreader .more a+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split,.mod_recommendationreader .back .btn-group-sm>a+.dropdown-toggle-split,.pt-filter-detail+.clearall .btn-group-sm>a+.dropdown-toggle-split,.pt-filter-detail .widget-submit .btn-group-sm>input+.dropdown-toggle-split,.pt-finder .formbody .widget-submit .btn-group-sm>.submit+.dropdown-toggle-split,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-sm>.duplication-button+.dropdown-toggle-split,.formbody .widget:not(.widget-hr).widget-submit .btn-group-sm>button+.dropdown-toggle-split,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-sm>label+.dropdown-toggle-split,.pt-teaser-footer .btn-group-sm>a+.dropdown-toggle-split,.pt-nav-main-toggler .btn-group-sm>button+.dropdown-toggle-split{padding-right:.46875rem;padding-left:.46875rem}.btn-lg+.dropdown-toggle-split,.pt-filter-detail .widget-submit input+.dropdown-toggle-split,.pt-finder .formbody .widget-submit .submit+.dropdown-toggle-split,.formbody .widget:not(.widget-hr).widget-toggle-btn .art-group label+.dropdown-toggle-split,.pt-nav-main-toggler button+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split,.pt-rc-testimonial-more .btn-group-lg>a+.dropdown-toggle-split,.mod_recommendationreader .back .btn-group-lg>a+.dropdown-toggle-split,.pt-filter-detail+.clearall .btn-group-lg>a+.dropdown-toggle-split,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-lg>.duplication-button+.dropdown-toggle-split,.formbody .widget:not(.widget-hr).widget-submit .btn-group-lg>button+.dropdown-toggle-split,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-lg>label+.dropdown-toggle-split,.pagination ul li .btn-group-lg>a+.dropdown-toggle-split,.pagination ul li .btn-group-lg>strong+.dropdown-toggle-split,.mod_newslist .back .btn-group-lg>a+.dropdown-toggle-split,.mod_newsreader .back .btn-group-lg>a+.dropdown-toggle-split,.mod_newslist .more .btn-group-lg>a+.dropdown-toggle-split,.mod_newsreader .more .btn-group-lg>a+.dropdown-toggle-split,.pt-teaser-footer .btn-group-lg>a+.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,.pt-rc-testimonial-more .btn-group-vertical>a,.mod_recommendationreader .back .btn-group-vertical>a,.pt-filter-detail+.clearall .btn-group-vertical>a,.pt-filter-detail .widget-submit .btn-group-vertical>input,.pt-finder .formbody .widget-submit .btn-group-vertical>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label,.pagination ul li .btn-group-vertical>a,.pagination ul li .btn-group-vertical>strong,.mod_newslist .back .btn-group-vertical>a,.mod_newsreader .back .btn-group-vertical>a,.mod_newslist .more .btn-group-vertical>a,.mod_newsreader .more .btn-group-vertical>a,.pt-teaser-footer .btn-group-vertical>a,.pt-nav-main-toggler .btn-group-vertical>button,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.pt-rc-testimonial-more .btn-group-vertical>a:not(:first-child),.mod_recommendationreader .back .btn-group-vertical>a:not(:first-child),.pt-filter-detail+.clearall .btn-group-vertical>a:not(:first-child),.pt-filter-detail .widget-submit .btn-group-vertical>input:not(:first-child),.pt-finder .formbody .widget-submit .btn-group-vertical>.submit:not(:first-child),.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button:not(:first-child),.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:not(:first-child),.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label:not(:first-child),.pagination ul li .btn-group-vertical>a:not(:first-child),.pagination ul li .btn-group-vertical>strong:not(:first-child),.mod_newslist .back .btn-group-vertical>a:not(:first-child),.mod_newsreader .back .btn-group-vertical>a:not(:first-child),.mod_newslist .more .btn-group-vertical>a:not(:first-child),.mod_newsreader .more .btn-group-vertical>a:not(:first-child),.pt-teaser-footer .btn-group-vertical>a:not(:first-child),.pt-nav-main-toggler .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),.pt-rc-testimonial-more .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.mod_recommendationreader .back .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.pt-filter-detail+.clearall .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.pt-filter-detail .widget-submit .btn-group-vertical>input:not(:last-child):not(.dropdown-toggle),.pt-finder .formbody .widget-submit .btn-group-vertical>.submit:not(:last-child):not(.dropdown-toggle),.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button:not(:last-child):not(.dropdown-toggle),.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label:not(:last-child):not(.dropdown-toggle),.pagination ul li .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.pagination ul li .btn-group-vertical>strong:not(:last-child):not(.dropdown-toggle),.mod_newslist .back .btn-group-vertical>a: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),.mod_newsreader .more .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.pt-teaser-footer .btn-group-vertical>a:not(:last-child):not(.dropdown-toggle),.pt-nav-main-toggler .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn,.pt-rc-testimonial-more .btn-group-vertical>.btn-group:not(:last-child)>a,.mod_recommendationreader .back .btn-group-vertical>.btn-group:not(:last-child)>a,.pt-filter-detail+.clearall .btn-group-vertical>.btn-group:not(:last-child)>a,.pt-filter-detail .widget-submit .btn-group-vertical>.btn-group:not(:last-child)>input,.pt-finder .formbody .widget-submit .btn-group-vertical>.btn-group:not(:last-child)>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.btn-group:not(:last-child)>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-group:not(:last-child)>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>.btn-group:not(:last-child)>label,.pagination ul li .btn-group-vertical>.btn-group:not(:last-child)>a,.pagination ul li .btn-group-vertical>.btn-group:not(:last-child)>strong,.mod_newslist .back .btn-group-vertical>.btn-group:not(:last-child)>a,.mod_newsreader .back .btn-group-vertical>.btn-group:not(:last-child)>a,.mod_newslist .more .btn-group-vertical>.btn-group:not(:last-child)>a,.mod_newsreader .more .btn-group-vertical>.btn-group:not(:last-child)>a,.pt-teaser-footer .btn-group-vertical>.btn-group:not(:last-child)>a,.pt-nav-main-toggler .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),.pt-rc-testimonial-more .btn-group-vertical>a:nth-child(n+3),.mod_recommendationreader .back .btn-group-vertical>a:nth-child(n+3),.pt-filter-detail+.clearall .btn-group-vertical>a:nth-child(n+3),.pt-filter-detail .widget-submit .btn-group-vertical>input:nth-child(n+3),.pt-finder .formbody .widget-submit .btn-group-vertical>.submit:nth-child(n+3),.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.duplication-button:nth-child(n+3),.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>button:nth-child(n+3),.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>label:nth-child(n+3),.pagination ul li .btn-group-vertical>a:nth-child(n+3),.pagination ul li .btn-group-vertical>strong:nth-child(n+3),.mod_newslist .back .btn-group-vertical>a: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),.mod_newsreader .more .btn-group-vertical>a:nth-child(n+3),.pt-teaser-footer .btn-group-vertical>a:nth-child(n+3),.pt-nav-main-toggler .btn-group-vertical>button:nth-child(n+3),.btn-group-vertical>:not(.btn-check)+.btn,.pt-rc-testimonial-more .btn-group-vertical>:not(.btn-check)+a,.mod_recommendationreader .back .btn-group-vertical>:not(.btn-check)+a,.pt-filter-detail+.clearall .btn-group-vertical>:not(.btn-check)+a,.pt-filter-detail .widget-submit .btn-group-vertical>:not(.btn-check)+input,.pt-finder .formbody .widget-submit .btn-group-vertical>:not(.btn-check)+.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>:not(.btn-check)+.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>:not(.btn-check)+button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>:not(.btn-check)+label,.pagination ul li .btn-group-vertical>:not(.btn-check)+a,.pagination ul li .btn-group-vertical>:not(.btn-check)+strong,.mod_newslist .back .btn-group-vertical>:not(.btn-check)+a,.mod_newsreader .back .btn-group-vertical>:not(.btn-check)+a,.mod_newslist .more .btn-group-vertical>:not(.btn-check)+a,.mod_newsreader .more .btn-group-vertical>:not(.btn-check)+a,.pt-teaser-footer .btn-group-vertical>:not(.btn-check)+a,.pt-nav-main-toggler .btn-group-vertical>:not(.btn-check)+button,.btn-group-vertical>.btn-group:not(:first-child)>.btn,.pt-rc-testimonial-more .btn-group-vertical>.btn-group:not(:first-child)>a,.mod_recommendationreader .back .btn-group-vertical>.btn-group:not(:first-child)>a,.pt-filter-detail+.clearall .btn-group-vertical>.btn-group:not(:first-child)>a,.pt-filter-detail .widget-submit .btn-group-vertical>.btn-group:not(:first-child)>input,.pt-finder .formbody .widget-submit .btn-group-vertical>.btn-group:not(:first-child)>.submit,.pico-duplication .formbody .allow-duplication .duplication-buttons .btn-group-vertical>.btn-group:not(:first-child)>.duplication-button,.formbody .widget:not(.widget-hr).widget-submit .btn-group-vertical>.btn-group:not(:first-child)>button,.formbody .widget:not(.widget-hr).widget-toggle-btn .btn-group-vertical>.btn-group:not(:first-child)>label,.pagination ul li .btn-group-vertical>.btn-group:not(:first-child)>a,.pagination ul li .btn-group-vertical>.btn-group:not(:first-child)>strong,.mod_newslist .back .btn-group-vertical>.btn-group:not(:first-child)>a,.mod_newsreader .back .btn-group-vertical>.btn-group:not(:first-child)>a,.mod_newslist .more .btn-group-vertical>.btn-group:not(:first-child)>a,.mod_newsreader .more .btn-group-vertical>.btn-group:not(:first-child)>a,.pt-teaser-footer .btn-group-vertical>.btn-group:not(:first-child)>a,.pt-nav-main-toggler .btn-group-vertical>.btn-group:not(:first-child)>button{border-top-left-radius:0;border-top-right-radius:0}.card{--bs-card-spacer-y: 0.9375rem;--bs-card-spacer-x: 0.9375rem;--bs-card-title-spacer-y: 0.9375rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width: 0;--bs-card-border-color: var(--bs-border-color-translucent);--bs-card-border-radius: 0.625rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius: 0.625rem;--bs-card-cap-padding-y: 0.9375rem;--bs-card-cap-padding-x: 0.9375rem;--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%2331353d%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='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%282.8235294118%, 22.2745098039%, 36.0784313725%%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(18, 142, 230, 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:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.accordion-button{font-size:1rem}}.accordion-button{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,.form-confirmation,.form-message{--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,.form-message a{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,.form-confirmation,.form-message.form-message-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,.form-message.form-message-error{--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-highlight{--bs-alert-color: var(--bs-highlight-text-emphasis);--bs-alert-bg: var(--bs-highlight-bg-subtle);--bs-alert-border-color: var(--bs-highlight-border-subtle);--bs-alert-link-color: var(--bs-highlight-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: #128ee6;--bs-list-group-active-border-color: #128ee6;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);text-decoration:none;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,.pagination ul li strong.list-group-item,.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-highlight{--bs-list-group-color: var(--bs-highlight-text-emphasis);--bs-list-group-bg: var(--bs-highlight-bg-subtle);--bs-list-group-border-color: var(--bs-highlight-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-highlight-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-highlight-border-subtle);--bs-list-group-active-color: var(--bs-highlight-bg-subtle);--bs-list-group-active-bg: var(--bs-highlight-text-emphasis);--bs-list-group-active-border-color: var(--bs-highlight-text-emphasis)}.btn-close{--bs-btn-close-color: #000;--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23000%27%3e%3cpath d=%27M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414%27/%3e%3c/svg%3e");--bs-btn-close-opacity: 0.5;--bs-btn-close-hover-opacity: 0.75;--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(18, 142, 230, 0.25);--bs-btn-close-focus-opacity: 1;--bs-btn-close-disabled-opacity: 0.25;box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:rgba(0,0,0,0) var(--bs-btn-close-bg) center/1em auto no-repeat;filter:var(--bs-btn-close-filter);border:0;border-radius:.625rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close:disabled,.btn-close.disabled,.pagination ul li strong.btn-close{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{--bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%)}:root,[data-bs-theme=light]{--bs-btn-close-filter: }.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:#000 !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-highlight{color:#000 !important;background-color:RGBA(var(--bs-highlight-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(65, 165, 235, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(65, 165, 235, 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(143, 147, 149, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(143, 147, 149, 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(66, 77, 9, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(66, 77, 9, 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(237, 230, 51, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(237, 230, 51, 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(84, 14, 26, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(84, 14, 26, 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(249, 250, 251, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(249, 250, 251, 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(18, 24, 26, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(18, 24, 26, var(--bs-link-underline-opacity, 1)) !important}.link-highlight{color:RGBA(var(--bs-highlight-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-highlight-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-highlight:hover,.link-highlight:focus{color:RGBA(255, 126, 51, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 126, 51, 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,.pt-ad-youtube .video_container,.video_container .responsive{position:relative;width:100%}.ratio::before,.pt-ad-youtube .video_container::before,.video_container .responsive::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*,.pt-ad-youtube .video_container>*,.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,.pt-ad-youtube .video_container,.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-highlight{--bs-focus-ring-color: rgba(var(--bs-highlight-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-highlight{--bs-border-opacity: 1;border-color:rgba(var(--bs-highlight-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{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-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-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-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-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-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-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-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-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-10{margin-right:.1rem !important}.me-25{margin-right:.25rem !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-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-10{margin-bottom:.1rem !important}.mb-25{margin-bottom:.25rem !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-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-10{margin-left:.1rem !important}.ms-25{margin-left:.25rem !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-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-10{padding:.1rem !important}.p-25{padding:.25rem !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}.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-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}.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-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}.pt-0{padding-top:0 !important}.pt-10{padding-top:.1rem !important}.pt-25{padding-top:.25rem !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}.pe-0{padding-right:0 !important}.pe-10{padding-right:.1rem !important}.pe-25{padding-right:.25rem !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}.pb-0{padding-bottom:0 !important}.pb-10{padding-bottom:.1rem !important}.pb-25{padding-bottom:.25rem !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}.ps-0{padding-left:0 !important}.ps-10{padding-left:.1rem !important}.ps-25{padding-left:.25rem !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}.gap-0{gap:0 !important}.gap-10{gap:.1rem !important}.gap-25{gap:.25rem !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}.row-gap-0{row-gap:0 !important}.row-gap-10{row-gap:.1rem !important}.row-gap-25{row-gap:.25rem !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}.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-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}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(0.9395833333rem + 2.4972222222vw) !important}.fs-2{font-size:calc(0.9208333333rem + 1.7722222222vw) !important}.fs-3{font-size:calc(0.9125rem + 1.45vw) !important}.fs-4{font-size:calc(0.9041666667rem + 1.1277777778vw) !important}.fs-5{font-size:calc(0.8958333333rem + 0.8055555556vw) !important}.fs-6{font-size:calc(0.8916666667rem + 0.6444444444vw) !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(0.8833333333rem + 0.3222222222vw) !important}.fs-xl{font-size:calc(0.8875rem + 0.4833333333vw) !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-highlight{--bs-text-opacity: 1;color:rgba(var(--bs-highlight-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,.formbody .widget:not(.widget-hr).widget-captcha .captcha_text{--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:rgba(255,255,255,.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-highlight{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-highlight-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-highlight{--bs-bg-opacity: 1;background-color:rgba(var(--bs-highlight-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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}.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-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}.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-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}.pt-xs-0{padding-top:0 !important}.pt-xs-10{padding-top:.1rem !important}.pt-xs-25{padding-top:.25rem !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}.pe-xs-0{padding-right:0 !important}.pe-xs-10{padding-right:.1rem !important}.pe-xs-25{padding-right:.25rem !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}.pb-xs-0{padding-bottom:0 !important}.pb-xs-10{padding-bottom:.1rem !important}.pb-xs-25{padding-bottom:.25rem !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}.ps-xs-0{padding-left:0 !important}.ps-xs-10{padding-left:.1rem !important}.ps-xs-25{padding-left:.25rem !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}.gap-xs-0{gap:0 !important}.gap-xs-10{gap:.1rem !important}.gap-xs-25{gap:.25rem !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}.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-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}.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-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}.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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}.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-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}.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-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}.pt-sm-0{padding-top:0 !important}.pt-sm-10{padding-top:.1rem !important}.pt-sm-25{padding-top:.25rem !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}.pe-sm-0{padding-right:0 !important}.pe-sm-10{padding-right:.1rem !important}.pe-sm-25{padding-right:.25rem !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}.pb-sm-0{padding-bottom:0 !important}.pb-sm-10{padding-bottom:.1rem !important}.pb-sm-25{padding-bottom:.25rem !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}.ps-sm-0{padding-left:0 !important}.ps-sm-10{padding-left:.1rem !important}.ps-sm-25{padding-left:.25rem !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}.gap-sm-0{gap:0 !important}.gap-sm-10{gap:.1rem !important}.gap-sm-25{gap:.25rem !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}.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-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}.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-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}.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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}.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-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}.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-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}.pt-md-0{padding-top:0 !important}.pt-md-10{padding-top:.1rem !important}.pt-md-25{padding-top:.25rem !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}.pe-md-0{padding-right:0 !important}.pe-md-10{padding-right:.1rem !important}.pe-md-25{padding-right:.25rem !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}.pb-md-0{padding-bottom:0 !important}.pb-md-10{padding-bottom:.1rem !important}.pb-md-25{padding-bottom:.25rem !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}.ps-md-0{padding-left:0 !important}.ps-md-10{padding-left:.1rem !important}.ps-md-25{padding-left:.25rem !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}.gap-md-0{gap:0 !important}.gap-md-10{gap:.1rem !important}.gap-md-25{gap:.25rem !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}.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-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}.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-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}.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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}.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-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}.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-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}.pt-lg-0{padding-top:0 !important}.pt-lg-10{padding-top:.1rem !important}.pt-lg-25{padding-top:.25rem !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}.pe-lg-0{padding-right:0 !important}.pe-lg-10{padding-right:.1rem !important}.pe-lg-25{padding-right:.25rem !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}.pb-lg-0{padding-bottom:0 !important}.pb-lg-10{padding-bottom:.1rem !important}.pb-lg-25{padding-bottom:.25rem !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}.ps-lg-0{padding-left:0 !important}.ps-lg-10{padding-left:.1rem !important}.ps-lg-25{padding-left:.25rem !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}.gap-lg-0{gap:0 !important}.gap-lg-10{gap:.1rem !important}.gap-lg-25{gap:.25rem !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}.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-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}.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-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}.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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}.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-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}.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-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}.pt-xl-0{padding-top:0 !important}.pt-xl-10{padding-top:.1rem !important}.pt-xl-25{padding-top:.25rem !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}.pe-xl-0{padding-right:0 !important}.pe-xl-10{padding-right:.1rem !important}.pe-xl-25{padding-right:.25rem !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}.pb-xl-0{padding-bottom:0 !important}.pb-xl-10{padding-bottom:.1rem !important}.pb-xl-25{padding-bottom:.25rem !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}.ps-xl-0{padding-left:0 !important}.ps-xl-10{padding-left:.1rem !important}.ps-xl-25{padding-left:.25rem !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}.gap-xl-0{gap:0 !important}.gap-xl-10{gap:.1rem !important}.gap-xl-25{gap:.25rem !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}.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-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}.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-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}.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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}.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-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}.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-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}.pt-xxl-0{padding-top:0 !important}.pt-xxl-10{padding-top:.1rem !important}.pt-xxl-25{padding-top:.25rem !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}.pe-xxl-0{padding-right:0 !important}.pe-xxl-10{padding-right:.1rem !important}.pe-xxl-25{padding-right:.25rem !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}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-10{padding-bottom:.1rem !important}.pb-xxl-25{padding-bottom:.25rem !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}.ps-xxl-0{padding-left:0 !important}.ps-xxl-10{padding-left:.1rem !important}.ps-xxl-25{padding-left:.25rem !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}.gap-xxl-0{gap:0 !important}.gap-xxl-10{gap:.1rem !important}.gap-xxl-25{gap:.25rem !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}.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-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}.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-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}.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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}.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-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}.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-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}.pt-xxxl-0{padding-top:0 !important}.pt-xxxl-10{padding-top:.1rem !important}.pt-xxxl-25{padding-top:.25rem !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}.pe-xxxl-0{padding-right:0 !important}.pe-xxxl-10{padding-right:.1rem !important}.pe-xxxl-25{padding-right:.25rem !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}.pb-xxxl-0{padding-bottom:0 !important}.pb-xxxl-10{padding-bottom:.1rem !important}.pb-xxxl-25{padding-bottom:.25rem !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}.ps-xxxl-0{padding-left:0 !important}.ps-xxxl-10{padding-left:.1rem !important}.ps-xxxl-25{padding-left:.25rem !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}.gap-xxxl-0{gap:0 !important}.gap-xxxl-10{gap:.1rem !important}.gap-xxxl-25{gap:.25rem !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}.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-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}.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-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}.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.8125rem !important}.fs-2{font-size:2.25rem !important}.fs-3{font-size:2rem !important}.fs-4{font-size:1.75rem !important}.fs-5{font-size:1.5rem !important}.fs-6{font-size:1.375rem !important}.fs-lg{font-size:1.125rem !important}.fs-xl{font-size:1.25rem !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}}.ts-control{border:1px solid var(--bs-border-color);padding:.375rem .75rem;width:100%;overflow:hidden;position:relative;z-index:1;box-sizing:border-box;box-shadow:none;border-radius:var(--bs-border-radius);display:flex;flex-wrap:wrap}.ts-wrapper.multi.has-items .ts-control{padding:calc(0.375rem - 1px - 0px) .75rem calc(0.375rem - 1px - 3px - 0px)}.full .ts-control{background-color:var(--bs-body-bg)}.disabled .ts-control,.pagination ul li strong .ts-control,.disabled .ts-control *,.pagination ul li strong .ts-control *{cursor:default !important}.focus .ts-control{box-shadow:none}.ts-control>*{vertical-align:baseline;display:inline-block}.ts-wrapper.multi .ts-control>div{cursor:pointer;margin:0 3px 3px 0;padding:1px 5px;background:#efefef;color:#31353d;border:0px solid #ced4da;overflow:auto}.ts-wrapper.multi .ts-control>div.active{background:#128ee6;color:#fff;border:0px solid rgba(0,0,0,0)}.ts-wrapper.multi.disabled .ts-control>div,.pagination ul li strong.ts-wrapper.multi .ts-control>div,.ts-wrapper.multi.disabled .ts-control>div.active{color:hsl(0,0%,51.568627451%);background:hsl(0,0%,123.7254901961%);border:0px solid hsl(0,0%,113.137254902%)}.ts-control>input{flex:1 1 auto;min-width:7rem;display:inline-block !important;padding:0 !important;min-height:0 !important;max-height:none !important;max-width:100% !important;margin:0 !important;text-indent:0 !important;border:0 none !important;background:none !important;line-height:inherit !important;-webkit-user-select:auto !important;-moz-user-select:auto !important;user-select:auto !important;box-shadow:none !important}.ts-control>input::-ms-clear{display:none}.ts-control>input:focus{outline:none !important}.has-items .ts-control>input{margin:0px 4px !important}.ts-control.rtl{text-align:right}.ts-control.rtl.single .ts-control:after{left:calc(0.75rem + 5px);right:auto}.ts-control.rtl .ts-control>input{margin:0px 4px 0px -2px !important}.disabled .ts-control,.pagination ul li strong .ts-control{opacity:1;background-color:var(--bs-secondary-bg)}.input-hidden .ts-control>input{opacity:0;position:absolute;left:-10000px}.ts-dropdown{position:absolute;top:100%;left:0;width:100%;z-index:10;border:1px solid #d0d0d0;background:var(--bs-body-bg);margin:.25rem 0 0;border-top:0 none;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,.1);border-radius:0 0 var(--bs-border-radius) var(--bs-border-radius)}.ts-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.ts-dropdown [data-selectable] .highlight{background:rgba(255,237,40,.4);border-radius:1px}.ts-dropdown .option,.ts-dropdown .optgroup-header,.ts-dropdown .no-results,.ts-dropdown .create{padding:3px .75rem}.ts-dropdown .option,.ts-dropdown [data-disabled],.ts-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.ts-dropdown [data-selectable].option{opacity:1;cursor:pointer}.ts-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.ts-dropdown .optgroup-header{color:#73787a;background:var(--bs-body-bg);cursor:default}.ts-dropdown .active{background-color:var(--bs-tertiary-bg);color:var(--bs-body-color)}.ts-dropdown .active.create{color:var(--bs-body-color)}.ts-dropdown .create{color:rgba(49,53,61,.5)}.ts-dropdown .spinner{display:inline-block;width:30px;height:30px;margin:3px .75rem}.ts-dropdown .spinner::after{content:" ";display:block;width:24px;height:24px;margin:3px;border-radius:50%;border:5px solid #d0d0d0;border-color:#d0d0d0 rgba(0,0,0,0) #d0d0d0 rgba(0,0,0,0);animation:lds-dual-ring 1.2s linear infinite}@keyframes lds-dual-ring{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.ts-dropdown-content{overflow:hidden auto;max-height:200px;scroll-behavior:smooth}.ts-wrapper.plugin-drag_drop .ts-dragging{color:rgba(0,0,0,0) !important}.ts-wrapper.plugin-drag_drop .ts-dragging>*{visibility:hidden !important}.plugin-checkbox_options:not(.rtl) .option input{margin-right:.5rem}.plugin-checkbox_options.rtl .option input{margin-left:.5rem}.plugin-clear_button{--ts-pr-clear-button: 1em}.plugin-clear_button .clear-button{opacity:0;position:absolute;top:50%;transform:translateY(-50%);right:calc(0.75rem - 5px);margin-right:0 !important;background:rgba(0,0,0,0) !important;transition:opacity .5s;cursor:pointer}.plugin-clear_button.form-select .clear-button,.formbody .widget:not(.widget-hr) select.plugin-clear_button .clear-button,.plugin-clear_button.single .clear-button{right:max(var(--ts-pr-caret),0.75rem)}.plugin-clear_button.focus.has-items .clear-button,.plugin-clear_button:not(.disabled):hover.has-items .clear-button{opacity:1}.ts-wrapper .dropdown-header{position:relative;padding:6px .75rem;border-bottom:1px solid #d0d0d0;background:color-mix(var(--bs-body-bg), #d0d0d0, 85%);border-radius:var(--bs-border-radius) var(--bs-border-radius) 0 0}.ts-wrapper .dropdown-header-close{position:absolute;right:.75rem;top:50%;color:#31353d;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important}.ts-wrapper .dropdown-header-close:hover{color:hsl(220,10.9090909091%,-3.431372549%)}.plugin-dropdown_input.focus.dropdown-active .ts-control{box-shadow:none;border:1px solid var(--bs-border-color);box-shadow:var(--bs-box-shadow-inset)}.plugin-dropdown_input .dropdown-input{border:1px solid #d0d0d0;border-width:0 0 1px;display:block;padding:.375rem .75rem;box-shadow:none;width:100%;background:rgba(0,0,0,0)}.plugin-dropdown_input.focus .ts-dropdown .dropdown-input{border-color:rgb(53.5294117647%,77.8431372549%,95.0980392157%);outline:0;box-shadow:0 0 0 .25rem rgba(18,142,230,.25)}.plugin-dropdown_input .items-placeholder{border:0 none !important;box-shadow:none !important;width:100%}.plugin-dropdown_input.has-items .items-placeholder,.plugin-dropdown_input.dropdown-active .items-placeholder{display:none !important}.ts-wrapper.plugin-input_autogrow.has-items .ts-control>input{min-width:0}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input{flex:none;min-width:4px}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::-moz-placeholder{color:rgba(0,0,0,0)}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::placeholder{color:rgba(0,0,0,0)}.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content{display:flex}.ts-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.ts-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.ts-dropdown.plugin-optgroup_columns .optgroup::before{display:none}.ts-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.ts-wrapper.plugin-remove_button .item{display:inline-flex;align-items:center}.ts-wrapper.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:0 5px;border-radius:0 2px 2px 0;box-sizing:border-box}.ts-wrapper.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,.05)}.ts-wrapper.plugin-remove_button.disabled .item .remove:hover,.pagination ul li strong.ts-wrapper.plugin-remove_button .item .remove:hover{background:none}.ts-wrapper.plugin-remove_button .remove-single{position:absolute;right:0;top:0;font-size:23px}.ts-wrapper.plugin-remove_button:not(.rtl) .item{padding-right:0 !important}.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove{border-left:1px solid #ced4da;margin-left:5px}.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove{border-left-color:rgba(0,0,0,0)}.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove,.pagination ul li strong.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove{border-left-color:hsl(0,0%,113.137254902%)}.ts-wrapper.plugin-remove_button.rtl .item{padding-left:0 !important}.ts-wrapper.plugin-remove_button.rtl .item .remove{border-right:1px solid #ced4da;margin-right:5px}.ts-wrapper.plugin-remove_button.rtl .item.active .remove{border-right-color:rgba(0,0,0,0)}.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove,.pagination ul li strong.ts-wrapper.plugin-remove_button.rtl .item .remove{border-right-color:hsl(0,0%,113.137254902%)}:root{--ts-pr-clear-button: 0px;--ts-pr-caret: 0px;--ts-pr-min: .75rem}.ts-wrapper.single .ts-control,.ts-wrapper.single .ts-control input{cursor:pointer}.ts-control:not(.rtl){padding-right:max(var(--ts-pr-min),var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important}.ts-control.rtl{padding-left:max(var(--ts-pr-min),var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important}.ts-wrapper{position:relative}.ts-dropdown,.ts-control,.ts-control input{color:#31353d;font-family:inherit;font-size:inherit;line-height:1.5}.ts-control,.ts-wrapper.single.input-active .ts-control{background:var(--bs-body-bg);cursor:text}.ts-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;clip-path:inset(50%) !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.ts-dropdown,.ts-dropdown.form-control,.formbody .widget:not(.widget-hr) input.ts-dropdown.text,.formbody .widget:not(.widget-hr) input.ts-dropdown.captcha,.formbody .widget:not(.widget-hr) textarea.ts-dropdown,.ts-dropdown.form-select,.formbody .widget:not(.widget-hr) select.ts-dropdown{height:auto;padding:0;z-index:1000;background:var(--bs-body-bg);border:1px solid var(--bs-border-color-translucent);border-radius:.625rem;box-shadow:0 6px 12px rgba(0,0,0,.175)}.ts-dropdown .optgroup-header{font-size:.75rem;line-height:1.5}.ts-dropdown .optgroup:first-child::before{display:none}.ts-dropdown .optgroup::before{content:" ";display:block;height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid var(--bs-border-color-translucent);margin-left:-0.75rem;margin-right:-0.75rem}.ts-dropdown .create{padding-left:.75rem}.ts-dropdown-content{padding:5px 0}.ts-control{display:flex;align-items:center;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.ts-control{transition:none}}.focus .ts-control{border-color:rgb(53.5294117647%,77.8431372549%,95.0980392157%);outline:0;box-shadow:0 0 0 .25rem rgba(18,142,230,.25)}.ts-control .item{display:flex;align-items:center}.ts-control input::-moz-placeholder{color:var(--bs-secondary-color, #a7aeb8);opacity:1}.ts-control input::placeholder{color:var(--bs-secondary-color, #a7aeb8);opacity:1}.ts-wrapper.is-invalid,.formbody .widget:not(.widget-hr) input.ts-wrapper.error,.formbody .widget:not(.widget-hr) textarea.ts-wrapper.error,.formbody .widget:not(.widget-hr) select.ts-wrapper.error,.was-validated .invalid,.was-validated :invalid+.ts-wrapper{border-color:var(--bs-form-invalid-color)}.ts-wrapper.is-invalid:not(.single),.formbody .widget:not(.widget-hr) input.ts-wrapper.error:not(.single),.formbody .widget:not(.widget-hr) textarea.ts-wrapper.error:not(.single),.formbody .widget:not(.widget-hr) select.ts-wrapper.error:not(.single),.was-validated .invalid:not(.single),.was-validated :invalid+.ts-wrapper:not(.single){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%23691120%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%23691120%27 stroke=%27none%27/%3e%3c/svg%3e");background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);background-repeat:no-repeat}.ts-wrapper.is-invalid.single,.formbody .widget:not(.widget-hr) input.ts-wrapper.single.error,.formbody .widget:not(.widget-hr) textarea.ts-wrapper.single.error,.formbody .widget:not(.widget-hr) select.ts-wrapper.single.error,.was-validated .invalid.single,.was-validated :invalid+.ts-wrapper.single{background-image: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%2331353d%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"),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%23691120%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%23691120%27 stroke=%27none%27/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);background-repeat:no-repeat}.ts-wrapper.is-invalid.focus .ts-control,.formbody .widget:not(.widget-hr) input.ts-wrapper.focus.error .ts-control,.formbody .widget:not(.widget-hr) textarea.ts-wrapper.focus.error .ts-control,.formbody .widget:not(.widget-hr) select.ts-wrapper.focus.error .ts-control,.was-validated .invalid.focus .ts-control,.was-validated :invalid+.ts-wrapper.focus .ts-control{border-color:var(--bs-form-invalid-color);box-shadow:0 0 0 .25rem rgba(var(--bs-form-invalid-color), 0.25)}.ts-wrapper.is-valid,.was-validated .valid,.was-validated :valid+.ts-wrapper{border-color:var(--bs-form-valid-color)}.ts-wrapper.is-valid:not(.single),.was-validated .valid:not(.single),.was-validated :valid+.ts-wrapper:not(.single){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%2352600b%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-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);background-repeat:no-repeat}.ts-wrapper.is-valid.single,.was-validated .valid.single,.was-validated :valid+.ts-wrapper.single{background-image: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%2331353d%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"),url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2352600b%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-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);background-repeat:no-repeat}.ts-wrapper.is-valid.focus .ts-control,.was-validated .valid.focus .ts-control,.was-validated :valid+.ts-wrapper.focus .ts-control{border-color:var(--bs-form-valid-color);box-shadow:0 0 0 .25rem rgba(var(--bs-form-valid-color), 0.25)}.ts-wrapper{min-height:calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));display:flex}.input-group-sm>.ts-wrapper,.ts-wrapper.form-select-sm,.ts-wrapper.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2))}.input-group-sm>.ts-wrapper .ts-control,.ts-wrapper.form-select-sm .ts-control,.ts-wrapper.form-control-sm .ts-control{border-radius:var(--bs-border-radius-sm);font-size:0.75rem}.input-group-sm>.ts-wrapper.has-items .ts-control,.ts-wrapper.form-select-sm.has-items .ts-control,.ts-wrapper.form-control-sm.has-items .ts-control{font-size:.75rem}.input-group-sm>.ts-wrapper.multi.has-items .ts-control,.ts-wrapper.form-select-sm.multi.has-items .ts-control,.ts-wrapper.form-control-sm.multi.has-items .ts-control{padding-top:calc((calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)) - 1.5*0.75rem - calc((var(--bs-border-width) + 1px) * 2))/2) !important}.ts-wrapper.multi.has-items .ts-control{padding-left:calc(0.75rem - 5px);--ts-pr-min: calc(0.75rem - 5px)}.ts-wrapper.multi .ts-control>div{border-radius:calc(var(--bs-border-radius) - 1px)}.input-group-lg>.ts-wrapper,.ts-wrapper.form-control-lg,.ts-wrapper.form-select-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.input-group-lg>.ts-wrapper .ts-control,.ts-wrapper.form-control-lg .ts-control,.ts-wrapper.form-select-lg .ts-control{border-radius:var(--bs-border-radius-lg);font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.input-group-lg>.ts-wrapper .ts-control,.ts-wrapper.form-control-lg .ts-control,.ts-wrapper.form-select-lg .ts-control{font-size:1.125rem}}.ts-wrapper:not(.form-control,.form-select){padding:0;border:none;height:auto;box-shadow:none;background:none}.ts-wrapper:not(.form-control,.form-select).single .ts-control{background-image: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%2331353d%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");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px}.ts-wrapper.form-select,.formbody .widget:not(.widget-hr) select.ts-wrapper,.ts-wrapper.single{--ts-pr-caret: 2.25rem}.ts-wrapper.form-control,.formbody .widget:not(.widget-hr) input.ts-wrapper.text,.formbody .widget:not(.widget-hr) input.ts-wrapper.captcha,.formbody .widget:not(.widget-hr) textarea.ts-wrapper,.ts-wrapper.form-select,.formbody .widget:not(.widget-hr) select.ts-wrapper{padding:0 !important;height:auto;box-shadow:none;display:flex}.ts-wrapper.form-control .ts-control,.formbody .widget:not(.widget-hr) input.ts-wrapper.text .ts-control,.formbody .widget:not(.widget-hr) input.ts-wrapper.captcha .ts-control,.formbody .widget:not(.widget-hr) textarea.ts-wrapper .ts-control,.ts-wrapper.form-control.single.input-active .ts-control,.ts-wrapper.form-select .ts-control,.formbody .widget:not(.widget-hr) select.ts-wrapper .ts-control,.ts-wrapper.form-select.single.input-active .ts-control{border:none !important}.ts-wrapper.form-control:not(.disabled) .ts-control,.formbody .widget:not(.widget-hr) input.ts-wrapper.text:not(.disabled) .ts-control,.formbody .widget:not(.widget-hr) input.ts-wrapper.captcha:not(.disabled) .ts-control,.formbody .widget:not(.widget-hr) textarea.ts-wrapper:not(.disabled) .ts-control,.ts-wrapper.form-control:not(.disabled).single.input-active .ts-control,.ts-wrapper.form-select:not(.disabled) .ts-control,.formbody .widget:not(.widget-hr) select.ts-wrapper:not(.disabled) .ts-control,.ts-wrapper.form-select:not(.disabled).single.input-active .ts-control{background:rgba(0,0,0,0) !important}.input-group>.ts-wrapper{flex-grow:1;width:1%}.input-group>.ts-wrapper:not(:nth-child(2))>.ts-control{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.ts-wrapper:not(:last-child)>.ts-control{border-top-right-radius:0;border-bottom-right-radius:0}.form-select .ts-dropdown,.formbody .widget:not(.widget-hr) select .ts-dropdown,.form-select .ts-control,.formbody .widget:not(.widget-hr) select .ts-control,.form-select .ts-control input,.formbody .widget:not(.widget-hr) select .ts-control input{color:var(--bs-body-color)}b,strong{font-weight:500}.font-narrow{font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif}.ce_headline,.ce_headline_virtual{margin-top:2rem !important}.row>.mod_article:first-child .ce_headline:first-child,.row>.mod_article:first-child .ce_headline_virtual:first-child{margin-top:0 !important}.ce_headline.ct-hl-line-orange,.ce_headline_virtual.ct-hl-line-orange{position:relative;margin-bottom:1rem}.ce_headline.ct-hl-line-orange::after,.ce_headline_virtual.ct-hl-line-orange::after{position:absolute;bottom:0;left:.9375rem;display:block;width:200px;height:2px;background-color:#ff5e00;content:""}.ce_text .ce_headline.ct-hl-line-orange::after,.ce_text .ce_headline_virtual.ct-hl-line-orange::after{left:0}.ce_headline.sub,.ce_headline_virtual.sub{display:flex;flex-direction:column}.ce_headline.sub .hl-sub,.ce_headline_virtual.sub .hl-sub{order:-1;margin:0;padding-bottom:.25rem;color:#7d6320;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;line-height:1.2;text-transform:uppercase}.ce_headline.text-center.ct-hl-line-orange::after,.ce_headline_virtual.text-center.ct-hl-line-orange::after{left:calc(50% - 100px)}.ce_headline .hl,.ce_headline_virtual .hl{margin-top:0 !important}h1,.h1,h2,h3,h4,h5,h6,.h2,.h3,.h4,.h5,.h6{margin-top:2rem !important;hyphens:auto}@media(min-width: 992px){h1,.h1,h2,h3,h4,h5,h6,.h2,.h3,.h4,.h5,.h6{hyphens:manual}}.sub h1+.hl-sub,.sub .h1+.hl-sub{font-size:calc(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.sub h1+.hl-sub,.sub .h1+.hl-sub{font-size:1.25rem}}.sub h2+.hl-sub,.sub .h2+.hl-sub{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.sub h2+.hl-sub,.sub .h2+.hl-sub{font-size:1.125rem}}#header p{margin-bottom:.5rem}@media(min-width: 576px){#header p{margin-bottom:0}}.pt-blockquote{position:relative;padding:1rem 1rem 1rem 60px;background-color:#f4f2eb;border-radius:.625rem}@media(min-width: 414px){.pt-blockquote{padding-left:90px}.pt-blockquote::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;top:0;left:1rem;color:#fff;font-size:4.0625rem}}.pt-blockquote.pt-blockquote-avatar{margin-top:40px;margin-right:80px;padding-right:90px}@media(max-width: 413.98px){.pt-blockquote.pt-blockquote-avatar{margin-top:25px;margin-right:50px;padding-right:60px;padding-left:1rem}.pt-blockquote.pt-blockquote-avatar::after{display:none;content:none}}.pt-blockquote .blockquote p{margin-top:0 !important}.pt-blockquote .blockquote-footer{margin-top:0;margin-bottom:0;font-style:italic}.pt-blockquote .image_container{position:absolute;top:-25px;right:-50px}@media(min-width: 414px){.pt-blockquote .image_container{top:-40px;right:-80px}}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.5em;list-style:none}ul.list-icon li{text-indent:-1.5em}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.5em;color:#128ee6}ul.list-icon.list-check li::before{content:""}ul.list-icon.list-circle-check li::before{content:""}ul.list-icon.list-clock li::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}ul.list-icon.list-circle-plus li::before{content:""}ul.list-icon.list-square-check li::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}ul.list-icon.list-special{font-weight:700;font-size:1.125rem}ul.list-icon.list-special li::before{color:#52600b}.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:#128ee6}a:not(.btn),button:not(.btn){transition:color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out}#main-01-orange a:not(.btn),#main-03-orange a:not(.btn),#main-01-orange button:not(.btn),#main-03-orange button:not(.btn){--bs-link-color: #fff;--bs-link-color-rgb: 254, 254, 254;text-decoration:none}.ce_hyperlink{margin:0 0 1rem}#footer-before .btn::after,#footer-before .pt-rc-testimonial-more a::after,.pt-rc-testimonial-more #footer-before a::after,#footer-before .mod_recommendationreader .back a::after,.mod_recommendationreader .back #footer-before a::after,#footer-before .pt-filter-detail+.clearall a::after,.pt-filter-detail+.clearall #footer-before a::after,#footer-before .pt-filter-detail .widget-submit input::after,.pt-filter-detail .widget-submit #footer-before input::after,#footer-before .pt-finder .formbody .widget-submit .submit::after,.pt-finder .formbody .widget-submit #footer-before .submit::after,#footer-before .pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button::after,.pico-duplication .formbody .allow-duplication .duplication-buttons #footer-before .duplication-button::after,#footer-before .formbody .widget:not(.widget-hr).widget-submit button::after,.formbody .widget:not(.widget-hr).widget-submit #footer-before button::after,#footer-before .formbody .widget:not(.widget-hr).widget-toggle-btn label::after,.formbody .widget:not(.widget-hr).widget-toggle-btn #footer-before label::after,#footer-before .pagination ul li a::after,.pagination ul li #footer-before a::after,#footer-before .pagination ul li strong::after,.pagination ul li #footer-before strong::after,#footer-before .mod_newslist .back a::after,.mod_newslist .back #footer-before a::after,#footer-before .mod_newsreader .back a::after,.mod_newsreader .back #footer-before a::after,#footer-before .mod_newslist .more a::after,.mod_newslist .more #footer-before a::after,#footer-before .mod_newsreader .more a::after,.mod_newsreader .more #footer-before a::after,#footer-before .pt-teaser-footer a::after,.pt-teaser-footer #footer-before a::after,#footer-before .pt-nav-main-toggler button::after,.pt-nav-main-toggler #footer-before 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;content:" "}.btn-primary,.formbody .widget:not(.widget-hr).widget-submit button,.pagination ul li a,.pagination ul li strong,.mod_newslist .back a,.mod_newsreader .back a,.mod_newslist .more a,.mod_newsreader .more a,.pt-teaser-footer a,.pt-nav-main-toggler button{color:#fff}.btn-primary:hover,.formbody .widget:not(.widget-hr).widget-submit button:hover,.pagination ul li a:hover,.pagination ul li strong:hover,.mod_newslist .back a:hover,.mod_newsreader .back a:hover,.mod_newslist .more a:hover,.mod_newsreader .more a:hover,.pt-teaser-footer a:hover,.pt-nav-main-toggler button:hover,.btn-primary:focus,.formbody .widget:not(.widget-hr).widget-submit button:focus,.pagination ul li a:focus,.pagination ul li strong:focus,.mod_newslist .back a:focus,.mod_newsreader .back a:focus,.mod_newslist .more a:focus,.mod_newsreader .more a:focus,.pt-teaser-footer a:focus,.pt-nav-main-toggler button:focus{color:#fff}.btn-warning,.pt-filter-detail .widget-submit input,.pt-finder .formbody .widget-submit .submit{color:#161e21}.btn-warning:hover,.pt-filter-detail .widget-submit input:hover,.pt-finder .formbody .widget-submit .submit:hover,.btn-warning:focus,.pt-filter-detail .widget-submit input:focus,.pt-finder .formbody .widget-submit .submit:focus{color:#000}.btn-pill{border-radius:50rem}.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-envelope::after{content:" "}.link-icon-right.icon-up-right-from-square::after{content:" "}.link-icon-right.icon-phone-flip::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-envelope::before{content:" "}.link-icon-left.icon-up-right-from-square::before{content:" "}.link-icon-left.icon-phone-flip::before{content:" "}.link-icon-special{font-size:calc(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.link-icon-special{font-size:1.25rem}}.link-icon-special{color:#31353d;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-decoration:none}.link-icon-special::before,.link-icon-special::after{color:#128ee6}.ce_text .image_container.float_right{float:right;margin-left:1.875rem}.ce_text .image_container.float_left{float:left;margin-right:1.875rem}.ce_text .image_container.float_above+h1,.ce_text .image_container.float_above+.h1,.ce_text .image_container.float_above+h2,.ce_text .image_container.float_above+.h2,.ce_text .image_container.float_above+h3,.ce_text .image_container.float_above+.h3,.ce_text .image_container.float_above+h4,.ce_text .image_container.float_above+.h4,.ce_text .image_container.float_above+h5,.ce_text .image_container.float_above+.h5,.ce_text .image_container.float_above+h6,.ce_text .image_container.float_above+.h6,.ce_text .image_container.float_right+h1,.ce_text .image_container.float_right+.h1,.ce_text .image_container.float_right+h2,.ce_text .image_container.float_right+.h2,.ce_text .image_container.float_right+h3,.ce_text .image_container.float_right+.h3,.ce_text .image_container.float_right+h4,.ce_text .image_container.float_right+.h4,.ce_text .image_container.float_right+h5,.ce_text .image_container.float_right+.h5,.ce_text .image_container.float_right+h6,.ce_text .image_container.float_right+.h6,.ce_text .image_container.float_left+h1,.ce_text .image_container.float_left+.h1,.ce_text .image_container.float_left+h2,.ce_text .image_container.float_left+.h2,.ce_text .image_container.float_left+h3,.ce_text .image_container.float_left+.h3,.ce_text .image_container.float_left+h4,.ce_text .image_container.float_left+.h4,.ce_text .image_container.float_left+h5,.ce_text .image_container.float_left+.h5,.ce_text .image_container.float_left+h6,.ce_text .image_container.float_left+.h6{margin-top:0 !important}@media(max-width: 413.98px){.ce_text .image_container.float_right,.ce_text .image_container.float_left{float:none;margin-right:0;margin-left:0}}.ce_text.img-float_left,.ce_text.img-float_right{overflow:hidden}.ce_text.img-float_left>ol,.ce_text.img-float_left>ul{overflow:hidden}.ce_text.img-float_below p:nth-last-child(2){margin-bottom:0}.ce_text[class*=col-]{margin-bottom:1.875rem}.ce_text[class*=col-] h1:first-child,.ce_text[class*=col-] .h1:first-child,.ce_text[class*=col-] h2:first-child,.ce_text[class*=col-] .h2:first-child,.ce_text[class*=col-] h3:first-child,.ce_text[class*=col-] .h3:first-child,.ce_text[class*=col-] h4:first-child,.ce_text[class*=col-] .h4:first-child,.ce_text[class*=col-] h5:first-child,.ce_text[class*=col-] .h5:first-child,.ce_text[class*=col-] h6:first-child,.ce_text[class*=col-] .h6:first-child{margin-top:0 !important}img{width:auto}.ce_image{margin-bottom:1rem}#header .ce_image,#teaser-main .ce_image{margin-bottom:0}#header .ce_image figure,#teaser-main .ce_image figure{margin-bottom:0}#header .image_container figcaption,#teaser-main .image_container figcaption{display:none}.ce_gallery figure{margin-bottom:0}.ce_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}.ce_gallery ul 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: 576px){.ce_gallery ul.cols_2 li{flex:0 0 auto;width:50%}}@media(min-width: 576px){.ce_gallery ul.cols_3 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_3 li{flex:0 0 auto;width:33.33333333%}}@media(min-width: 576px){.ce_gallery ul.cols_4 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_4 li{flex:0 0 auto;width:25%}}@media(min-width: 576px){.ce_gallery ul.cols_5 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_5 li{flex:0 0 20%;max-width:20%}}@media(min-width: 576px){.ce_gallery ul.cols_6 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_6 li{flex:0 0 auto;width:16.66666667%}}@media(min-width: 576px){.ce_gallery ul.cols_7 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_7 li{flex:0 0 14.2857142857%;max-width:14.2857142857%}}@media(min-width: 576px){.ce_gallery ul.cols_8 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_8 li{flex:0 0 12.5%;max-width:12.5%}}@media(min-width: 576px){.ce_gallery ul.cols_9 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_9 li{flex:0 0 11.1111111111%;max-width:11.1111111111%}}@media(min-width: 576px){.ce_gallery ul.cols_10 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_10 li{flex:0 0 10%;max-width:10%}}@media(min-width: 576px){.ce_gallery ul.cols_11 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_11 li{flex:0 0 9.0909090909%;max-width:9.0909090909%}}@media(min-width: 576px){.ce_gallery ul.cols_12 li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.ce_gallery ul.cols_12 li{flex:0 0 auto;width:8.33333333%}}html{scroll-behavior:smooth;scroll-padding-top:120px}@media(min-width: 414px){html{scroll-padding-top:140px}}@media(min-width: 576px){html{scroll-padding-top:110px}}@media(min-width: 768px){html{scroll-padding-top:130px}}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,#navigation>.inside,#footer-before>.inside,#footer>.inside,#container>.inside,#main-00-brown-100>.inside,#main-00-white>.inside,#main-01>.inside,#main-01-orange>.inside,#main-01-white>.inside,#main-02>.inside,#main-03>.inside,#main-03-orange>.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,#navigation>.inside,#footer-before>.inside,#footer>.inside,#container>.inside,#main-00-brown-100>.inside,#main-00-white>.inside,#main-01>.inside,#main-01-orange>.inside,#main-01-white>.inside,#main-02>.inside,#main-03>.inside,#main-03-orange>.inside{width:1140px}}@media(min-width: 1400px){#header>.inside,#navigation>.inside,#footer-before>.inside,#footer>.inside,#container>.inside,#main-00-brown-100>.inside,#main-00-white>.inside,#main-01>.inside,#main-01-orange>.inside,#main-01-white>.inside,#main-02>.inside,#main-03>.inside,#main-03-orange>.inside{width:1320px}}#header{position:sticky;top:0;z-index:99;background-color:#fff}#header>.inside{position:relative}#header>.inside>.row{align-items:flex-end;justify-content:space-between}#header .mod_article{flex:0 0 auto;width:auto}@media(max-width: 575.98px){#header .mod_article.pt-info{flex:0 0 auto;width:100%}}#teaser-main{background-color:#bdaf89}#teaser-main>.inside{--bs-gutter-x: 0;--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}#teaser-main>.inside>.row{position:relative}#main>.inside>.row,#left>.inside>.row,#right>.inside>.row{background-color:#fff}#navigation{padding-top:.75rem;padding-bottom:.75rem;background-color:#f4f2eb}#navigation+#main-00-brown-100{border-top:3px solid #fff}#container{padding-top:3rem;padding-bottom:2rem}#main-00-brown-100{padding-top:2rem;padding-bottom:2rem;background-color:#f4f2eb}#main-00-brown-100>.inside>.row{justify-content:center}#main-00-white{padding-top:3rem;background-color:#fff}#main-00-white>.inside>.row{justify-content:center}#main-00-white+#container{padding-top:0}#main>.inside>.row{justify-content:center}.layout-col-right #main{order:100}@media(min-width: 768px){.layout-col-right #main{flex:0 0 auto;width:75%;order:0}}@media(min-width: 768px){#right{flex:0 0 auto;width:25%}}#main-01-orange,#main-03-orange{padding-top:2rem;padding-bottom:2rem;color:#fff;background-color:#ff5e00}.pt-info-small #main-01-orange{padding-top:1rem;padding-bottom:1rem}.pt-info-sticky-01 #main-01-orange{position:sticky;top:0;z-index:200;padding-top:1rem;padding-bottom:1rem}.pt-sticky-bottom #main-01-orange{top:auto;bottom:0;z-index:98}.pt-info-sticky-03 #main-03-orange{position:sticky;top:0;z-index:200;padding-top:1rem;padding-bottom:1rem}.pt-sticky-bottom #main-03-orange{top:auto;bottom:0;z-index:98}.pt-acd #main-03-orange .row{align-items:center}#main-01-white{padding-top:2rem;padding-bottom:2rem;background-color:#fff}.pt-info-sticky-01:not(.pt-sticky-bottom) #main-01-white,.pt-info-sticky-03:not(.pt-sticky-bottom) #main-01-white{position:relative;z-index:98}@media(min-width: 1200px){.pt-acd #main-01-white>.inside,.pt-rc #main-01-white>.inside{width:auto}}@media(min-width: 1400px){.pt-acd #main-01-white>.inside,.pt-rc #main-01-white>.inside{width:auto}}#main-01-teaser>.inside{--bs-gutter-x: 0;--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}#main-01{padding-top:2rem;padding-bottom:2rem;background-color:#f4f2eb}.pt-info-sticky-01 #main-01{position:relative;z-index:199}.pt-info-sticky-03 #main-01{position:relative;z-index:98}@media(min-width: 1200px){.pt-td #main-01>.inside,.pt-rc #main-01>.inside{width:auto}}@media(min-width: 1400px){.pt-td #main-01>.inside,.pt-rc #main-01>.inside{width:auto}}#main-02,#main-03{padding-top:2rem;padding-bottom:2rem;background-color:#fff}.pt-info-sticky-01 #main-02,.pt-info-sticky-03:not(.pt-sticky-bottom) #main-02,.pt-info-sticky-01 #main-03,.pt-info-sticky-03:not(.pt-sticky-bottom) #main-03{position:relative;z-index:199}.pt-info-sticky-03 #main-02{z-index:98}#footer-before{padding-top:3rem;padding-bottom:2rem;background-color:#d6e4ee}#footer{padding-top:2rem;padding-bottom:1rem;color:#d6e4ee;background-color:#445878}#footer .mod_article{position:relative}.pt-nav-main-toggler{z-index:102;padding-bottom:1.5rem}.pt-nav-main-toggler .ce_hyperlink{margin-bottom:0}@media(max-width: 767.98px){.pt-nav-container{position:fixed;top:0;right:-100%;z-index:101;width:400px !important;max-width:none;height:100%;margin:0;padding:0;overflow-y:scroll;background:#128ee6;border-top:97px solid #fff;transition:right .3s ease}.menu-open .pt-nav-container{right:0}}@media(max-width: 575.98px){.pt-nav-container{width:100% !important;border-top-width:120px}}@media(max-width: 413.98px){.pt-nav-container{border-top-width:107px}}.pt-nav-container1{padding-right:0;padding-left:0}.nav-main-mobile ul{margin:0;padding:0;line-height:1.5;list-style:none}.nav-main-mobile ul>li{position:relative;margin:0;padding:0}.nav-main-mobile ul>li a,.nav-main-mobile ul>li strong{display:block;padding:.5rem 4.6875rem .5rem 1.875rem;color:#d6e4ee;font-weight:400;text-decoration:none;border-top:1px solid #d6e4ee}.nav-main-mobile ul>li strong{font-weight:600}.nav-main-mobile ul>li .handorgel__header{position:absolute;top:1px;right:0;display:block;width:4.6875rem;height:100%;text-align:center;border-left:1px solid #d6e4ee;cursor:pointer}.nav-main-mobile ul>li .handorgel__header.active::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}.nav-main-mobile ul>li .handorgel__header span{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}.nav-main-mobile ul>li .handorgel__header span:not(caption){position:absolute !important}.nav-main-mobile ul>li .handorgel__header span *{overflow:hidden !important}.nav-main-mobile ul>li .handorgel__header__button{position:relative;display:block;width:100%;margin:0;padding:0;background:rgba(0,0,0,0);border:none}.nav-main-mobile ul>li .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;display:block;padding:.5rem 0;color:#d6e4ee}.nav-main-mobile ul>li .handorgel__header--opened .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}.nav-main-mobile .level_1>li>strong{padding-top:1rem;padding-bottom:.5rem;font-size:2.25rem;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";border-top:none}.nav-main-mobile .level_2{border-bottom:1px solid #d6e4ee}.nav-main-mobile .level_2>li a,.nav-main-mobile .level_2>li strong,.nav-main-mobile .level_2>li .handorgel__header{font-size:1.125rem}.nav-main-mobile .level_2>li a.trail,.nav-main-mobile .level_2>li strong{background:#445878}.nav-main-mobile .level_3>li a,.nav-main-mobile .level_3>li strong,.nav-main-mobile .level_3>li .handorgel__header{font-size:1rem}.nav-main-mobile .level_3>li a,.nav-main-mobile .level_3>li strong{margin-right:4.6875rem;padding-right:.5rem;padding-left:2.8125rem}.nav-main{text-align:center}.nav-main>ul{margin:0;padding:0;line-height:1;list-style:none;font-size:calc(0.9208333333rem + 1.7722222222vw)}@media(min-width: 1200px){.nav-main>ul{font-size:2.25rem}}.nav-main>ul{font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.nav-main>ul li{margin:0;padding:0}.nav-main>ul li a,.nav-main>ul li strong{position:relative;display:block;color:#17364f;text-decoration:none}.nav-main>ul ul{margin:0;padding:0;line-height:1.5;list-style:none;font-size:calc(0.8916666667rem + 0.6444444444vw)}@media(min-width: 1200px){.nav-main>ul ul{font-size:1.375rem}}.nav-main>ul ul{font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.2}.nav-main>ul ul>li>a:hover,.nav-main>ul ul>li>a:focus{color:#128ee6}.nav-main>ul ul ul{font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.nav-main>ul ul ul{font-size:1rem}}.nav-main>ul ul ul{font-family:var(--bs-font-sans-serif);line-height:1.5}.nav-main>ul ul ul li{padding-left:1em}.nav-main>ul ul ul li a,.nav-main>ul ul ul li strong{text-indent:-1em}.nav-main>ul ul ul li a::before,.nav-main>ul ul ul li strong::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:1em}@media(min-width: 768px){.nav-main .level_1{display:flex}}.nav-main .level_1>li{margin-right:.25rem}.nav-main .level_1>li>a,.nav-main .level_1>li>strong,.nav-main .level_1>li>section .handorgel__header__button{padding:.9375rem .46875rem 1.25rem;color:#73787a;font-weight:400;border-top-left-radius:.625rem;border-top-right-radius:.625rem;transition:color .3s ease-in-out,background-color .3s ease-in-out}@media(min-width: 992px){.nav-main .level_1>li>a,.nav-main .level_1>li>strong,.nav-main .level_1>li>section .handorgel__header__button{padding:1.25rem .9375rem}}.nav-main .level_1>li>a.submenu::after,.nav-main .level_1>li>strong.submenu::after,.nav-main .level_1>li>section .handorgel__header__button.submenu::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;font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.nav-main .level_1>li>a.submenu::after,.nav-main .level_1>li>strong.submenu::after,.nav-main .level_1>li>section .handorgel__header__button.submenu::after{font-size:1.125rem}}.nav-main .level_1>li>a.submenu::after,.nav-main .level_1>li>strong.submenu::after,.nav-main .level_1>li>section .handorgel__header__button.submenu::after{position:absolute;bottom:.25rem;left:0;display:block;width:100%}.nav-main .level_1>li>section .handorgel__header__button{cursor:pointer}.nav-main .level_1>li>a:hover,.nav-main .level_1>li>a:focus,.nav-main .level_1>li>section .handorgel__header__button:hover,.nav-main .level_1>li>section .handorgel__header__button:focus{color:#161e21;background-color:#d6e4ee}.nav-main .level_1>li>a.trail,.nav-main .level_1>li>strong,.nav-main .level_1>li>section .handorgel__header__button.trail{color:#128ee6}.nav-main .level_1>li.submenu .handorgel__content{position:absolute;top:100%;left:.9375rem;z-index:99;width:100%}.nav-main .level_1>li.submenu .sublevel{display:flex;flex-wrap:wrap;width:calc(100% - 1.875rem);padding:.9375rem 0;text-align:left;background-color:#d6e4ee;border-bottom-right-radius:.625rem;border-bottom-left-radius:.625rem}.nav-main .level_1>li.submenu .sublevel>div{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:33.33333333%;font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.nav-main .level_1>li.submenu .sublevel>div{font-size:1rem}}.nav-main .level_1>li.submenu .sublevel>div{font-family:var(--bs-font-sans-serif);line-height:1.5}.nav-main .level_1>li.submenu .level_2{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%;display:flex;flex-wrap:wrap;padding:0}.nav-main .level_1>li.submenu .level_2>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);flex:1 1 0;max-width:100%}.nav-meta-header{padding-bottom:.5rem}@media(min-width: 576px){.nav-meta-header{font-size:calc(0.8791666667rem + 0.1611111111vw)}}@media(min-width: 576px)and (min-width: 1200px){.nav-meta-header{font-size:1rem}}@media(min-width: 768px){.nav-meta-header{font-size:0.875rem}}@media(min-width: 992px){.nav-meta-header{font-size:calc(0.8791666667rem + 0.1611111111vw)}}@media(min-width: 992px)and (min-width: 1200px){.nav-meta-header{font-size:1rem}}.nav-meta-header .level_1{margin:0;padding:0;line-height:1;list-style:none}.nav-meta-header .level_1>li{display:inline-block;margin:0;padding:0;border-right:1px solid #73787a}.nav-meta-header .level_1>li:first-child>a,.nav-meta-header .level_1>li:first-child>strong{padding-left:0}.nav-meta-header .level_1>li:last-child{margin-right:.5rem}@media(min-width: 576px){.nav-meta-header .level_1>li:last-child{margin-right:0;border-right:none}.nav-meta-header .level_1>li:last-child>a,.nav-meta-header .level_1>li:last-child>strong{padding-right:0}}.nav-meta-header .level_1>li>a,.nav-meta-header .level_1>li>strong{display:block;padding-right:.5rem;padding-left:.5rem;color:#73787a;font-weight:400;text-decoration:none}.nav-meta-header .level_1>li>a:hover,.nav-meta-header .level_1>li>a:focus{color:#454b4d}.nav-meta-header .level_1>li>a.trail,.nav-meta-header .level_1>li>strong{color:#161e21}.nav-meta>ul{margin:0;padding:0;line-height:1;list-style:none}.nav-meta>ul li{margin:0;padding:0}.nav-meta>ul li>a,.nav-meta>ul li>strong{display:block;color:#d6e4ee;font-weight:400;text-decoration:none}.nav-meta>ul ul{margin:0;padding:0;line-height:1.5;list-style:none}.nav-meta>ul ul li{padding-left:1em}.nav-meta>ul ul li a,.nav-meta>ul ul li strong{text-indent:-1em}.nav-meta>ul ul li a::before,.nav-meta>ul ul li strong::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:1em}.nav-meta .level_1{--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))}.nav-meta .level_1>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);flex:0 0 auto;width:100%;padding-bottom:1rem}@media(min-width: 414px){.nav-meta .level_1>li{flex:0 0 auto;width:50%}}@media(min-width: 768px){.nav-meta .level_1>li{flex:0 0 auto;width:33.33333333%}}.nav-meta .level_1>li>a,.nav-meta .level_1>li>strong{font-size:calc(0.9125rem + 1.45vw)}@media(min-width: 1200px){.nav-meta .level_1>li>a,.nav-meta .level_1>li>strong{font-size:2rem}}.nav-meta .level_1>li>a,.nav-meta .level_1>li>strong{font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.nav-consent{font-size:.75rem}.nav-consent ul{margin:0;padding:0;line-height:1;list-style:none;display:flex}.nav-consent ul li{margin:0;padding:0 .5rem;border-right:1px solid #128ee6}.nav-consent ul li:first-child{padding-left:0}.nav-consent ul li:last-child{padding-right:0;border-right:none}.nav-consent ul li>a,.nav-consent ul li>strong{display:block;font-weight:400;text-decoration:none}.ce_hofff_content_navigation{text-align:left}.ce_hofff_content_navigation ul{margin:0;padding:0;line-height:1.5;list-style:none;margin-bottom:1rem;padding-left:1em}.ce_hofff_content_navigation ul li{position:relative;margin:0;padding:0;text-indent:-1em}.ce_hofff_content_navigation ul 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:1em;color:#128ee6;content:""}.ce_hofff_content_navigation ul li>a,.ce_hofff_content_navigation ul li>strong{text-decoration:none}.ce_hofff_content_navigation ul li>strong,.ce_hofff_content_navigation ul li>a.active{font-weight:400}.ce_hofff_content_navigation .level_1{margin-top:.1rem}.ce_hofff_content_navigation.pt-nav-content-special .level_1{font-size:calc(0.9041666667rem + 1.1277777778vw)}@media(min-width: 1200px){.ce_hofff_content_navigation.pt-nav-content-special .level_1{font-size:1.75rem}}.ce_hofff_content_navigation.pt-nav-content-special .level_1{padding-left:1em;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.2}.ce_hofff_content_navigation.pt-nav-content-special .level_1>li{text-indent:-1em}.ce_hofff_content_navigation.pt-nav-content-special .level_1>li::before{width:1em;line-height:1}.ce_hofff_content_navigation.pt-nav-content-special .level_1>li ul{font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.ce_hofff_content_navigation.pt-nav-content-special .level_1>li ul{font-size:1rem}}.ce_hofff_content_navigation.pt-nav-content-special .level_1>li ul{padding-top:.25rem;font-family:var(--bs-font-sans-serif);line-height:1.5}.ce_hofff_content_navigation.icon-circle-question .level_1{padding-left:1.25em}.ce_hofff_content_navigation.icon-circle-question .level_1>li{text-indent:-1.25em}.ce_hofff_content_navigation.icon-circle-question .level_1>li::before{width:1.25em;content:""}.ce_hofff_content_navigation.icon-circle-info .level_1{padding-left:1.25em}.ce_hofff_content_navigation.icon-circle-info .level_1>li{text-indent:-1.25em}.ce_hofff_content_navigation.icon-circle-info .level_1>li::before{width:1.25em;content:""}@media(min-width: 576px){.ce_hofff_content_navigation.list-col-2>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))}.ce_hofff_content_navigation.list-col-2>ul>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);flex:0 0 auto;width:50%}}@media(min-width: 576px){.ce_hofff_content_navigation.list-col-3>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))}.ce_hofff_content_navigation.list-col-3>ul>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);flex:0 0 auto;width:50%}}@media(min-width: 992px){.ce_hofff_content_navigation.list-col-3>ul>li{flex:0 0 auto;width:33.33333333%}}.ce_hofff_content_navigation .card ul{margin-bottom:0}.mod_breadcrumb{font-size:.75rem;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif}@media(min-width: 768px){.mod_breadcrumb{font-size:.875rem}}.mod_breadcrumb ul{--bs-gutter-x: 0;--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));margin:0;padding:0;line-height:1.5;list-style:none;align-items:center}.mod_breadcrumb ul 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);flex:0 0 auto;width:auto;margin:0;padding:0}.mod_breadcrumb ul li:first-child a{padding-left:0}.mod_breadcrumb ul li:first-child 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:" "}.mod_breadcrumb ul li:first-child a::after{display:none}.mod_breadcrumb ul li a,.mod_breadcrumb ul li strong{position:relative;display:block;padding:0 0 0 1rem;text-decoration:none}.mod_breadcrumb ul li a::after,.mod_breadcrumb ul li strong::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;top:0;left:0;width:1rem;text-align:center}.mod_breadcrumb ul li strong{font-weight:700}.nav-pageimage-teaser-small ul{margin:0;padding:0;line-height:1.5;list-style:none;--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;padding-top:.75rem;padding-bottom:2rem}.nav-pageimage-teaser-small ul 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);margin-bottom:1.875rem}@media(min-width: 576px){.nav-pageimage-teaser-small ul li{flex:0 0 auto;width:50%}}@media(min-width: 992px){.nav-pageimage-teaser-small ul li{flex:0 0 auto;width:33.33333333%}}.pt-onpagenav{position:fixed;top:50vh;right:.9375rem;z-index:201;display:none;text-align:center;transform:translate(0, -50%)}@media(min-width: 576px){.pt-onpagenav{display:block}}.pt-onpagenav a{display:block;width:20px;height:20px;font-size:20px;line-height:1;border-radius:50rem}.pt-onpagenav a span{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}.pt-onpagenav a span:not(caption){position:absolute !important}.pt-onpagenav a span *{overflow:hidden !important}.pt-onpagenav-prev,.pt-onpagenav-next{margin:.25rem 0}.pt-onpagenav-prev::after,.pt-onpagenav-next::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}.pt-onpagenav-prev::after{content:""}.pt-onpagenav-next::after{content:""}.pt-onpagenav ul{margin:0;padding:0;line-height:1;list-style:none}.pt-onpagenav ul li{margin:0;padding:.25rem 0}.pt-onpagenav ul li.active a{background-color:#88c6f2}.pt-onpagenav ul li a{background-color:#fff;border:1px solid #128ee6}.pt-logo{z-index:102;padding-top:1.5rem;padding-bottom:1rem}@media(max-width: 991.98px){.pt-logo img{width:25vw}}@media(max-width: 767.98px){.pt-logo img{width:190px}}@media(max-width: 413.98px){.pt-logo img{width:140px}}@media(min-width: 768px)and (max-width: 991.98px){.pt-logo{padding-right:0}}#header .pt-info{font-size:calc(0.8916666667rem + 0.6444444444vw)}@media(min-width: 1200px){#header .pt-info{font-size:1.375rem}}#header .pt-info{z-index:102;color:#73787a;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;line-height:1;text-align:center;background-color:#fff}@media(min-width: 576px){#header .pt-info{padding-bottom:1.5rem}}@media(min-width: 768px){#header .pt-info{text-align:right}}@media(max-width: 575.98px){#header .pt-info{order:99}}@media(min-width: 414px)and (max-width: 575.98px){#header .pt-info{display:flex;justify-content:center}}@media(min-width: 576px)and (max-width: 767.98px){#header .pt-info{padding-right:0;padding-left:0}}@media(min-width: 768px)and (max-width: 991.98px){#header .pt-info{padding-left:0}}#header .pt-info .ce_text i{color:#128ee6}#main-01-orange .pt-info,#main-03-orange .pt-info{font-size:calc(0.8958333333rem + 0.8055555556vw)}@media(min-width: 1200px){#main-01-orange .pt-info,#main-03-orange .pt-info{font-size:1.5rem}}#main-01-orange .pt-info,#main-03-orange .pt-info{font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif}#main-01-orange .pt-info>.row,#main-03-orange .pt-info>.row{align-items:center;justify-content:space-between}#main-01-orange .pt-info>.row>div,#main-03-orange .pt-info>.row>div{margin-bottom:0;text-align:center}@media(min-width: 576px){#main-01-orange .pt-info>.row>div,#main-03-orange .pt-info>.row>div{flex:0 0 auto;width:auto}#main-01-orange .pt-info>.row>div>:last-child,#main-03-orange .pt-info>.row>div>:last-child{margin-bottom:0}}.content-accordion .handorgel__content,.content-accordion-nav .handorgel__content,.content-accordion-nav-mobile .handorgel__content{display:none;height:0;overflow:hidden;transition:height .5s ease}.content-accordion .handorgel__content #nojs,.content-accordion-nav .handorgel__content #nojs,.content-accordion-nav-mobile .handorgel__content #nojs{display:none}.content-accordion .handorgel__content--open,.content-accordion-nav .handorgel__content--open,.content-accordion-nav-mobile .handorgel__content--open{display:block;transition:height .5s ease}.content-accordion .handorgel__content--opened,.content-accordion-nav .handorgel__content--opened,.content-accordion-nav-mobile .handorgel__content--opened{overflow:visible}.content-accordion .handorgel__content__inner,.content-accordion-nav .handorgel__content__inner,.content-accordion-nav-mobile .handorgel__content__inner{opacity:0;transition:opacity .5s ease .2s}.content-accordion .handorgel__content--open .handorgel__content__inner,.content-accordion-nav .handorgel__content--open .handorgel__content__inner,.content-accordion-nav-mobile .handorgel__content--open .handorgel__content__inner{opacity:1;transition:opacity .5s ease .2s}.content-accordion:not(.content-accordion-nav){margin-bottom:1rem}.content-accordion:not(.content-accordion-nav) .handorgel__header{margin:0 !important;padding:0;font-size:1.25rem}.content-accordion:not(.content-accordion-nav) .handorgel__header--opened .handorgel__header__button::before,.content-accordion:not(.content-accordion-nav) .handorgel__header .handorgel__header__button:hover::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-accordion:not(.content-accordion-nav) .handorgel__header--opened .handorgel__header__button:hover::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-accordion:not(.content-accordion-nav) .handorgel__header__button{position:relative;display:block;width:100%;padding:.6rem .5rem .4rem 1.75rem;color:#fff;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1;text-align:left;background-color:#bdaf89;border:none;border-radius:.625rem;transition:background-color .3s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none}.content-accordion:not(.content-accordion-nav) .handorgel__header__button::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:.5rem;left:.5rem;width:.7em;text-align:center}.content-accordion:not(.content-accordion-nav) .handorgel__header__button:hover{background-color:#7d6320}.content-accordion:not(.content-accordion-nav) .handorgel__content{background-color:#fff}.content-accordion:not(.content-accordion-nav) .handorgel__content__inner{padding:1rem .5rem 0}.content-accordion:not(.content-accordion-nav) .handorgel__content__inner>div:first-child :first-child{margin-top:0 !important;padding-top:0}.content-accordion:not(.content-accordion-nav) .handorgel__content__inner>div:last-child :last-child{margin-bottom:0;padding-bottom:0}.mod_faqlist .info,.mod_faqpage .info,.mod_faqreader .info{display:inline-block;margin:0;padding:.25rem 2rem 0 0;color:#adb5bd;font-size:.75rem;border-top:3px solid #ced4da}.mod_faqlist .mod_faqlist-entry-noinfo,.mod_faqpage .mod_faqlist-entry-noinfo{position:relative;padding-bottom:1px}.mod_faqlist .mod_faqlist-entry-noinfo::after,.mod_faqpage .mod_faqlist-entry-noinfo::after{position:absolute;left:0;display:block;width:33%;max-width:335px;height:3px;background-color:#ced4da;content:""}.mod_faqlist .content-accordion .handorgel__header p,.mod_faqpage .content-accordion .handorgel__header p{margin:0 !important;padding:0;color:#fff;font-size:1.25rem;line-height:1}.mod_faqlist .content-accordion .handorgel__header a,.mod_faqpage .content-accordion .handorgel__header a{position:absolute;top:.5rem;right:.5rem;z-index:10;display:inline-block}.my-slider{position:relative}.my-slider .swiper-button-next,.my-slider .swiper-rtl .swiper-button-prev,.my-slider .swiper-button-prev,.my-slider .swiper-rtl .swiper-button-next{--swiper-navigation-sides-offset: 1.875rem;width:auto;height:auto}.my-slider-coverflow{margin-bottom:1.875rem}.my-slider-coverflow .swiper-coverflow{padding-top:2rem;padding-bottom:2rem}@media(max-width: 575.98px){.my-slider-coverflow .swiper-button-next,.my-slider-coverflow .swiper-button-prev{top:100px}}.my-slider-coverflow .swiper-button-next,.my-slider-coverflow .swiper-rtl .swiper-button-prev,.my-slider-coverflow .swiper-button-prev,.my-slider-coverflow .swiper-rtl .swiper-button-next{--swiper-navigation-sides-offset: 0.9375rem}.my-slider-parallax .swiper{width:100%;height:100%;background:#000;border-radius:.625rem}.my-slider-parallax .swiper-wrapper{align-items:flex-end}@media(min-width: 768px){.my-slider-parallax .swiper-wrapper{min-height:400px}}.my-slider-parallax .swiper-slide{height:auto;padding:1.875rem 3.75rem;color:#fff;text-shadow:0 0 .375rem #000}.my-slider-parallax .swiper-slide-title p,.my-slider-parallax .swiper-slide-title .hl-subline{color:#fff}.my-slider-parallax .swiper-slide-text>:last-child{margin-bottom:0}@media(min-width: 576px){.my-slider-parallax .swiper-slide-text{max-width:75%}}.my-slider-parallax .parallax-bg{position:absolute;top:0;left:0;width:130%;height:100%;background-position:center;background-size:cover}.pt-copyright{font-size:0.75rem;padding-bottom:1rem}@media(min-width: 414px){.pt-copyright{position:absolute;right:0;bottom:0;width:50%;padding-right:.9375rem;padding-left:.9375rem}}@media(min-width: 768px){.pt-copyright{width:33.3333333333%}}.pt-copyright p{margin-bottom:0}.pt-teaser-list{padding-top:.75rem;padding-bottom:2rem}@media(min-width: 576px){.pt-teaser-list-3col>div{flex:0 0 auto;width:50%}}@media(min-width: 992px){.pt-teaser-list-3col>div{flex:0 0 auto;width:33.33333333%}}@media(min-width: 768px){#right .pt-teaser-list-3col>div{flex:0 0 auto;width:100%}}.pt-teaser-list+.pagination{margin-top:-2rem}.pt-teaser-image{position:relative;overflow:hidden}.pt-teaser-image .file{margin:0;padding:0;line-height:1.5;list-style:none}.pt-teaser-image .file>li{margin:0;padding:0}.pt-teaser-image .image_container{margin-bottom:0}.pt-teaser-image figcaption{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}.pt-teaser-image figcaption:not(caption){position:absolute !important}.pt-teaser-image figcaption *{overflow:hidden !important}.pt-teaser-location,.pt-teaser-category{font-size:0.875rem;display:inline-block;padding:.0625rem .625rem;color:#fff;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase;background-color:#7d6320;border-radius:50rem;box-shadow:0 0 .375rem 0 rgba(0,0,0,.75)}.pt-teaser-location::before,.pt-teaser-category::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:" "}.pt-teaser-category::before{content:" "}.pt-teaser-cat-tags{font-size:0.875rem;color:#fff;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase}.pt-teaser-cat-tags ul{margin:0;padding:0;line-height:1.5;list-style:none;display:flex;flex-wrap:wrap}.pt-teaser-cat-tags ul li{margin:0 .5rem .5rem 0;padding:.0625rem .625rem;background-color:#ff5e00;border-radius:50rem}.pt-teaser-cat-tags ul 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;content:" "}.pt-teaser-guided-tour{display:block;padding:.0625rem .625rem;color:#fff;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase;background-color:#691120}.pt-teaser-guided-tour::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:" "}.pt-teaser-headline{font-size:calc(0.9041666667rem + 1.1277777778vw)}@media(min-width: 1200px){.pt-teaser-headline{font-size:1.75rem}}.pt-teaser-headline{margin-top:0 !important}@media(min-width: 576px){.pt-teaser-headline{font-size:calc(0.8916666667rem + 0.6444444444vw)}}@media(min-width: 576px)and (min-width: 1200px){.pt-teaser-headline{font-size:1.375rem}}.pt-teaser-subheadline{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-teaser-subheadline{font-size:1.125rem}}.pt-teaser-subheadline{margin-top:.9375rem !important;margin-bottom:.5rem}.pt-teaser-subheadline+.pt-teaser-text{margin-top:0}.pt-teaser-text{font-size:0.875rem;margin-top:.9375rem}.pt-teaser-tags{font-size:0.875rem;margin-bottom:0;color:#128ee6}.pt-teaser-tags ul{margin:0;padding:0;line-height:1.5;list-style:none}.pt-teaser-tags ul li{display:inline-block;margin:0;padding:0}.pt-teaser-tags ul li::after{content:","}.pt-teaser-tags ul li:last-child::after{content:none}.pt-teaser-location-info{font-size:0.875rem;margin-top:.9375rem}.pt-teaser-stars{color:#e8e000}.pt-teaser-type{font-size:0.875rem}.pt-teaser-type ul{margin:0;padding:0;line-height:1.5;list-style:none;display:flex;flex-wrap:wrap;align-items:flex-start;margin-bottom:0}.pt-teaser-type ul li{margin-right:.25rem;margin-bottom:.25rem;padding:.125rem .9375rem;color:#fff;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase;background-color:#bdaf89;border-radius:50rem}.pt-teaser-type+.pt-teaser-text{margin-top:.6875rem}.pt-teaser-icon-list{margin-top:.9375rem}.pt-teaser-icon-list ul{margin-bottom:0;padding-left:1.5em;list-style:none}.pt-teaser-icon-list ul li{margin:0;padding:0;text-indent:-1.5em}.pt-teaser-icon-list ul 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.5em}.pt-teaser-icon-list ul li.pt-icon-clock::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}.pt-teaser-icon-list ul li.pt-icon-user::before{content:""}.pt-teaser-icon-list ul li.pt-icon-credit-card::before{content:""}.pt-teaser-icon-list ul li.pt-icon-hint{font-weight:400;font-size:.75rem}.pt-teaser-icon-list ul li.pt-icon-hint::before{content:" "}.pt-teaser-price{font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif}.pt-teaser-price p{margin-bottom:0;padding:.0625rem .625rem;background:rgba(255,255,255,.75);border:1px solid #ff5e00;border-radius:50rem}.pt-teaser-duration-niveau{font-size:0.875rem;margin-top:.5rem}.pt-teaser-duration-niveau ul{margin:0;padding:0;line-height:1.5;list-style:none}@media(min-width: 992px){.pt-teaser-duration-niveau ul{display:flex;flex-wrap:wrap;justify-content:space-between}}.pt-teaser-duration-niveau ul li{margin:0;padding:0}.pt-teaser-duration-niveau ul 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}.pt-teaser-duration-niveau ul li.pt-icon-duration::before{content:" "}.pt-teaser-duration-niveau ul li.pt-icon-niveau::before{content:" "}.pt-teaser-termine{font-size:0.875rem;margin-bottom:.9375rem}.pt-teaser-termine 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));margin-bottom:0;padding:0;list-style:none}.pt-teaser-termine ul 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);flex:0 0 auto;width:auto;padding-bottom:0}.pt-teaser-footer{padding-top:0;background-color:#fff}.pt-teaser-footer a{margin-top:0}.pt-teaser-footer a::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;content:" "}.pt-teaser-travel.pt-teaser-highlight{box-shadow:0 0 .9375rem 0 rgb(var(--bs-highlight-rgb), 0.75)}.pt-teaser-travel .pt-teaser-headline{margin-bottom:0}.pt-teaser-activity .pt-teaser-cat-tags{position:absolute;top:.9375rem;left:.9375rem}.pt-teaser-activity .pt-teaser-price{position:absolute;bottom:.9375rem;left:.9375rem}.pt-teaser-activity .pt-teaser-tags::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:" "}.pt-teaser-activity .pt-teaser-headline{margin-bottom:0}.pt-teaser-activity .pt-teaser-text{font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.pt-teaser-activity .pt-teaser-text{font-size:1rem}}.pt-teaser-activity .pt-teaser-text{margin-top:.5rem}@media(min-width: 992px){.pt-teaser-activity .pt-teaser-text{font-size:0.875rem}}.pt-teaser-large{margin-bottom:1.875rem}.pt-teaser-large>.row{margin-right:0;margin-left:0}@media(min-width: 576px){.pt-teaser-large>.row{flex-wrap:nowrap}}.pt-teaser-large>.row>div{padding-right:0;padding-left:0}.pt-teaser-large-left{overflow:hidden;background-color:#f4f2eb;border-top-left-radius:.625rem;border-top-right-radius:.625rem}@media(min-width: 576px){.pt-teaser-large-left{flex:0 0 auto;width:auto;border-top-right-radius:0;border-bottom-left-radius:.625rem}}@media(min-width: 576px){.pt-teaser-large-right{flex:1 1 0;max-width:100%}}.pt-teaser-large .pt-teaser-icon-list ul{display:flex;flex-wrap:wrap;padding-left:0}.pt-teaser-large .pt-teaser-icon-list ul li{flex:0 0 auto;width:auto;padding-right:1.5em;padding-left:1.5em}.pt-teaser-large .pt-teaser-icon-list ul li:last-child{padding-right:0}.pt-teaser-large .pt-teaser-location,.pt-teaser-large .pt-teaser-category{position:absolute;top:.9375rem;left:.9375rem}.pt-teaser-simple .pt-teaser-image{margin-bottom:1rem}.pt-teaser-simple .pt-teaser-location{position:absolute;top:.9375rem;left:.9375rem}.pt-teaser-simple .pt-teaser-icon-list{position:absolute;bottom:.9375rem;left:.9375rem;margin-top:0;color:#fff;text-shadow:0 0 .375rem rgba(0,0,0,.75)}.pt-teaser-small .pt-teaser-location{position:absolute;bottom:.9375rem;left:.9375rem}.pt-teaser-small .pt-teaser-guided-tour{font-size:0.875rem;position:absolute;top:.9375rem;left:.9375rem;display:inline-block;border-radius:50rem;box-shadow:0 0 .375rem 0 rgba(0,0,0,.75)}.pt-teaser-half>.row{height:100%;margin-right:0;margin-left:0}@media(min-width: 576px){.pt-teaser-half>.row{flex-wrap:nowrap}}.pt-teaser-half>.row>div{padding-right:0;padding-left:0}.pt-teaser-half-left{overflow:hidden;background-color:#f4f2eb;border-top-left-radius:.625rem;border-top-right-radius:.625rem}@media(min-width: 576px){.pt-teaser-half-left{flex:0 0 auto;width:45%;height:100%;border-top-right-radius:0;border-bottom-left-radius:.625rem}}@media(min-width: 992px){.pt-teaser-half-left{flex:0 0 auto;width:45%;border-top-right-radius:0;border-bottom-left-radius:.625rem}}@media(min-width: 576px){.pt-teaser-half-right{flex:1 1 0;max-width:100%;height:100%}}.pt-teaser-accommodation.pt-teaser-highlight{box-shadow:0 0 .9375rem 0 rgb(var(--bs-highlight-rgb), 1)}.pt-teaser-accommodation .pt-teaser-link img{opacity:100%;transition:opacity .3s ease-in-out}.pt-teaser-accommodation .pt-teaser-link:active img,.pt-teaser-accommodation .pt-teaser-link:hover img,.pt-teaser-accommodation .pt-teaser-link:focus img{opacity:75%}.pt-teaser-accommodation .pt-teaser-body.card-img-overlay{top:auto}.pt-teaser-accommodation .pt-teaser-location{top:.9375rem;bottom:auto}.pt-teaser-accommodation .pt-teaser-headline{font-size:calc(0.9041666667rem + 1.1277777778vw)}@media(min-width: 1200px){.pt-teaser-accommodation .pt-teaser-headline{font-size:1.75rem}}.pt-teaser-accommodation .pt-teaser-headline{margin-top:0;margin-bottom:0;color:#fff;text-shadow:0 0 .375rem rgba(0,0,0,.75)}.pt-teaser-accommodation .pt-teaser-stars{text-shadow:0 0 .375rem rgba(0,0,0,.75)}.mod_newslist .info,.mod_newsreader .info{margin-bottom:.25rem;color:#7d6320;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase}.mod_newslist .info::before,.mod_newsreader .info::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 .info+.ce_headline,.mod_newsreader .info+.ce_headline{margin-top:0}.mod_newslist .info+.ce_headline::after,.mod_newsreader .info+.ce_headline::after{left:0}.mod_newslist .info+.ce_headline a,.mod_newsreader .info+.ce_headline a{color:#000;text-decoration:none}.mod_newslist .more a,.mod_newsreader .more a{margin-top:0}.mod_newslist .more a::after,.mod_newsreader .more a::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;content:" "}.mod_newslist .back,.mod_newsreader .back{margin:2rem 0 0;padding:1rem 0;border-top:1px solid #ced4da}.mod_newslist .back a,.mod_newsreader .back a{margin-top:0}.mod_newslist .back a::before,.mod_newsreader .back 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:" "}.mod_newslist .layout_latest,.mod_newsreader .layout_latest{padding:1.875rem 0 .875rem;overflow:hidden;border-top:1px solid #ced4da}.mod_newslist .layout_latest:first-child,.mod_newsreader .layout_latest:first-child{padding-top:0;border-top:none}.mod_newslist .layout_latest:last-child,.mod_newsreader .layout_latest:last-child{padding-bottom:0}.mod_newslist .layout_latest .info,.mod_newsreader .layout_latest .info{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.mod_newslist .layout_latest .info,.mod_newsreader .layout_latest .info{font-size:1.125rem}}@media(min-width: 414px){.mod_newslist .layout_latest .image_container,.mod_newsreader .layout_latest .image_container{float:right;margin-left:1.875rem}}.mod_newslist .layout_full .info,.mod_newsreader .layout_full .info{font-size:calc(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.mod_newslist .layout_full .info,.mod_newsreader .layout_full .info{font-size:1.25rem}}.pt-news-alert{position:absolute;top:0;right:0;left:0;color:#fff;text-align:center;background-color:#ff5e00}.pt-news-alert p{margin:0;padding:.25rem 0}.pt-news-alert p::before,.pt-news-alert p::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}.pt-news-alert p::before{content:" "}.pt-news-alert p::after{content:" "}.pt-news-alert a{color:#fff}.pt-news-alert 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:" "}.pt-news-alert a:hover,.pt-news-alert a:focus,.pt-news-alert a:active{color:#e9ecef}.pt-news-alert-list .featured .ce_headline::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;color:#ff5e00;content:" "}.pt-cta--02 .card-img-overlay{top:auto}.pt-cta--02 .hyperlink_teaser{display:block}.pt-cta--02 .hyperlink_btn{box-shadow:0 0 .9375rem 0 rgba(255,255,255,.75)}.pt-cta--02 p{padding-right:.25rem;padding-left:.25rem;color:#31353d;text-decoration:none}.pt-cta--02 p span:not(.hl-subline){background-color:rgba(255,255,255,.75);box-shadow:.25rem 0 0 0 rgba(255,255,255,.75),-0.25rem 0 0 0 rgba(255,255,255,.75);-webkit-box-decoration-break:clone;box-decoration-break:clone}.pt-cta--02 .h1>span,.pt-cta--02 .h2>span,.pt-cta--02 .h3>span,.pt-cta--02 .h4>span,.pt-cta--02 .h5>span,.pt-cta--02 .h6>span{padding-top:.5rem}.pt-cta--03__inner,.pt-cta--03__link{position:relative;display:block}.pt-cta--03__overlay{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;align-items:center;justify-content:space-evenly;text-align:center}.pt-cta--03__overlay .btn-primary,.pt-cta--03__overlay .formbody .widget:not(.widget-hr).widget-submit button,.formbody .widget:not(.widget-hr).widget-submit .pt-cta--03__overlay button,.pt-cta--03__overlay .pagination ul li a,.pagination ul li .pt-cta--03__overlay a,.pt-cta--03__overlay .pagination ul li strong,.pagination ul li .pt-cta--03__overlay strong,.pt-cta--03__overlay .pt-nav-main-toggler button,.pt-nav-main-toggler .pt-cta--03__overlay button,.pt-cta--03__overlay .pt-teaser-footer a,.pt-teaser-footer .pt-cta--03__overlay a,.pt-cta--03__overlay .mod_newslist .more a,.mod_newslist .more .pt-cta--03__overlay a,.pt-cta--03__overlay .mod_newsreader .more a,.mod_newsreader .more .pt-cta--03__overlay a,.pt-cta--03__overlay .mod_newslist .back a,.mod_newslist .back .pt-cta--03__overlay a,.pt-cta--03__overlay .mod_newsreader .back a,.mod_newsreader .back .pt-cta--03__overlay a{color:#fff;background-color:#467a2a;border-color:#467a2a}.pt-cta--03__overlay figure,.pt-cta--03__overlay .pt-cta--03__btn--overlay{display:flex;align-items:center;justify-content:center}.pt-cta--03__overlay figure{width:95%}@media(min-width: 414px){.pt-cta--03__overlay figure{width:85%}}@media(min-width: 576px){.pt-cta--03__overlay figure{width:65%}}@media(min-width: 768px){.pt-cta--03__overlay figure{width:60%}}@media(min-width: 1200px){.pt-cta--03__overlay figure{width:50%}}@media(min-width: 1600px){.pt-cta--03__overlay figure{width:40%}}.pt-cta--03__overlay figure img{width:100%;max-width:none}.pt-cta--03 .image_container{margin-bottom:0}@media(min-width: 1600px){.pt-cta--03 .image_container img{width:100%;max-width:none}}.pt-map-special h1,.pt-map-special .h1,.pt-map-special h2,.pt-map-special .h2,.pt-map-special h3,.pt-map-special .h3,.pt-map-special h4,.pt-map-special .h4,.pt-map-special h5,.pt-map-special .h5,.pt-map-special h6,.pt-map-special .h6{font-size:calc(0.95rem + 2.9vw)}@media(min-width: 1200px){.pt-map-special h1,.pt-map-special .h1,.pt-map-special h2,.pt-map-special .h2,.pt-map-special h3,.pt-map-special .h3,.pt-map-special h4,.pt-map-special .h4,.pt-map-special h5,.pt-map-special .h5,.pt-map-special h6,.pt-map-special .h6{font-size:3.125rem}}.pt-map-special h1,.pt-map-special .h1,.pt-map-special h2,.pt-map-special .h2,.pt-map-special h3,.pt-map-special .h3,.pt-map-special h4,.pt-map-special .h4,.pt-map-special h5,.pt-map-special .h5,.pt-map-special h6,.pt-map-special .h6{position:relative;z-index:1;margin-top:1rem !important;margin-bottom:0;padding-top:1.875rem;color:#7d6320;text-align:center;text-transform:uppercase}.pt-map-special p{position:relative;z-index:1;margin-bottom:2rem;padding-right:15%;padding-left:15%;color:#fff;font-size:1.125rem;text-align:center}.pt-map-special p .pt-map-special-highlight{font-weight:400;background-color:#bdaf89;box-shadow:.5em 0 0 0 #bdaf89,-0.5em 0 0 0 #bdaf89;-webkit-box-decoration-break:clone;box-decoration-break:clone}.pt-map-special p+.image_container{margin-top:-3px}.pt-map-special p+.image_container img{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.pt-map-special .image_container{position:relative;text-align:center}.pt-map-special .image_container::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:-15.625rem;right:0;left:0;color:#e8e000;font-size:15.625rem}.ce_player .video_container,.ce_youtube .video_container,.ce_vimeo .video_container{overflow:hidden;border-radius:.625rem}.ce_player a[id^=splashImage_]::after,.ce_youtube a[id^=splashImage_]::after,.ce_vimeo a[id^=splashImage_]::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;font-size:calc(1.0541666667rem + 6.9277777778vw)}@media(min-width: 1200px){.ce_player a[id^=splashImage_]::after,.ce_youtube a[id^=splashImage_]::after,.ce_vimeo a[id^=splashImage_]::after{font-size:6.25rem}}.ce_player a[id^=splashImage_]::after,.ce_youtube a[id^=splashImage_]::after,.ce_vimeo a[id^=splashImage_]::after{position:absolute;top:calc(50% - .75em);left:calc(50% - .5em);color:#fff;opacity:.75;transition:opacity .3s ease-in-out}.ce_player a[id^=splashImage_]:hover::after,.ce_player a[id^=splashImage_]:focus::after,.ce_player a[id^=splashImage_]:active::after,.ce_youtube a[id^=splashImage_]:hover::after,.ce_youtube a[id^=splashImage_]:focus::after,.ce_youtube a[id^=splashImage_]:active::after,.ce_vimeo a[id^=splashImage_]:hover::after,.ce_vimeo a[id^=splashImage_]:focus::after,.ce_vimeo a[id^=splashImage_]:active::after{opacity:1}@media(min-width: 768px)and (max-width: 1199.98px){.ce_player.pt-video-special,.ce_youtube.pt-video-special,.ce_vimeo.pt-video-special{background-color:#d6e4ee}}@media(min-width: 1200px){.ce_player.pt-video-special .video_container,.ce_youtube.pt-video-special .video_container,.ce_vimeo.pt-video-special .video_container{background-color:#d6e4ee;border-radius:.625rem}}@media(min-width: 768px){.ce_player.pt-video-special .video_container .responsive,.ce_youtube.pt-video-special .video_container .responsive,.ce_vimeo.pt-video-special .video_container .responsive{width:75%;margin-right:auto;margin-left:auto}}@media(min-width: 992px){.ce_player.pt-video-special .video_container .responsive,.ce_youtube.pt-video-special .video_container .responsive,.ce_vimeo.pt-video-special .video_container .responsive{width:50%}}.pagination{font-size:0.75rem;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;margin-bottom:2rem;padding:1rem 0 0;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-align:center;border-top:1px solid #ced4da}@media(min-width: 768px){.pagination{justify-content:space-between}}.pagination p{width:100%;margin:0;padding:0 0 .5rem}@media(min-width: 768px){.pagination p{width:auto}}.pagination ul{margin:0;padding:0;line-height:1.5;list-style:none;display:flex;flex-wrap:wrap;justify-content:center;width:100%;margin:0 -0.1rem}@media(min-width: 768px){.pagination ul{width:auto}}.pagination ul li{flex:0 0 auto;width:auto;margin:0;padding:0 .1rem .5rem}.pagination ul li a,.pagination ul li strong{margin-top:0}.pagination ul li a.first::before,.pagination ul li a.previous::before,.pagination ul li strong.first::before,.pagination ul li strong.previous::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}.pagination ul li a.first::before,.pagination ul li strong.first::before{content:" "}.pagination ul li a.previous::before,.pagination ul li strong.previous::before{content:" "}.pagination ul li a.last::after,.pagination ul li a.next::after,.pagination ul li strong.last::after,.pagination ul li strong.next::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}.pagination ul li a.last::after,.pagination ul li strong.last::after{content:" "}.pagination ul li a.next::after,.pagination ul li strong.next::after{content:" "}.pt-table-climate{font-size:calc(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.pt-table-climate{font-size:1.25rem}}.pt-table-climate{position:relative;z-index:1;margin-top:1.875rem;margin-bottom:3.75rem;text-align:center}.pt-table-climate th,.pt-table-climate td{width:7%;vertical-align:middle;background-color:rgba(0,0,0,0)}.pt-table-climate th:first-child,.pt-table-climate td:first-child{width:auto}.pt-table-climate thead th{background-color:#f8f9fa}.newsletter-extern{padding-right:15px;padding-bottom:1.4em}.newsletter-extern #rmOrganism .rmBase__comp--cta{color:#fff;background:#128ee6}.newsletter-content #rmOrganism .rmLayout--vertical.rmBase{max-width:480px}.newsletter-content #rmOrganism .rmSubscription .rmBase__container,.newsletter-content #rmOrganism .rmLayout--vertical.rmBase .rmBase__container{padding:0 0 2em}.newsletter-content #rmOrganism .rmSubscription .rmBase__compLabel{color:#73787a}.newsletter-content #rmOrganism .rmBase__comp--checkbox .vFormCheckbox .vFormCheckbox__label,.newsletter-content #rmOrganism .rmBase__comp--radio .vFormCheckbox .vFormCheckbox__label{color:#73787a;font-size:.75rem}.newsletter-content #rmOrganism .rmBase__comp--cta{color:#fff;background:#128ee6}.pt-link-top{position:fixed;right:100%;bottom:1.875rem;z-index:1000;width:auto;padding:0;opacity:0;transition:right 1ms linear .3s,opacity .3s ease-out}.sps--blw .pt-link-top{position:fixed;right:.9375rem;opacity:1;transition:right 1ms linear,opacity .3s ease-in}.pt-link-top a{display:block;width:100%;height:100%;overflow:hidden;color:#17364f;font-size:30px;line-height:1;background-color:#fff;border:1px solid #fff;border-radius:50rem}.pt-link-top a::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}.pt-link-top a span{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}.pt-link-top a span:not(caption){position:absolute !important}.pt-link-top a span *{overflow:hidden !important}#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){#hofff-consent-banner>.inside{width:1140px}}@media(min-width: 1400px){#hofff-consent-banner>.inside{width:1320px}}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-root-headline{font-size:calc(0.8916666667rem + 0.6444444444vw)}@media(min-width: 1200px){#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-root-headline{font-size:1.375rem}}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-root-headline{margin-top:1rem !important}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-outdated-note{--bs-alert-padding-y: 0.5rem;--bs-alert-margin-bottom: 0.5rem;font-size:0.75rem}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-root-text{font-size:0.75rem;line-height:1.25}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-root-text p{margin-bottom:.5rem}@media(min-width: 576px){#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-buttons{margin-right:1.875rem}}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-buttons button{--bs-btn-padding-x: 0.625rem;--bs-btn-padding-y: 0.0625rem;font-size:0.75rem}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-privacy-settings-button{font-size:0.75rem;padding:0}#hofff-consent-banner:not(.hofff-consent-privacy-settings-open) .hofff-consent-privacy-settings-button button::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;top:0;vertical-align:inherit}.hofff-consent-content .hofff-consent-buttons{padding-right:1.875rem}.hofff-consent-content .hofff-consent-privacy-settings-button{padding-left:0;font-size:.875rem}.hofff-consent-content.ce_youtube .hofff-consent-placeholder,.hofff-consent-content.ce_vimeo .hofff-consent-placeholder,.hofff-consent-content.ce_html .hofff-consent-placeholder{background-color:#d6e4ee;border-radius:.625rem}@media(min-width: 768px){.hofff-consent-content.ce_youtube:not([class*=col-]) .hofff-consent-placeholder,.hofff-consent-content.ce_vimeo:not([class*=col-]) .hofff-consent-placeholder,.hofff-consent-content.ce_html:not([class*=col-]) .hofff-consent-placeholder{--bs-card-border-radius: 0;padding-right:12.5%;padding-left:12.5%}.hofff-consent-content.ce_youtube:not([class*=col-]) .hofff-consent-placeholder .card-img,.hofff-consent-content.ce_vimeo:not([class*=col-]) .hofff-consent-placeholder .card-img,.hofff-consent-content.ce_html:not([class*=col-]) .hofff-consent-placeholder .card-img{--bs-card-inner-border-radius: 0}}@media(min-width: 992px){.hofff-consent-content.ce_youtube:not([class*=col-]) .hofff-consent-placeholder,.hofff-consent-content.ce_vimeo:not([class*=col-]) .hofff-consent-placeholder,.hofff-consent-content.ce_html:not([class*=col-]) .hofff-consent-placeholder{padding-right:25%;padding-left:25%}}@media(min-width: 768px){.hofff-consent-content.ce_youtube:not([class*=col-]) .hofff-consent-placeholder-content+.hofff-consent-placeholder-overlay,.hofff-consent-content.ce_vimeo:not([class*=col-]) .hofff-consent-placeholder-content+.hofff-consent-placeholder-overlay,.hofff-consent-content.ce_html:not([class*=col-]) .hofff-consent-placeholder-content+.hofff-consent-placeholder-overlay{margin-right:12.5%;margin-left:12.5%}}@media(min-width: 992px){.hofff-consent-content.ce_youtube:not([class*=col-]) .hofff-consent-placeholder-content+.hofff-consent-placeholder-overlay,.hofff-consent-content.ce_vimeo:not([class*=col-]) .hofff-consent-placeholder-content+.hofff-consent-placeholder-overlay,.hofff-consent-content.ce_html:not([class*=col-]) .hofff-consent-placeholder-content+.hofff-consent-placeholder-overlay{margin-right:25%;margin-left:25%}}.hofff-consent-tag>.card{margin-top:.9375rem}.hofff-consent-tag-title{margin-top:0 !important}.formbody .widget:not(.widget-hr){margin-bottom:1rem}.formbody .widget:not(.widget-hr) label{margin-top:0 !important;font-weight:500;cursor:pointer}.formbody .widget:not(.widget-hr) label .mandatory{color:#691120}.formbody .widget:not(.widget-hr) legend{font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.formbody .widget:not(.widget-hr) legend{font-size:1rem}}.formbody .widget:not(.widget-hr) legend p{padding-bottom:0}.formbody .widget:not(.widget-hr) legend .mandatory{color:#691120}.formbody .widget:not(.widget-hr).widget-radio legend,.formbody .widget:not(.widget-hr).widget-checkbox legend{font-weight:500}.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;font-weight:400;cursor:pointer}.formbody .widget:not(.widget-hr).widget-radio.error label,.formbody .widget:not(.widget-hr).widget-checkbox.error label{color:#691120}.formbody .widget:not(.widget-hr).widget-radio.error label::before,.formbody .widget:not(.widget-hr).widget-checkbox.error label::before{border-color:#691120}@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}}@media(min-width: 768px){.formbody .widget:not(.widget-hr).widget-radio.col_flex>fieldset,.formbody .widget:not(.widget-hr).widget-checkbox.col_flex>fieldset{display:flex;flex-wrap:wrap}.formbody .widget:not(.widget-hr).widget-radio.col_flex>fieldset>legend,.formbody .widget:not(.widget-hr).widget-radio.col_flex>fieldset>span,.formbody .widget:not(.widget-hr).widget-checkbox.col_flex>fieldset>legend,.formbody .widget:not(.widget-hr).widget-checkbox.col_flex>fieldset>span{flex:0 0 auto}.formbody .widget:not(.widget-hr).widget-radio.col_flex>fieldset>legend,.formbody .widget:not(.widget-hr).widget-checkbox.col_flex>fieldset>legend{width:100%}.formbody .widget:not(.widget-hr).widget-radio.col_flex>fieldset>span,.formbody .widget:not(.widget-hr).widget-checkbox.col_flex>fieldset>span{padding-right:1.875rem}}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating fieldset>div{font-size:calc(0.8958333333rem + 0.8055555556vw)}@media(min-width: 1200px){.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating fieldset>div{font-size:1.5rem}}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating fieldset>div{display:flex}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating label{width:1.5em;height:1.5em;overflow:hidden;color:#fff;text-align:center;background-color:#fff}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating label::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;color:#e8e000}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating input{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}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating input:not(caption){position:absolute !important}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating input *{overflow:hidden !important}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating input:checked+label~label::before{color:#73787a}.formbody .widget:not(.widget-hr).widget-radio.pt-star-rating input:focus+label{border-color:rgb(53.5294117647%,77.8431372549%,95.0980392157%);outline:0;box-shadow:0 0 0 .25rem rgba(18,142,230,.25)}.formbody .widget:not(.widget-hr).widget-toggle-btn input:checked+label{color:#161e21;background-color:#e8e000;border-color:#e8e000}.formbody .widget:not(.widget-hr).widget-toggle-btn input+label{color:#7d6320;background-color:#f4f2eb;border-color:#f4f2eb}.formbody .widget:not(.widget-hr).widget-toggle-btn input+label:hover,.formbody .widget:not(.widget-hr).widget-toggle-btn input+label:focus,.formbody .widget:not(.widget-hr).widget-toggle-btn input+label:active{color:#454b4d !important;background-color:rgb(96.3921568627%,95.137254902%,60%) !important;border-color:rgb(96.3921568627%,95.137254902%,60%) !important}.formbody .widget:not(.widget-hr).widget-toggle-btn.widget-radio input:checked+label{color:#161e21 !important;background-color:#e8e000 !important;border-color:#e8e000 !important;cursor:not-allowed}.formbody .widget:not(.widget-hr).widget-inline>fieldset>span{margin-bottom:.5rem;padding-left:0}.formbody .widget:not(.widget-hr).widget-inline>fieldset>span.art-group{display:block;margin-right:0}.formbody .widget:not(.widget-hr).widget-explanation>:first-child,.formbody .widget:not(.widget-hr).widget-headline>:first-child{margin-top:0 !important}.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-captcha label{display:block}.formbody .widget:not(.widget-hr).widget-captcha input{display:inline-block;width:20%}.formbody .widget:not(.widget-hr).widget-captcha .captcha_text{padding-left:.5rem;font-size:.75rem}.formbody .widget:not(.widget-hr).widget-altcha{margin-bottom:0}.formbody fieldset.legend-default legend{font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.formbody fieldset.legend-default legend{font-size:1rem}}.formbody fieldset.legend-default legend{margin-top:0 !important;color:#31353d;font-weight:500;font-family:var(--bs-font-sans-serif)}.form-message :last-child{margin-bottom:0}.my-form-help{position:relative;z-index:10001;display:inline-block;float:right;color:#ff5e00;font-size:1rem;cursor:help}@media(min-width: 576px){.my-form-help{float:none;vertical-align:super}}.my-form-help .my-form-hint{font-size:0.875rem;position:absolute;bottom:27px;left:-10000px;width:290px;padding:.5rem .75rem;color:#31353d;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;line-height:1.5;text-align:left;background-color:#f4f2eb;box-shadow:3px 3px 10px 2px rgba(0,0,0,.4);opacity:0;transition:left 1ms linear .3s,opacity .3s ease-out}.my-form-help .my-form-hint :last-child{margin-bottom:0}.my-form-help .my-form-hint p{padding-top:0}.my-form-help:hover::after,.my-form-help:focus::after{position:absolute;top:-10px;left:-2px;width:0;height:0;border-top:12px solid #f4f2eb;border-right:9px solid rgba(0,0,0,0);border-left:9px solid rgba(0,0,0,0);content:""}.my-form-help:hover .my-form-hint,.my-form-help:focus .my-form-hint{left:calc(50% - 145px);opacity:1;transition:left 1ms linear,opacity .3s ease-in}.my-form-help.my-form-hint-right:hover .my-form-hint{left:-17px}.my-form-help.my-form-hint-left:hover .my-form-hint{left:-274px}.pico-duplication .formbody{counter-reset:section}.pico-duplication .formbody .allow-duplication{position:relative;counter-increment:section}.pico-duplication .formbody .allow-duplication>.row>.form-fieldset-legend::after{content:" Nr. " counter(section)}.pico-duplication .formbody .allow-duplication .duplication-buttons{text-align:right}.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button{margin-top:1rem;margin-bottom:1rem}.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button::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}.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button--add::before{content:"\+ "}.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button--remove{position:absolute;top:0;right:1.875rem}.pico-duplication .formbody .allow-duplication .duplication-buttons .duplication-button--remove::before{content:" "}fieldset.pico-bg>.row{margin-right:0;margin-left:0;padding-top:1rem;background-color:#efffc4;border-radius:.625rem}.pt-request-form .ce_headline.ct-hl-line-orange::after{left:0}.pt-request-form .multi-step-tabs{margin-top:2.5rem;margin-bottom:2.5rem}@media(min-width: 768px){.pt-request-form .multi-step-tabs{display:flex !important}}.pt-request-form .multi-step-tabs .multi-step-tab{color:#128ee6;background-color:#fff;border-color:#128ee6}.pt-request-form .multi-step-tabs .multi-step-tab:not([data-visited=true]){color:#73787a;background-color:#f4f2eb;border-color:#73787a;cursor:default}.pt-request-form .multi-step-tabs .multi-step-tab[data-visited=true]:hover,.pt-request-form .multi-step-tabs .multi-step-tab[data-visited=true]:focus{color:#31353d;background-color:#88c6f2}.pt-request-form .multi-step-tabs .multi-step-tab[aria-selected=true]{color:#fff;background-color:#128ee6;border-color:#128ee6;cursor:default}.pt-request-form .multi-step-tabs .multi-step-tab[aria-selected=true]:hover,.pt-request-form .multi-step-tabs .multi-step-tab[aria-selected=true]:focus{color:#fff;background-color:#128ee6}.pt-request-form .multi-step-tabs .multi-step-tab .error-badge{position:absolute;bottom:-1.5rem;left:0;display:block;width:100%;color:#691120;font-size:.875rem;text-align:center}.pt-request-form-form{margin-bottom:1.875rem}@media(min-width: 992px){.pt-request-form-travel .pt-request-form-form{flex:0 0 auto;width:66.66666667%}}.pt-request-form-form .widget textarea{height:7em}.pt-request-form-form .widget-options{margin:0;padding:0;line-height:1.5;list-style:none;display:flex}.pt-request-form-form .widget-options li{padding:0 1.875rem 0 0}.pt-request-form-form .widget-options li .widget-label{padding-left:.5rem}.pt-request-form-form .widget[data-invalid=true] input,.pt-request-form-form .widget[data-invalid=true] select{border-color:#691120 !important}.pt-request-form-form .widget-extra{font-size:0.75rem}.pt-request-form-form .widget-extra::before{content:" "}.pt-request-form-form .widget-extra a::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;content:" "}.pt-request-form-form .widget-messages{margin:0;padding:0;line-height:1.5;list-style:none;margin-top:.25rem;color:#691120;font-size:.875rem}.pt-request-form-interests{overflow:hidden;background-color:#f4f2eb;border:4px solid #e8e000;border-radius:.625rem}@media(min-width: 414px){.pt-request-form-interests{display:flex;flex-wrap:wrap}}.pt-request-form-interests .widget-checkbox{position:relative;margin-bottom:0 !important}.pt-request-form-interests .widget-checkbox::before,.pt-request-form-interests .widget-checkbox::after{position:absolute;z-index:1;display:block;background-color:#e8e000;content:""}.pt-request-form-interests .widget-checkbox::before{top:0;right:-2px;width:4px;height:100%}.pt-request-form-interests .widget-checkbox::after{bottom:-2px;left:0;width:100%;height:4px}@media(max-width: 413.98px){.pt-request-form-interests .widget-checkbox::before{content:none}.pt-request-form-interests .widget-checkbox:last-child::after{content:none}}@media(min-width: 414px)and (max-width: 767.98px){.pt-request-form-interests .widget-checkbox{flex:0 0 auto;width:50%}.pt-request-form-interests .widget-checkbox:last-child::after{content:none}.pt-request-form-interests .widget-checkbox:nth-child(2n)::before{content:none}}@media(min-width: 768px){.pt-request-form-interests .widget-checkbox{width:33.3333333333%}.pt-request-form-interests .widget-checkbox:nth-child(3n)::before{content:none}.pt-request-form-interests .widget-checkbox:nth-last-child(-n+3)::after{content:none}}.pt-request-form-interests .widget-checkbox .widget-inner{margin:0 !important;padding:0 !important}.pt-request-form-interests .widget-checkbox input{position:absolute;z-index:-1;margin:0 !important;padding:0 !important}.pt-request-form-interests .widget-checkbox label{position:relative}.pt-request-form-interests .widget-checkbox label::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;font-size:calc(0.9208333333rem + 1.7722222222vw)}@media(min-width: 1200px){.pt-request-form-interests .widget-checkbox label::before{font-size:2.25rem}}.pt-request-form-interests .widget-checkbox label::before{position:absolute;top:.9375rem;left:.9375rem;color:#e8e000;line-height:1}.pt-request-form-interests .widget-checkbox label span{font-size:calc(0.9125rem + 1.45vw)}@media(min-width: 1200px){.pt-request-form-interests .widget-checkbox label span{font-size:2rem}}.pt-request-form-interests .widget-checkbox label span{position:absolute;right:.9375rem;bottom:.9375rem;left:.9375rem;color:#fff;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.2;text-shadow:0 0 .375rem rgba(0,0,0,.75)}.pt-request-form-interests .widget-checkbox input:checked+label::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}.pt-request-form-interests .widget-checkbox input:disabled+label{cursor:not-allowed !important}.pt-request-form-interests img{max-width:100%;height:auto}.pt-request-form-interests+.widget{margin-top:2rem;padding-top:2rem;border-top:1px solid #ced4da}.pt-request-form-participant{margin-top:1rem;padding-top:2rem;border-top:1px solid #ced4da}.pt-request-form-participant:last-of-type{margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid #ced4da}.pt-request-form-participant h5,.pt-request-form-participant .h5{margin-top:0 !important}.pt-request-form-radio{padding-top:1rem}@media(min-width: 992px){.pt-request-form-infobox{flex:0 0 auto;width:33.33333333%;margin-top:.5rem;margin-bottom:1.875rem}}.pt-request-form-infobox .card-header{padding-bottom:0;background-color:#fff}.pt-request-form-infobox .card-header .ce_headline{margin-bottom:0}.pt-request-form-infobox .card-body{padding-bottom:0}.pt-request-form-infobox .card-footer{background-color:#f4f2eb}.pt-request-form-infobox .pt-teaser-icon-list{font-size:calc(0.9041666667rem + 1.1277777778vw)}@media(min-width: 1200px){.pt-request-form-infobox .pt-teaser-icon-list{font-size:1.75rem}}.pt-request-form-infobox .pt-teaser-icon-list{margin-top:0}.pt-request-form-infobox .pt-icon-clock{font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.pt-request-form-infobox .pt-icon-clock{font-size:1rem}}.pt-request-form-infobox .pt-icon-clock{text-indent:-1.75em}.pt-request-form-infobox .pt-icon-clock::before{width:1.75em}.pt-request-form-infobox .pt-icon-credit-card{color:#ff5e00;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.pt-request-form-info{margin-bottom:1rem}@media(min-width: 992px){.pt-request-form-info{margin-bottom:1.875rem}}.pt-request-form-info .ce_headline{margin-top:0 !important}.pt-request-form-info .ce_headline.ct-hl-line-orange::after{left:0}.pt-request-form-info a{text-decoration:none}@media(min-width: 414px){.pt-request-form-info .card-body{display:flex}}@media(min-width: 414px){.pt-request-form-info-left{width:75%;padding-right:.9375rem}}@media(min-width: 576px){.pt-request-form-info-left{width:60%}}@media(min-width: 992px){.pt-request-form-info-left{width:50%}}.pt-request-form-info-right{display:flex}@media(min-width: 414px){.pt-request-form-info-right{display:block;width:25%}}@media(min-width: 576px){.pt-request-form-info-right{display:flex;width:40%}}@media(min-width: 992px){.pt-request-form-info-right{width:50%}}.pt-request-form-info-staff{padding:1rem .5rem 0;text-align:center}.pt-request-form-info-staff:first-child{padding-left:0}.pt-request-form-info-staff:last-child{padding-right:0}@media(min-width: 414px){.pt-request-form-info-staff{padding:0}.pt-request-form-info-staff:first-child{padding-bottom:.5rem}}@media(min-width: 576px){.pt-request-form-info-staff{width:50%;padding:2.5rem .5rem 0}}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:1.5rem}.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,.form-message>:first-child,.form-confirmation>:first-child,.card-body>:first-child{margin-top:0 !important;padding-top:0}.alert>p:last-child,.form-message>p:last-child,.form-confirmation>p:last-child,.card-body>p:last-child{margin-bottom:0;padding-bottom:0}.card .image_container{margin-top:0 !important;margin-bottom:0 !important}.card-grid>div{margin-bottom:1.875rem}.card-shadow{box-shadow:0 0 .9375rem 0 rgba(0,0,0,.25)}.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)}.ce_player,.ce_youtube,.ce_vimeo{margin-bottom:1.875rem}.video_container{margin:0}.video_container video,.video_container audio{width:100%;height:auto}.pt-filter .ts-wrapper,.pt-filter-detail .ts-wrapper{height:100%}.pt-filter .ts-wrapper.focus .ts-control,.pt-filter-detail .ts-wrapper.focus .ts-control{--bs-body-bg: rgb(98.1960784314%, 97.568627451%, 80%)}.pt-filter .ts-wrapper.focus .ts-control input::-moz-placeholder, .pt-filter-detail .ts-wrapper.focus .ts-control input::-moz-placeholder{color:#73787a}.pt-filter .ts-wrapper.focus .ts-control input::placeholder,.pt-filter-detail .ts-wrapper.focus .ts-control input::placeholder{color:#73787a}.pt-filter .ts-wrapper.dropdown-active .ts-control,.pt-filter-detail .ts-wrapper.dropdown-active .ts-control{border-bottom-left-radius:0}.pt-filter .ts-wrapper.full input,.pt-filter-detail .ts-wrapper.full input{display:none !important}.pt-filter .ts-control,.pt-filter-detail .ts-control{--bs-border-radius: 25px;--bs-body-bg: #f4f2eb;flex-wrap:nowrap;border-color:#e8e000;border-width:4px;box-shadow:none !important}.pt-filter .ts-control::before,.pt-filter-detail .ts-control::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}.pt-filter .ts-control .item,.pt-filter-detail .ts-control .item{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.pt-filter .ts-control input::-moz-placeholder, .pt-filter-detail .ts-control input::-moz-placeholder{color:#31353d}.pt-filter .ts-control input::placeholder,.pt-filter-detail .ts-control input::placeholder{color:#31353d}.pt-filter .ts-control .clear-button,.pt-filter-detail .ts-control .clear-button{top:42.5%}.pt-filter .ts-dropdown,.pt-filter-detail .ts-dropdown{--bs-body-bg: #f4f2eb;--bs-border-color-translucent: #e8e000;margin:0;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;border-width:4px;border-top:none;border-radius:0}.pt-filter .ts-dropdown-content,.pt-filter-detail .ts-dropdown-content{padding:0}.pt-filter .ts-dropdown .active,.pt-filter-detail .ts-dropdown .active{--bs-tertiary-bg: #e8e000}.pt-filter{position:absolute;right:0;bottom:1.875rem;left:0}.pt-filter-container{--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){.pt-filter-container{width:1140px}}@media(min-width: 1400px){.pt-filter-container{width:1320px}}.pt-filter-row{justify-content:center}@media(min-width: 768px){.pt-filter-inner{flex:0 0 auto;width:100%}}@media(min-width: 992px){.pt-filter-inner{flex:0 0 auto;width:83.33333333%}}@media(min-width: 1200px){.pt-filter-inner{flex:0 0 auto;width:83.33333333%}}@media(min-width: 1400px){.pt-filter-inner{flex:0 0 auto;width:66.66666667%}}.pt-filter .h1{color:#fff;text-align:center;text-shadow:#000 0 0 2px}.pt-finder{background-color:#f4f2eb;border-radius:25px;box-shadow:inset -4px 0 0 4px #e8e000}.pt-finder .formbody{display:flex;flex-wrap:nowrap}.pt-finder .formbody .widget{flex:0 0 auto;width:50%;margin-bottom:0}.pt-finder .formbody .widget .ts-control{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.pt-finder .formbody .widget .ts-dropdown{border-width:1px}.pt-finder .formbody .widget:nth-child(2) .ts-control,.pt-finder .formbody .widget:nth-child(3) .ts-control{border-top-left-radius:0;border-bottom-left-radius:0}.pt-finder .formbody .widget.reiseziel .ts-control::before{content:" "}@media(max-width: 413.98px){.pt-finder .formbody .widget.dauer{display:none}}.pt-finder .formbody .widget.dauer .ts-control::before{content:" "}.pt-finder .formbody .widget.region{display:none}@media(min-width: 576px){.pt-finder .formbody .widget.region{display:block}}.pt-finder .formbody .widget.region .ts-control::before{content:" "}@media(max-width: 575.98px){.pt-finder .formbody .widget.standorte{display:none}}.pt-finder .formbody .widget.standorte .ts-control::before{content:" "}.pt-finder .formbody .widget.ort{display:none}@media(min-width: 768px){.pt-finder .formbody .widget.ort{display:block}}.pt-finder .formbody .widget.ort .ts-control::before{content:" "}.pt-finder .formbody .widget.kategorie{display:none}@media(min-width: 768px){.pt-finder .formbody .widget.kategorie{display:block}}.pt-finder .formbody .widget.kategorie .ts-control::before{content:" "}.pt-finder .formbody .widget-submit .submit{--bs-btn-border-width: 4px;display:block;width:100%;margin-top:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}@media(min-width: 414px){.pt-finder.travelfinder .formbody .widget{width:33.3333333333%}}@media(min-width: 576px){.pt-finder.travelfinder .formbody .widget{width:25%}}@media(min-width: 576px){.pt-finder.accommodationfinder .formbody .widget,.pt-finder.activityfinder .formbody .widget{width:33%}.pt-finder.accommodationfinder .formbody .widget.widget-submit,.pt-finder.activityfinder .formbody .widget.widget-submit{width:34%}}@media(min-width: 768px){.pt-finder.accommodationfinder .formbody .widget,.pt-finder.activityfinder .formbody .widget{width:25%}.pt-finder.accommodationfinder .formbody .widget.widget-submit,.pt-finder.activityfinder .formbody .widget.widget-submit{width:25%}}.pt-filter-detail .widget-radio legend,.pt-filter-detail .widget-radio>label,.pt-filter-detail .widget-checkbox legend,.pt-filter-detail .widget-checkbox>label,.pt-filter-detail .widget-select legend,.pt-filter-detail .widget-select>label{font-size:calc(0.8958333333rem + 0.8055555556vw) !important}@media(min-width: 1200px){.pt-filter-detail .widget-radio legend,.pt-filter-detail .widget-radio>label,.pt-filter-detail .widget-checkbox legend,.pt-filter-detail .widget-checkbox>label,.pt-filter-detail .widget-select legend,.pt-filter-detail .widget-select>label{font-size:1.5rem !important}}.pt-filter-detail .widget-radio legend,.pt-filter-detail .widget-radio>label,.pt-filter-detail .widget-checkbox legend,.pt-filter-detail .widget-checkbox>label,.pt-filter-detail .widget-select legend,.pt-filter-detail .widget-select>label{color:#161e21;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.2}.pt-filter-detail .widget-radio legend::before,.pt-filter-detail .widget-radio>label::before,.pt-filter-detail .widget-checkbox legend::before,.pt-filter-detail .widget-checkbox>label::before,.pt-filter-detail .widget-select legend::before,.pt-filter-detail .widget-select>label::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}.pt-filter-detail .widget-radio.reiseziel legend::before,.pt-filter-detail .widget-radio.reiseziel>label::before,.pt-filter-detail .widget-checkbox.reiseziel legend::before,.pt-filter-detail .widget-checkbox.reiseziel>label::before,.pt-filter-detail .widget-select.reiseziel legend::before,.pt-filter-detail .widget-select.reiseziel>label::before{content:" "}.pt-filter-detail .widget-radio.dauer legend::before,.pt-filter-detail .widget-radio.dauer>label::before,.pt-filter-detail .widget-checkbox.dauer legend::before,.pt-filter-detail .widget-checkbox.dauer>label::before,.pt-filter-detail .widget-select.dauer legend::before,.pt-filter-detail .widget-select.dauer>label::before{content:" "}.pt-filter-detail .widget-radio.standorte legend::before,.pt-filter-detail .widget-radio.standorte>label::before,.pt-filter-detail .widget-checkbox.standorte legend::before,.pt-filter-detail .widget-checkbox.standorte>label::before,.pt-filter-detail .widget-select.standorte legend::before,.pt-filter-detail .widget-select.standorte>label::before{content:" "}.pt-filter-detail .widget-radio.region legend::before,.pt-filter-detail .widget-radio.region>label::before,.pt-filter-detail .widget-checkbox.region legend::before,.pt-filter-detail .widget-checkbox.region>label::before,.pt-filter-detail .widget-select.region legend::before,.pt-filter-detail .widget-select.region>label::before{content:" "}.pt-filter-detail .widget-radio.ort legend::before,.pt-filter-detail .widget-radio.ort>label::before,.pt-filter-detail .widget-checkbox.ort legend::before,.pt-filter-detail .widget-checkbox.ort>label::before,.pt-filter-detail .widget-select.ort legend::before,.pt-filter-detail .widget-select.ort>label::before{content:" "}.pt-filter-detail .widget-radio.lage legend::before,.pt-filter-detail .widget-radio.lage>label::before,.pt-filter-detail .widget-checkbox.lage legend::before,.pt-filter-detail .widget-checkbox.lage>label::before,.pt-filter-detail .widget-select.lage legend::before,.pt-filter-detail .widget-select.lage>label::before{content:" "}.pt-filter-detail .widget-radio.ausstattung legend::before,.pt-filter-detail .widget-radio.ausstattung>label::before,.pt-filter-detail .widget-checkbox.ausstattung legend::before,.pt-filter-detail .widget-checkbox.ausstattung>label::before,.pt-filter-detail .widget-select.ausstattung legend::before,.pt-filter-detail .widget-select.ausstattung>label::before{content:" "}.pt-filter-detail .widget-radio.art legend::before,.pt-filter-detail .widget-radio.art>label::before,.pt-filter-detail .widget-checkbox.art legend::before,.pt-filter-detail .widget-checkbox.art>label::before,.pt-filter-detail .widget-select.art legend::before,.pt-filter-detail .widget-select.art>label::before{content:" "}.pt-filter-detail .widget-radio.typ legend::before,.pt-filter-detail .widget-radio.typ>label::before,.pt-filter-detail .widget-checkbox.typ legend::before,.pt-filter-detail .widget-checkbox.typ>label::before,.pt-filter-detail .widget-select.typ legend::before,.pt-filter-detail .widget-select.typ>label::before{content:" "}.pt-filter-detail .widget-radio.verpflegung legend::before,.pt-filter-detail .widget-radio.verpflegung>label::before,.pt-filter-detail .widget-checkbox.verpflegung legend::before,.pt-filter-detail .widget-checkbox.verpflegung>label::before,.pt-filter-detail .widget-select.verpflegung legend::before,.pt-filter-detail .widget-select.verpflegung>label::before{content:" "}.pt-filter-detail .widget-radio.kategorie legend::before,.pt-filter-detail .widget-radio.kategorie>label::before,.pt-filter-detail .widget-checkbox.kategorie legend::before,.pt-filter-detail .widget-checkbox.kategorie>label::before,.pt-filter-detail .widget-select.kategorie legend::before,.pt-filter-detail .widget-select.kategorie>label::before{content:" "}.pt-filter-detail .widget-select .ts-wrapper.dropdown-active .ts-control{border-bottom-right-radius:0}.pt-filter-detail .widget-select .ts-control{--bs-border-radius: 23px}.pt-filter-detail .widget-submit input{display:block;width:100%;text-wrap-mode:wrap}.pt-filter-detail+.clearall{padding-bottom:3rem}.pt-filter-detail+.clearall a{display:block;color:#7d6320;background-color:#f4f2eb;border-color:#f4f2eb}.pt-filter-detail+.clearall a:hover,.pt-filter-detail+.clearall a:focus,.pt-filter-detail+.clearall a:active{color:#454b4d;background-color:rgb(96.3921568627%,95.137254902%,60%);border-color:rgb(96.3921568627%,95.137254902%,60%)}.pt-filter-detail.activityfinder .widget-radio.art legend::before,.pt-filter-detail.activityfinder .widget-radio.art>label::before,.pt-filter-detail.activityfinder .widget-checkbox.art legend::before,.pt-filter-detail.activityfinder .widget-checkbox.art>label::before,.pt-filter-detail.activityfinder .widget-select.art legend::before,.pt-filter-detail.activityfinder .widget-select.art>label::before{content:" "}.pt-td .ce_metamodel_content>.ct-hl-line-orange:not(.text-center)::after{left:0}.pt-td .ce_metamodel_content>figure{margin-bottom:0}.pt-td-important-text{position:relative;padding-right:4rem;padding-left:4rem;color:#ff5e00;text-align:center;background-color:#fff;border-color:#ff5e00}.pt-td-important-text::before,.pt-td-important-text::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;font-size:calc(0.9208333333rem + 1.7722222222vw)}@media(min-width: 1200px){.pt-td-important-text::before,.pt-td-important-text::after{font-size:2.25rem}}.pt-td-important-text::before,.pt-td-important-text::after{position:absolute;top:5%}.pt-td-important-text::before{left:.9375rem}.pt-td-important-text::after{right:.9375rem}.pt-td-map{flex:0 0 auto;width:auto}@media(min-width: 768px){.pt-td-map{max-width:calc(100% - 320px)}}@media(min-width: 992px){.pt-td-map{max-width:66.6666666667%}}.pt-td-characteristics{max-width:320px}@media(min-width: 992px){.pt-td-characteristics{flex:0 0 auto;width:33.33333333%}}.pt-td-characteristics-headline{font-size:calc(0.8916666667rem + 0.6444444444vw)}@media(min-width: 1200px){.pt-td-characteristics-headline{font-size:1.375rem}}.pt-td-characteristics-headline{margin-top:1rem !important;margin-bottom:0}.pt-td-characteristics-list{margin-top:1rem;margin-bottom:0}.pt-td-characteristics-list li{padding-bottom:0}.pt-td-characteristics .pt-teaser-icon-list{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-td-characteristics .pt-teaser-icon-list{font-size:1.125rem}}.pt-td-characteristics .pt-teaser-icon-list{font-weight:500}.pt-td-highlights{padding-bottom:1.875rem}@media(min-width: 768px){.pt-td-highlights{align-items:flex-end;text-align:right}.pt-td-highlights:last-child{padding-bottom:0}.pt-td-highlights:nth-child(odd){text-align:left}.pt-td-highlights:nth-child(odd) figure{order:-1}}.pt-td-highlights-text>:first-child{margin-top:0 !important}@media(min-width: 768px){.pt-td-highlights-text{flex:1 1 0;max-width:100%;position:relative}.pt-td-highlights-text::after{position:absolute;right:.9375rem;bottom:0;left:.9375rem;display:block;height:1px;background-color:#ced4da;content:""}}@media(max-width: 767.98px){.pt-td-highlights figure{position:relative}.pt-td-highlights figure::after{position:absolute;right:.9375rem;bottom:-1.46875rem;left:.9375rem;display:block;height:1px;background-color:#ced4da;content:""}}@media(min-width: 768px){.pt-td-highlights figure{flex:0 0 auto;width:auto;margin-bottom:0}}.pt-td-itinerary{padding-right:0;padding-left:0}.pt-td-itinerary-inner{--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){.pt-td-itinerary-inner{width:1140px}}@media(min-width: 1400px){.pt-td-itinerary-inner{width:1320px}}.pt-td-itinerary-headline{font-size:calc(0.8958333333rem + 0.8055555556vw)}@media(min-width: 1200px){.pt-td-itinerary-headline{font-size:1.5rem}}.pt-td-itinerary-headline{margin-top:1rem !important}.pt-td-itinerary-slider .my-slider .swiper-button-next,.pt-td-itinerary-slider .my-slider .swiper-rtl .swiper-button-prev,.pt-td-itinerary-slider .my-slider .swiper-button-prev,.pt-td-itinerary-slider .my-slider .swiper-rtl .swiper-button-next{--swiper-navigation-sides-offset: 0.9375rem}.pt-td-itinerary-slider .my-slider .swiper.swiper-locked .swiper-wrapper{justify-content:center}.pt-td-itinerary-slider .my-slider .swiper:not(.swiper-locked)::before,.pt-td-itinerary-slider .my-slider .swiper:not(.swiper-locked)::after{position:absolute;top:0;bottom:0;z-index:5;display:block;width:1.875rem;content:""}.pt-td-itinerary-slider .my-slider .swiper:not(.swiper-locked)::before{background-image:linear-gradient(to right, rgb(244, 242, 235) 0%, rgba(244, 242, 235, 0) 100%);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#FFF4F2EB", endColorstr="#00F4F2EB", GradientType=1);left:0}.pt-td-itinerary-slider .my-slider .swiper:not(.swiper-locked)::after{background-image:linear-gradient(to right, rgba(244, 242, 235, 0) 0%, rgb(244, 242, 235) 100%);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#00F4F2EB", endColorstr="#FFF4F2EB", GradientType=1);right:0}@media(min-width: 1200px){.pt-td-itinerary-slider .my-slider .swiper:not(.swiper-locked){padding-right:2.8125rem;padding-left:2.8125rem}.pt-td-itinerary-slider .my-slider .swiper:not(.swiper-locked)::before,.pt-td-itinerary-slider .my-slider .swiper:not(.swiper-locked)::after{width:2.8125rem}}.pt-td-itinerary-slider .my-slider .swiper-slide{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);height:auto}@media(min-width: 414px){.pt-td-itinerary-slider .my-slider .swiper-slide{width:calc(384px + 1.875rem)}}@media(min-width: 1200px){.pt-td-itinerary-small .pt-td-itinerary-slider{--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;width:1140px}}@media(min-width: 1400px){.pt-td-itinerary-small .pt-td-itinerary-slider{width:1320px}}@media(min-width: 1200px){.pt-td-itinerary-small .my-slider{margin-right:-0.9375rem;margin-left:-0.9375rem}.pt-td-itinerary-small .my-slider .swiper-wrapper{padding-bottom:.75rem}.pt-td-itinerary-small .my-slider .swiper-slide{flex:0 0 auto;width:33.33333333%}}.pt-td-feature-list{flex:0 0 auto;width:100%}@media(min-width: 992px){.pt-td-feature-list{flex:0 0 auto;width:50%}}.pt-td-feature-list .ct-hl-line-orange::after{left:0}.pt-td-feature-list a{text-indent:0}.pt-td-feature-list a::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;content:" "}.pt-td-feature-list a[target=_blank]::after{content:" "}.pt-td-feature-list ul{padding-left:1.5em;list-style:none}.pt-td-feature-list ul li{text-indent:-1.5em}.pt-td-feature-list ul 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.5em;color:#ff5e00}.pt-td-feature-list ul li.pt-icon-car::before{content:""}.pt-td-feature-list ul li.pt-icon-bed::before{content:""}.pt-td-feature-list ul li.pt-icon-boat::before{content:""}.pt-td-feature-list ul li.pt-icon-bus::before{content:""}.pt-td-feature-list ul li.pt-icon-bicycle::before{content:""}.pt-td-feature-list ul li.pt-icon-ferry::before{content:""}.pt-td-feature-list ul li.pt-icon-fish::before{content:""}.pt-td-feature-list ul li.pt-icon-plane::before{content:""}.pt-td-feature-list ul li.pt-icon-guitar::before{content:""}.pt-td-feature-list ul li.pt-icon-meal::before{content:""}.pt-td-feature-list ul li.pt-icon-people-group::before{content:""}.pt-td-feature-list ul li.pt-icon-person-walking::before{content:""}.pt-td-feature-list ul li.pt-icon-person-biking::before{content:""}.pt-td-feature-list ul li.pt-icon-music::before{content:""}.pt-td-feature-list ul li.pt-icon-van-shuttle::before{content:""}.pt-td-feature-list ul li.pt-icon-discount::before{content:""}.pt-td-feature-list ul li.pt-icon-documents::before{content:""}.pt-td-feature-list ul li.pt-icon-wrench::before{content:""}.pt-td-feature-list ul li.pt-icon-mobile-screen-button::before{content:""}.pt-td-feature-list ul li.pt-icon-spa::before{content:""}.pt-td-feature-list ul li.pt-icon-comment::before{content:""}.pt-td-feature-list ul li.pt-icon-location-dot::before{content:""}.pt-td-feature-list ul li.pt-icon-hiking::before{content:""}.pt-td-feature-list ul li.pt-icon-wine-glass::before{content:""}.pt-td-feature-list ul li.pt-icon-yin-yang::before{content:""}.pt-td-feature-list ul li.pt-icon-gear::before{content:""}.pt-td-feature-list ul li.pt-icon-train-tram::before{content:""}.pt-td-feature-list ul li.pt-icon-atmosfair{color:#52600b}.pt-td-feature-list ul li.pt-icon-atmosfair::before{color:#52600b;content:""}.pt-td-feature-list ul li.pt-icon-atmosfair a{--bs-link-color: #52600b;--bs-link-color-rgb: #52600b}.pt-td-departure-airports-notice{font-size:0.75rem;color:#31353d;font-style:italic}.pt-td-testimonial{flex:0 0 auto;width:100%;padding-top:1rem}@media(min-width: 992px){.pt-td-testimonial{flex:0 0 auto;width:50%;padding-top:0}}.pt-td-accommodations .swiper{background-color:#f4f2eb;border:4px solid #e8e000;border-radius:.625rem}.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide{--bs-gutter-x: 0;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%}@media(min-width: 414px){.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide{flex:0 0 auto;width:50%}.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide::before{position:absolute;top:0;bottom:0;left:0;z-index:1;width:4px;background-color:#e8e000;content:""}.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide:last-child::after{position:absolute;top:0;bottom:0;left:100%;z-index:1;width:4px;background-color:#e8e000;content:""}}@media(min-width: 768px){.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide{flex:0 0 auto;width:33.33333333%}}@media(min-width: 992px){.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide{flex:0 0 auto;width:33.33333333%}}@media(min-width: 1200px){.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide{flex:0 0 auto;width:25%}}@media(min-width: 414px){.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide-active::before{content:none}}.pt-td-accommodations .swiper .swiper-wrapper .swiper-slide .card{--bs-card-border-radius: 0;--bs-card-inner-border-radius: 0;background-color:#f4f2eb}.pt-td-accommodations .swiper .swiper-button-next,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-prev,.pt-td-accommodations .swiper .swiper-button-prev,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-next{--swiper-navigation-sides-offset: 0.9375rem;box-sizing:content-box;padding:.5rem .2rem .4rem .25rem;background-color:rgba(255,255,255,.75);border-radius:.3125rem;box-shadow:0 0 .375rem rgba(0,0,0,.75);transition:background-color .3s ease-in-out}.pt-td-accommodations .swiper .swiper-button-next::after,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-prev::after,.pt-td-accommodations .swiper .swiper-button-prev::after,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-next::after{font-size:calc(0.9375rem + 2.4166666667vw)}@media(min-width: 1200px){.pt-td-accommodations .swiper .swiper-button-next::after,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-prev::after,.pt-td-accommodations .swiper .swiper-button-prev::after,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-next::after{font-size:2.75rem}}.pt-td-accommodations .swiper .swiper-button-next:hover,.pt-td-accommodations .swiper .swiper-button-next:focus,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-prev:hover,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-prev:focus,.pt-td-accommodations .swiper .swiper-button-prev:hover,.pt-td-accommodations .swiper .swiper-button-prev:focus,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-next:hover,.pt-td-accommodations .swiper .swiper-rtl .swiper-button-next:focus{background-color:#fff}.pt-td-accommodations .swiper .card-img-overlay{padding-bottom:.46875rem}.pt-td-accommodations .swiper .pt-teaser-stars{font-size:0.875rem}.pt-td-accommodations .swiper .pt-teaser-headline{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-td-accommodations .swiper .pt-teaser-headline{font-size:1.125rem}}.pt-td-accommodations-category-switcher,.pt-td-accommodations-title{margin:0;padding:0;line-height:1.5;list-style:none;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%}@media(min-width: 576px){.pt-td-accommodations-category-switcher,.pt-td-accommodations-title{flex:0 0 auto;width:37.5%;padding-right:0}}@media(min-width: 768px){.pt-td-accommodations-category-switcher,.pt-td-accommodations-title{flex:0 0 auto;width:33.33333333%}}@media(min-width: 992px){.pt-td-accommodations-category-switcher,.pt-td-accommodations-title{flex:0 0 auto;width:25%}}.pt-td-accommodations-category-switcher-item,.pt-td-accommodations-title-item{padding:.5rem .9375rem .25rem;font-size:1.125rem;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";background-color:#e8e000;border:4px solid #e8e000;border-radius:50rem}@media(min-width: 576px){.pt-td-accommodations-category-switcher-item,.pt-td-accommodations-title-item{font-size:calc(0.8833333333rem + 0.3222222222vw);border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}}@media(min-width: 576px)and (min-width: 1200px){.pt-td-accommodations-category-switcher-item,.pt-td-accommodations-title-item{font-size:1.125rem}}.pt-td-accommodations-category-switcher+.pt-td-accommodations,.pt-td-accommodations-title+.pt-td-accommodations{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)}@media(min-width: 576px){.pt-td-accommodations-category-switcher+.pt-td-accommodations,.pt-td-accommodations-title+.pt-td-accommodations{flex:0 0 auto;width:62.5%;padding-left:0}}@media(min-width: 768px){.pt-td-accommodations-category-switcher+.pt-td-accommodations,.pt-td-accommodations-title+.pt-td-accommodations{flex:0 0 auto;width:66.66666667%}}@media(min-width: 992px){.pt-td-accommodations-category-switcher+.pt-td-accommodations,.pt-td-accommodations-title+.pt-td-accommodations{flex:0 0 auto;width:75%}}.pt-td-accommodations-category-switcher+.pt-td-accommodations .swiper,.pt-td-accommodations-title+.pt-td-accommodations .swiper{border-top-left-radius:0}@media(min-width: 576px){.pt-td-accommodations-category-switcher+.pt-td-accommodations .swiper,.pt-td-accommodations-title+.pt-td-accommodations .swiper{border-bottom-left-radius:0}}.pt-td-accommodations-category-switcher-item:not(.active){background-color:#f4f2eb;cursor:pointer}@media(max-width: 575.98px){.pt-td-accommodations-category-switcher-item.active{border-bottom-left-radius:0}.pt-td-accommodations-category-switcher-item.active+li{border-top-left-radius:0;border-bottom-left-radius:0}}.pt-td-accommodations-category-switcher-item+li{margin-top:-4px}@media(max-width: 575.98px){.pt-td-accommodations-category-switcher+.pt-td-accommodations{margin-top:-4px}}.pt-td-accommodations-category-switcher+.pt-td-accommodations .pt-td-accommodations-category{display:none}.pt-td-accommodations-category-switcher+.pt-td-accommodations .pt-td-accommodations-category.active{display:block}.pt-td-accommodations-title-item small,.pt-td-accommodations-title-item .small{color:#fff}@media(max-width: 575.98px){.pt-td-accommodations-title+.pt-td-accommodations{margin-top:-4px}}.pt-td-accommodations-switcher{font-size:calc(0.9208333333rem + 1.7722222222vw)}@media(min-width: 1200px){.pt-td-accommodations-switcher{font-size:2.25rem}}.pt-td-accommodations-switcher{position:absolute;top:.9375rem;left:.9375rem;padding:0;color:#e8e000;line-height:1;background-color:rgba(0,0,0,0);border:none}.pt-td-accommodations-switcher::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}.pt-td-accommodations .pt-teaser-accommodation.active .pt-td-accommodations-switcher::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}.pt-td-price{margin-bottom:.9375rem;padding:.9375rem 0;background-color:#f4f2eb;border-radius:.625rem}.pt-td-price-inner{display:flex;align-items:center;justify-content:space-between}@media(max-width: 767.98px){.pt-td-price-inner{flex-wrap:wrap}}.pt-td-price-period{font-size:calc(0.9395833333rem + 2.4972222222vw)}@media(min-width: 1200px){.pt-td-price-period{font-size:2.8125rem}}.pt-td-price-period{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);font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.pt-td-price-period::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;color:#ff5e00;content:" "}@media(min-width: 576px){.pt-td-price-period{font-size:calc(0.9208333333rem + 1.7722222222vw);flex:0 0 auto;width:50%;padding-top:.75rem;text-align:center}}@media(min-width: 576px)and (min-width: 1200px){.pt-td-price-period{font-size:2.25rem}}@media(min-width: 576px){.pt-td-price-period::before{display:block;line-height:1;content:""}}@media(min-width: 768px){.pt-td-price-period{font-size:calc(0.9125rem + 1.45vw);width:20%}}@media(min-width: 768px)and (min-width: 1200px){.pt-td-price-period{font-size:2rem}}@media(min-width: 992px){.pt-td-price-period{width:28%}}@media(min-width: 1200px){.pt-td-price-period{width:30%}}@media(min-width: 1400px){.pt-td-price-period{width:33.3333333333%}}@media(min-width: 768px)and (max-width: 991.98px){.pt-td-price-period span{display:block;line-height:.1}}.pt-td-price-accommodation{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-top:.5rem}@media(min-width: 576px)and (max-width: 767.98px){.pt-td-price-accommodation{flex:0 0 auto;width:50%}}@media(min-width: 576px){.pt-td-price-accommodation{padding-top:0}}.pt-td-price-accommodation strong{font-size:calc(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.pt-td-price-accommodation strong{font-size:1.25rem}}.pt-td-price-accommodation strong{font-weight:400}.pt-td-price-accommodation strong::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;color:#ff5e00;content:" "}@media(min-width: 768px){.pt-td-price-accommodation strong{font-size:calc(0.8791666667rem + 0.1611111111vw)}}@media(min-width: 768px)and (min-width: 1200px){.pt-td-price-accommodation strong{font-size:1rem}}.pt-td-price-accommodation-list{font-size:calc(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.pt-td-price-accommodation-list{font-size:1.25rem}}.pt-td-price-accommodation-list{margin:0;padding:0;line-height:1.5;list-style:none;--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));font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}@media(min-width: 768px){.pt-td-price-accommodation-list{font-size:calc(0.8833333333rem + 0.3222222222vw)}}@media(min-width: 768px)and (min-width: 1200px){.pt-td-price-accommodation-list{font-size:1.125rem}}.pt-td-price-accommodation-list-item{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:0}.pt-td-price-accommodation-list-item span{display:block;cursor:pointer}.pt-td-price-accommodation-list-item span::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;color:#ff5e00;content:" "}.pt-td-price-accommodation-list-item.active span::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:" "}.pt-td-price-availability{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-top:.5rem}@media(min-width: 576px)and (max-width: 767.98px){.pt-td-price-availability{flex:0 0 auto;width:50%}}@media(min-width: 576px){.pt-td-price-availability{padding-top:0}}.pt-td-price-availability span{font-size:calc(0.8875rem + 0.4833333333vw)}@media(min-width: 1200px){.pt-td-price-availability span{font-size:1.25rem}}.pt-td-price-availability span{display:block;padding-bottom:.5rem;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";cursor:help}.pt-td-price-availability span::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:" "}@media(min-width: 768px){.pt-td-price-availability span{font-size:calc(0.8833333333rem + 0.3222222222vw)}}@media(min-width: 768px)and (min-width: 1200px){.pt-td-price-availability span{font-size:1.125rem}}.pt-td-price-availability-booked-out::before{color:#ff5e00}.pt-td-price-availability-available::before{color:#afcb20}.pt-td-price-availability-available-saved::before{color:#afcb20}.pt-td-price-availability-available-limited::before{color:#e8e000}.pt-td-price-container{font-size:calc(0.9395833333rem + 2.4972222222vw)}@media(min-width: 1200px){.pt-td-price-container{font-size:2.8125rem}}.pt-td-price-container{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-top:.5rem;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.pt-td-price-container::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;color:#ff5e00;content:" "}@media(min-width: 576px){.pt-td-price-container{font-size:calc(0.9208333333rem + 1.7722222222vw);flex:0 0 auto;width:50%;padding-top:.75rem;text-align:center}}@media(min-width: 576px)and (min-width: 1200px){.pt-td-price-container{font-size:2.25rem}}@media(min-width: 576px){.pt-td-price-container::before{display:block;line-height:1;content:""}}@media(min-width: 768px){.pt-td-price-container{font-size:calc(0.9125rem + 1.45vw);width:21%;margin-left:auto}}@media(min-width: 768px)and (min-width: 1200px){.pt-td-price-container{font-size:2rem}}@media(min-width: 992px){.pt-td-price-container{width:16.6666666667%}}@media(min-width: 1200px){.pt-td-price-container{width:20%}}@media(min-width: 1400px){.pt-td-price-container{width:25%}}.pt-td-price-buttons{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-top:.75rem}@media(min-width: 576px){.pt-td-price-buttons{flex:0 0 auto;width:50%;padding-top:0}}@media(min-width: 768px){.pt-td-price-buttons{flex:0 0 auto;width:auto;text-align:right}}.pt-td-price-buttons a{display:block}.pt-td-price .pt-td-important-text{margin-top:var(--bs-alert-margin-bottom);margin-bottom:0}.pt-td-period-note{position:relative;padding-right:4rem;padding-left:4rem;color:#ff5e00;text-align:center;background-color:#fff;border-color:#ff5e00}.pt-td-period-note::before,.pt-td-period-note::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;font-size:calc(0.9208333333rem + 1.7722222222vw)}@media(min-width: 1200px){.pt-td-period-note::before,.pt-td-period-note::after{font-size:2.25rem}}.pt-td-period-note::before,.pt-td-period-note::after{position:absolute;top:5%}.pt-td-period-note::before{left:.9375rem}.pt-td-period-note::after{right:.9375rem}.pt-ad .ce_metamodel_content .ct-hl-line-orange:not(.text-center)::after{left:0}.pt-ad .ce_metamodel_content>figure{margin-bottom:0}.pt-ad-title{margin-top:0 !important}.pt-ad-stars{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-ad-stars{font-size:1.125rem}}.pt-ad-stars{padding-bottom:.5rem;color:#e8e000}.pt-ad-intro-text{font-weight:600}@media(min-width: 768px){.pt-ad-intro-text{width:66.6666666667%}}.pt-ad-location p{font-size:0.875rem}.pt-ad-location-details{display:inline-block;margin-bottom:.5rem;padding:.0625rem .625rem;color:#fff;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase;background-color:#7d6320;border-radius:50rem;box-shadow:0 0 .375rem 0 rgba(0,0,0,.75)}.pt-ad-location-details::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:" "}.pt-ad-location-info 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:" "}.pt-ad-slider{background-color:#f4f2eb;border:4px solid #e8e000;border-radius:.625rem}@media(min-width: 768px){.pt-ad-slider{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}}.pt-ad-slider .swiper-slide a{display:flex;align-items:center;justify-content:center;height:100%}.pt-ad-slider .swiper-button-next,.pt-ad-slider .swiper-rtl .swiper-button-prev,.pt-ad-slider .swiper-button-prev,.pt-ad-slider .swiper-rtl .swiper-button-next{--swiper-navigation-sides-offset: 0.9375rem;box-sizing:content-box;padding:.5rem .2rem .4rem .25rem;background-color:rgba(255,255,255,.75);border-radius:.3125rem;box-shadow:0 0 .375rem rgba(0,0,0,.75);transition:background-color .3s ease-in-out}.pt-ad-slider .swiper-button-next::after,.pt-ad-slider .swiper-rtl .swiper-button-prev::after,.pt-ad-slider .swiper-button-prev::after,.pt-ad-slider .swiper-rtl .swiper-button-next::after{font-size:calc(0.9375rem + 2.4166666667vw)}@media(min-width: 1200px){.pt-ad-slider .swiper-button-next::after,.pt-ad-slider .swiper-rtl .swiper-button-prev::after,.pt-ad-slider .swiper-button-prev::after,.pt-ad-slider .swiper-rtl .swiper-button-next::after{font-size:2.75rem}}.pt-ad-slider .swiper-button-next:hover,.pt-ad-slider .swiper-button-next:focus,.pt-ad-slider .swiper-rtl .swiper-button-prev:hover,.pt-ad-slider .swiper-rtl .swiper-button-prev:focus,.pt-ad-slider .swiper-button-prev:hover,.pt-ad-slider .swiper-button-prev:focus,.pt-ad-slider .swiper-rtl .swiper-button-next:hover,.pt-ad-slider .swiper-rtl .swiper-button-next:focus{background-color:#fff}.pt-ad-slider .swiper-pagination{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-ad-slider .swiper-pagination{font-size:1.125rem}}.pt-ad-slider .swiper-pagination{font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif}.pt-ad-slider .swiper-pagination .inner{display:inline-block;padding:0 .4rem;background-color:rgba(255,255,255,.75);border-radius:.3125rem;box-shadow:0 0 .375rem rgba(0,0,0,.75)}.pt-ad-slider-thumbs{display:none;background-color:#f4f2eb;border:4px solid #e8e000;border-left:none;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.pt-ad-slider-thumbs::after{position:absolute;top:0;bottom:0;left:0;z-index:1;width:4px;background-color:#e8e000;content:""}@media(min-width: 768px){.pt-ad-slider-thumbs{display:block}}.pt-ad-slider-thumbs .swiper-wrapper{display:grid;grid-auto-flow:column;grid-template-rows:1fr 1fr 1fr}.pt-ad-slider-thumbs .swiper-slide{height:auto !important;transform:none;cursor:pointer;transition:opacity .3s ease-in-out}.pt-ad-slider-thumbs .swiper-slide::before{position:absolute;top:0;bottom:0;left:100%;z-index:1;width:4px;background-color:#e8e000;content:""}.pt-ad-slider-thumbs .swiper-slide::after{position:absolute;top:100%;right:0;left:0;z-index:1;height:4px;background-color:#e8e000;content:""}.pt-ad-slider-thumbs .swiper-slide picture{display:block;background-color:#000}.pt-ad-slider-thumbs .swiper-slide img{opacity:.75}.pt-ad-slider-thumbs .swiper-slide-thumb-active img{opacity:1}.pt-ad-type{margin:0;padding:0;line-height:1.5;list-style:none;display:flex;flex-wrap:wrap;align-items:flex-start;margin-bottom:.5rem}.pt-ad-type li{margin-right:.25rem;margin-bottom:.5rem;padding:.125rem .9375rem;color:#fff;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase;background-color:#bdaf89;border-radius:50rem}.pt-ad-feature-labels{display:flex}.pt-ad-feature-labels ul{margin:0;padding:0;line-height:1.5;list-style:none;display:flex;flex-wrap:wrap;align-items:flex-start;margin-bottom:.5rem}.pt-ad-feature-labels ul .pt-ad-feature-label{margin-right:.25rem;margin-bottom:.5rem;padding:.125rem .9375rem;color:#7d6320;background-color:#f4f2eb;border:1px solid #f4f2eb;border-radius:50rem}.pt-ad-feature-labels ul .pt-ad-feature-label::before{display:inline-block;font-weight:normal;font-family:pt-icons;font-style:normal;font-variant:normal;vertical-align:middle;content:"";text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:calc(0.9125rem + 1.45vw)}@media(min-width: 1200px){.pt-ad-feature-labels ul .pt-ad-feature-label::before{font-size:2rem}}.pt-ad-feature-labels ul .pt-ad-feature-label::before{padding-right:.5rem;line-height:1.2}.pt-ad-feature-labels ul .pt-ad-feature-label-aussenpool::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-balkon-terrasse::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-barsnackbar::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-bibliothek::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-fitnessraum::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-foehn::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-friseur::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-garten::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-grillplatz::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-heizung::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-innenpool::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-klimaanlage::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-kueche-kochnische::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-leihfahrraeder::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-meerblick::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-mikrowelle::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-parkplatz-gegen-gebuehr::before,.pt-ad-feature-labels ul .pt-ad-feature-label-parkplatz-gratis::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-restaurant::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-safe::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-spa-wellness::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-spielzimmer::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-tennisplatz::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-tv::before,.pt-ad-feature-labels ul .pt-ad-feature-label-lcd-tv::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-waschmaschine::before{content:""}.pt-ad-feature-labels ul .pt-ad-feature-label-wlan-gratis::before{content:""}.pt-ad-map>div{border-radius:.625rem}.pt-ad-youtube .video_container{overflow:hidden;border-radius:.625rem}.pt-ad-sustainability-labels ul{margin:0;padding:0;line-height:1.5;list-style:none;display:flex;flex-wrap:wrap;align-items:stretch;margin-bottom:.5rem}.pt-ad-sustainability-labels ul .pt-ad-sustainability-label{margin-right:.9375rem;margin-bottom:.9375rem;background-color:#fff}.pt-ad-sustainability-labels ul .pt-ad-sustainability-label a{display:flex;align-items:center;height:100%;padding:.9375rem;border:1px solid #f2e6b6;border-radius:.625rem}.pt-ad-sustainability-labels ul .pt-ad-sustainability-label a:active,.pt-ad-sustainability-labels ul .pt-ad-sustainability-label a:focus,.pt-ad-sustainability-labels ul .pt-ad-sustainability-label a:hover{border-color:#ff5e00}.pt-acd .ce_metamodel_content .ct-hl-line-orange:not(.text-center)::after{left:0}.pt-acd .ce_metamodel_content>figure{margin-bottom:0}.pt-acd #main-01-white .ce_metamodel_content{padding-right:0;padding-left:0}@media(min-width: 1200px){.pt-acd-gallery-slider .swiper-wrapper{justify-content:center}}.pt-acd-gallery-slider .swiper-slide{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);width:auto}.pt-acd-gallery-slider .swiper-button-next,.pt-acd-gallery-slider .swiper-rtl .swiper-button-prev,.pt-acd-gallery-slider .swiper-button-prev,.pt-acd-gallery-slider .swiper-rtl .swiper-button-next{--swiper-navigation-sides-offset: 0.9375rem;box-sizing:content-box;padding:.5rem .2rem .4rem .25rem;background-color:rgba(255,255,255,.75);border-radius:.3125rem;box-shadow:0 0 .375rem rgba(0,0,0,.75);transition:background-color .3s ease-in-out}.pt-acd-gallery-slider .swiper-button-next::after,.pt-acd-gallery-slider .swiper-rtl .swiper-button-prev::after,.pt-acd-gallery-slider .swiper-button-prev::after,.pt-acd-gallery-slider .swiper-rtl .swiper-button-next::after{font-size:calc(0.9375rem + 2.4166666667vw)}@media(min-width: 1200px){.pt-acd-gallery-slider .swiper-button-next::after,.pt-acd-gallery-slider .swiper-rtl .swiper-button-prev::after,.pt-acd-gallery-slider .swiper-button-prev::after,.pt-acd-gallery-slider .swiper-rtl .swiper-button-next::after{font-size:2.75rem}}.pt-acd-gallery-slider .swiper-button-next:hover,.pt-acd-gallery-slider .swiper-button-next:focus,.pt-acd-gallery-slider .swiper-rtl .swiper-button-prev:hover,.pt-acd-gallery-slider .swiper-rtl .swiper-button-prev:focus,.pt-acd-gallery-slider .swiper-button-prev:hover,.pt-acd-gallery-slider .swiper-button-prev:focus,.pt-acd-gallery-slider .swiper-rtl .swiper-button-next:hover,.pt-acd-gallery-slider .swiper-rtl .swiper-button-next:focus{background-color:#fff}.pt-acd-gallery-slider .swiper-pagination{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-acd-gallery-slider .swiper-pagination{font-size:1.125rem}}.pt-acd-gallery-slider .swiper-pagination{font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif}.pt-acd-gallery-slider .swiper-pagination .inner{display:inline-block;padding:0 .4rem;background-color:rgba(255,255,255,.75);border-radius:.3125rem;box-shadow:0 0 .375rem rgba(0,0,0,.75)}.pt-acd-gallery-slider-thumbs{display:none;background-color:#f4f2eb;border:4px solid #e8e000;border-left:none;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.pt-acd-gallery-slider-thumbs::after{position:absolute;top:0;bottom:0;left:0;z-index:1;width:4px;background-color:#e8e000;content:""}@media(min-width: 768px){.pt-acd-gallery-slider-thumbs{display:block}}.pt-acd-gallery-slider-thumbs .swiper-wrapper{display:grid;grid-auto-flow:column;grid-template-rows:1fr 1fr 1fr}.pt-acd-gallery-slider-thumbs .swiper-slide{height:auto !important;transform:none;cursor:pointer;transition:opacity .3s ease-in-out}.pt-acd-gallery-slider-thumbs .swiper-slide::before{position:absolute;top:0;bottom:0;left:100%;z-index:1;width:4px;background-color:#e8e000;content:""}.pt-acd-gallery-slider-thumbs .swiper-slide::after{position:absolute;top:100%;right:0;left:0;z-index:1;height:4px;background-color:#e8e000;content:""}.pt-acd-gallery-slider-thumbs .swiper-slide picture{display:block;background-color:#000}.pt-acd-gallery-slider-thumbs .swiper-slide img{opacity:.75}.pt-acd-gallery-slider-thumbs .swiper-slide-thumb-active img{opacity:1}.pt-acd-price{font-size:calc(0.9125rem + 1.45vw)}@media(min-width: 1200px){.pt-acd-price{font-size:2rem}}.pt-acd-price{margin-bottom:0;font-family:"Yanone Kaffeesatz Variable",system-ui,-apple-system,"Segoe UI","Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.pt-acd-price::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:" "}.pt-acd-price-info{font-size:calc(0.8791666667rem + 0.1611111111vw)}@media(min-width: 1200px){.pt-acd-price-info{font-size:1rem}}.pt-acd-price-info{padding-left:1rem}.pt-acd-price-info::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:" "}.pt-acd-highlights{margin-top:2rem}.pt-acd-highlights ul{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-acd-highlights ul{font-size:1.125rem}}.pt-acd-highlights ul{padding-left:1.5em;list-style:none}.pt-acd-highlights ul li{text-indent:-1.5em}.pt-acd-highlights ul 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.5em;color:#ff5e00}.pt-acd-services{margin-top:2rem}.pt-acd-services ul{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-acd-services ul{font-size:1.125rem}}.pt-acd-services ul{padding-left:1.5em;list-style:none}.pt-acd-services ul li{text-indent:-1.5em}.pt-acd-services ul 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.5em;color:#ff5e00}.pt-acd-tags{margin:0;padding:0;line-height:1.5;list-style:none;display:flex;flex-wrap:wrap}.pt-acd-tags li{font-size:0.875rem;margin:0 .5rem .5rem 0;padding:.0625rem .625rem;color:#fff;font-family:"Roboto Condensed Variable","Arial Narrow",sans-serif;text-transform:uppercase;background-color:#ff5e00;border-radius:50rem}.pt-acd-tags 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;content:" "}.pt-acd-title-box{font-size:calc(0.9041666667rem + 1.1277777778vw)}@media(min-width: 1200px){.pt-acd-title-box{font-size:1.75rem}}.pt-acd-title-box{margin-top:0 !important;margin-bottom:0}@media(min-width: 992px){.pt-acd-title-box{font-size:calc(0.8916666667rem + 0.6444444444vw)}}@media(min-width: 992px)and (min-width: 1200px){.pt-acd-title-box{font-size:1.375rem}}.pt-acd-location{font-size:0.875rem;margin-bottom:0;color:#128ee6}.pt-acd-location::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:" "}.pt-acd-duration{margin-top:.5rem !important}.pt-acd-duration::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:" "}.pt-acd-map ul{margin:0;padding:0;line-height:1.5;list-style:none}.pt-acd-map ul li{margin:0;padding:0}.pt-acd-map img{border-bottom-right-radius:.625rem;border-bottom-left-radius:.625rem}.pt-acd-niveau .h6::before,.pt-acd-requirements .h6::before,.pt-acd-implementation .h6::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}.pt-acd-niveau ul,.pt-acd-requirements ul,.pt-acd-implementation ul{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-acd-niveau ul,.pt-acd-requirements ul,.pt-acd-implementation ul{font-size:1.125rem}}.pt-acd-niveau ul,.pt-acd-requirements ul,.pt-acd-implementation ul{margin-bottom:0;padding-left:1em;list-style:none}.pt-acd-niveau ul li,.pt-acd-requirements ul li,.pt-acd-implementation ul li{padding-bottom:0;text-indent:-1em}.pt-acd-niveau ul li::before,.pt-acd-requirements ul li::before,.pt-acd-implementation ul li::before{float:left;width:1em;color:#ff5e00;content:"•"}.pt-acd-niveau .h6::before{content:" "}.pt-acd-niveau ul.pt-acd-niveau-difference{padding-left:1.5em}.pt-acd-niveau ul.pt-acd-niveau-difference li{text-indent:-1.5em}.pt-acd-niveau ul.pt-acd-niveau-difference li::before{width:1.5em}.pt-acd-niveau ul.pt-acd-niveau-difference li.pt-acd-niveau-difference-up::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}.pt-acd-niveau ul.pt-acd-niveau-difference li.pt-acd-niveau-difference-down::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}.pt-acd-requirements .h6::before{content:" "}.pt-acd-implementation .h6::before{content:" "}.mod_recommendationlist{padding:0}.mod_recommendationreader .back{padding-top:1rem}.mod_recommendationreader .back 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:" "}.pt-rc-testimonial{width:auto;padding-right:0;padding-left:0}.pt-rc-testimonial-entry{display:flex;height:100%}.layout_full .pt-rc-testimonial-entry{flex-wrap:wrap}.pt-rc-testimonial-entry .pt-blockquote{width:100%}.layout_full .pt-rc-testimonial-entry .pt-blockquote{margin-bottom:0}.pt-rc-testimonial-entry .blockquote{margin-bottom:.5rem}.mod_recommendationlist .pt-rc-testimonial-entry .blockquote p:not(.pt-rc-testimonial-hl){margin-bottom:0}.layout_full .pt-rc-testimonial-entry .blockquote p{margin-bottom:1rem}.layout_full .pt-rc-testimonial-entry .blockquote p:last-child{margin-bottom:0}.layout_full .pt-rc-testimonial-entry .blockquote-footer{padding-bottom:1rem}.pt-blockquote-avatar .pt-rc-testimonial-hl{padding-right:45px}.mod_recommendationreader .pt-rc-testimonial-hl{font-size:calc(0.9208333333rem + 1.7722222222vw)}@media(min-width: 1200px){.mod_recommendationreader .pt-rc-testimonial-hl{font-size:2.25rem}}.mod_recommendationreader .pt-rc-testimonial-hl{margin-top:0 !important}.pt-rc-testimonial-rating{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-rc-testimonial-rating{font-size:1.125rem}}.pt-rc-testimonial-rating-summary{margin-bottom:1rem;text-align:center}.pt-rc-testimonial-rating-star{color:#f4f2eb}#main-00-brown-100 .pt-rc-testimonial-rating-star,.layout_full .pt-rc-testimonial-rating-star{color:#fff}.pt-rc-testimonial-rating-star.active{color:#e8e000 !important}.blockquote .pt-rc-testimonial-rating{display:block;margin-bottom:.5rem}.pt-rc-testimonial-more{margin-bottom:0;padding-top:.5rem;padding-bottom:.25rem}.pt-rc-testimonial-date{font-size:0.75rem;margin-bottom:.5rem}.pt-rc-testimonial-date+p{padding-top:.5rem;border-top:1px solid #ced4da}.pt-rc-testimonial-info{margin-top:.5rem;padding-top:.75rem;border-top:1px solid #ced4da}.layout_full .pt-rc-testimonial-info{margin-bottom:0}.pt-rc-testimonial-info p{margin-bottom:0}.pt-rc-testimonial-info p+p{margin-top:.5rem}.mod_recommendationlist .pt-rc-testimonial-info-date{font-size:0.75rem}.pt-rc-testimonial-slider .my-slider .swiper-button-next,.pt-rc-testimonial-slider .my-slider .swiper-rtl .swiper-button-prev,.pt-rc-testimonial-slider .my-slider .swiper-button-prev,.pt-rc-testimonial-slider .my-slider .swiper-rtl .swiper-button-next{--swiper-navigation-sides-offset: 0.9375rem}.pt-rc-testimonial-slider .my-slider .swiper.swiper-locked .swiper-wrapper{justify-content:center}.pt-rc-testimonial-slider .my-slider .swiper:not(.swiper-locked)::before,.pt-rc-testimonial-slider .my-slider .swiper:not(.swiper-locked)::after{position:absolute;top:0;bottom:0;z-index:5;display:block;width:1.875rem;content:""}.pt-rc-testimonial-slider .my-slider .swiper:not(.swiper-locked)::before{background-image:linear-gradient(to right, rgb(244, 242, 235) 0%, rgba(244, 242, 235, 0) 100%);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#FFF4F2EB", endColorstr="#00F4F2EB", GradientType=1);left:0}.pt-rc-testimonial-slider .my-slider .swiper:not(.swiper-locked)::after{background-image:linear-gradient(to right, rgba(244, 242, 235, 0) 0%, rgb(244, 242, 235) 100%);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#00F4F2EB", endColorstr="#FFF4F2EB", GradientType=1);right:0}@media(min-width: 1200px){.pt-rc-testimonial-slider .my-slider .swiper:not(.swiper-locked){padding-right:1.875rem;padding-left:1.875rem}.pt-rc-testimonial-slider .my-slider .swiper:not(.swiper-locked)::before,.pt-rc-testimonial-slider .my-slider .swiper:not(.swiper-locked)::after{width:2.8125rem}}.pt-rc-testimonial-slider .my-slider .swiper-slide{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);height:auto}@media(min-width: 414px){.pt-rc-testimonial-slider .my-slider .swiper-slide{width:calc(400px + 1.875rem)}}.pt-rc-testimonial-slider .pt-blockquote{width:100%;margin-top:1rem;margin-bottom:1.875rem;padding:1rem 1rem;background-color:#fff}@media(min-width: 414px){.pt-rc-testimonial-slider .pt-blockquote{margin-top:30px;padding-left:70px}.pt-rc-testimonial-slider .pt-blockquote::after{color:#f4f2eb;font-size:2.8125rem}}.pt-rc-testimonial-slider .pt-blockquote.pt-blockquote-avatar{padding-right:1rem}@media(max-width: 413.98px){.pt-rc-testimonial-slider .pt-blockquote.pt-blockquote-avatar{margin-right:1rem;padding-right:1rem}}.pt-rc-testimonial-slider .pt-blockquote .image_container{top:-1rem;right:-1rem}@media(min-width: 414px){.pt-rc-testimonial-slider .pt-blockquote .image_container{top:-30px;right:-60px}}@media(min-width: 992px){.pt-rc-testimonial-list{-moz-column-count:2;column-count:2;-moz-column-gap:1.875rem;column-gap:1.875rem;orphans:1;widows:1}.pt-rc-testimonial-list .layout_latest{-moz-column-break-inside:avoid;break-inside:avoid}}.pt-rc-testimonial-reply{padding-left:60px}@media(min-width: 414px){.pt-rc-testimonial-reply{padding-left:90px}}.pt-rc-testimonial-reply .pt-blockquote{display:flex;flex-wrap:wrap;padding-left:100px;background-color:#fff;border:4px solid #f2e6b6;border-top:none;border-right:none;border-top-left-radius:0;border-bottom-right-radius:0}.pt-rc-testimonial-reply .pt-blockquote::before{position:absolute;top:-12px;left:-12px;display:block;width:20px;height:20px;background-color:#f2e6b6;border-radius:50%;content:""}.pt-rc-testimonial-reply .pt-blockquote::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;color:#f2e6b6}.pt-rc-testimonial-reply .blockquote{margin-bottom:0}.pt-rc-testimonial-reply .blockquote-footer{font-size:calc(0.8833333333rem + 0.3222222222vw)}@media(min-width: 1200px){.pt-rc-testimonial-reply .blockquote-footer{font-size:1.125rem}}.pt-rc-testimonial-reply .blockquote-footer{order:-1}
