@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap);
@import url(https://use.typekit.net/vzq3euq.css);
/*!
 * Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2025 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); /* converts a 10px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-xs {
  font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-sm {
  font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-lg {
  font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-xl {
  font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-2xl {
  font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that's relative to the scale's 16px base */
  line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it's parent */
  vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
}

.fa-width-auto {
  --fa-width: auto;
}

.fa-fw,
.fa-width-fixed {
  --fa-width: 1.25em;
}

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

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

/* Heads Up: Bordered Icons will not be supported in the future!
  - This feature will be deprecated in the next major release of Font Awesome (v8)!
  - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.
*/
/* Notes:
* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)
* --@{v.$css-prefix}-border-padding =
  ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment)
  ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)
*/
.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.0625em);
  box-sizing: var(--fa-border-box-sizing, content-box);
  padding: var(--fa-border-padding, 0.1875em 0.25em);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.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: "\e005";
}

.fa-faucet-drip {
  --fa: "\e006";
}

.fa-house-chimney-window {
  --fa: "\e00d";
}

.fa-house-signal {
  --fa: "\e012";
}

.fa-temperature-arrow-down {
  --fa: "\e03f";
}

.fa-temperature-down {
  --fa: "\e03f";
}

.fa-temperature-arrow-up {
  --fa: "\e040";
}

.fa-temperature-up {
  --fa: "\e040";
}

.fa-trailer {
  --fa: "\e041";
}

.fa-bacteria {
  --fa: "\e059";
}

.fa-bacterium {
  --fa: "\e05a";
}

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

.fa-hand-holding-medical {
  --fa: "\e05c";
}

.fa-hand-sparkles {
  --fa: "\e05d";
}

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

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

.fa-handshake-slash {
  --fa: "\e060";
}

.fa-handshake-alt-slash {
  --fa: "\e060";
}

.fa-handshake-simple-slash {
  --fa: "\e060";
}

.fa-head-side-cough {
  --fa: "\e061";
}

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

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

.fa-head-side-virus {
  --fa: "\e064";
}

.fa-house-chimney-user {
  --fa: "\e065";
}

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

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

.fa-lungs-virus {
  --fa: "\e067";
}

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

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

.fa-plane-slash {
  --fa: "\e069";
}

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

.fa-pump-soap {
  --fa: "\e06b";
}

.fa-shield-virus {
  --fa: "\e06c";
}

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

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

.fa-stopwatch-20 {
  --fa: "\e06f";
}

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

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

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

.fa-toilet-paper-slash {
  --fa: "\e072";
}

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

.fa-virus {
  --fa: "\e074";
}

.fa-virus-slash {
  --fa: "\e075";
}

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

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

.fa-vest-patches {
  --fa: "\e086";
}

.fa-arrow-trend-down {
  --fa: "\e097";
}

.fa-arrow-trend-up {
  --fa: "\e098";
}

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

.fa-austral-sign {
  --fa: "\e0a9";
}

.fa-baht-sign {
  --fa: "\e0ac";
}

.fa-bitcoin-sign {
  --fa: "\e0b4";
}

.fa-bolt-lightning {
  --fa: "\e0b7";
}

.fa-book-bookmark {
  --fa: "\e0bb";
}

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

.fa-cedi-sign {
  --fa: "\e0df";
}

.fa-chart-column {
  --fa: "\e0e3";
}

.fa-chart-gantt {
  --fa: "\e0e4";
}

.fa-clapperboard {
  --fa: "\e131";
}

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

.fa-code-compare {
  --fa: "\e13a";
}

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

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

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

.fa-cruzeiro-sign {
  --fa: "\e152";
}

.fa-display {
  --fa: "\e163";
}

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

.fa-elevator {
  --fa: "\e16d";
}

.fa-filter-circle-xmark {
  --fa: "\e17b";
}

.fa-florin-sign {
  --fa: "\e184";
}

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

.fa-franc-sign {
  --fa: "\e18f";
}

.fa-guarani-sign {
  --fa: "\e19a";
}

.fa-gun {
  --fa: "\e19b";
}

.fa-hands-clapping {
  --fa: "\e1a8";
}

.fa-house-user {
  --fa: "\e1b0";
}

.fa-home-user {
  --fa: "\e1b0";
}

.fa-indian-rupee-sign {
  --fa: "\e1bc";
}

.fa-indian-rupee {
  --fa: "\e1bc";
}

.fa-inr {
  --fa: "\e1bc";
}

.fa-kip-sign {
  --fa: "\e1c4";
}

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

.fa-litecoin-sign {
  --fa: "\e1d3";
}

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

.fa-mask-face {
  --fa: "\e1d7";
}

.fa-mill-sign {
  --fa: "\e1ed";
}

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

.fa-naira-sign {
  --fa: "\e1f6";
}

.fa-notdef {
  --fa: "\e1fe";
}

.fa-panorama {
  --fa: "\e209";
}

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

.fa-peso-sign {
  --fa: "\e222";
}

.fa-plane-up {
  --fa: "\e22d";
}

.fa-rupiah-sign {
  --fa: "\e23d";
}

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

.fa-timeline {
  --fa: "\e29c";
}

.fa-truck-front {
  --fa: "\e2b7";
}

.fa-turkish-lira-sign {
  --fa: "\e2bb";
}

.fa-try {
  --fa: "\e2bb";
}

.fa-turkish-lira {
  --fa: "\e2bb";
}

.fa-vault {
  --fa: "\e2c5";
}

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

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

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

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

.fa-wheelchair-move {
  --fa: "\e2ce";
}

.fa-wheelchair-alt {
  --fa: "\e2ce";
}

.fa-bangladeshi-taka-sign {
  --fa: "\e2e6";
}

.fa-bowl-rice {
  --fa: "\e2eb";
}

.fa-person-pregnant {
  --fa: "\e31e";
}

.fa-house-chimney {
  --fa: "\e3af";
}

.fa-home-lg {
  --fa: "\e3af";
}

.fa-house-crack {
  --fa: "\e3b1";
}

.fa-house-medical {
  --fa: "\e3b2";
}

.fa-cent-sign {
  --fa: "\e3f5";
}

.fa-plus-minus {
  --fa: "\e43c";
}

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

.fa-section {
  --fa: "\e447";
}

.fa-shrimp {
  --fa: "\e448";
}

.fa-brazilian-real-sign {
  --fa: "\e46c";
}

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

.fa-diagram-next {
  --fa: "\e476";
}

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

.fa-diagram-successor {
  --fa: "\e47a";
}

.fa-earth-oceania {
  --fa: "\e47b";
}

.fa-globe-oceania {
  --fa: "\e47b";
}

.fa-bug-slash {
  --fa: "\e490";
}

.fa-file-circle-plus {
  --fa: "\e494";
}

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

.fa-virus-covid {
  --fa: "\e4a8";
}

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

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

.fa-anchor-circle-exclamation {
  --fa: "\e4ab";
}

.fa-anchor-circle-xmark {
  --fa: "\e4ac";
}

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

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

.fa-arrow-down-up-lock {
  --fa: "\e4b0";
}

.fa-arrow-right-to-city {
  --fa: "\e4b3";
}

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

.fa-arrow-up-from-water-pump {
  --fa: "\e4b6";
}

.fa-arrow-up-right-dots {
  --fa: "\e4b7";
}

.fa-arrows-down-to-line {
  --fa: "\e4b8";
}

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

.fa-arrows-left-right-to-line {
  --fa: "\e4ba";
}

.fa-arrows-spin {
  --fa: "\e4bb";
}

.fa-arrows-split-up-and-left {
  --fa: "\e4bc";
}

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

.fa-arrows-to-dot {
  --fa: "\e4be";
}

.fa-arrows-to-eye {
  --fa: "\e4bf";
}

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

.fa-arrows-turn-to-dots {
  --fa: "\e4c1";
}

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

.fa-bore-hole {
  --fa: "\e4c3";
}

.fa-bottle-droplet {
  --fa: "\e4c4";
}

.fa-bottle-water {
  --fa: "\e4c5";
}

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

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

.fa-bridge {
  --fa: "\e4c8";
}

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

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

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

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

.fa-bridge-water {
  --fa: "\e4ce";
}

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

.fa-bugs {
  --fa: "\e4d0";
}

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

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

.fa-building-circle-exclamation {
  --fa: "\e4d3";
}

.fa-building-circle-xmark {
  --fa: "\e4d4";
}

.fa-building-flag {
  --fa: "\e4d5";
}

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

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

.fa-building-shield {
  --fa: "\e4d8";
}

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

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

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

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

.fa-car-on {
  --fa: "\e4dd";
}

.fa-car-tunnel {
  --fa: "\e4de";
}

.fa-child-combatant {
  --fa: "\e4e0";
}

.fa-child-rifle {
  --fa: "\e4e0";
}

.fa-children {
  --fa: "\e4e1";
}

.fa-circle-nodes {
  --fa: "\e4e2";
}

.fa-clipboard-question {
  --fa: "\e4e3";
}

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

.fa-computer {
  --fa: "\e4e5";
}

.fa-cubes-stacked {
  --fa: "\e4e6";
}

.fa-envelope-circle-check {
  --fa: "\e4e8";
}

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

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

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

.fa-file-circle-minus {
  --fa: "\e4ed";
}

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

.fa-file-shield {
  --fa: "\e4f0";
}

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

.fa-fish-fins {
  --fa: "\e4f2";
}

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

.fa-glass-water {
  --fa: "\e4f4";
}

.fa-glass-water-droplet {
  --fa: "\e4f5";
}

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

.fa-hand-holding-hand {
  --fa: "\e4f7";
}

.fa-handcuffs {
  --fa: "\e4f8";
}

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

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

.fa-hands-holding-circle {
  --fa: "\e4fb";
}

.fa-heart-circle-bolt {
  --fa: "\e4fc";
}

.fa-heart-circle-check {
  --fa: "\e4fd";
}

.fa-heart-circle-exclamation {
  --fa: "\e4fe";
}

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

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

.fa-heart-circle-xmark {
  --fa: "\e501";
}

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

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

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

.fa-hill-rockslide {
  --fa: "\e508";
}

.fa-house-circle-check {
  --fa: "\e509";
}

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

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

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

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

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

.fa-house-flood-water-circle-arrow-right {
  --fa: "\e50f";
}

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

.fa-house-medical-circle-check {
  --fa: "\e511";
}

.fa-house-medical-circle-exclamation {
  --fa: "\e512";
}

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

.fa-house-medical-flag {
  --fa: "\e514";
}

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

.fa-jar {
  --fa: "\e516";
}

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

.fa-jet-fighter-up {
  --fa: "\e518";
}

.fa-jug-detergent {
  --fa: "\e519";
}

.fa-kitchen-set {
  --fa: "\e51a";
}

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

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

.fa-laptop-file {
  --fa: "\e51d";
}

.fa-lines-leaning {
  --fa: "\e51e";
}

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

.fa-locust {
  --fa: "\e520";
}

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

.fa-magnifying-glass-chart {
  --fa: "\e522";
}

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

.fa-mask-ventilator {
  --fa: "\e524";
}

.fa-mattress-pillow {
  --fa: "\e525";
}

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

.fa-money-bill-transfer {
  --fa: "\e528";
}

.fa-money-bill-trend-up {
  --fa: "\e529";
}

.fa-money-bill-wheat {
  --fa: "\e52a";
}

.fa-mosquito {
  --fa: "\e52b";
}

.fa-mosquito-net {
  --fa: "\e52c";
}

.fa-mound {
  --fa: "\e52d";
}

.fa-mountain-city {
  --fa: "\e52e";
}

.fa-mountain-sun {
  --fa: "\e52f";
}

.fa-oil-well {
  --fa: "\e532";
}

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

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

.fa-people-pulling {
  --fa: "\e535";
}

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

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

.fa-person-arrow-down-to-line {
  --fa: "\e538";
}

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

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

.fa-person-burst {
  --fa: "\e53b";
}

.fa-person-cane {
  --fa: "\e53c";
}

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

.fa-person-circle-check {
  --fa: "\e53e";
}

.fa-person-circle-exclamation {
  --fa: "\e53f";
}

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

.fa-person-circle-plus {
  --fa: "\e541";
}

.fa-person-circle-question {
  --fa: "\e542";
}

.fa-person-circle-xmark {
  --fa: "\e543";
}

.fa-person-dress-burst {
  --fa: "\e544";
}

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

.fa-person-falling {
  --fa: "\e546";
}

.fa-person-falling-burst {
  --fa: "\e547";
}

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

.fa-person-harassing {
  --fa: "\e549";
}

.fa-person-military-pointing {
  --fa: "\e54a";
}

.fa-person-military-rifle {
  --fa: "\e54b";
}

.fa-person-military-to-person {
  --fa: "\e54c";
}

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

.fa-person-rifle {
  --fa: "\e54e";
}

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

.fa-person-walking-arrow-loop-left {
  --fa: "\e551";
}

.fa-person-walking-arrow-right {
  --fa: "\e552";
}

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

.fa-person-walking-luggage {
  --fa: "\e554";
}

.fa-plane-circle-check {
  --fa: "\e555";
}

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

.fa-plane-circle-xmark {
  --fa: "\e557";
}

.fa-plane-lock {
  --fa: "\e558";
}

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

.fa-plug-circle-bolt {
  --fa: "\e55b";
}

.fa-plug-circle-check {
  --fa: "\e55c";
}

.fa-plug-circle-exclamation {
  --fa: "\e55d";
}

.fa-plug-circle-minus {
  --fa: "\e55e";
}

.fa-plug-circle-plus {
  --fa: "\e55f";
}

.fa-plug-circle-xmark {
  --fa: "\e560";
}

.fa-ranking-star {
  --fa: "\e561";
}

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

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

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

.fa-road-circle-exclamation {
  --fa: "\e565";
}

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

.fa-road-lock {
  --fa: "\e567";
}

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

.fa-rug {
  --fa: "\e569";
}

.fa-sack-xmark {
  --fa: "\e56a";
}

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

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

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

.fa-school-flag {
  --fa: "\e56e";
}

.fa-school-lock {
  --fa: "\e56f";
}

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

.fa-shield-cat {
  --fa: "\e572";
}

.fa-shield-dog {
  --fa: "\e573";
}

.fa-shield-heart {
  --fa: "\e574";
}

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

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

.fa-square-virus {
  --fa: "\e578";
}

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

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

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

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

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

.fa-tarp {
  --fa: "\e57b";
}

.fa-tarp-droplet {
  --fa: "\e57c";
}

.fa-tent {
  --fa: "\e57d";
}

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

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

.fa-tent-arrow-turn-left {
  --fa: "\e580";
}

.fa-tent-arrows-down {
  --fa: "\e581";
}

.fa-tents {
  --fa: "\e582";
}

.fa-toilet-portable {
  --fa: "\e583";
}

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

.fa-tower-cell {
  --fa: "\e585";
}

.fa-tower-observation {
  --fa: "\e586";
}

.fa-tree-city {
  --fa: "\e587";
}

.fa-trowel {
  --fa: "\e589";
}

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

.fa-truck-arrow-right {
  --fa: "\e58b";
}

.fa-truck-droplet {
  --fa: "\e58c";
}

.fa-truck-field {
  --fa: "\e58d";
}

.fa-truck-field-un {
  --fa: "\e58e";
}

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

.fa-users-between-lines {
  --fa: "\e591";
}

.fa-users-line {
  --fa: "\e592";
}

.fa-users-rays {
  --fa: "\e593";
}

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

.fa-users-viewfinder {
  --fa: "\e595";
}

.fa-vial-circle-check {
  --fa: "\e596";
}

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

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

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

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

.fa-child-dress {
  --fa: "\e59c";
}

.fa-child-reaching {
  --fa: "\e59d";
}

.fa-file-circle-check {
  --fa: "\e5a0";
}

.fa-file-circle-xmark {
  --fa: "\e5a1";
}

.fa-person-through-window {
  --fa: "\e5a9";
}

.fa-plant-wilt {
  --fa: "\e5aa";
}

.fa-stapler {
  --fa: "\e5af";
}

.fa-train-tram {
  --fa: "\e5b4";
}

.fa-table-cells-column-lock {
  --fa: "\e678";
}

.fa-table-cells-row-lock {
  --fa: "\e67a";
}

.fa-web-awesome {
  --fa: "\e682";
}

.fa-thumbtack-slash {
  --fa: "\e68f";
}

.fa-thumb-tack-slash {
  --fa: "\e68f";
}

.fa-table-cells-row-unlock {
  --fa: "\e691";
}

.fa-chart-diagram {
  --fa: "\e695";
}

.fa-comment-nodes {
  --fa: "\e696";
}

.fa-file-fragment {
  --fa: "\e697";
}

.fa-file-half-dashed {
  --fa: "\e698";
}

.fa-hexagon-nodes {
  --fa: "\e699";
}

.fa-hexagon-nodes-bolt {
  --fa: "\e69a";
}

.fa-square-binary {
  --fa: "\e69b";
}

.fa-pentagon {
  --fa: "\e790";
}

.fa-non-binary {
  --fa: "\e807";
}

.fa-spiral {
  --fa: "\e80a";
}

.fa-mobile-vibrate {
  --fa: "\e816";
}

.fa-single-quote-left {
  --fa: "\e81b";
}

.fa-single-quote-right {
  --fa: "\e81c";
}

.fa-bus-side {
  --fa: "\e81d";
}

.fa-septagon {
  --fa: "\e820";
}

.fa-heptagon {
  --fa: "\e820";
}

.fa-martini-glass-empty {
  --fa: "\f000";
}

.fa-glass-martini {
  --fa: "\f000";
}

.fa-music {
  --fa: "\f001";
}

.fa-magnifying-glass {
  --fa: "\f002";
}

.fa-search {
  --fa: "\f002";
}

.fa-heart {
  --fa: "\f004";
}

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

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

.fa-user-alt {
  --fa: "\f007";
}

.fa-user-large {
  --fa: "\f007";
}

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

.fa-film-alt {
  --fa: "\f008";
}

.fa-film-simple {
  --fa: "\f008";
}

.fa-table-cells-large {
  --fa: "\f009";
}

.fa-th-large {
  --fa: "\f009";
}

.fa-table-cells {
  --fa: "\f00a";
}

.fa-th {
  --fa: "\f00a";
}

.fa-table-list {
  --fa: "\f00b";
}

.fa-th-list {
  --fa: "\f00b";
}

.fa-check {
  --fa: "\f00c";
}

.fa-xmark {
  --fa: "\f00d";
}

.fa-close {
  --fa: "\f00d";
}

.fa-multiply {
  --fa: "\f00d";
}

.fa-remove {
  --fa: "\f00d";
}

.fa-times {
  --fa: "\f00d";
}

.fa-magnifying-glass-plus {
  --fa: "\f00e";
}

.fa-search-plus {
  --fa: "\f00e";
}

.fa-magnifying-glass-minus {
  --fa: "\f010";
}

.fa-search-minus {
  --fa: "\f010";
}

.fa-power-off {
  --fa: "\f011";
}

.fa-signal {
  --fa: "\f012";
}

.fa-signal-5 {
  --fa: "\f012";
}

.fa-signal-perfect {
  --fa: "\f012";
}

.fa-gear {
  --fa: "\f013";
}

.fa-cog {
  --fa: "\f013";
}

.fa-house {
  --fa: "\f015";
}

.fa-home {
  --fa: "\f015";
}

.fa-home-alt {
  --fa: "\f015";
}

.fa-home-lg-alt {
  --fa: "\f015";
}

.fa-clock {
  --fa: "\f017";
}

.fa-clock-four {
  --fa: "\f017";
}

.fa-road {
  --fa: "\f018";
}

.fa-download {
  --fa: "\f019";
}

.fa-inbox {
  --fa: "\f01c";
}

.fa-arrow-rotate-right {
  --fa: "\f01e";
}

.fa-arrow-right-rotate {
  --fa: "\f01e";
}

.fa-arrow-rotate-forward {
  --fa: "\f01e";
}

.fa-redo {
  --fa: "\f01e";
}

.fa-arrows-rotate {
  --fa: "\f021";
}

.fa-refresh {
  --fa: "\f021";
}

.fa-sync {
  --fa: "\f021";
}

.fa-rectangle-list {
  --fa: "\f022";
}

.fa-list-alt {
  --fa: "\f022";
}

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

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

.fa-headphones {
  --fa: "\f025";
}

.fa-headphones-alt {
  --fa: "\f025";
}

.fa-headphones-simple {
  --fa: "\f025";
}

.fa-volume-off {
  --fa: "\f026";
}

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

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

.fa-volume-high {
  --fa: "\f028";
}

.fa-volume-up {
  --fa: "\f028";
}

.fa-qrcode {
  --fa: "\f029";
}

.fa-barcode {
  --fa: "\f02a";
}

.fa-tag {
  --fa: "\f02b";
}

.fa-tags {
  --fa: "\f02c";
}

.fa-book {
  --fa: "\f02d";
}

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

.fa-print {
  --fa: "\f02f";
}

.fa-camera {
  --fa: "\f030";
}

.fa-camera-alt {
  --fa: "\f030";
}

.fa-font {
  --fa: "\f031";
}

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

.fa-italic {
  --fa: "\f033";
}

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

.fa-text-width {
  --fa: "\f035";
}

.fa-align-left {
  --fa: "\f036";
}

.fa-align-center {
  --fa: "\f037";
}

.fa-align-right {
  --fa: "\f038";
}

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

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

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

.fa-outdent {
  --fa: "\f03b";
}

.fa-dedent {
  --fa: "\f03b";
}

.fa-indent {
  --fa: "\f03c";
}

.fa-video {
  --fa: "\f03d";
}

.fa-video-camera {
  --fa: "\f03d";
}

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

.fa-location-pin {
  --fa: "\f041";
}

.fa-map-marker {
  --fa: "\f041";
}

.fa-circle-half-stroke {
  --fa: "\f042";
}

.fa-adjust {
  --fa: "\f042";
}

.fa-droplet {
  --fa: "\f043";
}

.fa-tint {
  --fa: "\f043";
}

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

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

.fa-arrows-up-down-left-right {
  --fa: "\f047";
}

.fa-arrows {
  --fa: "\f047";
}

.fa-backward-step {
  --fa: "\f048";
}

.fa-step-backward {
  --fa: "\f048";
}

.fa-backward-fast {
  --fa: "\f049";
}

.fa-fast-backward {
  --fa: "\f049";
}

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

.fa-play {
  --fa: "\f04b";
}

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

.fa-stop {
  --fa: "\f04d";
}

.fa-forward {
  --fa: "\f04e";
}

.fa-forward-fast {
  --fa: "\f050";
}

.fa-fast-forward {
  --fa: "\f050";
}

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

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

.fa-eject {
  --fa: "\f052";
}

.fa-chevron-left {
  --fa: "\f053";
}

.fa-chevron-right {
  --fa: "\f054";
}

.fa-circle-plus {
  --fa: "\f055";
}

.fa-plus-circle {
  --fa: "\f055";
}

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

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

.fa-circle-xmark {
  --fa: "\f057";
}

.fa-times-circle {
  --fa: "\f057";
}

.fa-xmark-circle {
  --fa: "\f057";
}

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

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

.fa-circle-question {
  --fa: "\f059";
}

.fa-question-circle {
  --fa: "\f059";
}

.fa-circle-info {
  --fa: "\f05a";
}

.fa-info-circle {
  --fa: "\f05a";
}

.fa-crosshairs {
  --fa: "\f05b";
}

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

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

.fa-arrow-left {
  --fa: "\f060";
}

.fa-arrow-right {
  --fa: "\f061";
}

.fa-arrow-up {
  --fa: "\f062";
}

.fa-arrow-down {
  --fa: "\f063";
}

.fa-share {
  --fa: "\f064";
}

.fa-mail-forward {
  --fa: "\f064";
}

.fa-expand {
  --fa: "\f065";
}

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

.fa-minus {
  --fa: "\f068";
}

.fa-subtract {
  --fa: "\f068";
}

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

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

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

.fa-leaf {
  --fa: "\f06c";
}

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

.fa-eye {
  --fa: "\f06e";
}

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

.fa-triangle-exclamation {
  --fa: "\f071";
}

.fa-exclamation-triangle {
  --fa: "\f071";
}

.fa-warning {
  --fa: "\f071";
}

.fa-plane {
  --fa: "\f072";
}

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

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

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

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

.fa-comment {
  --fa: "\f075";
}

.fa-magnet {
  --fa: "\f076";
}

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

.fa-chevron-down {
  --fa: "\f078";
}

.fa-retweet {
  --fa: "\f079";
}

.fa-cart-shopping {
  --fa: "\f07a";
}

.fa-shopping-cart {
  --fa: "\f07a";
}

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

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

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

.fa-arrows-up-down {
  --fa: "\f07d";
}

.fa-arrows-v {
  --fa: "\f07d";
}

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

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

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

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

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

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

.fa-gears {
  --fa: "\f085";
}

.fa-cogs {
  --fa: "\f085";
}

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

.fa-star-half {
  --fa: "\f089";
}

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

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

.fa-thumbtack {
  --fa: "\f08d";
}

.fa-thumb-tack {
  --fa: "\f08d";
}

.fa-arrow-up-right-from-square {
  --fa: "\f08e";
}

.fa-external-link {
  --fa: "\f08e";
}

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

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

.fa-trophy {
  --fa: "\f091";
}

.fa-upload {
  --fa: "\f093";
}

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

.fa-phone {
  --fa: "\f095";
}

.fa-square-phone {
  --fa: "\f098";
}

.fa-phone-square {
  --fa: "\f098";
}

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

.fa-credit-card {
  --fa: "\f09d";
}

.fa-credit-card-alt {
  --fa: "\f09d";
}

.fa-rss {
  --fa: "\f09e";
}

.fa-feed {
  --fa: "\f09e";
}

.fa-hard-drive {
  --fa: "\f0a0";
}

.fa-hdd {
  --fa: "\f0a0";
}

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

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

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

.fa-hand-point-left {
  --fa: "\f0a5";
}

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

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

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

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

.fa-circle-arrow-right {
  --fa: "\f0a9";
}

.fa-arrow-circle-right {
  --fa: "\f0a9";
}

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

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

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

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

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

.fa-wrench {
  --fa: "\f0ad";
}

.fa-list-check {
  --fa: "\f0ae";
}

.fa-tasks {
  --fa: "\f0ae";
}

.fa-filter {
  --fa: "\f0b0";
}

.fa-briefcase {
  --fa: "\f0b1";
}

.fa-up-down-left-right {
  --fa: "\f0b2";
}

.fa-arrows-alt {
  --fa: "\f0b2";
}

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

.fa-link {
  --fa: "\f0c1";
}

.fa-chain {
  --fa: "\f0c1";
}

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

.fa-flask {
  --fa: "\f0c3";
}

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

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

.fa-copy {
  --fa: "\f0c5";
}

.fa-paperclip {
  --fa: "\f0c6";
}

.fa-floppy-disk {
  --fa: "\f0c7";
}

.fa-save {
  --fa: "\f0c7";
}

.fa-square {
  --fa: "\f0c8";
}

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

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

.fa-list-ul {
  --fa: "\f0ca";
}

.fa-list-dots {
  --fa: "\f0ca";
}

.fa-list-ol {
  --fa: "\f0cb";
}

.fa-list-1-2 {
  --fa: "\f0cb";
}

.fa-list-numeric {
  --fa: "\f0cb";
}

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

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

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

.fa-wand-magic {
  --fa: "\f0d0";
}

.fa-magic {
  --fa: "\f0d0";
}

.fa-truck {
  --fa: "\f0d1";
}

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

.fa-caret-down {
  --fa: "\f0d7";
}

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

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

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

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

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

.fa-sort {
  --fa: "\f0dc";
}

.fa-unsorted {
  --fa: "\f0dc";
}

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

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

.fa-sort-up {
  --fa: "\f0de";
}

.fa-sort-asc {
  --fa: "\f0de";
}

.fa-envelope {
  --fa: "\f0e0";
}

.fa-arrow-rotate-left {
  --fa: "\f0e2";
}

.fa-arrow-left-rotate {
  --fa: "\f0e2";
}

.fa-arrow-rotate-back {
  --fa: "\f0e2";
}

.fa-arrow-rotate-backward {
  --fa: "\f0e2";
}

.fa-undo {
  --fa: "\f0e2";
}

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

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

.fa-bolt {
  --fa: "\f0e7";
}

.fa-zap {
  --fa: "\f0e7";
}

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

.fa-umbrella {
  --fa: "\f0e9";
}

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

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

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

.fa-arrow-right-arrow-left {
  --fa: "\f0ec";
}

.fa-exchange {
  --fa: "\f0ec";
}

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

.fa-cloud-download {
  --fa: "\f0ed";
}

.fa-cloud-download-alt {
  --fa: "\f0ed";
}

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

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

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

.fa-user-doctor {
  --fa: "\f0f0";
}

.fa-user-md {
  --fa: "\f0f0";
}

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

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

.fa-bell {
  --fa: "\f0f3";
}

.fa-mug-saucer {
  --fa: "\f0f4";
}

.fa-coffee {
  --fa: "\f0f4";
}

.fa-hospital {
  --fa: "\f0f8";
}

.fa-hospital-alt {
  --fa: "\f0f8";
}

.fa-hospital-wide {
  --fa: "\f0f8";
}

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

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

.fa-suitcase-medical {
  --fa: "\f0fa";
}

.fa-medkit {
  --fa: "\f0fa";
}

.fa-jet-fighter {
  --fa: "\f0fb";
}

.fa-fighter-jet {
  --fa: "\f0fb";
}

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

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

.fa-square-h {
  --fa: "\f0fd";
}

.fa-h-square {
  --fa: "\f0fd";
}

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

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

.fa-angles-left {
  --fa: "\f100";
}

.fa-angle-double-left {
  --fa: "\f100";
}

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

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

.fa-angles-up {
  --fa: "\f102";
}

.fa-angle-double-up {
  --fa: "\f102";
}

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

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

.fa-angle-left {
  --fa: "\f104";
}

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

.fa-angle-up {
  --fa: "\f106";
}

.fa-angle-down {
  --fa: "\f107";
}

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

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

.fa-mobile-button {
  --fa: "\f10b";
}

.fa-quote-left {
  --fa: "\f10d";
}

.fa-quote-left-alt {
  --fa: "\f10d";
}

.fa-quote-right {
  --fa: "\f10e";
}

.fa-quote-right-alt {
  --fa: "\f10e";
}

.fa-spinner {
  --fa: "\f110";
}

.fa-circle {
  --fa: "\f111";
}

.fa-face-smile {
  --fa: "\f118";
}

.fa-smile {
  --fa: "\f118";
}

.fa-face-frown {
  --fa: "\f119";
}

.fa-frown {
  --fa: "\f119";
}

.fa-face-meh {
  --fa: "\f11a";
}

.fa-meh {
  --fa: "\f11a";
}

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

.fa-keyboard {
  --fa: "\f11c";
}

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

.fa-terminal {
  --fa: "\f120";
}

.fa-code {
  --fa: "\f121";
}

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

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

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

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

.fa-code-branch {
  --fa: "\f126";
}

.fa-link-slash {
  --fa: "\f127";
}

.fa-chain-broken {
  --fa: "\f127";
}

.fa-chain-slash {
  --fa: "\f127";
}

.fa-unlink {
  --fa: "\f127";
}

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

.fa-superscript {
  --fa: "\f12b";
}

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

.fa-eraser {
  --fa: "\f12d";
}

.fa-puzzle-piece {
  --fa: "\f12e";
}

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

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

.fa-shield {
  --fa: "\f132";
}

.fa-shield-blank {
  --fa: "\f132";
}

.fa-calendar {
  --fa: "\f133";
}

.fa-fire-extinguisher {
  --fa: "\f134";
}

.fa-rocket {
  --fa: "\f135";
}

.fa-circle-chevron-left {
  --fa: "\f137";
}

.fa-chevron-circle-left {
  --fa: "\f137";
}

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

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

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

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

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

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

.fa-anchor {
  --fa: "\f13d";
}

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

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

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

.fa-ellipsis {
  --fa: "\f141";
}

.fa-ellipsis-h {
  --fa: "\f141";
}

.fa-ellipsis-vertical {
  --fa: "\f142";
}

.fa-ellipsis-v {
  --fa: "\f142";
}

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

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

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

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

.fa-ticket {
  --fa: "\f145";
}

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

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

.fa-arrow-turn-up {
  --fa: "\f148";
}

.fa-level-up {
  --fa: "\f148";
}

.fa-arrow-turn-down {
  --fa: "\f149";
}

.fa-level-down {
  --fa: "\f149";
}

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

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

.fa-square-pen {
  --fa: "\f14b";
}

.fa-pen-square {
  --fa: "\f14b";
}

.fa-pencil-square {
  --fa: "\f14b";
}

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

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

.fa-share-from-square {
  --fa: "\f14d";
}

.fa-share-square {
  --fa: "\f14d";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-rupee-sign {
  --fa: "\f156";
}

.fa-rupee {
  --fa: "\f156";
}

.fa-yen-sign {
  --fa: "\f157";
}

.fa-cny {
  --fa: "\f157";
}

.fa-jpy {
  --fa: "\f157";
}

.fa-rmb {
  --fa: "\f157";
}

.fa-yen {
  --fa: "\f157";
}

.fa-ruble-sign {
  --fa: "\f158";
}

.fa-rouble {
  --fa: "\f158";
}

.fa-rub {
  --fa: "\f158";
}

.fa-ruble {
  --fa: "\f158";
}

.fa-won-sign {
  --fa: "\f159";
}

.fa-krw {
  --fa: "\f159";
}

.fa-won {
  --fa: "\f159";
}

.fa-file {
  --fa: "\f15b";
}

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

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

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

.fa-arrow-down-a-z {
  --fa: "\f15d";
}

.fa-sort-alpha-asc {
  --fa: "\f15d";
}

.fa-sort-alpha-down {
  --fa: "\f15d";
}

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

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

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

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

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

.fa-arrow-up-wide-short {
  --fa: "\f161";
}

.fa-sort-amount-up {
  --fa: "\f161";
}

.fa-arrow-down-1-9 {
  --fa: "\f162";
}

.fa-sort-numeric-asc {
  --fa: "\f162";
}

.fa-sort-numeric-down {
  --fa: "\f162";
}

.fa-arrow-up-1-9 {
  --fa: "\f163";
}

.fa-sort-numeric-up {
  --fa: "\f163";
}

.fa-thumbs-up {
  --fa: "\f164";
}

.fa-thumbs-down {
  --fa: "\f165";
}

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

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

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

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

.fa-arrow-left-long {
  --fa: "\f177";
}

.fa-long-arrow-left {
  --fa: "\f177";
}

.fa-arrow-right-long {
  --fa: "\f178";
}

.fa-long-arrow-right {
  --fa: "\f178";
}

.fa-person-dress {
  --fa: "\f182";
}

.fa-female {
  --fa: "\f182";
}

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

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

.fa-sun {
  --fa: "\f185";
}

.fa-moon {
  --fa: "\f186";
}

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

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

.fa-bug {
  --fa: "\f188";
}

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

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

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

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

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

.fa-lira-sign {
  --fa: "\f195";
}

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

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

.fa-square-envelope {
  --fa: "\f199";
}

.fa-envelope-square {
  --fa: "\f199";
}

.fa-building-columns {
  --fa: "\f19c";
}

.fa-bank {
  --fa: "\f19c";
}

.fa-institution {
  --fa: "\f19c";
}

.fa-museum {
  --fa: "\f19c";
}

.fa-university {
  --fa: "\f19c";
}

.fa-graduation-cap {
  --fa: "\f19d";
}

.fa-mortar-board {
  --fa: "\f19d";
}

.fa-language {
  --fa: "\f1ab";
}

.fa-fax {
  --fa: "\f1ac";
}

.fa-building {
  --fa: "\f1ad";
}

.fa-child {
  --fa: "\f1ae";
}

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

.fa-cube {
  --fa: "\f1b2";
}

.fa-cubes {
  --fa: "\f1b3";
}

.fa-recycle {
  --fa: "\f1b8";
}

.fa-car {
  --fa: "\f1b9";
}

.fa-automobile {
  --fa: "\f1b9";
}

.fa-taxi {
  --fa: "\f1ba";
}

.fa-cab {
  --fa: "\f1ba";
}

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

.fa-database {
  --fa: "\f1c0";
}

.fa-file-pdf {
  --fa: "\f1c1";
}

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

.fa-file-excel {
  --fa: "\f1c3";
}

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

.fa-file-image {
  --fa: "\f1c5";
}

.fa-file-zipper {
  --fa: "\f1c6";
}

.fa-file-archive {
  --fa: "\f1c6";
}

.fa-file-audio {
  --fa: "\f1c7";
}

.fa-file-video {
  --fa: "\f1c8";
}

.fa-file-code {
  --fa: "\f1c9";
}

.fa-life-ring {
  --fa: "\f1cd";
}

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

.fa-paper-plane {
  --fa: "\f1d8";
}

.fa-clock-rotate-left {
  --fa: "\f1da";
}

.fa-history {
  --fa: "\f1da";
}

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

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

.fa-paragraph {
  --fa: "\f1dd";
}

.fa-sliders {
  --fa: "\f1de";
}

.fa-sliders-h {
  --fa: "\f1de";
}

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

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

.fa-square-share-nodes {
  --fa: "\f1e1";
}

.fa-share-alt-square {
  --fa: "\f1e1";
}

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

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

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

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

.fa-tty {
  --fa: "\f1e4";
}

.fa-teletype {
  --fa: "\f1e4";
}

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

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

.fa-newspaper {
  --fa: "\f1ea";
}

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

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

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

.fa-calculator {
  --fa: "\f1ec";
}

.fa-bell-slash {
  --fa: "\f1f6";
}

.fa-trash {
  --fa: "\f1f8";
}

.fa-copyright {
  --fa: "\f1f9";
}

.fa-eye-dropper {
  --fa: "\f1fb";
}

.fa-eye-dropper-empty {
  --fa: "\f1fb";
}

.fa-eyedropper {
  --fa: "\f1fb";
}

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

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

.fa-cake-candles {
  --fa: "\f1fd";
}

.fa-birthday-cake {
  --fa: "\f1fd";
}

.fa-cake {
  --fa: "\f1fd";
}

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

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

.fa-chart-pie {
  --fa: "\f200";
}

.fa-pie-chart {
  --fa: "\f200";
}

.fa-chart-line {
  --fa: "\f201";
}

.fa-line-chart {
  --fa: "\f201";
}

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

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

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

.fa-bus {
  --fa: "\f207";
}

.fa-closed-captioning {
  --fa: "\f20a";
}

.fa-shekel-sign {
  --fa: "\f20b";
}

.fa-ils {
  --fa: "\f20b";
}

.fa-shekel {
  --fa: "\f20b";
}

.fa-sheqel {
  --fa: "\f20b";
}

.fa-sheqel-sign {
  --fa: "\f20b";
}

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

.fa-cart-arrow-down {
  --fa: "\f218";
}

.fa-diamond {
  --fa: "\f219";
}

.fa-ship {
  --fa: "\f21a";
}

.fa-user-secret {
  --fa: "\f21b";
}

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

.fa-street-view {
  --fa: "\f21d";
}

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

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

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

.fa-mars {
  --fa: "\f222";
}

.fa-mercury {
  --fa: "\f223";
}

.fa-mars-and-venus {
  --fa: "\f224";
}

.fa-transgender {
  --fa: "\f225";
}

.fa-transgender-alt {
  --fa: "\f225";
}

.fa-venus-double {
  --fa: "\f226";
}

.fa-mars-double {
  --fa: "\f227";
}

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

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

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

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

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

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

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

.fa-genderless {
  --fa: "\f22d";
}

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

.fa-user-plus {
  --fa: "\f234";
}

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

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

.fa-bed {
  --fa: "\f236";
}

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

.fa-train-subway {
  --fa: "\f239";
}

.fa-subway {
  --fa: "\f239";
}

.fa-battery-full {
  --fa: "\f240";
}

.fa-battery {
  --fa: "\f240";
}

.fa-battery-5 {
  --fa: "\f240";
}

.fa-battery-three-quarters {
  --fa: "\f241";
}

.fa-battery-4 {
  --fa: "\f241";
}

.fa-battery-half {
  --fa: "\f242";
}

.fa-battery-3 {
  --fa: "\f242";
}

.fa-battery-quarter {
  --fa: "\f243";
}

.fa-battery-2 {
  --fa: "\f243";
}

.fa-battery-empty {
  --fa: "\f244";
}

.fa-battery-0 {
  --fa: "\f244";
}

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

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

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

.fa-object-group {
  --fa: "\f247";
}

.fa-object-ungroup {
  --fa: "\f248";
}

.fa-note-sticky {
  --fa: "\f249";
}

.fa-sticky-note {
  --fa: "\f249";
}

.fa-clone {
  --fa: "\f24d";
}

.fa-scale-balanced {
  --fa: "\f24e";
}

.fa-balance-scale {
  --fa: "\f24e";
}

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

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

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

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

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

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

.fa-hourglass {
  --fa: "\f254";
}

.fa-hourglass-empty {
  --fa: "\f254";
}

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

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

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

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

.fa-hand-scissors {
  --fa: "\f257";
}

.fa-hand-lizard {
  --fa: "\f258";
}

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

.fa-hand-pointer {
  --fa: "\f25a";
}

.fa-hand-peace {
  --fa: "\f25b";
}

.fa-trademark {
  --fa: "\f25c";
}

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

.fa-tv {
  --fa: "\f26c";
}

.fa-television {
  --fa: "\f26c";
}

.fa-tv-alt {
  --fa: "\f26c";
}

.fa-calendar-plus {
  --fa: "\f271";
}

.fa-calendar-minus {
  --fa: "\f272";
}

.fa-calendar-xmark {
  --fa: "\f273";
}

.fa-calendar-times {
  --fa: "\f273";
}

.fa-calendar-check {
  --fa: "\f274";
}

.fa-industry {
  --fa: "\f275";
}

.fa-map-pin {
  --fa: "\f276";
}

.fa-signs-post {
  --fa: "\f277";
}

.fa-map-signs {
  --fa: "\f277";
}

.fa-map {
  --fa: "\f279";
}

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

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

.fa-circle-pause {
  --fa: "\f28b";
}

.fa-pause-circle {
  --fa: "\f28b";
}

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

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

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

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

.fa-basket-shopping {
  --fa: "\f291";
}

.fa-shopping-basket {
  --fa: "\f291";
}

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

.fa-person-walking-with-cane {
  --fa: "\f29d";
}

.fa-blind {
  --fa: "\f29d";
}

.fa-audio-description {
  --fa: "\f29e";
}

.fa-phone-volume {
  --fa: "\f2a0";
}

.fa-volume-control-phone {
  --fa: "\f2a0";
}

.fa-braille {
  --fa: "\f2a1";
}

.fa-ear-listen {
  --fa: "\f2a2";
}

.fa-assistive-listening-systems {
  --fa: "\f2a2";
}

.fa-hands-asl-interpreting {
  --fa: "\f2a3";
}

.fa-american-sign-language-interpreting {
  --fa: "\f2a3";
}

.fa-asl-interpreting {
  --fa: "\f2a3";
}

.fa-hands-american-sign-language-interpreting {
  --fa: "\f2a3";
}

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

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

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

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

.fa-hands {
  --fa: "\f2a7";
}

.fa-sign-language {
  --fa: "\f2a7";
}

.fa-signing {
  --fa: "\f2a7";
}

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

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

.fa-font-awesome {
  --fa: "\f2b4";
}

.fa-font-awesome-flag {
  --fa: "\f2b4";
}

.fa-font-awesome-logo-full {
  --fa: "\f2b4";
}

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

.fa-handshake-alt {
  --fa: "\f2b5";
}

.fa-handshake-simple {
  --fa: "\f2b5";
}

.fa-envelope-open {
  --fa: "\f2b6";
}

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

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

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

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

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

.fa-circle-user {
  --fa: "\f2bd";
}

.fa-user-circle {
  --fa: "\f2bd";
}

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

.fa-id-card {
  --fa: "\f2c2";
}

.fa-drivers-license {
  --fa: "\f2c2";
}

.fa-temperature-full {
  --fa: "\f2c7";
}

.fa-temperature-4 {
  --fa: "\f2c7";
}

.fa-thermometer-4 {
  --fa: "\f2c7";
}

.fa-thermometer-full {
  --fa: "\f2c7";
}

.fa-temperature-three-quarters {
  --fa: "\f2c8";
}

.fa-temperature-3 {
  --fa: "\f2c8";
}

.fa-thermometer-3 {
  --fa: "\f2c8";
}

.fa-thermometer-three-quarters {
  --fa: "\f2c8";
}

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

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

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

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

.fa-temperature-quarter {
  --fa: "\f2ca";
}

.fa-temperature-1 {
  --fa: "\f2ca";
}

.fa-thermometer-1 {
  --fa: "\f2ca";
}

.fa-thermometer-quarter {
  --fa: "\f2ca";
}

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

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

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

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

.fa-shower {
  --fa: "\f2cc";
}

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

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

.fa-podcast {
  --fa: "\f2ce";
}

.fa-window-maximize {
  --fa: "\f2d0";
}

.fa-window-minimize {
  --fa: "\f2d1";
}

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

.fa-square-xmark {
  --fa: "\f2d3";
}

.fa-times-square {
  --fa: "\f2d3";
}

.fa-xmark-square {
  --fa: "\f2d3";
}

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

.fa-snowflake {
  --fa: "\f2dc";
}

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

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

.fa-utensils {
  --fa: "\f2e7";
}

.fa-cutlery {
  --fa: "\f2e7";
}

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

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

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

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

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

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

.fa-rotate {
  --fa: "\f2f1";
}

.fa-sync-alt {
  --fa: "\f2f1";
}

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

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

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

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

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

.fa-rotate-right {
  --fa: "\f2f9";
}

.fa-redo-alt {
  --fa: "\f2f9";
}

.fa-rotate-forward {
  --fa: "\f2f9";
}

.fa-poo {
  --fa: "\f2fe";
}

.fa-images {
  --fa: "\f302";
}

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

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

.fa-pen {
  --fa: "\f304";
}

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

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

.fa-octagon {
  --fa: "\f306";
}

.fa-down-long {
  --fa: "\f309";
}

.fa-long-arrow-alt-down {
  --fa: "\f309";
}

.fa-left-long {
  --fa: "\f30a";
}

.fa-long-arrow-alt-left {
  --fa: "\f30a";
}

.fa-right-long {
  --fa: "\f30b";
}

.fa-long-arrow-alt-right {
  --fa: "\f30b";
}

.fa-up-long {
  --fa: "\f30c";
}

.fa-long-arrow-alt-up {
  --fa: "\f30c";
}

.fa-hexagon {
  --fa: "\f312";
}

.fa-file-pen {
  --fa: "\f31c";
}

.fa-file-edit {
  --fa: "\f31c";
}

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

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

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

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

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

.fa-up-down {
  --fa: "\f338";
}

.fa-arrows-alt-v {
  --fa: "\f338";
}

.fa-alarm-clock {
  --fa: "\f34e";
}

.fa-circle-down {
  --fa: "\f358";
}

.fa-arrow-alt-circle-down {
  --fa: "\f358";
}

.fa-circle-left {
  --fa: "\f359";
}

.fa-arrow-alt-circle-left {
  --fa: "\f359";
}

.fa-circle-right {
  --fa: "\f35a";
}

.fa-arrow-alt-circle-right {
  --fa: "\f35a";
}

.fa-circle-up {
  --fa: "\f35b";
}

.fa-arrow-alt-circle-up {
  --fa: "\f35b";
}

.fa-up-right-from-square {
  --fa: "\f35d";
}

.fa-external-link-alt {
  --fa: "\f35d";
}

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

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

.fa-right-left {
  --fa: "\f362";
}

.fa-exchange-alt {
  --fa: "\f362";
}

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

.fa-code-commit {
  --fa: "\f386";
}

.fa-code-merge {
  --fa: "\f387";
}

.fa-desktop {
  --fa: "\f390";
}

.fa-desktop-alt {
  --fa: "\f390";
}

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

.fa-turn-down {
  --fa: "\f3be";
}

.fa-level-down-alt {
  --fa: "\f3be";
}

.fa-turn-up {
  --fa: "\f3bf";
}

.fa-level-up-alt {
  --fa: "\f3bf";
}

.fa-lock-open {
  --fa: "\f3c1";
}

.fa-location-dot {
  --fa: "\f3c5";
}

.fa-map-marker-alt {
  --fa: "\f3c5";
}

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

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

.fa-mobile-screen-button {
  --fa: "\f3cd";
}

.fa-mobile-alt {
  --fa: "\f3cd";
}

.fa-mobile {
  --fa: "\f3ce";
}

.fa-mobile-android {
  --fa: "\f3ce";
}

.fa-mobile-phone {
  --fa: "\f3ce";
}

.fa-mobile-screen {
  --fa: "\f3cf";
}

.fa-mobile-android-alt {
  --fa: "\f3cf";
}

.fa-money-bill-1 {
  --fa: "\f3d1";
}

.fa-money-bill-alt {
  --fa: "\f3d1";
}

.fa-phone-slash {
  --fa: "\f3dd";
}

.fa-image-portrait {
  --fa: "\f3e0";
}

.fa-portrait {
  --fa: "\f3e0";
}

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

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

.fa-shield-halved {
  --fa: "\f3ed";
}

.fa-shield-alt {
  --fa: "\f3ed";
}

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

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

.fa-tablet {
  --fa: "\f3fb";
}

.fa-tablet-android {
  --fa: "\f3fb";
}

.fa-ticket-simple {
  --fa: "\f3ff";
}

.fa-ticket-alt {
  --fa: "\f3ff";
}

.fa-rectangle-xmark {
  --fa: "\f410";
}

.fa-rectangle-times {
  --fa: "\f410";
}

.fa-times-rectangle {
  --fa: "\f410";
}

.fa-window-close {
  --fa: "\f410";
}

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

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

.fa-up-right-and-down-left-from-center {
  --fa: "\f424";
}

.fa-expand-alt {
  --fa: "\f424";
}

.fa-baseball-bat-ball {
  --fa: "\f432";
}

.fa-baseball {
  --fa: "\f433";
}

.fa-baseball-ball {
  --fa: "\f433";
}

.fa-basketball {
  --fa: "\f434";
}

.fa-basketball-ball {
  --fa: "\f434";
}

.fa-bowling-ball {
  --fa: "\f436";
}

.fa-chess {
  --fa: "\f439";
}

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

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

.fa-chess-king {
  --fa: "\f43f";
}

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

.fa-chess-pawn {
  --fa: "\f443";
}

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

.fa-chess-rook {
  --fa: "\f447";
}

.fa-dumbbell {
  --fa: "\f44b";
}

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

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

.fa-golf-ball-tee {
  --fa: "\f450";
}

.fa-golf-ball {
  --fa: "\f450";
}

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

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

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

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

.fa-square-full {
  --fa: "\f45c";
}

.fa-table-tennis-paddle-ball {
  --fa: "\f45d";
}

.fa-ping-pong-paddle-ball {
  --fa: "\f45d";
}

.fa-table-tennis {
  --fa: "\f45d";
}

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

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

.fa-hand-dots {
  --fa: "\f461";
}

.fa-allergies {
  --fa: "\f461";
}

.fa-bandage {
  --fa: "\f462";
}

.fa-band-aid {
  --fa: "\f462";
}

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

.fa-boxes-stacked {
  --fa: "\f468";
}

.fa-boxes {
  --fa: "\f468";
}

.fa-boxes-alt {
  --fa: "\f468";
}

.fa-briefcase-medical {
  --fa: "\f469";
}

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

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

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

.fa-clipboard-check {
  --fa: "\f46c";
}

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

.fa-person-dots-from-line {
  --fa: "\f470";
}

.fa-diagnoses {
  --fa: "\f470";
}

.fa-dna {
  --fa: "\f471";
}

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

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

.fa-cart-flatbed {
  --fa: "\f474";
}

.fa-dolly-flatbed {
  --fa: "\f474";
}

.fa-file-medical {
  --fa: "\f477";
}

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

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

.fa-kit-medical {
  --fa: "\f479";
}

.fa-first-aid {
  --fa: "\f479";
}

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

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

.fa-id-card-clip {
  --fa: "\f47f";
}

.fa-id-card-alt {
  --fa: "\f47f";
}

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

.fa-pallet {
  --fa: "\f482";
}

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

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

.fa-prescription-bottle-medical {
  --fa: "\f486";
}

.fa-prescription-bottle-alt {
  --fa: "\f486";
}

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

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

.fa-truck-fast {
  --fa: "\f48b";
}

.fa-shipping-fast {
  --fa: "\f48b";
}

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

.fa-syringe {
  --fa: "\f48e";
}

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

.fa-thermometer {
  --fa: "\f491";
}

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

.fa-vials {
  --fa: "\f493";
}

.fa-warehouse {
  --fa: "\f494";
}

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

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

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

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

.fa-comment-dots {
  --fa: "\f4ad";
}

.fa-commenting {
  --fa: "\f4ad";
}

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

.fa-couch {
  --fa: "\f4b8";
}

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

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

.fa-dove {
  --fa: "\f4ba";
}

.fa-hand-holding {
  --fa: "\f4bd";
}

.fa-hand-holding-heart {
  --fa: "\f4be";
}

.fa-hand-holding-dollar {
  --fa: "\f4c0";
}

.fa-hand-holding-usd {
  --fa: "\f4c0";
}

.fa-hand-holding-droplet {
  --fa: "\f4c1";
}

.fa-hand-holding-water {
  --fa: "\f4c1";
}

.fa-hands-holding {
  --fa: "\f4c2";
}

.fa-handshake-angle {
  --fa: "\f4c4";
}

.fa-hands-helping {
  --fa: "\f4c4";
}

.fa-parachute-box {
  --fa: "\f4cd";
}

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

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

.fa-piggy-bank {
  --fa: "\f4d3";
}

.fa-ribbon {
  --fa: "\f4d6";
}

.fa-route {
  --fa: "\f4d7";
}

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

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

.fa-sign-hanging {
  --fa: "\f4d9";
}

.fa-sign {
  --fa: "\f4d9";
}

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

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

.fa-tape {
  --fa: "\f4db";
}

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

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

.fa-truck-moving {
  --fa: "\f4df";
}

.fa-video-slash {
  --fa: "\f4e2";
}

.fa-wine-glass {
  --fa: "\f4e3";
}

.fa-user-astronaut {
  --fa: "\f4fb";
}

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

.fa-user-clock {
  --fa: "\f4fd";
}

.fa-user-gear {
  --fa: "\f4fe";
}

.fa-user-cog {
  --fa: "\f4fe";
}

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

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

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

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

.fa-user-graduate {
  --fa: "\f501";
}

.fa-user-lock {
  --fa: "\f502";
}

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

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

.fa-user-shield {
  --fa: "\f505";
}

.fa-user-slash {
  --fa: "\f506";
}

.fa-user-alt-slash {
  --fa: "\f506";
}

.fa-user-large-slash {
  --fa: "\f506";
}

.fa-user-tag {
  --fa: "\f507";
}

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

.fa-users-gear {
  --fa: "\f509";
}

.fa-users-cog {
  --fa: "\f509";
}

.fa-scale-unbalanced {
  --fa: "\f515";
}

.fa-balance-scale-left {
  --fa: "\f515";
}

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

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

.fa-blender {
  --fa: "\f517";
}

.fa-book-open {
  --fa: "\f518";
}

.fa-tower-broadcast {
  --fa: "\f519";
}

.fa-broadcast-tower {
  --fa: "\f519";
}

.fa-broom {
  --fa: "\f51a";
}

.fa-chalkboard {
  --fa: "\f51b";
}

.fa-blackboard {
  --fa: "\f51b";
}

.fa-chalkboard-user {
  --fa: "\f51c";
}

.fa-chalkboard-teacher {
  --fa: "\f51c";
}

.fa-church {
  --fa: "\f51d";
}

.fa-coins {
  --fa: "\f51e";
}

.fa-compact-disc {
  --fa: "\f51f";
}

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

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

.fa-dice {
  --fa: "\f522";
}

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

.fa-dice-four {
  --fa: "\f524";
}

.fa-dice-one {
  --fa: "\f525";
}

.fa-dice-six {
  --fa: "\f526";
}

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

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

.fa-divide {
  --fa: "\f529";
}

.fa-door-closed {
  --fa: "\f52a";
}

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

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

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

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

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

.fa-greater-than-equal {
  --fa: "\f532";
}

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

.fa-infinity {
  --fa: "\f534";
}

.fa-kiwi-bird {
  --fa: "\f535";
}

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

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

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

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

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

.fa-money-bill-1-wave {
  --fa: "\f53b";
}

.fa-money-bill-wave-alt {
  --fa: "\f53b";
}

.fa-money-check {
  --fa: "\f53c";
}

.fa-money-check-dollar {
  --fa: "\f53d";
}

.fa-money-check-alt {
  --fa: "\f53d";
}

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

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

.fa-square-parking {
  --fa: "\f540";
}

.fa-parking {
  --fa: "\f540";
}

.fa-diagram-project {
  --fa: "\f542";
}

.fa-project-diagram {
  --fa: "\f542";
}

.fa-receipt {
  --fa: "\f543";
}

.fa-robot {
  --fa: "\f544";
}

.fa-ruler {
  --fa: "\f545";
}

.fa-ruler-combined {
  --fa: "\f546";
}

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

.fa-ruler-vertical {
  --fa: "\f548";
}

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

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

.fa-shoe-prints {
  --fa: "\f54b";
}

.fa-skull {
  --fa: "\f54c";
}

.fa-ban-smoking {
  --fa: "\f54d";
}

.fa-smoking-ban {
  --fa: "\f54d";
}

.fa-store {
  --fa: "\f54e";
}

.fa-shop {
  --fa: "\f54f";
}

.fa-store-alt {
  --fa: "\f54f";
}

.fa-bars-staggered {
  --fa: "\f550";
}

.fa-reorder {
  --fa: "\f550";
}

.fa-stream {
  --fa: "\f550";
}

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

.fa-toolbox {
  --fa: "\f552";
}

.fa-shirt {
  --fa: "\f553";
}

.fa-t-shirt {
  --fa: "\f553";
}

.fa-tshirt {
  --fa: "\f553";
}

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

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

.fa-wallet {
  --fa: "\f555";
}

.fa-face-angry {
  --fa: "\f556";
}

.fa-angry {
  --fa: "\f556";
}

.fa-archway {
  --fa: "\f557";
}

.fa-book-atlas {
  --fa: "\f558";
}

.fa-atlas {
  --fa: "\f558";
}

.fa-award {
  --fa: "\f559";
}

.fa-delete-left {
  --fa: "\f55a";
}

.fa-backspace {
  --fa: "\f55a";
}

.fa-bezier-curve {
  --fa: "\f55b";
}

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

.fa-brush {
  --fa: "\f55d";
}

.fa-bus-simple {
  --fa: "\f55e";
}

.fa-bus-alt {
  --fa: "\f55e";
}

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

.fa-check-double {
  --fa: "\f560";
}

.fa-martini-glass-citrus {
  --fa: "\f561";
}

.fa-cocktail {
  --fa: "\f561";
}

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

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

.fa-cookie {
  --fa: "\f563";
}

.fa-cookie-bite {
  --fa: "\f564";
}

.fa-crop-simple {
  --fa: "\f565";
}

.fa-crop-alt {
  --fa: "\f565";
}

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

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

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

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

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

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

.fa-drum {
  --fa: "\f569";
}

.fa-drum-steelpan {
  --fa: "\f56a";
}

.fa-feather-pointed {
  --fa: "\f56b";
}

.fa-feather-alt {
  --fa: "\f56b";
}

.fa-file-contract {
  --fa: "\f56c";
}

.fa-file-arrow-down {
  --fa: "\f56d";
}

.fa-file-download {
  --fa: "\f56d";
}

.fa-file-export {
  --fa: "\f56e";
}

.fa-arrow-right-from-file {
  --fa: "\f56e";
}

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

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

.fa-file-invoice {
  --fa: "\f570";
}

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

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

.fa-file-signature {
  --fa: "\f573";
}

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

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

.fa-fill {
  --fa: "\f575";
}

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

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

.fa-fish {
  --fa: "\f578";
}

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

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

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

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

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

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

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

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

.fa-earth-americas {
  --fa: "\f57d";
}

.fa-earth {
  --fa: "\f57d";
}

.fa-earth-america {
  --fa: "\f57d";
}

.fa-globe-americas {
  --fa: "\f57d";
}

.fa-earth-asia {
  --fa: "\f57e";
}

.fa-globe-asia {
  --fa: "\f57e";
}

.fa-face-grimace {
  --fa: "\f57f";
}

.fa-grimace {
  --fa: "\f57f";
}

.fa-face-grin {
  --fa: "\f580";
}

.fa-grin {
  --fa: "\f580";
}

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

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

.fa-face-grin-beam {
  --fa: "\f582";
}

.fa-grin-beam {
  --fa: "\f582";
}

.fa-face-grin-beam-sweat {
  --fa: "\f583";
}

.fa-grin-beam-sweat {
  --fa: "\f583";
}

.fa-face-grin-hearts {
  --fa: "\f584";
}

.fa-grin-hearts {
  --fa: "\f584";
}

.fa-face-grin-squint {
  --fa: "\f585";
}

.fa-grin-squint {
  --fa: "\f585";
}

.fa-face-grin-squint-tears {
  --fa: "\f586";
}

.fa-grin-squint-tears {
  --fa: "\f586";
}

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

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

.fa-face-grin-tears {
  --fa: "\f588";
}

.fa-grin-tears {
  --fa: "\f588";
}

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

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

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

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

.fa-face-grin-tongue-wink {
  --fa: "\f58b";
}

.fa-grin-tongue-wink {
  --fa: "\f58b";
}

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

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

.fa-grip {
  --fa: "\f58d";
}

.fa-grid-horizontal {
  --fa: "\f58d";
}

.fa-grip-horizontal {
  --fa: "\f58d";
}

.fa-grip-vertical {
  --fa: "\f58e";
}

.fa-grid-vertical {
  --fa: "\f58e";
}

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

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

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

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

.fa-hotel {
  --fa: "\f594";
}

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

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

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

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

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

.fa-face-kiss-wink-heart {
  --fa: "\f598";
}

.fa-kiss-wink-heart {
  --fa: "\f598";
}

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

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

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

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

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

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

.fa-face-laugh-wink {
  --fa: "\f59c";
}

.fa-laugh-wink {
  --fa: "\f59c";
}

.fa-cart-flatbed-suitcase {
  --fa: "\f59d";
}

.fa-luggage-cart {
  --fa: "\f59d";
}

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

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

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

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

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

.fa-medal {
  --fa: "\f5a2";
}

.fa-face-meh-blank {
  --fa: "\f5a4";
}

.fa-meh-blank {
  --fa: "\f5a4";
}

.fa-face-rolling-eyes {
  --fa: "\f5a5";
}

.fa-meh-rolling-eyes {
  --fa: "\f5a5";
}

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

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

.fa-paint-roller {
  --fa: "\f5aa";
}

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

.fa-pen-fancy {
  --fa: "\f5ac";
}

.fa-pen-nib {
  --fa: "\f5ad";
}

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

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

.fa-plane-arrival {
  --fa: "\f5af";
}

.fa-plane-departure {
  --fa: "\f5b0";
}

.fa-prescription {
  --fa: "\f5b1";
}

.fa-face-sad-cry {
  --fa: "\f5b3";
}

.fa-sad-cry {
  --fa: "\f5b3";
}

.fa-face-sad-tear {
  --fa: "\f5b4";
}

.fa-sad-tear {
  --fa: "\f5b4";
}

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

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

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

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

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

.fa-solar-panel {
  --fa: "\f5ba";
}

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

.fa-splotch {
  --fa: "\f5bc";
}

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

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

.fa-star-half-stroke {
  --fa: "\f5c0";
}

.fa-star-half-alt {
  --fa: "\f5c0";
}

.fa-suitcase-rolling {
  --fa: "\f5c1";
}

.fa-face-surprise {
  --fa: "\f5c2";
}

.fa-surprise {
  --fa: "\f5c2";
}

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

.fa-person-swimming {
  --fa: "\f5c4";
}

.fa-swimmer {
  --fa: "\f5c4";
}

.fa-water-ladder {
  --fa: "\f5c5";
}

.fa-ladder-water {
  --fa: "\f5c5";
}

.fa-swimming-pool {
  --fa: "\f5c5";
}

.fa-droplet-slash {
  --fa: "\f5c7";
}

.fa-tint-slash {
  --fa: "\f5c7";
}

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

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

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

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

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

.fa-wine-glass-empty {
  --fa: "\f5ce";
}

.fa-wine-glass-alt {
  --fa: "\f5ce";
}

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

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

.fa-apple-whole {
  --fa: "\f5d1";
}

.fa-apple-alt {
  --fa: "\f5d1";
}

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

.fa-bone {
  --fa: "\f5d7";
}

.fa-book-open-reader {
  --fa: "\f5da";
}

.fa-book-reader {
  --fa: "\f5da";
}

.fa-brain {
  --fa: "\f5dc";
}

.fa-car-rear {
  --fa: "\f5de";
}

.fa-car-alt {
  --fa: "\f5de";
}

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

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

.fa-car-burst {
  --fa: "\f5e1";
}

.fa-car-crash {
  --fa: "\f5e1";
}

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

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

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

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

.fa-draw-polygon {
  --fa: "\f5ee";
}

.fa-vector-polygon {
  --fa: "\f5ee";
}

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

.fa-layer-group {
  --fa: "\f5fd";
}

.fa-location-crosshairs {
  --fa: "\f601";
}

.fa-location {
  --fa: "\f601";
}

.fa-lungs {
  --fa: "\f604";
}

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

.fa-oil-can {
  --fa: "\f613";
}

.fa-poop {
  --fa: "\f619";
}

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

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

.fa-star-of-life {
  --fa: "\f621";
}

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

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

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

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

.fa-gauge-high {
  --fa: "\f625";
}

.fa-tachometer-alt {
  --fa: "\f625";
}

.fa-tachometer-alt-fast {
  --fa: "\f625";
}

.fa-gauge-simple {
  --fa: "\f629";
}

.fa-gauge-simple-med {
  --fa: "\f629";
}

.fa-tachometer-average {
  --fa: "\f629";
}

.fa-gauge-simple-high {
  --fa: "\f62a";
}

.fa-tachometer {
  --fa: "\f62a";
}

.fa-tachometer-fast {
  --fa: "\f62a";
}

.fa-teeth {
  --fa: "\f62e";
}

.fa-teeth-open {
  --fa: "\f62f";
}

.fa-masks-theater {
  --fa: "\f630";
}

.fa-theater-masks {
  --fa: "\f630";
}

.fa-traffic-light {
  --fa: "\f637";
}

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

.fa-truck-pickup {
  --fa: "\f63c";
}

.fa-rectangle-ad {
  --fa: "\f641";
}

.fa-ad {
  --fa: "\f641";
}

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

.fa-book-bible {
  --fa: "\f647";
}

.fa-bible {
  --fa: "\f647";
}

.fa-business-time {
  --fa: "\f64a";
}

.fa-briefcase-clock {
  --fa: "\f64a";
}

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

.fa-comment-dollar {
  --fa: "\f651";
}

.fa-comments-dollar {
  --fa: "\f653";
}

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

.fa-dharmachakra {
  --fa: "\f655";
}

.fa-envelope-open-text {
  --fa: "\f658";
}

.fa-folder-minus {
  --fa: "\f65d";
}

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

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

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

.fa-gopuram {
  --fa: "\f664";
}

.fa-hamsa {
  --fa: "\f665";
}

.fa-bahai {
  --fa: "\f666";
}

.fa-haykal {
  --fa: "\f666";
}

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

.fa-book-journal-whills {
  --fa: "\f66a";
}

.fa-journal-whills {
  --fa: "\f66a";
}

.fa-kaaba {
  --fa: "\f66b";
}

.fa-khanda {
  --fa: "\f66d";
}

.fa-landmark {
  --fa: "\f66f";
}

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

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

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

.fa-mosque {
  --fa: "\f678";
}

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

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

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

.fa-peace {
  --fa: "\f67c";
}

.fa-place-of-worship {
  --fa: "\f67f";
}

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

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

.fa-square-poll-horizontal {
  --fa: "\f682";
}

.fa-poll-h {
  --fa: "\f682";
}

.fa-person-praying {
  --fa: "\f683";
}

.fa-pray {
  --fa: "\f683";
}

.fa-hands-praying {
  --fa: "\f684";
}

.fa-praying-hands {
  --fa: "\f684";
}

.fa-book-quran {
  --fa: "\f687";
}

.fa-quran {
  --fa: "\f687";
}

.fa-magnifying-glass-dollar {
  --fa: "\f688";
}

.fa-search-dollar {
  --fa: "\f688";
}

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

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

.fa-socks {
  --fa: "\f696";
}

.fa-square-root-variable {
  --fa: "\f698";
}

.fa-square-root-alt {
  --fa: "\f698";
}

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

.fa-star-of-david {
  --fa: "\f69a";
}

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

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

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

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

.fa-vihara {
  --fa: "\f6a7";
}

.fa-volume-xmark {
  --fa: "\f6a9";
}

.fa-volume-mute {
  --fa: "\f6a9";
}

.fa-volume-times {
  --fa: "\f6a9";
}

.fa-yin-yang {
  --fa: "\f6ad";
}

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

.fa-book-skull {
  --fa: "\f6b7";
}

.fa-book-dead {
  --fa: "\f6b7";
}

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

.fa-cat {
  --fa: "\f6be";
}

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

.fa-cloud-moon {
  --fa: "\f6c3";
}

.fa-cloud-sun {
  --fa: "\f6c4";
}

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

.fa-dice-d20 {
  --fa: "\f6cf";
}

.fa-dice-d6 {
  --fa: "\f6d1";
}

.fa-dog {
  --fa: "\f6d3";
}

.fa-dragon {
  --fa: "\f6d5";
}

.fa-drumstick-bite {
  --fa: "\f6d7";
}

.fa-dungeon {
  --fa: "\f6d9";
}

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

.fa-hand-fist {
  --fa: "\f6de";
}

.fa-fist-raised {
  --fa: "\f6de";
}

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

.fa-hammer {
  --fa: "\f6e3";
}

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

.fa-hat-wizard {
  --fa: "\f6e8";
}

.fa-person-hiking {
  --fa: "\f6ec";
}

.fa-hiking {
  --fa: "\f6ec";
}

.fa-hippo {
  --fa: "\f6ed";
}

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

.fa-house-chimney-crack {
  --fa: "\f6f1";
}

.fa-house-damage {
  --fa: "\f6f1";
}

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

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

.fa-mask {
  --fa: "\f6fa";
}

.fa-mountain {
  --fa: "\f6fc";
}

.fa-network-wired {
  --fa: "\f6ff";
}

.fa-otter {
  --fa: "\f700";
}

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

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

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

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

.fa-skull-crossbones {
  --fa: "\f714";
}

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

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

.fa-toilet-paper {
  --fa: "\f71e";
}

.fa-toilet-paper-alt {
  --fa: "\f71e";
}

.fa-toilet-paper-blank {
  --fa: "\f71e";
}

.fa-tractor {
  --fa: "\f722";
}

.fa-user-injured {
  --fa: "\f728";
}

.fa-vr-cardboard {
  --fa: "\f729";
}

.fa-wand-sparkles {
  --fa: "\f72b";
}

.fa-wind {
  --fa: "\f72e";
}

.fa-wine-bottle {
  --fa: "\f72f";
}

.fa-cloud-meatball {
  --fa: "\f73b";
}

.fa-cloud-moon-rain {
  --fa: "\f73c";
}

.fa-cloud-rain {
  --fa: "\f73d";
}

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

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

.fa-democrat {
  --fa: "\f747";
}

.fa-flag-usa {
  --fa: "\f74d";
}

.fa-hurricane {
  --fa: "\f751";
}

.fa-landmark-dome {
  --fa: "\f752";
}

.fa-landmark-alt {
  --fa: "\f752";
}

.fa-meteor {
  --fa: "\f753";
}

.fa-person-booth {
  --fa: "\f756";
}

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

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

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

.fa-republican {
  --fa: "\f75e";
}

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

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

.fa-temperature-low {
  --fa: "\f76b";
}

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

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

.fa-tornado {
  --fa: "\f76f";
}

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

.fa-check-to-slot {
  --fa: "\f772";
}

.fa-vote-yea {
  --fa: "\f772";
}

.fa-water {
  --fa: "\f773";
}

.fa-baby {
  --fa: "\f77c";
}

.fa-baby-carriage {
  --fa: "\f77d";
}

.fa-carriage-baby {
  --fa: "\f77d";
}

.fa-biohazard {
  --fa: "\f780";
}

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

.fa-calendar-day {
  --fa: "\f783";
}

.fa-calendar-week {
  --fa: "\f784";
}

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

.fa-carrot {
  --fa: "\f787";
}

.fa-cash-register {
  --fa: "\f788";
}

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

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

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

.fa-dumpster-fire {
  --fa: "\f794";
}

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

.fa-gifts {
  --fa: "\f79c";
}

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

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

.fa-whiskey-glass {
  --fa: "\f7a0";
}

.fa-glass-whiskey {
  --fa: "\f7a0";
}

.fa-earth-europe {
  --fa: "\f7a2";
}

.fa-globe-europe {
  --fa: "\f7a2";
}

.fa-grip-lines {
  --fa: "\f7a4";
}

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

.fa-guitar {
  --fa: "\f7a6";
}

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

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

.fa-holly-berry {
  --fa: "\f7aa";
}

.fa-horse-head {
  --fa: "\f7ab";
}

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

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

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

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

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

.fa-circle-radiation {
  --fa: "\f7ba";
}

.fa-radiation-alt {
  --fa: "\f7ba";
}

.fa-restroom {
  --fa: "\f7bd";
}

.fa-satellite {
  --fa: "\f7bf";
}

.fa-satellite-dish {
  --fa: "\f7c0";
}

.fa-sd-card {
  --fa: "\f7c2";
}

.fa-sim-card {
  --fa: "\f7c4";
}

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

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

.fa-person-skiing {
  --fa: "\f7c9";
}

.fa-skiing {
  --fa: "\f7c9";
}

.fa-person-skiing-nordic {
  --fa: "\f7ca";
}

.fa-skiing-nordic {
  --fa: "\f7ca";
}

.fa-sleigh {
  --fa: "\f7cc";
}

.fa-comment-sms {
  --fa: "\f7cd";
}

.fa-sms {
  --fa: "\f7cd";
}

.fa-person-snowboarding {
  --fa: "\f7ce";
}

.fa-snowboarding {
  --fa: "\f7ce";
}

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

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

.fa-tenge-sign {
  --fa: "\f7d7";
}

.fa-tenge {
  --fa: "\f7d7";
}

.fa-toilet {
  --fa: "\f7d8";
}

.fa-screwdriver-wrench {
  --fa: "\f7d9";
}

.fa-tools {
  --fa: "\f7d9";
}

.fa-cable-car {
  --fa: "\f7da";
}

.fa-tram {
  --fa: "\f7da";
}

.fa-fire-flame-curved {
  --fa: "\f7e4";
}

.fa-fire-alt {
  --fa: "\f7e4";
}

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

.fa-book-medical {
  --fa: "\f7e6";
}

.fa-bread-slice {
  --fa: "\f7ec";
}

.fa-cheese {
  --fa: "\f7ef";
}

.fa-house-chimney-medical {
  --fa: "\f7f2";
}

.fa-clinic-medical {
  --fa: "\f7f2";
}

.fa-clipboard-user {
  --fa: "\f7f3";
}

.fa-comment-medical {
  --fa: "\f7f5";
}

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

.fa-disease {
  --fa: "\f7fa";
}

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

.fa-folder-tree {
  --fa: "\f802";
}

.fa-burger {
  --fa: "\f805";
}

.fa-hamburger {
  --fa: "\f805";
}

.fa-hand-middle-finger {
  --fa: "\f806";
}

.fa-helmet-safety {
  --fa: "\f807";
}

.fa-hard-hat {
  --fa: "\f807";
}

.fa-hat-hard {
  --fa: "\f807";
}

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

.fa-hotdog {
  --fa: "\f80f";
}

.fa-ice-cream {
  --fa: "\f810";
}

.fa-laptop-medical {
  --fa: "\f812";
}

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

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

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

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

.fa-book-tanakh {
  --fa: "\f827";
}

.fa-tanakh {
  --fa: "\f827";
}

.fa-bars-progress {
  --fa: "\f828";
}

.fa-tasks-alt {
  --fa: "\f828";
}

.fa-trash-arrow-up {
  --fa: "\f829";
}

.fa-trash-restore {
  --fa: "\f829";
}

.fa-trash-can-arrow-up {
  --fa: "\f82a";
}

.fa-trash-restore-alt {
  --fa: "\f82a";
}

.fa-user-nurse {
  --fa: "\f82f";
}

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

.fa-person-biking {
  --fa: "\f84a";
}

.fa-biking {
  --fa: "\f84a";
}

.fa-border-all {
  --fa: "\f84c";
}

.fa-border-none {
  --fa: "\f850";
}

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

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

.fa-person-digging {
  --fa: "\f85e";
}

.fa-digging {
  --fa: "\f85e";
}

.fa-fan {
  --fa: "\f863";
}

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

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

.fa-phone-flip {
  --fa: "\f879";
}

.fa-phone-alt {
  --fa: "\f879";
}

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

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

.fa-photo-film {
  --fa: "\f87c";
}

.fa-photo-video {
  --fa: "\f87c";
}

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

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

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

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

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

.fa-arrow-up-z-a {
  --fa: "\f882";
}

.fa-sort-alpha-up-alt {
  --fa: "\f882";
}

.fa-arrow-down-short-wide {
  --fa: "\f884";
}

.fa-sort-amount-desc {
  --fa: "\f884";
}

.fa-sort-amount-down-alt {
  --fa: "\f884";
}

.fa-arrow-up-short-wide {
  --fa: "\f885";
}

.fa-sort-amount-up-alt {
  --fa: "\f885";
}

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

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

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

.fa-arrow-up-9-1 {
  --fa: "\f887";
}

.fa-sort-numeric-up-alt {
  --fa: "\f887";
}

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

.fa-voicemail {
  --fa: "\f897";
}

.fa-hat-cowboy {
  --fa: "\f8c0";
}

.fa-hat-cowboy-side {
  --fa: "\f8c1";
}

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

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

.fa-radio {
  --fa: "\f8d7";
}

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

.fa-walkie-talkie {
  --fa: "\f8ef";
}

.fa-caravan {
  --fa: "\f8ff";
}

/*!
 * Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2025 Fonticons, Inc.
 */
:root, :host {
  --fa-family-classic: "Font Awesome 7 Free";
  --fa-font-solid: normal 900 1em/1 var(--fa-family-classic);
  /* deprecated: this older custom property will be removed next major release */
  --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("../webfonts/fa-solid-900.woff2");
}
.fas {
  --fa-family: var(--fa-family-classic);
  --fa-style: 900;
}

.fa-classic {
  --fa-family: var(--fa-family-classic);
}

.fa-solid {
  --fa-style: 900;
}
/*!
 * Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2025 Fonticons, Inc.
 */
:root, :host {
  --fa-family-classic: "Font Awesome 7 Free";
  --fa-font-regular: normal 400 1em/1 var(--fa-family-classic);
  /* deprecated: this older custom property will be removed next major release */
  --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("../webfonts/fa-regular-400.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.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2025 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("../webfonts/fa-brands-400.woff2");
}
.fab,
.fa-brands,
.fa-classic.fa-brands {
  --fa-family: var(--fa-family-brands);
  --fa-style: 400;
}

.fa-firefox-browser {
  --fa: "\e007";
}

.fa-ideal {
  --fa: "\e013";
}

.fa-microblog {
  --fa: "\e01a";
}

.fa-square-pied-piper {
  --fa: "\e01e";
}

.fa-pied-piper-square {
  --fa: "\e01e";
}

.fa-unity {
  --fa: "\e049";
}

.fa-dailymotion {
  --fa: "\e052";
}

.fa-square-instagram {
  --fa: "\e055";
}

.fa-instagram-square {
  --fa: "\e055";
}

.fa-mixer {
  --fa: "\e056";
}

.fa-shopify {
  --fa: "\e057";
}

.fa-deezer {
  --fa: "\e077";
}

.fa-edge-legacy {
  --fa: "\e078";
}

.fa-google-pay {
  --fa: "\e079";
}

.fa-rust {
  --fa: "\e07a";
}

.fa-tiktok {
  --fa: "\e07b";
}

.fa-unsplash {
  --fa: "\e07c";
}

.fa-cloudflare {
  --fa: "\e07d";
}

.fa-guilded {
  --fa: "\e07e";
}

.fa-hive {
  --fa: "\e07f";
}

.fa-42-group {
  --fa: "\e080";
}

.fa-innosoft {
  --fa: "\e080";
}

.fa-instalod {
  --fa: "\e081";
}

.fa-octopus-deploy {
  --fa: "\e082";
}

.fa-perbyte {
  --fa: "\e083";
}

.fa-uncharted {
  --fa: "\e084";
}

.fa-watchman-monitoring {
  --fa: "\e087";
}

.fa-wodu {
  --fa: "\e088";
}

.fa-wirsindhandwerk {
  --fa: "\e2d0";
}

.fa-wsh {
  --fa: "\e2d0";
}

.fa-bots {
  --fa: "\e340";
}

.fa-cmplid {
  --fa: "\e360";
}

.fa-bilibili {
  --fa: "\e3d9";
}

.fa-golang {
  --fa: "\e40f";
}

.fa-pix {
  --fa: "\e43a";
}

.fa-sitrox {
  --fa: "\e44a";
}

.fa-hashnode {
  --fa: "\e499";
}

.fa-meta {
  --fa: "\e49b";
}

.fa-padlet {
  --fa: "\e4a0";
}

.fa-nfc-directional {
  --fa: "\e530";
}

.fa-nfc-symbol {
  --fa: "\e531";
}

.fa-screenpal {
  --fa: "\e570";
}

.fa-space-awesome {
  --fa: "\e5ac";
}

.fa-square-font-awesome {
  --fa: "\e5ad";
}

.fa-square-gitlab {
  --fa: "\e5ae";
}

.fa-gitlab-square {
  --fa: "\e5ae";
}

.fa-odysee {
  --fa: "\e5c6";
}

.fa-stubber {
  --fa: "\e5c7";
}

.fa-debian {
  --fa: "\e60b";
}

.fa-shoelace {
  --fa: "\e60c";
}

.fa-threads {
  --fa: "\e618";
}

.fa-square-threads {
  --fa: "\e619";
}

.fa-square-x-twitter {
  --fa: "\e61a";
}

.fa-x-twitter {
  --fa: "\e61b";
}

.fa-opensuse {
  --fa: "\e62b";
}

.fa-letterboxd {
  --fa: "\e62d";
}

.fa-square-letterboxd {
  --fa: "\e62e";
}

.fa-mintbit {
  --fa: "\e62f";
}

.fa-google-scholar {
  --fa: "\e63b";
}

.fa-brave {
  --fa: "\e63c";
}

.fa-brave-reverse {
  --fa: "\e63d";
}

.fa-pixiv {
  --fa: "\e640";
}

.fa-upwork {
  --fa: "\e641";
}

.fa-webflow {
  --fa: "\e65c";
}

.fa-signal-messenger {
  --fa: "\e663";
}

.fa-bluesky {
  --fa: "\e671";
}

.fa-jxl {
  --fa: "\e67b";
}

.fa-square-upwork {
  --fa: "\e67c";
}

.fa-web-awesome {
  --fa: "\e682";
}

.fa-square-web-awesome {
  --fa: "\e683";
}

.fa-square-web-awesome-stroke {
  --fa: "\e684";
}

.fa-dart-lang {
  --fa: "\e693";
}

.fa-flutter {
  --fa: "\e694";
}

.fa-files-pinwheel {
  --fa: "\e69f";
}

.fa-css {
  --fa: "\e6a2";
}

.fa-square-bluesky {
  --fa: "\e6a3";
}

.fa-openai {
  --fa: "\e7cf";
}

.fa-square-linkedin {
  --fa: "\e7d0";
}

.fa-cash-app {
  --fa: "\e7d4";
}

.fa-disqus {
  --fa: "\e7d5";
}

.fa-eleventy {
  --fa: "\e7d6";
}

.fa-11ty {
  --fa: "\e7d6";
}

.fa-kakao-talk {
  --fa: "\e7d7";
}

.fa-linktree {
  --fa: "\e7d8";
}

.fa-notion {
  --fa: "\e7d9";
}

.fa-pandora {
  --fa: "\e7da";
}

.fa-pixelfed {
  --fa: "\e7db";
}

.fa-tidal {
  --fa: "\e7dc";
}

.fa-vsco {
  --fa: "\e7dd";
}

.fa-w3c {
  --fa: "\e7de";
}

.fa-lumon {
  --fa: "\e7e2";
}

.fa-lumon-drop {
  --fa: "\e7e3";
}

.fa-square-figma {
  --fa: "\e7e4";
}

.fa-tex {
  --fa: "\e7ff";
}

.fa-duolingo {
  --fa: "\e812";
}

.fa-square-twitter {
  --fa: "\f081";
}

.fa-twitter-square {
  --fa: "\f081";
}

.fa-square-facebook {
  --fa: "\f082";
}

.fa-facebook-square {
  --fa: "\f082";
}

.fa-linkedin {
  --fa: "\f08c";
}

.fa-square-github {
  --fa: "\f092";
}

.fa-github-square {
  --fa: "\f092";
}

.fa-twitter {
  --fa: "\f099";
}

.fa-facebook {
  --fa: "\f09a";
}

.fa-github {
  --fa: "\f09b";
}

.fa-pinterest {
  --fa: "\f0d2";
}

.fa-square-pinterest {
  --fa: "\f0d3";
}

.fa-pinterest-square {
  --fa: "\f0d3";
}

.fa-square-google-plus {
  --fa: "\f0d4";
}

.fa-google-plus-square {
  --fa: "\f0d4";
}

.fa-google-plus-g {
  --fa: "\f0d5";
}

.fa-linkedin-in {
  --fa: "\f0e1";
}

.fa-github-alt {
  --fa: "\f113";
}

.fa-maxcdn {
  --fa: "\f136";
}

.fa-html5 {
  --fa: "\f13b";
}

.fa-css3 {
  --fa: "\f13c";
}

.fa-btc {
  --fa: "\f15a";
}

.fa-youtube {
  --fa: "\f167";
}

.fa-xing {
  --fa: "\f168";
}

.fa-square-xing {
  --fa: "\f169";
}

.fa-xing-square {
  --fa: "\f169";
}

.fa-dropbox {
  --fa: "\f16b";
}

.fa-stack-overflow {
  --fa: "\f16c";
}

.fa-instagram {
  --fa: "\f16d";
}

.fa-flickr {
  --fa: "\f16e";
}

.fa-adn {
  --fa: "\f170";
}

.fa-bitbucket {
  --fa: "\f171";
}

.fa-tumblr {
  --fa: "\f173";
}

.fa-square-tumblr {
  --fa: "\f174";
}

.fa-tumblr-square {
  --fa: "\f174";
}

.fa-apple {
  --fa: "\f179";
}

.fa-windows {
  --fa: "\f17a";
}

.fa-android {
  --fa: "\f17b";
}

.fa-linux {
  --fa: "\f17c";
}

.fa-dribbble {
  --fa: "\f17d";
}

.fa-skype {
  --fa: "\f17e";
}

.fa-foursquare {
  --fa: "\f180";
}

.fa-trello {
  --fa: "\f181";
}

.fa-gratipay {
  --fa: "\f184";
}

.fa-vk {
  --fa: "\f189";
}

.fa-weibo {
  --fa: "\f18a";
}

.fa-renren {
  --fa: "\f18b";
}

.fa-pagelines {
  --fa: "\f18c";
}

.fa-stack-exchange {
  --fa: "\f18d";
}

.fa-square-vimeo {
  --fa: "\f194";
}

.fa-vimeo-square {
  --fa: "\f194";
}

.fa-slack {
  --fa: "\f198";
}

.fa-slack-hash {
  --fa: "\f198";
}

.fa-wordpress {
  --fa: "\f19a";
}

.fa-openid {
  --fa: "\f19b";
}

.fa-yahoo {
  --fa: "\f19e";
}

.fa-google {
  --fa: "\f1a0";
}

.fa-reddit {
  --fa: "\f1a1";
}

.fa-square-reddit {
  --fa: "\f1a2";
}

.fa-reddit-square {
  --fa: "\f1a2";
}

.fa-stumbleupon-circle {
  --fa: "\f1a3";
}

.fa-stumbleupon {
  --fa: "\f1a4";
}

.fa-delicious {
  --fa: "\f1a5";
}

.fa-digg {
  --fa: "\f1a6";
}

.fa-pied-piper-pp {
  --fa: "\f1a7";
}

.fa-pied-piper-alt {
  --fa: "\f1a8";
}

.fa-drupal {
  --fa: "\f1a9";
}

.fa-joomla {
  --fa: "\f1aa";
}

.fa-behance {
  --fa: "\f1b4";
}

.fa-square-behance {
  --fa: "\f1b5";
}

.fa-behance-square {
  --fa: "\f1b5";
}

.fa-steam {
  --fa: "\f1b6";
}

.fa-square-steam {
  --fa: "\f1b7";
}

.fa-steam-square {
  --fa: "\f1b7";
}

.fa-spotify {
  --fa: "\f1bc";
}

.fa-deviantart {
  --fa: "\f1bd";
}

.fa-soundcloud {
  --fa: "\f1be";
}

.fa-vine {
  --fa: "\f1ca";
}

.fa-codepen {
  --fa: "\f1cb";
}

.fa-jsfiddle {
  --fa: "\f1cc";
}

.fa-rebel {
  --fa: "\f1d0";
}

.fa-empire {
  --fa: "\f1d1";
}

.fa-square-git {
  --fa: "\f1d2";
}

.fa-git-square {
  --fa: "\f1d2";
}

.fa-git {
  --fa: "\f1d3";
}

.fa-hacker-news {
  --fa: "\f1d4";
}

.fa-tencent-weibo {
  --fa: "\f1d5";
}

.fa-qq {
  --fa: "\f1d6";
}

.fa-weixin {
  --fa: "\f1d7";
}

.fa-slideshare {
  --fa: "\f1e7";
}

.fa-twitch {
  --fa: "\f1e8";
}

.fa-yelp {
  --fa: "\f1e9";
}

.fa-paypal {
  --fa: "\f1ed";
}

.fa-google-wallet {
  --fa: "\f1ee";
}

.fa-cc-visa {
  --fa: "\f1f0";
}

.fa-cc-mastercard {
  --fa: "\f1f1";
}

.fa-cc-discover {
  --fa: "\f1f2";
}

.fa-cc-amex {
  --fa: "\f1f3";
}

.fa-cc-paypal {
  --fa: "\f1f4";
}

.fa-cc-stripe {
  --fa: "\f1f5";
}

.fa-lastfm {
  --fa: "\f202";
}

.fa-square-lastfm {
  --fa: "\f203";
}

.fa-lastfm-square {
  --fa: "\f203";
}

.fa-ioxhost {
  --fa: "\f208";
}

.fa-angellist {
  --fa: "\f209";
}

.fa-buysellads {
  --fa: "\f20d";
}

.fa-connectdevelop {
  --fa: "\f20e";
}

.fa-dashcube {
  --fa: "\f210";
}

.fa-forumbee {
  --fa: "\f211";
}

.fa-leanpub {
  --fa: "\f212";
}

.fa-sellsy {
  --fa: "\f213";
}

.fa-shirtsinbulk {
  --fa: "\f214";
}

.fa-simplybuilt {
  --fa: "\f215";
}

.fa-skyatlas {
  --fa: "\f216";
}

.fa-pinterest-p {
  --fa: "\f231";
}

.fa-whatsapp {
  --fa: "\f232";
}

.fa-viacoin {
  --fa: "\f237";
}

.fa-medium {
  --fa: "\f23a";
}

.fa-medium-m {
  --fa: "\f23a";
}

.fa-y-combinator {
  --fa: "\f23b";
}

.fa-optin-monster {
  --fa: "\f23c";
}

.fa-opencart {
  --fa: "\f23d";
}

.fa-expeditedssl {
  --fa: "\f23e";
}

.fa-cc-jcb {
  --fa: "\f24b";
}

.fa-cc-diners-club {
  --fa: "\f24c";
}

.fa-creative-commons {
  --fa: "\f25e";
}

.fa-gg {
  --fa: "\f260";
}

.fa-gg-circle {
  --fa: "\f261";
}

.fa-odnoklassniki {
  --fa: "\f263";
}

.fa-square-odnoklassniki {
  --fa: "\f264";
}

.fa-odnoklassniki-square {
  --fa: "\f264";
}

.fa-get-pocket {
  --fa: "\f265";
}

.fa-wikipedia-w {
  --fa: "\f266";
}

.fa-safari {
  --fa: "\f267";
}

.fa-chrome {
  --fa: "\f268";
}

.fa-firefox {
  --fa: "\f269";
}

.fa-opera {
  --fa: "\f26a";
}

.fa-internet-explorer {
  --fa: "\f26b";
}

.fa-contao {
  --fa: "\f26d";
}

.fa-500px {
  --fa: "\f26e";
}

.fa-amazon {
  --fa: "\f270";
}

.fa-houzz {
  --fa: "\f27c";
}

.fa-vimeo-v {
  --fa: "\f27d";
}

.fa-black-tie {
  --fa: "\f27e";
}

.fa-fonticons {
  --fa: "\f280";
}

.fa-reddit-alien {
  --fa: "\f281";
}

.fa-edge {
  --fa: "\f282";
}

.fa-codiepie {
  --fa: "\f284";
}

.fa-modx {
  --fa: "\f285";
}

.fa-fort-awesome {
  --fa: "\f286";
}

.fa-usb {
  --fa: "\f287";
}

.fa-product-hunt {
  --fa: "\f288";
}

.fa-mixcloud {
  --fa: "\f289";
}

.fa-scribd {
  --fa: "\f28a";
}

.fa-bluetooth {
  --fa: "\f293";
}

.fa-bluetooth-b {
  --fa: "\f294";
}

.fa-gitlab {
  --fa: "\f296";
}

.fa-wpbeginner {
  --fa: "\f297";
}

.fa-wpforms {
  --fa: "\f298";
}

.fa-envira {
  --fa: "\f299";
}

.fa-glide {
  --fa: "\f2a5";
}

.fa-glide-g {
  --fa: "\f2a6";
}

.fa-viadeo {
  --fa: "\f2a9";
}

.fa-square-viadeo {
  --fa: "\f2aa";
}

.fa-viadeo-square {
  --fa: "\f2aa";
}

.fa-snapchat {
  --fa: "\f2ab";
}

.fa-snapchat-ghost {
  --fa: "\f2ab";
}

.fa-square-snapchat {
  --fa: "\f2ad";
}

.fa-snapchat-square {
  --fa: "\f2ad";
}

.fa-pied-piper {
  --fa: "\f2ae";
}

.fa-first-order {
  --fa: "\f2b0";
}

.fa-yoast {
  --fa: "\f2b1";
}

.fa-themeisle {
  --fa: "\f2b2";
}

.fa-google-plus {
  --fa: "\f2b3";
}

.fa-font-awesome {
  --fa: "\f2b4";
}

.fa-font-awesome-flag {
  --fa: "\f2b4";
}

.fa-font-awesome-logo-full {
  --fa: "\f2b4";
}

.fa-linode {
  --fa: "\f2b8";
}

.fa-quora {
  --fa: "\f2c4";
}

.fa-free-code-camp {
  --fa: "\f2c5";
}

.fa-telegram {
  --fa: "\f2c6";
}

.fa-telegram-plane {
  --fa: "\f2c6";
}

.fa-bandcamp {
  --fa: "\f2d5";
}

.fa-grav {
  --fa: "\f2d6";
}

.fa-etsy {
  --fa: "\f2d7";
}

.fa-imdb {
  --fa: "\f2d8";
}

.fa-ravelry {
  --fa: "\f2d9";
}

.fa-sellcast {
  --fa: "\f2da";
}

.fa-superpowers {
  --fa: "\f2dd";
}

.fa-wpexplorer {
  --fa: "\f2de";
}

.fa-meetup {
  --fa: "\f2e0";
}

.fa-square-font-awesome-stroke {
  --fa: "\f35c";
}

.fa-font-awesome-alt {
  --fa: "\f35c";
}

.fa-accessible-icon {
  --fa: "\f368";
}

.fa-accusoft {
  --fa: "\f369";
}

.fa-adversal {
  --fa: "\f36a";
}

.fa-affiliatetheme {
  --fa: "\f36b";
}

.fa-algolia {
  --fa: "\f36c";
}

.fa-amilia {
  --fa: "\f36d";
}

.fa-angrycreative {
  --fa: "\f36e";
}

.fa-app-store {
  --fa: "\f36f";
}

.fa-app-store-ios {
  --fa: "\f370";
}

.fa-apper {
  --fa: "\f371";
}

.fa-asymmetrik {
  --fa: "\f372";
}

.fa-audible {
  --fa: "\f373";
}

.fa-avianex {
  --fa: "\f374";
}

.fa-aws {
  --fa: "\f375";
}

.fa-bimobject {
  --fa: "\f378";
}

.fa-bitcoin {
  --fa: "\f379";
}

.fa-bity {
  --fa: "\f37a";
}

.fa-blackberry {
  --fa: "\f37b";
}

.fa-blogger {
  --fa: "\f37c";
}

.fa-blogger-b {
  --fa: "\f37d";
}

.fa-buromobelexperte {
  --fa: "\f37f";
}

.fa-centercode {
  --fa: "\f380";
}

.fa-cloudscale {
  --fa: "\f383";
}

.fa-cloudsmith {
  --fa: "\f384";
}

.fa-cloudversify {
  --fa: "\f385";
}

.fa-cpanel {
  --fa: "\f388";
}

.fa-css3-alt {
  --fa: "\f38b";
}

.fa-cuttlefish {
  --fa: "\f38c";
}

.fa-d-and-d {
  --fa: "\f38d";
}

.fa-deploydog {
  --fa: "\f38e";
}

.fa-deskpro {
  --fa: "\f38f";
}

.fa-digital-ocean {
  --fa: "\f391";
}

.fa-discord {
  --fa: "\f392";
}

.fa-discourse {
  --fa: "\f393";
}

.fa-dochub {
  --fa: "\f394";
}

.fa-docker {
  --fa: "\f395";
}

.fa-draft2digital {
  --fa: "\f396";
}

.fa-square-dribbble {
  --fa: "\f397";
}

.fa-dribbble-square {
  --fa: "\f397";
}

.fa-dyalog {
  --fa: "\f399";
}

.fa-earlybirds {
  --fa: "\f39a";
}

.fa-erlang {
  --fa: "\f39d";
}

.fa-facebook-f {
  --fa: "\f39e";
}

.fa-facebook-messenger {
  --fa: "\f39f";
}

.fa-firstdraft {
  --fa: "\f3a1";
}

.fa-fonticons-fi {
  --fa: "\f3a2";
}

.fa-fort-awesome-alt {
  --fa: "\f3a3";
}

.fa-freebsd {
  --fa: "\f3a4";
}

.fa-gitkraken {
  --fa: "\f3a6";
}

.fa-gofore {
  --fa: "\f3a7";
}

.fa-goodreads {
  --fa: "\f3a8";
}

.fa-goodreads-g {
  --fa: "\f3a9";
}

.fa-google-drive {
  --fa: "\f3aa";
}

.fa-google-play {
  --fa: "\f3ab";
}

.fa-gripfire {
  --fa: "\f3ac";
}

.fa-grunt {
  --fa: "\f3ad";
}

.fa-gulp {
  --fa: "\f3ae";
}

.fa-square-hacker-news {
  --fa: "\f3af";
}

.fa-hacker-news-square {
  --fa: "\f3af";
}

.fa-hire-a-helper {
  --fa: "\f3b0";
}

.fa-hotjar {
  --fa: "\f3b1";
}

.fa-hubspot {
  --fa: "\f3b2";
}

.fa-itunes {
  --fa: "\f3b4";
}

.fa-itunes-note {
  --fa: "\f3b5";
}

.fa-jenkins {
  --fa: "\f3b6";
}

.fa-joget {
  --fa: "\f3b7";
}

.fa-js {
  --fa: "\f3b8";
}

.fa-square-js {
  --fa: "\f3b9";
}

.fa-js-square {
  --fa: "\f3b9";
}

.fa-keycdn {
  --fa: "\f3ba";
}

.fa-kickstarter {
  --fa: "\f3bb";
}

.fa-square-kickstarter {
  --fa: "\f3bb";
}

.fa-kickstarter-k {
  --fa: "\f3bc";
}

.fa-laravel {
  --fa: "\f3bd";
}

.fa-line {
  --fa: "\f3c0";
}

.fa-lyft {
  --fa: "\f3c3";
}

.fa-magento {
  --fa: "\f3c4";
}

.fa-medapps {
  --fa: "\f3c6";
}

.fa-medrt {
  --fa: "\f3c8";
}

.fa-microsoft {
  --fa: "\f3ca";
}

.fa-mix {
  --fa: "\f3cb";
}

.fa-mizuni {
  --fa: "\f3cc";
}

.fa-monero {
  --fa: "\f3d0";
}

.fa-napster {
  --fa: "\f3d2";
}

.fa-node-js {
  --fa: "\f3d3";
}

.fa-npm {
  --fa: "\f3d4";
}

.fa-ns8 {
  --fa: "\f3d5";
}

.fa-nutritionix {
  --fa: "\f3d6";
}

.fa-page4 {
  --fa: "\f3d7";
}

.fa-palfed {
  --fa: "\f3d8";
}

.fa-patreon {
  --fa: "\f3d9";
}

.fa-periscope {
  --fa: "\f3da";
}

.fa-phabricator {
  --fa: "\f3db";
}

.fa-phoenix-framework {
  --fa: "\f3dc";
}

.fa-playstation {
  --fa: "\f3df";
}

.fa-pushed {
  --fa: "\f3e1";
}

.fa-python {
  --fa: "\f3e2";
}

.fa-red-river {
  --fa: "\f3e3";
}

.fa-wpressr {
  --fa: "\f3e4";
}

.fa-rendact {
  --fa: "\f3e4";
}

.fa-replyd {
  --fa: "\f3e6";
}

.fa-resolving {
  --fa: "\f3e7";
}

.fa-rocketchat {
  --fa: "\f3e8";
}

.fa-rockrms {
  --fa: "\f3e9";
}

.fa-schlix {
  --fa: "\f3ea";
}

.fa-searchengin {
  --fa: "\f3eb";
}

.fa-servicestack {
  --fa: "\f3ec";
}

.fa-sistrix {
  --fa: "\f3ee";
}

.fa-speakap {
  --fa: "\f3f3";
}

.fa-staylinked {
  --fa: "\f3f5";
}

.fa-steam-symbol {
  --fa: "\f3f6";
}

.fa-sticker-mule {
  --fa: "\f3f7";
}

.fa-studiovinari {
  --fa: "\f3f8";
}

.fa-supple {
  --fa: "\f3f9";
}

.fa-uber {
  --fa: "\f402";
}

.fa-uikit {
  --fa: "\f403";
}

.fa-uniregistry {
  --fa: "\f404";
}

.fa-untappd {
  --fa: "\f405";
}

.fa-ussunnah {
  --fa: "\f407";
}

.fa-vaadin {
  --fa: "\f408";
}

.fa-viber {
  --fa: "\f409";
}

.fa-vimeo {
  --fa: "\f40a";
}

.fa-vnv {
  --fa: "\f40b";
}

.fa-square-whatsapp {
  --fa: "\f40c";
}

.fa-whatsapp-square {
  --fa: "\f40c";
}

.fa-whmcs {
  --fa: "\f40d";
}

.fa-wordpress-simple {
  --fa: "\f411";
}

.fa-xbox {
  --fa: "\f412";
}

.fa-yandex {
  --fa: "\f413";
}

.fa-yandex-international {
  --fa: "\f414";
}

.fa-apple-pay {
  --fa: "\f415";
}

.fa-cc-apple-pay {
  --fa: "\f416";
}

.fa-fly {
  --fa: "\f417";
}

.fa-node {
  --fa: "\f419";
}

.fa-osi {
  --fa: "\f41a";
}

.fa-react {
  --fa: "\f41b";
}

.fa-autoprefixer {
  --fa: "\f41c";
}

.fa-less {
  --fa: "\f41d";
}

.fa-sass {
  --fa: "\f41e";
}

.fa-vuejs {
  --fa: "\f41f";
}

.fa-angular {
  --fa: "\f420";
}

.fa-aviato {
  --fa: "\f421";
}

.fa-ember {
  --fa: "\f423";
}

.fa-gitter {
  --fa: "\f426";
}

.fa-hooli {
  --fa: "\f427";
}

.fa-strava {
  --fa: "\f428";
}

.fa-stripe {
  --fa: "\f429";
}

.fa-stripe-s {
  --fa: "\f42a";
}

.fa-typo3 {
  --fa: "\f42b";
}

.fa-amazon-pay {
  --fa: "\f42c";
}

.fa-cc-amazon-pay {
  --fa: "\f42d";
}

.fa-ethereum {
  --fa: "\f42e";
}

.fa-korvue {
  --fa: "\f42f";
}

.fa-elementor {
  --fa: "\f430";
}

.fa-square-youtube {
  --fa: "\f431";
}

.fa-youtube-square {
  --fa: "\f431";
}

.fa-flipboard {
  --fa: "\f44d";
}

.fa-hips {
  --fa: "\f452";
}

.fa-php {
  --fa: "\f457";
}

.fa-quinscape {
  --fa: "\f459";
}

.fa-readme {
  --fa: "\f4d5";
}

.fa-java {
  --fa: "\f4e4";
}

.fa-pied-piper-hat {
  --fa: "\f4e5";
}

.fa-creative-commons-by {
  --fa: "\f4e7";
}

.fa-creative-commons-nc {
  --fa: "\f4e8";
}

.fa-creative-commons-nc-eu {
  --fa: "\f4e9";
}

.fa-creative-commons-nc-jp {
  --fa: "\f4ea";
}

.fa-creative-commons-nd {
  --fa: "\f4eb";
}

.fa-creative-commons-pd {
  --fa: "\f4ec";
}

.fa-creative-commons-pd-alt {
  --fa: "\f4ed";
}

.fa-creative-commons-remix {
  --fa: "\f4ee";
}

.fa-creative-commons-sa {
  --fa: "\f4ef";
}

.fa-creative-commons-sampling {
  --fa: "\f4f0";
}

.fa-creative-commons-sampling-plus {
  --fa: "\f4f1";
}

.fa-creative-commons-share {
  --fa: "\f4f2";
}

.fa-creative-commons-zero {
  --fa: "\f4f3";
}

.fa-ebay {
  --fa: "\f4f4";
}

.fa-keybase {
  --fa: "\f4f5";
}

.fa-mastodon {
  --fa: "\f4f6";
}

.fa-r-project {
  --fa: "\f4f7";
}

.fa-researchgate {
  --fa: "\f4f8";
}

.fa-teamspeak {
  --fa: "\f4f9";
}

.fa-first-order-alt {
  --fa: "\f50a";
}

.fa-fulcrum {
  --fa: "\f50b";
}

.fa-galactic-republic {
  --fa: "\f50c";
}

.fa-galactic-senate {
  --fa: "\f50d";
}

.fa-jedi-order {
  --fa: "\f50e";
}

.fa-mandalorian {
  --fa: "\f50f";
}

.fa-old-republic {
  --fa: "\f510";
}

.fa-phoenix-squadron {
  --fa: "\f511";
}

.fa-sith {
  --fa: "\f512";
}

.fa-trade-federation {
  --fa: "\f513";
}

.fa-wolf-pack-battalion {
  --fa: "\f514";
}

.fa-hornbill {
  --fa: "\f592";
}

.fa-mailchimp {
  --fa: "\f59e";
}

.fa-megaport {
  --fa: "\f5a3";
}

.fa-nimblr {
  --fa: "\f5a8";
}

.fa-rev {
  --fa: "\f5b2";
}

.fa-shopware {
  --fa: "\f5b5";
}

.fa-squarespace {
  --fa: "\f5be";
}

.fa-themeco {
  --fa: "\f5c6";
}

.fa-weebly {
  --fa: "\f5cc";
}

.fa-wix {
  --fa: "\f5cf";
}

.fa-ello {
  --fa: "\f5f1";
}

.fa-hackerrank {
  --fa: "\f5f7";
}

.fa-kaggle {
  --fa: "\f5fa";
}

.fa-markdown {
  --fa: "\f60f";
}

.fa-neos {
  --fa: "\f612";
}

.fa-zhihu {
  --fa: "\f63f";
}

.fa-alipay {
  --fa: "\f642";
}

.fa-the-red-yeti {
  --fa: "\f69d";
}

.fa-critical-role {
  --fa: "\f6c9";
}

.fa-d-and-d-beyond {
  --fa: "\f6ca";
}

.fa-dev {
  --fa: "\f6cc";
}

.fa-fantasy-flight-games {
  --fa: "\f6dc";
}

.fa-wizards-of-the-coast {
  --fa: "\f730";
}

.fa-think-peaks {
  --fa: "\f731";
}

.fa-reacteurope {
  --fa: "\f75d";
}

.fa-artstation {
  --fa: "\f77a";
}

.fa-atlassian {
  --fa: "\f77b";
}

.fa-canadian-maple-leaf {
  --fa: "\f785";
}

.fa-centos {
  --fa: "\f789";
}

.fa-confluence {
  --fa: "\f78d";
}

.fa-dhl {
  --fa: "\f790";
}

.fa-diaspora {
  --fa: "\f791";
}

.fa-fedex {
  --fa: "\f797";
}

.fa-fedora {
  --fa: "\f798";
}

.fa-figma {
  --fa: "\f799";
}

.fa-intercom {
  --fa: "\f7af";
}

.fa-invision {
  --fa: "\f7b0";
}

.fa-jira {
  --fa: "\f7b1";
}

.fa-mendeley {
  --fa: "\f7b3";
}

.fa-raspberry-pi {
  --fa: "\f7bb";
}

.fa-redhat {
  --fa: "\f7bc";
}

.fa-sketch {
  --fa: "\f7c6";
}

.fa-sourcetree {
  --fa: "\f7d3";
}

.fa-suse {
  --fa: "\f7d6";
}

.fa-ubuntu {
  --fa: "\f7df";
}

.fa-ups {
  --fa: "\f7e0";
}

.fa-usps {
  --fa: "\f7e1";
}

.fa-yarn {
  --fa: "\f7e3";
}

.fa-airbnb {
  --fa: "\f834";
}

.fa-battle-net {
  --fa: "\f835";
}

.fa-bootstrap {
  --fa: "\f836";
}

.fa-buffer {
  --fa: "\f837";
}

.fa-chromecast {
  --fa: "\f838";
}

.fa-evernote {
  --fa: "\f839";
}

.fa-itch-io {
  --fa: "\f83a";
}

.fa-salesforce {
  --fa: "\f83b";
}

.fa-speaker-deck {
  --fa: "\f83c";
}

.fa-symfony {
  --fa: "\f83d";
}

.fa-waze {
  --fa: "\f83f";
}

.fa-yammer {
  --fa: "\f840";
}

.fa-git-alt {
  --fa: "\f841";
}

.fa-stackpath {
  --fa: "\f842";
}

.fa-cotton-bureau {
  --fa: "\f89e";
}

.fa-buy-n-large {
  --fa: "\f8a6";
}

.fa-mdb {
  --fa: "\f8ca";
}

.fa-orcid {
  --fa: "\f8d2";
}

.fa-swift {
  --fa: "\f8e1";
}

.fa-umbraco {
  --fa: "\f8e8";
}
/*!
 * Font Awesome Free 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2025 Fonticons, Inc.
 */
.fa.fa-glass {
  --fa: "\f000";
}

.fa.fa-envelope-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-envelope-o {
  --fa: "\f0e0";
}

.fa.fa-star-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-star-o {
  --fa: "\f005";
}

.fa.fa-remove {
  --fa: "\f00d";
}

.fa.fa-close {
  --fa: "\f00d";
}

.fa.fa-gear {
  --fa: "\f013";
}

.fa.fa-trash-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-trash-o {
  --fa: "\f2ed";
}

.fa.fa-home {
  --fa: "\f015";
}

.fa.fa-file-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-o {
  --fa: "\f15b";
}

.fa.fa-clock-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-clock-o {
  --fa: "\f017";
}

.fa.fa-arrow-circle-o-down {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-down {
  --fa: "\f358";
}

.fa.fa-arrow-circle-o-up {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-up {
  --fa: "\f35b";
}

.fa.fa-play-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-repeat {
  --fa: "\f01e";
}

.fa.fa-rotate-right {
  --fa: "\f01e";
}

.fa.fa-refresh {
  --fa: "\f021";
}

.fa.fa-list-alt {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-list-alt {
  --fa: "\f022";
}

.fa.fa-dedent {
  --fa: "\f03b";
}

.fa.fa-video-camera {
  --fa: "\f03d";
}

.fa.fa-picture-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-picture-o {
  --fa: "\f03e";
}

.fa.fa-photo {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-photo {
  --fa: "\f03e";
}

.fa.fa-image {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-map-marker {
  --fa: "\f3c5";
}

.fa.fa-pencil-square-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-pencil-square-o {
  --fa: "\f044";
}

.fa.fa-edit {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-share-square-o {
  --fa: "\f14d";
}

.fa.fa-check-square-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-arrows {
  --fa: "\f0b2";
}

.fa.fa-times-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-times-circle-o {
  --fa: "\f057";
}

.fa.fa-check-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-mail-forward {
  --fa: "\f064";
}

.fa.fa-expand {
  --fa: "\f424";
}

.fa.fa-compress {
  --fa: "\f422";
}

.fa.fa-eye {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-eye-slash {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-warning {
  --fa: "\f071";
}

.fa.fa-calendar {
  --fa: "\f073";
}

.fa.fa-arrows-v {
  --fa: "\f338";
}

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

.fa.fa-bar-chart {
  --fa: "\e0e3";
}

.fa.fa-bar-chart-o {
  --fa: "\e0e3";
}

.fa.fa-twitter-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-twitter-square {
  --fa: "\f081";
}

.fa.fa-facebook-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-facebook-square {
  --fa: "\f082";
}

.fa.fa-gears {
  --fa: "\f085";
}

.fa.fa-thumbs-o-up {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-up {
  --fa: "\f164";
}

.fa.fa-thumbs-o-down {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-down {
  --fa: "\f165";
}

.fa.fa-heart-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-heart-o {
  --fa: "\f004";
}

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

.fa.fa-linkedin-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-linkedin-square {
  --fa: "\f08c";
}

.fa.fa-thumb-tack {
  --fa: "\f08d";
}

.fa.fa-external-link {
  --fa: "\f35d";
}

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

.fa.fa-github-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-github-square {
  --fa: "\f092";
}

.fa.fa-lemon-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-lemon-o {
  --fa: "\f094";
}

.fa.fa-square-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-square-o {
  --fa: "\f0c8";
}

.fa.fa-bookmark-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-bookmark-o {
  --fa: "\f02e";
}

.fa.fa-twitter {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-facebook {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-facebook {
  --fa: "\f39e";
}

.fa.fa-facebook-f {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-facebook-f {
  --fa: "\f39e";
}

.fa.fa-github {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-credit-card {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-feed {
  --fa: "\f09e";
}

.fa.fa-hdd-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hdd-o {
  --fa: "\f0a0";
}

.fa.fa-hand-o-right {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-o-right {
  --fa: "\f0a4";
}

.fa.fa-hand-o-left {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-o-left {
  --fa: "\f0a5";
}

.fa.fa-hand-o-up {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-o-up {
  --fa: "\f0a6";
}

.fa.fa-hand-o-down {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-o-down {
  --fa: "\f0a7";
}

.fa.fa-globe {
  --fa: "\f57d";
}

.fa.fa-tasks {
  --fa: "\f828";
}

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

.fa.fa-group {
  --fa: "\f0c0";
}

.fa.fa-chain {
  --fa: "\f0c1";
}

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

.fa.fa-files-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-files-o {
  --fa: "\f0c5";
}

.fa.fa-floppy-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-floppy-o {
  --fa: "\f0c7";
}

.fa.fa-save {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-save {
  --fa: "\f0c7";
}

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

.fa.fa-reorder {
  --fa: "\f0c9";
}

.fa.fa-magic {
  --fa: "\e2ca";
}

.fa.fa-pinterest {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-pinterest-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-pinterest-square {
  --fa: "\f0d3";
}

.fa.fa-google-plus-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-square {
  --fa: "\f0d4";
}

.fa.fa-google-plus {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-google-plus {
  --fa: "\f0d5";
}

.fa.fa-money {
  --fa: "\f3d1";
}

.fa.fa-unsorted {
  --fa: "\f0dc";
}

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

.fa.fa-sort-asc {
  --fa: "\f0de";
}

.fa.fa-linkedin {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-linkedin {
  --fa: "\f0e1";
}

.fa.fa-rotate-left {
  --fa: "\f0e2";
}

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

.fa.fa-tachometer {
  --fa: "\f625";
}

.fa.fa-dashboard {
  --fa: "\f625";
}

.fa.fa-comment-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-comment-o {
  --fa: "\f075";
}

.fa.fa-comments-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-comments-o {
  --fa: "\f086";
}

.fa.fa-flash {
  --fa: "\f0e7";
}

.fa.fa-clipboard {
  --fa: "\f0ea";
}

.fa.fa-lightbulb-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-lightbulb-o {
  --fa: "\f0eb";
}

.fa.fa-exchange {
  --fa: "\f362";
}

.fa.fa-cloud-download {
  --fa: "\f0ed";
}

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

.fa.fa-bell-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-bell-o {
  --fa: "\f0f3";
}

.fa.fa-cutlery {
  --fa: "\f2e7";
}

.fa.fa-file-text-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-building-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-building-o {
  --fa: "\f1ad";
}

.fa.fa-hospital-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hospital-o {
  --fa: "\f0f8";
}

.fa.fa-tablet {
  --fa: "\f3fa";
}

.fa.fa-mobile {
  --fa: "\f3cd";
}

.fa.fa-mobile-phone {
  --fa: "\f3cd";
}

.fa.fa-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-circle-o {
  --fa: "\f111";
}

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

.fa.fa-github-alt {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-folder-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-folder-o {
  --fa: "\f07b";
}

.fa.fa-folder-open-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-smile-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-smile-o {
  --fa: "\f118";
}

.fa.fa-frown-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-frown-o {
  --fa: "\f119";
}

.fa.fa-meh-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-meh-o {
  --fa: "\f11a";
}

.fa.fa-keyboard-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-keyboard-o {
  --fa: "\f11c";
}

.fa.fa-flag-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-flag-o {
  --fa: "\f024";
}

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

.fa.fa-star-half-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-star-half-o {
  --fa: "\f5c0";
}

.fa.fa-star-half-empty {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-star-half-empty {
  --fa: "\f5c0";
}

.fa.fa-star-half-full {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-star-half-full {
  --fa: "\f5c0";
}

.fa.fa-code-fork {
  --fa: "\f126";
}

.fa.fa-chain-broken {
  --fa: "\f127";
}

.fa.fa-unlink {
  --fa: "\f127";
}

.fa.fa-calendar-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-calendar-o {
  --fa: "\f133";
}

.fa.fa-maxcdn {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-html5 {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-css3 {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-unlock-alt {
  --fa: "\f09c";
}

.fa.fa-minus-square-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-level-up {
  --fa: "\f3bf";
}

.fa.fa-level-down {
  --fa: "\f3be";
}

.fa.fa-pencil-square {
  --fa: "\f14b";
}

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

.fa.fa-compass {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-down {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-toggle-down {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-toggle-down {
  --fa: "\f150";
}

.fa.fa-caret-square-o-up {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-toggle-up {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-toggle-up {
  --fa: "\f151";
}

.fa.fa-caret-square-o-right {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-toggle-right {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-toggle-right {
  --fa: "\f152";
}

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

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

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

.fa.fa-usd {
  --fa: "\$";
}

.fa.fa-dollar {
  --fa: "\$";
}

.fa.fa-inr {
  --fa: "\e1bc";
}

.fa.fa-rupee {
  --fa: "\e1bc";
}

.fa.fa-jpy {
  --fa: "\f157";
}

.fa.fa-cny {
  --fa: "\f157";
}

.fa.fa-rmb {
  --fa: "\f157";
}

.fa.fa-yen {
  --fa: "\f157";
}

.fa.fa-rub {
  --fa: "\f158";
}

.fa.fa-ruble {
  --fa: "\f158";
}

.fa.fa-rouble {
  --fa: "\f158";
}

.fa.fa-krw {
  --fa: "\f159";
}

.fa.fa-won {
  --fa: "\f159";
}

.fa.fa-btc {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin {
  --fa: "\f15a";
}

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

.fa.fa-sort-alpha-asc {
  --fa: "\f15d";
}

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

.fa.fa-sort-amount-asc {
  --fa: "\f884";
}

.fa.fa-sort-amount-desc {
  --fa: "\f160";
}

.fa.fa-sort-numeric-asc {
  --fa: "\f162";
}

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

.fa.fa-youtube-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-youtube-square {
  --fa: "\f431";
}

.fa.fa-youtube {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-xing {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-xing-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-xing-square {
  --fa: "\f169";
}

.fa.fa-youtube-play {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play {
  --fa: "\f167";
}

.fa.fa-dropbox {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-stack-overflow {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-instagram {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-flickr {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-adn {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square {
  --fa: "\f171";
}

.fa.fa-tumblr {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-tumblr-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-tumblr-square {
  --fa: "\f174";
}

.fa.fa-long-arrow-down {
  --fa: "\f309";
}

.fa.fa-long-arrow-up {
  --fa: "\f30c";
}

.fa.fa-long-arrow-left {
  --fa: "\f30a";
}

.fa.fa-long-arrow-right {
  --fa: "\f30b";
}

.fa.fa-apple {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-windows {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-android {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-linux {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-dribbble {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-skype {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-foursquare {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-trello {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-gratipay {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-gittip {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-gittip {
  --fa: "\f184";
}

.fa.fa-sun-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-sun-o {
  --fa: "\f185";
}

.fa.fa-moon-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-moon-o {
  --fa: "\f186";
}

.fa.fa-vk {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-weibo {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-renren {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-pagelines {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-stack-exchange {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right {
  --fa: "\f35a";
}

.fa.fa-arrow-circle-o-left {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-left {
  --fa: "\f359";
}

.fa.fa-caret-square-o-left {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-toggle-left {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-toggle-left {
  --fa: "\f191";
}

.fa.fa-dot-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-vimeo-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-vimeo-square {
  --fa: "\f194";
}

.fa.fa-try {
  --fa: "\e2bb";
}

.fa.fa-turkish-lira {
  --fa: "\e2bb";
}

.fa.fa-plus-square-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-slack {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wordpress {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-openid {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-institution {
  --fa: "\f19c";
}

.fa.fa-bank {
  --fa: "\f19c";
}

.fa.fa-mortar-board {
  --fa: "\f19d";
}

.fa.fa-yahoo {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-google {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-reddit {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-reddit-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-reddit-square {
  --fa: "\f1a2";
}

.fa.fa-stumbleupon-circle {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-delicious {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-digg {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-pp {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-alt {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-drupal {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-joomla {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-behance {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-behance-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-behance-square {
  --fa: "\f1b5";
}

.fa.fa-steam {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-steam-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-steam-square {
  --fa: "\f1b7";
}

.fa.fa-automobile {
  --fa: "\f1b9";
}

.fa.fa-cab {
  --fa: "\f1ba";
}

.fa.fa-spotify {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-deviantart {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-soundcloud {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-file-pdf-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-pdf-o {
  --fa: "\f1c1";
}

.fa.fa-file-word-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-file-excel-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-excel-o {
  --fa: "\f1c3";
}

.fa.fa-file-powerpoint-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-file-image-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-image-o {
  --fa: "\f1c5";
}

.fa.fa-file-photo-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-photo-o {
  --fa: "\f1c5";
}

.fa.fa-file-picture-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-picture-o {
  --fa: "\f1c5";
}

.fa.fa-file-archive-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-archive-o {
  --fa: "\f1c6";
}

.fa.fa-file-zip-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-zip-o {
  --fa: "\f1c6";
}

.fa.fa-file-audio-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-audio-o {
  --fa: "\f1c7";
}

.fa.fa-file-sound-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-sound-o {
  --fa: "\f1c7";
}

.fa.fa-file-video-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-video-o {
  --fa: "\f1c8";
}

.fa.fa-file-movie-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-movie-o {
  --fa: "\f1c8";
}

.fa.fa-file-code-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-file-code-o {
  --fa: "\f1c9";
}

.fa.fa-vine {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-codepen {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-jsfiddle {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-life-bouy {
  --fa: "\f1cd";
}

.fa.fa-life-buoy {
  --fa: "\f1cd";
}

.fa.fa-life-saver {
  --fa: "\f1cd";
}

.fa.fa-support {
  --fa: "\f1cd";
}

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

.fa.fa-rebel {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-ra {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-ra {
  --fa: "\f1d0";
}

.fa.fa-resistance {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-resistance {
  --fa: "\f1d0";
}

.fa.fa-empire {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-ge {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-ge {
  --fa: "\f1d1";
}

.fa.fa-git-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-git-square {
  --fa: "\f1d2";
}

.fa.fa-git {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-hacker-news {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square {
  --fa: "\f1d4";
}

.fa.fa-yc-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-yc-square {
  --fa: "\f1d4";
}

.fa.fa-tencent-weibo {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-qq {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-weixin {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wechat {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wechat {
  --fa: "\f1d7";
}

.fa.fa-send {
  --fa: "\f1d8";
}

.fa.fa-paper-plane-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-paper-plane-o {
  --fa: "\f1d8";
}

.fa.fa-send-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-send-o {
  --fa: "\f1d8";
}

.fa.fa-circle-thin {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-circle-thin {
  --fa: "\f111";
}

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

.fa.fa-futbol-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-futbol-o {
  --fa: "\f1e3";
}

.fa.fa-soccer-ball-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-slideshare {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-twitch {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-yelp {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-newspaper-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-newspaper-o {
  --fa: "\f1ea";
}

.fa.fa-paypal {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-google-wallet {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc-visa {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc-mastercard {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc-discover {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc-amex {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc-paypal {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc-stripe {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-bell-slash-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-bell-slash-o {
  --fa: "\f1f6";
}

.fa.fa-trash {
  --fa: "\f2ed";
}

.fa.fa-copyright {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-eyedropper {
  --fa: "\f1fb";
}

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

.fa.fa-pie-chart {
  --fa: "\f200";
}

.fa.fa-line-chart {
  --fa: "\f201";
}

.fa.fa-lastfm {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-lastfm-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-lastfm-square {
  --fa: "\f203";
}

.fa.fa-ioxhost {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-angellist {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-cc {
  --fa: "\f20a";
}

.fa.fa-ils {
  --fa: "\f20b";
}

.fa.fa-shekel {
  --fa: "\f20b";
}

.fa.fa-sheqel {
  --fa: "\f20b";
}

.fa.fa-buysellads {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-connectdevelop {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-dashcube {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-forumbee {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-leanpub {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-sellsy {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-shirtsinbulk {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-simplybuilt {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-skyatlas {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-diamond {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-diamond {
  --fa: "\f3a5";
}

.fa.fa-transgender {
  --fa: "\f224";
}

.fa.fa-intersex {
  --fa: "\f224";
}

.fa.fa-transgender-alt {
  --fa: "\f225";
}

.fa.fa-facebook-official {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-facebook-official {
  --fa: "\f09a";
}

.fa.fa-pinterest-p {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-whatsapp {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-hotel {
  --fa: "\f236";
}

.fa.fa-viacoin {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-medium {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-yc {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-yc {
  --fa: "\f23b";
}

.fa.fa-optin-monster {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-opencart {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-expeditedssl {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-battery-4 {
  --fa: "\f240";
}

.fa.fa-battery {
  --fa: "\f240";
}

.fa.fa-battery-3 {
  --fa: "\f241";
}

.fa.fa-battery-2 {
  --fa: "\f242";
}

.fa.fa-battery-1 {
  --fa: "\f243";
}

.fa.fa-battery-0 {
  --fa: "\f244";
}

.fa.fa-object-group {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-object-ungroup {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o {
  --fa: "\f249";
}

.fa.fa-cc-jcb {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-cc-diners-club {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-clone {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hourglass-o {
  --fa: "\f254";
}

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

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

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

.fa.fa-hand-rock-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-hand-grab-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-grab-o {
  --fa: "\f255";
}

.fa.fa-hand-paper-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-hand-stop-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-stop-o {
  --fa: "\f256";
}

.fa.fa-hand-scissors-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-scissors-o {
  --fa: "\f257";
}

.fa.fa-hand-lizard-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-lizard-o {
  --fa: "\f258";
}

.fa.fa-hand-spock-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-hand-pointer-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-pointer-o {
  --fa: "\f25a";
}

.fa.fa-hand-peace-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-hand-peace-o {
  --fa: "\f25b";
}

.fa.fa-registered {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-creative-commons {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-gg {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-gg-circle {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki-square {
  --fa: "\f264";
}

.fa.fa-get-pocket {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wikipedia-w {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-safari {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-chrome {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-firefox {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-opera {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-internet-explorer {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-television {
  --fa: "\f26c";
}

.fa.fa-contao {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-500px {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-amazon {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-calendar-plus-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-calendar-plus-o {
  --fa: "\f271";
}

.fa.fa-calendar-minus-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-calendar-minus-o {
  --fa: "\f272";
}

.fa.fa-calendar-times-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-calendar-times-o {
  --fa: "\f273";
}

.fa.fa-calendar-check-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-calendar-check-o {
  --fa: "\f274";
}

.fa.fa-map-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-map-o {
  --fa: "\f279";
}

.fa.fa-commenting {
  --fa: "\f4ad";
}

.fa.fa-commenting-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-commenting-o {
  --fa: "\f4ad";
}

.fa.fa-houzz {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-vimeo {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-vimeo {
  --fa: "\f27d";
}

.fa.fa-black-tie {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-fonticons {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-reddit-alien {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-edge {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-credit-card-alt {
  --fa: "\f09d";
}

.fa.fa-codiepie {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-modx {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-fort-awesome {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-usb {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-product-hunt {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-mixcloud {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-scribd {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-pause-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-pause-circle-o {
  --fa: "\f28b";
}

.fa.fa-stop-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-bluetooth {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-bluetooth-b {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-gitlab {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wpbeginner {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wpforms {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-envira {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt {
  --fa: "\f368";
}

.fa.fa-question-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-question-circle-o {
  --fa: "\f059";
}

.fa.fa-volume-control-phone {
  --fa: "\f2a0";
}

.fa.fa-asl-interpreting {
  --fa: "\f2a3";
}

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

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

.fa.fa-glide {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-glide-g {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-signing {
  --fa: "\f2a7";
}

.fa.fa-viadeo {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-viadeo-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-viadeo-square {
  --fa: "\f2aa";
}

.fa.fa-snapchat {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-ghost {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-ghost {
  --fa: "\f2ab";
}

.fa.fa-snapchat-square {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-square {
  --fa: "\f2ad";
}

.fa.fa-pied-piper {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-first-order {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-yoast {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-themeisle {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official {
  --fa: "\f2b3";
}

.fa.fa-google-plus-circle {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-circle {
  --fa: "\f2b3";
}

.fa.fa-font-awesome {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-fa {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-fa {
  --fa: "\f2b4";
}

.fa.fa-handshake-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-handshake-o {
  --fa: "\f2b5";
}

.fa.fa-envelope-open-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-envelope-open-o {
  --fa: "\f2b6";
}

.fa.fa-linode {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-address-book-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

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

.fa.fa-address-card-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

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

.fa.fa-vcard-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-vcard-o {
  --fa: "\f2bb";
}

.fa.fa-user-circle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-user-circle-o {
  --fa: "\f2bd";
}

.fa.fa-user-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-user-o {
  --fa: "\f007";
}

.fa.fa-id-badge {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-drivers-license {
  --fa: "\f2c2";
}

.fa.fa-id-card-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-id-card-o {
  --fa: "\f2c2";
}

.fa.fa-drivers-license-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-drivers-license-o {
  --fa: "\f2c2";
}

.fa.fa-quora {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-free-code-camp {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-telegram {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-thermometer-4 {
  --fa: "\f2c7";
}

.fa.fa-thermometer {
  --fa: "\f2c7";
}

.fa.fa-thermometer-3 {
  --fa: "\f2c8";
}

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

.fa.fa-thermometer-1 {
  --fa: "\f2ca";
}

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

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

.fa.fa-s15 {
  --fa: "\f2cd";
}

.fa.fa-window-maximize {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-window-restore {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle {
  --fa: "\f410";
}

.fa.fa-window-close-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-window-close-o {
  --fa: "\f410";
}

.fa.fa-times-rectangle-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle-o {
  --fa: "\f410";
}

.fa.fa-bandcamp {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-grav {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-etsy {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-imdb {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-ravelry {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-eercast {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-eercast {
  --fa: "\f2da";
}

.fa.fa-snowflake-o {
  font-family: "Font Awesome 7 Free";
  font-weight: 400;
}

.fa.fa-snowflake-o {
  --fa: "\f2dc";
}

.fa.fa-superpowers {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-wpexplorer {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}

.fa.fa-meetup {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
}
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

@charset "UTF-8";
.react-datepicker__navigation-icon::before, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
/* sr-only utility class for accessibility */
.react-datepicker__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
  line-height: initial;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker-popper {
  z-index: 1;
  line-height: 0;
}
.react-datepicker-popper .react-datepicker__triangle {
  stroke: #aeaeae;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

h2.react-datepicker__current-month {
  padding: 0;
  margin: 0;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: rgb(165.75, 165.75, 165.75);
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}

.react-datepicker__day-names {
  text-align: center;
  white-space: nowrap;
  margin-bottom: -8px;
}

.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__day-name--disabled,
.react-datepicker__day--disabled,
.react-datepicker__time-name--disabled {
  cursor: default;
  color: #ccc;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:not([aria-disabled=true]):hover,
.react-datepicker__month-text:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text:not([aria-disabled=true]):hover,
.react-datepicker__year-text:not([aria-disabled=true]):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
  background-color: rgb(49.8551020408, 189.6448979592, 62.5632653061);
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:not([aria-disabled=true]):hover,
.react-datepicker__month-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
  background-color: rgb(207, 82.9642857143, 0);
}
.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:not([aria-disabled=true]):hover, .react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__day--in-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: rgb(186.25, 217.0833333333, 241.25);
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

*{box-sizing:border-box;line-height:normal}html,body,h1,h2,h3,h4,h5,h6,a,p,span,em,small,strong,sub,sup,mark,del,ins,strike,abbr,dfn,blockquote,q,cite,code,pre,ol,ul,li,dl,dt,dd,div,section,article,main,aside,nav,header,hgroup,footer,img,figure,figcaption,address,time,audio,video,canvas,iframe,details,summary,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-style:normal}*{font-family:inherit;font-size:inherit;line-height:inherit}a,a:hover{text-decoration:none}.p0{padding:0}.m0{margin:0}:root{--neutral-50: #fafafa;--neutral-100: #f5f5f5;--neutral-200: #e5e5e5;--neutral-300: #d4d4d4;--neutral-400: #a3a3a3;--neutral-500: #737373;--neutral-600: #525252;--neutral-700: #404040;--neutral-800: #262626;--neutral-900: #171717;--neutral-950: #0a0a0a;--red-50: #fef2f2;--red-100: #fee2e2;--red-200: #fecaca;--red-300: #fca5a5;--red-400: #f87171;--red-500: #ef4444;--red-600: #dc2626;--red-700: #b91c1c;--red-800: #991b1b;--red-900: #7f1d1d;--red-950: #450a0a;--amber-50: #fffbeb;--amber-100: #fef3c7;--amber-200: #fde68a;--amber-300: #fcd34d;--amber-400: #fbbf24;--amber-500: #f59e0b;--amber-600: #d97706;--amber-700: #b45309;--amber-800: #92400e;--amber-900: #78350f;--amber-950: #451a03;--green-50: #f0fdf4;--green-100: #dcfce7;--green-200: #bbf7d0;--green-300: #86efac;--green-400: #4ade80;--green-500: #22c55e;--green-600: #16a34a;--green-700: #15803d;--green-800: #166534;--green-900: #14532d;--green-950: #052e16;--blue-50: #eff6ff;--blue-100: #dbeafe;--blue-200: #bfdbfe;--blue-300: #93c5fd;--blue-400: #60a5fa;--blue-500: #3b82f6;--blue-600: #2563eb;--blue-700: #1d4ed8;--blue-800: #1e40af;--blue-900: #1e3a8a;--blue-950: #172554}:root{--apple-grey-01: #f2f2f7;--apple-grey-02: #e5e5ea;--apple-grey-03: #d1d1d6;--apple-grey-04: #c7c7cc;--apple-grey-05: #aeaeb2;--apple-grey-06: #8e8e93;--apple-grey-07: #8e8e93;--apple-grey-08: #636366;--apple-grey-09: #48484a;--apple-grey-10: #3a3a3c;--apple-grey-11: #2c2c2e;--apple-grey-12: #1c1c1e;--apple-red: #ff3b30;--apple-orange: #ff9500;--apple-yellow: #fc0;--apple-blue: #007aff;--apple-dark-blue: #004691;--apple-green: #34c759;--apple-teal: #5ac8fa;--apple-indigo: #5856d6;--apple-purple: #af52de;--apple-pink: #ff2d55}@media(prefers-color-scheme: dark){:root{--apple-red: #ff453a;--apple-orange: #ff9f0a;--apple-yellow: #ffd60a;--apple-blue: #0a84ff;--apple-green: #30d158;--apple-teal: #64d2ff;--apple-indigo: #5e5ce6;--apple-purple: #bf5af2;--apple-pink: #ff2d55}}:root{--black: #000;--white: #fff;--red: var(--red-500);--orange: var(--amber-500);--yellow: var(--amber-300);--green: var(--green-500);--blue: var(--blue-600);--de-primary: #d43a35;--de-accent: #f9b310;--de-very-dark: #200b21;--de-dark: #310c36;--de-dark-mid: #5b1664;--de-light: #fef9eb;--de-light-mid: #fceaba;--bg: var(--white);--bg-light-grey: var(--neutral-50);--bg-grey: var(--neutral-100);--bg-de-light: var(--de-light);--bg-dark-grey: var(--neutral-800);--bg-dark: var(--neutral-950);--bg-white: var(--white);--bg-black: var(--black);--text: var(--neutral-900);--text-grey: var(--neutral-600);--text-light-grey: var(--neutral-400);--text-white: var(--white);--text-black: var(--black);--placeholder: var(--neutral-400);--ui-white: var(--white);--ui-very-light-grey: var(--neutral-100);--ui-light-grey: var(--neutral-200);--ui-grey: var(--neutral-400);--ui-dark-grey: var(--neutral-600);--ui: var(--neutral-900);--btn-primary: var(--blue-600);--btn-hover: var(--blue-800);--link-primary: var(--blue-600);--link-hover: var(--blue-800);--link-dark: var(--neutral-900);--link-grey: var(--neutral-500);--link-light-grey: var(--neutral-400);--link-white: var(--white);--image-fallback: var(--neutral-200);--nav-button: var(--neutral-900);--review-progress: var(--neutral-700);--review-bg: var(--neutral-200);--feature-icon: var(--neutral-700);--feature-icon-blue: var(--blue-600);--label-grey: var(--neutral-500);--alert-text: var(--blue-950);--alert-bg: var(--blue-100);--alert-link: var(--blue);--success-text: var(--green-950);--success-bg: var(--green-100);--success-link: var(--green);--warning-text: var(--amber-950);--warning-bg: var(--amber-100);--warning-link: var(--yellow);--error-text: var(--red-950);--error-bg: var(--red-100);--error-link: var(--red)}@media(prefers-color-scheme: dark){:root{--bg: var(--neutral-950);--bg-light-grey: var(--neutral-900);--bg-grey: var(--neutral-800);--bg-de-light: var(--neutral-800);--bg-dark-grey: var(--neutral-900);--bg-dark: var(--neutral-800);--text: var(--white);--text-grey: var(--neutral-300);--text-light-grey: var(--neutral-400);--placeholder: var(--neutral-500);--ui-white: var(--black);--ui-very-light-grey: var(--neutral-900);--ui-light-grey: var(--neutral-600);--ui-grey: var(--neutral-400);--ui-dark-grey: var(--neutral-200);--ui: var(--neutral-100);--link-primary: var(--blue-500);--link-dark: var(--white);--link-light-grey: var(--neutral-600);--image-fallback: var(--neutral-700);--nav-button: var(--neutral-100);--review-progress: var(--neutral-300);--review-bg: var(--neutral-700);--feature-icon: var(--neutral-100);--feature-icon-blue: var(--blue-600);--label-grey: var(--neutral-500);--alert-text: var(--blue-100);--alert-bg: var(--blue-950);--alert-link: var(--blue);--success-text: var(--green-100);--success-bg: var(--green-950);--success-link: var(--green);--warning-text: var(--amber-100);--warning-bg: var(--amber-950);--warning-link: var(--yellow);--error-text: var(--red-100);--error-bg: var(--red-950);--error-link: var(--red)}}html{background-color:var(--bg)}body{font-family:"Open Sans",sans-serif;color:var(--text)}:root{font-size:16px}.hero-title{font-weight:800;color:var(--text);font-weight:700;margin-top:.5em;padding-bottom:.5rem;font-size:4rem;line-height:4.5rem}@media screen and (max-width: 430px){.hero-title{font-size:2.5rem;line-height:3rem}}h1,.h1{color:var(--text);font-weight:700;margin-top:.5em;padding-bottom:.5rem;font-size:2.5rem;line-height:3rem}@media screen and (max-width: 430px){h1,.h1{font-size:2rem;line-height:2.5rem}}h2,.h2{color:var(--text);font-weight:700;margin-top:.5em;padding-bottom:.5rem;font-size:2rem;line-height:2.5rem}@media screen and (max-width: 430px){h2,.h2{font-size:1.5rem;line-height:2rem}}h3,.h3{color:var(--text);font-weight:700;margin-top:.5em;padding-bottom:.5rem;font-size:1.5rem;line-height:2rem}@media screen and (max-width: 430px){h3,.h3{font-size:1.125rem;line-height:1.5rem}}h4,.h4{color:var(--text);font-weight:700;margin-top:.5em;padding-bottom:.5rem;font-size:1.125rem;line-height:1.5rem}@media screen and (max-width: 430px){h4,.h4{font-size:1rem;line-height:1.5rem}}.headline{line-height:2rem;font-weight:400;color:var(--text-grey);font-size:1.125rem;line-height:1.5rem}@media screen and (max-width: 430px){.headline{font-size:1rem;line-height:1.5rem}}.headline a{color:inherit}.headline a:hover{text-decoration:underline}.headline.b{font-weight:600}p,.p,ul,ol,li{max-width:80ch;color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1.5rem}p.xs,.p.xs,ul.xs,ol.xs,li.xs{font-size:.875rem;line-height:1.25rem}p.b,.p.b,ul.b,ol.b,li.b{font-weight:600}p strong,.p strong,ul strong,ol strong,li strong{color:var(--text)}p a,.p a,ul a,ol a,li a{color:var(--link-primary);text-decoration:none}p a:hover,.p a:hover,ul a:hover,ol a:hover,li a:hover{text-decoration:underline;color:var(--link-hover)}p,.p{margin-bottom:1rem}em,.em{font-style:italic !important}span{color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1rem}span.xs{font-size:.875rem;line-height:.875rem}span.b{font-weight:600}span.light{color:var(--text-light-grey)}span strong{color:var(--text)}.footnote{color:var(--text-grey);font-weight:400;font-size:.75rem;line-height:1rem}.logo{text-decoration:none;font-family:gelica,sans-serif;font-weight:600;font-style:normal;text-transform:lowercase}.mono{font-family:"Courier Prime",Courier,monospace}.code-block{font-family:"Courier Prime",Courier,monospace;display:block;margin:8px auto 24px auto;padding:16px 24px;background-color:var(--bg-grey);color:var(--text);width:fit-content;border-radius:8px}.code-inline{font-family:"Courier Prime",Courier,monospace;border-radius:8px;padding:2px 4px;background-color:var(--bg-grey);color:var(--text)}ol,ul{padding:0 2rem;margin:.5rem 0;max-width:80ch}li{padding-bottom:.5rem}.breadcrumbs{color:var(--text-light-grey);font-size:1rem;line-height:1rem}.breadcrumbs a{color:var(--text-light-grey);font-size:1rem;line-height:1rem}.breadcrumbs a:hover{text-decoration:underline}.breadcrumbs span{padding:0 .25rem}blockquote{padding:16px 24px;margin:16px 0 24px 48px;background-color:var(--bg-de-light);border-radius:1rem;display:flex;flex-direction:column;align-items:flex-end;color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1.5rem}blockquote p{font-style:italic}hr{margin:48px 40px;background-color:var(--ui-light-grey)}.blue{color:var(--blue)}.green{color:var(--green-600)}.orange{color:var(--amber-500)}.red{color:var(--red-500)}.section{width:100%;padding:40px 0;display:flex;flex-direction:column;align-items:flex;justify-content:center}.section-sm{padding:8px 0}.section.dark{background-color:var(--de-dark);color:var(--text-white)}.section.dark h1,.section.dark p,.section.dark strong{color:var(--text-white)}.section.light{background-color:var(--bg-de-light);color:var(--text)}.container{padding-top:8px;padding-bottom:8px}@media screen and (min-width: 1280px){.container{margin:0 auto;width:1280px;padding-left:40px;padding-right:40px}}@media screen and (max-width: 1280px)and (min-width: 1024px){.container{padding-left:40px;padding-right:40px}}@media screen and (max-width: 1024px)and (min-width: 768px){.container{padding-left:32px;padding-right:32px}}@media screen and (max-width: 768px)and (min-width: 430px){.container{padding-left:24px;padding-right:24px}}@media screen and (max-width: 430px){.container{padding-left:16px;padding-right:16px}}.container.fill{width:100%}.container.narrow{max-width:600px}.container.wide{min-width:100%;padding-left:40px;padding-right:40px}.container.full-width{min-width:100%;padding:0}@media screen and (min-width: 768px){.grid{display:grid;grid-template-columns:repeat(12, 1fr);gap:8px}.left{grid-column:span 8}.right{grid-column:span 4}.d1{grid-column:span 1 !important}.d2{grid-column:span 2 !important}.d3{grid-column:span 3 !important}.d4{grid-column:span 4 !important}.d5{grid-column:span 5 !important}.d6{grid-column:span 6 !important}.d7{grid-column:span 7 !important}.d8{grid-column:span 8 !important}.d9{grid-column:span 9 !important}.d10{grid-column:span 10 !important}.d11{grid-column:span 11 !important}.d12{grid-column:span 12 !important}}@media screen and (max-width: 768px)and (min-width: 430px){.grid{display:grid;grid-template-columns:repeat(8, 1fr);gap:8px}.left{grid-column:span 5}.right{grid-column:span 3}.t1{grid-column:span 1 !important}.t2{grid-column:span 2 !important}.t3{grid-column:span 3 !important}.t4{grid-column:span 4 !important}.t5{grid-column:span 5 !important}.t6{grid-column:span 6 !important}.t7{grid-column:span 7 !important}.t8{grid-column:span 8 !important}}@media screen and (max-width: 430px){.grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:8px}.left{grid-column:span 4}.right{grid-column:span 4}.m1{grid-column:span 1 !important}.m2{grid-column:span 2 !important}.m3{grid-column:span 3 !important}.m4{grid-column:span 4 !important}}.section-header{display:flex;flex-direction:row;align-items:center;flex-wrap:wrap;gap:8px}.section-header h1,.section-header h2,.section-header h3,.section-header h4{flex-basis:100%;padding-bottom:0}.section-header .headline{flex-basis:75%;flex-grow:1}.section-header .breadcrumbs{flex-basis:60%;flex-grow:1}.section-header.center{justify-content:center;text-align:center}.copy{max-width:80ch}.link{font-weight:600;color:var(--link-primary);text-decoration:none;font-size:1rem;line-height:1rem}.link:hover{color:var(--link-hover);text-decoration:underline}.link.sm{font-weight:500;font-size:.75rem;line-height:1rem}.link.dark{color:var(--link-dark)}.link.dark:hover{color:var(--link-dark)}.link.grey{color:var(--link-grey)}.link.grey:hover{color:var(--link-grey)}.link.grey:focus{outline:1px solid var(--ui-light-grey);outline-offset:4px}.link.white{color:var(--link-white)}.link.white:hover{text-decoration:underline;color:var(--link-white)}.link:focus{outline:1px solid var(--btn-primary);outline-offset:4px}.link-group{display:flex;flex-direction:row;justify-content:center;gap:16px}@media screen and (max-width: 430px){.link-group.wrap{flex-wrap:wrap}.link-group.wrap a{flex:1 1 fit-content;text-align:center}}.link-group.left{justify-content:left}button,.button{display:inline-block;cursor:pointer;width:fit-content;white-space:nowrap;padding:.75rem 1.5rem;font-weight:600;border:2px solid var(--btn-primary);border-radius:4px;background-color:rgba(0,0,0,0);color:var(--btn-primary);font-size:1rem;line-height:1rem}button.primary,.button.primary{background-color:var(--btn-primary);color:var(--link-white)}button.secondary,.button.secondary{border:1px solid var(--ui-light-grey);background-color:rgba(0,0,0,0);color:var(--text)}button.brand,.button.brand{background-color:var(--de-primary);border-color:var(--de-primary);color:var(--link-white)}button.link,.button.link{border:none}button.sm,.button.sm{padding:.5rem 1rem;font-weight:600;border-radius:.375rem;font-size:.875rem;line-height:.875rem}button.lg,.button.lg{padding:1rem 1.5rem;font-size:1rem;line-height:1.5rem}button.round,.button.round{border-radius:4rem}button:hover,.button:hover{cursor:pointer}button:focus,.button:focus{outline:1px solid var(--btn-primary);outline-offset:4px}button.disabled,button:disabled,.button.disabled,.button:disabled{border:1px solid var(--ui-light-grey);background-color:var(--ui-light-grey);color:var(--ui-grey);cursor:not-allowed}button.disabled:hover,button:disabled:hover,.button.disabled:hover,.button:disabled:hover{background-color:var(--ui-light-grey);color:var(--ui-grey)}button.disabled:focus,button:disabled:focus,.button.disabled:focus,.button:disabled:focus{background-color:var(--ui-light-grey);color:var(--ui-grey);outline:1px solid var(--ui-grey);outline-offset:4px}button.disabled:active,button:disabled:active,.button.disabled:active,.button:disabled:active{background-color:var(--ui-light-grey);color:var(--ui-grey)}button.disabled:active:focus,button:disabled:active:focus,.button.disabled:active:focus,.button:disabled:active:focus{outline:none}button span.count,.button span.count{background-color:var(--blue);color:#fff;border-radius:50%;width:16px;height:16px;margin-left:8px;display:inline-block;padding:1px;font-size:.875rem;line-height:.875rem}button.active-selection,.button.active-selection{border:1px solid var(--blue)}.control{display:flex;flex-direction:column;justify-content:center;align-items:center;padding:8px;background-color:var(--ui-white);border:1px solid var(--ui-light-grey);width:1.5rem;height:1.5rem;line-height:1rem;font-size:1rem;border-radius:50%}.control:hover{background-color:var(--ui-light-grey)}.image{background-repeat:no-repeat;background-position:center;background-size:cover;width:100%;border-radius:1em}.image img{background-color:var(--image-fallback);width:100%;height:100%;object-fit:cover;border-radius:1em}.image.bottle{background-color:var(--white);width:100%}.image.bottle img{object-fit:contain}.map{height:200px;width:100%;margin-top:16px;border-radius:1em}.map .ol-viewport{border-radius:8px}.large-map{display:block}.large-map .map{height:400px}@media screen and (width <= 700px){.large-map .map{height:200px}}.image-label{font-size:.75rem;font-weight:600}input,textarea{display:block;width:100%;max-width:360px}input[type=radio],input[type=checkbox],textarea[type=radio],textarea[type=checkbox]{display:inline-block;width:fit-content;background-color:#fff;margin:0}input,textarea{appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);border:1px solid var(--ui-light-grey);border-radius:4px;padding:8px 12px;margin-bottom:8px;transition:background .15s ease,border .15s ease,box-shadow .15s ease,color .15s ease;box-shadow:0 1px 1px rgba(0,0,0,.03),0 3px 6px rgba(0,0,0,.02);color:var(--text-grey);color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1rem}input::-webkit-date-and-time-value,textarea::-webkit-date-and-time-value{text-align:left}input::placeholder,textarea::placeholder{color:var(--placeholder)}textarea{min-height:6rem;line-height:1.5rem;resize:vertical}textarea::-webkit-resizer{display:none}label{padding-bottom:4px;box-sizing:border-box;color:var(--label-grey);color:var(--text-grey);font-weight:400;font-size:.875rem;line-height:.875rem}label.b{font-weight:600}label.reg{font-size:1rem;line-height:1rem}label:has(>input:disabled){color:var(--text-light-grey)}label input,label select,label .select,label textarea{margin-top:4px}input:hover,textarea:hover{border:1px solid var(--text-grey)}input:focus,textarea:focus{border:1px solid var(--blue);outline:none}input.success,textarea.success{border:1px solid var(--green)}input.error,textarea.error{border:1px solid var(--red)}input:disabled,textarea:disabled{color:var(--ui-grey);background-color:var(--ui-light-grey);border:var(--ui-dark-grey);cursor:not-allowed}input.white,textarea.white{border:1px solid var(--bg-white);background-color:var(--bg-white);color:var(--text-black)}input.sm,textarea.sm{padding:.25rem 1rem;height:32px;font-weight:600;border-radius:.375rem;font-size:.875rem;line-height:.875rem}input.lg,textarea.lg{padding:1rem 1.5rem;background-position:right 1rem center;border-radius:8px;font-size:1rem;line-height:1.5rem}label:has(>input[type=checkbox]){display:flex;flex-direction:row;align-items:center;gap:8px;margin:8px 0}label:has(>input[type=checkbox]).reg{gap:12px}input[type=checkbox]{-webkit-appearance:none;appearance:none;background-color:rgba(0,0,0,0);margin:0;width:1.5rem !important;height:1.5rem !important;border:1px solid var(--ui-light-grey);border-radius:4px;padding:8px;box-shadow:0 1px 1px rgba(0,0,0,.03),0 3px 6px rgba(0,0,0,.02)}input[type=checkbox]:checked{background-image:url("/static/img/check.svg");background-color:var(--btn-primary);border-color:var(--btn-primary);background-repeat:no-repeat;background-position:center;background-size:1rem;transition:none}input[type=checkbox]:checked:hover{border-color:var(--btn-primary)}input[type=checkbox]:hover{border:1px solid var(--text-grey);cursor:pointer}input[type=checkbox]:focus{border:1px solid var(--blue);outline:none}input[type=checkbox]:disabled{color:var(--ui-grey);background-color:var(--ui-light-grey);border:var(--ui-dark-grey);cursor:not-allowed}.form-group{display:flex;flex-direction:row;gap:8px;flex-wrap:wrap;align-items:center;flex-basis:100%;position:relative;margin-top:8px}.form-group input[type=number]{padding-right:10ch}.form-group .input-unit{position:absolute;right:14ch;top:50%;pointer-events:none;line-height:1.125rem}.form-group:has(>input:disabled) label{color:var(--text-light-grey)}.form-group:has(>input:disabled) .input-unit{color:var(--text-light-grey)}.form-group label{flex-basis:100%}.form-group select,.form-group .select,.form-group input,.form-group textarea{flex:1 0 240px}.input-group{display:flex;flex-direction:row;white-space:nowrap;gap:0}@media screen and (max-width: 430px){.input-group{flex-direction:column;gap:8px;width:100%}.input-group input,.input-group select,.input-group .select,.input-group button{width:100%;max-width:100%;border-radius:8px}}.input-group input,.input-group select,.input-group .select,.input-group button{border-radius:0}@media screen and (min-width: 430px){.input-group input:first-child,.input-group select:first-child,.input-group .select:first-child,.input-group button:first-child{border-radius:8px 0 0 8px}.input-group input:last-child,.input-group select:last-child,.input-group .select:last-child,.input-group button:last-child{border-radius:0 8px 8px 0}}.input-button{display:flex;flex-direction:row;gap:8px;flex-wrap:nowrap;align-items:flex-start}.input-button button{padding:.615rem 1.5rem}input.money{padding-left:2rem;background-image:url("/static/img/dollar.svg");background-position:left .75rem center;background-repeat:no-repeat;background-size:1rem}@media(prefers-color-scheme: dark){input.money{background-image:url("/static/img/dollar-white.svg")}}input.search,input[type=search]{padding-left:2.5rem;background-image:url("/static/img/search.svg");background-position:left .75rem center;background-repeat:no-repeat;background-size:1rem}@media(prefers-color-scheme: dark){input.search,input[type=search]{background-image:url("/static/img/search-white.svg")}}select,.select{display:block;width:100%;max-width:360px;appearance:none;-moz-appearance:none;-webkit-appearance:none}.select-container{position:relative;width:100%;max-width:360px;height:fit-content}.options{position:absolute;top:100%;left:0;width:100%;background-color:var(--bg-white);border:1px solid var(--ui-light-grey);border-radius:4px;z-index:10;box-shadow:0 4px 6px rgba(0,0,0,.1);max-height:calc(8*(1.5rem + 2*12px));overflow-y:auto}.options .option{padding:12px 16px;cursor:pointer;color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1.5rem}select,.select{background-color:rgba(0,0,0,0);border:1px solid var(--ui-light-grey);border-radius:4px;padding:8px 12px;margin-top:4px;margin-bottom:8px;color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1.5rem}.options{background-color:var(--bg);border:1px solid var(--ui-light-grey);border-radius:4px;z-index:1000;box-shadow:0 4px 6px rgba(0,0,0,.1)}.options .option{padding:12px 16px;cursor:pointer;color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1.5rem}select{background-repeat:no-repeat;background-position:right .75rem center;background-size:1rem;padding-right:2rem;background-image:url("/static/img/down-chevron.png")}@media(prefers-color-scheme: dark){select{background-image:url("/static/img/down-chevron-white.png")}}.select{position:relative}@media(prefers-color-scheme: dark){.select::after{background-image:url("/static/img/down-chevron-white.png")}}.select::after{content:"";position:absolute;top:50%;right:.75rem;width:1rem;height:1rem;background-image:url("/static/img/down-chevron.png");background-repeat:no-repeat;background-size:contain;transform:translateY(-50%);transition:transform .2s ease}.select.open::after{transform:translateY(-50%) rotate(180deg)}select:hover,.select:hover{border:1px solid var(--text-grey)}select:focus,.select:focus{border:1px solid var(--blue);outline:none}select.success,select.selected,.select.success,.select.selected{border:1px solid var(--green)}select.error,.select.error{border:1px solid var(--red)}.option:hover{background-color:var(--bg-grey)}.option[aria-selected=true]{color:var(--blue);font-weight:600;border-left:4px solid var(--blue);padding-left:12px}.option.focused{background-color:var(--bg-grey);outline:none}.option.unavailable{color:var(--text-grey);background-color:var(--bg-light-grey)}.option.unavailable:hover{background-color:var(--bg-grey)}select.white,.select.white{border:1px solid var(--bg-white);background-color:var(--bg-white);color:var(--text-black);background-image:url("/static/img/down-chevron.png")}select.primary,.select.primary{border:1px solid var(--btn-primary);background-color:var(--btn-primary);color:var(--link-white);background-image:url("/static/img/down-chevron-white.png")}select.sm,.select.sm{padding:.25rem 1rem;height:32px;font-weight:600;border-radius:.375rem;font-size:.875rem;line-height:.875rem}select.lg,.select.lg{padding:1rem 1.5rem;background-position:right 1rem center;border-radius:8px;height:60px;font-size:1rem;line-height:1.5rem}table{width:100%;border-collapse:collapse;border-radius:8px}table thead tr th{font-weight:bold;border-bottom:1px solid #000;border-collapse:collapse;text-align:left;padding:4px}table tr:not(:last-child){border-bottom:1px solid var(--ui-light-grey)}table tr td{padding:4px}.or-divider{display:flex;flex-direction:row;align-items:center;gap:16px}.or-divider hr{width:100%;height:1px;border:none;margin:0;background:var(--ui-light-grey)}.or-divider span{color:var(--text-light-grey)}header.section{padding-top:8px;padding-bottom:8px}header.section .nav-container{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding-top:8px;padding-bottom:8px}@media screen and (max-width: 430px){header.section .nav-container{padding-top:0;padding-bottom:0}}header.section .logo{color:var(--text);display:inline-block;font-size:1.5rem;font-weight:700}@media screen and (max-width: 430px){header.section .logo{font-size:1.125rem}}header.section nav{display:flex;flex-direction:row;gap:8px;justify-content:flex-end}header.section nav .nav-item{display:inline-flex;align-items:center;padding-left:1rem}header.section nav .nav-item.g_id_signin{height:40px}.profile-image img{width:32px;height:32px;background-color:var(--green);text-align:center;border-radius:50%;line-height:0px;align-items:center;justify-content:center;display:flex}.profile-image .fallback{display:flex;flex-direction:row;gap:8px;align-items:center;justify-content:center;height:32px;width:32px;border-radius:100%;background-color:var(--de-dark-mid)}.profile-image .fallback span{color:var(--link-white)}footer.section{display:flex;flex-direction:column;gap:8px;background-color:var(--bg-dark);padding-top:48px;padding-bottom:64px}footer.section span{color:var(--text-white)}footer.section a{color:var(--text-white)}footer.section a:hover{text-decoration:underline}footer.section .header{font-weight:800;padding-top:8px}footer.section .top{display:flex;flex-direction:row;gap:48px;flex-wrap:wrap}footer.section .top .brand{flex-grow:1}footer.section .top .door-explorer{margin:0 auto;width:fit-content}footer.section .top .door-explorer .logo{display:inline-block;font-size:1.5rem;font-weight:700;padding-bottom:8px}footer.section .top .door-explorer .social{display:flex;flex-direction:row;gap:16px;justify-content:space-between}footer.section .top .door-explorer .social a{display:inline-block;font-size:1.5rem}footer.section .top .cols{display:flex;flex-direction:row;justify-content:space-between;gap:16px;flex-wrap:wrap;flex:10 1 880px}footer.section .top .cols .left,footer.section .top .cols .right{display:flex;flex-direction:row;gap:16px;flex-grow:1}@media screen and (max-width: 430px){footer.section .top .cols .left,footer.section .top .cols .right{flex-wrap:wrap}}footer.section .top .col{flex-grow:1;flex-basis:50%}footer.section .top .col a,footer.section .top .col span{display:block;padding-bottom:8px;line-height:normal}footer.section .bottom{padding-top:40px}@media screen and (width <= 768px){footer.section .bottom{display:grid;grid-template-columns:repeat(2, 1fr);grid-template-areas:"center center" "left right"}footer.section .bottom .left{grid-area:left}footer.section .bottom .center{grid-area:center;padding-bottom:8px}footer.section .bottom .right{grid-area:right}}footer.section .bottom div{display:flex;flex-direction:row}footer.section .bottom div.left{justify-content:flex-start}footer.section .bottom div.center{justify-content:center}footer.section .bottom div.center .bullet{padding:0 4px}footer.section .bottom div.right{justify-content:flex-end}footer.section.mini{background-color:var(--bg);padding-top:24px;padding-bottom:24px}footer.section.mini .logo{color:var(--text);display:inline-block;text-decoration:none;font-size:1.5rem;font-weight:700}footer.section.mini span,footer.section.mini a{color:var(--text)}footer.section.mini .bottom{padding-top:0}.dashboard .dash-sidebar{display:flex;flex-direction:column;gap:24px;position:relative;padding:16px 8px;background-color:var(--de-dark);container-name:dash-sidebar;container-type:inline-size}.dashboard.collapsed{grid-template-columns:56px auto}.dashboard .dash-sidebar .sidebar-header{display:grid;grid-template-columns:32px auto 16px;grid-template-rows:auto;gap:8px;align-items:flex-start;justify-content:flex-start;padding:4px}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-header{grid-template-columns:32px}}.dashboard .dash-sidebar .sidebar-header .account-image{width:32px;height:32px}.dashboard .dash-sidebar .sidebar-header .account-image img{width:32px;height:32px;border-radius:50%}.dashboard .dash-sidebar .sidebar-header .account-image .fallback{display:flex;flex-direction:row;gap:8px;align-items:center;justify-content:center;height:32px;width:32px;border-radius:100%;background-color:var(--de-primary)}.dashboard .dash-sidebar .sidebar-header .account-image .fallback span{color:var(--link-white)}@container dash-sidebar (inline-size <= 56px){}.dashboard .dash-sidebar .sidebar-header .account-names{display:flex;flex-direction:column;gap:2px}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-header .account-names{display:none}}.dashboard .dash-sidebar .sidebar-header .account-names .winery-name{display:block;color:var(--text-white);font-size:.875rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dashboard .dash-sidebar .sidebar-header .account-names .user-name{display:block;color:var(--text-white);opacity:.8;font-size:.75rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dashboard .dash-sidebar .sidebar-header i.fa-angle-down{color:var(--text-white);font-size:.75rem;line-height:1.125rem;opacity:.8;padding-left:4px;display:none}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-header i.fa-angle-down{display:none}}.dashboard .dash-sidebar .sidebar-nav{display:flex;flex-direction:column;gap:8px;flex-grow:1;overflow-x:hidden}.dashboard .dash-sidebar .sidebar-nav::-webkit-scrollbar{display:none}.dashboard .dash-sidebar .sidebar-nav .nav-link{display:grid;grid-template-columns:40px auto;grid-template-rows:auto;align-items:center;gap:8px;padding:12px 0}.dashboard .dash-sidebar .sidebar-nav .nav-link i.nav-link-icon{color:var(--white);font-size:1rem;justify-self:center}.dashboard .dash-sidebar .sidebar-nav .nav-link .nav-link-label{color:var(--white);font-size:.875rem}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-nav .nav-link .nav-link-label{display:none}}.dashboard .dash-sidebar .sidebar-nav .nav-link.active{background-color:var(--de-dark-mid);border-radius:8px}.dashboard .dash-sidebar .sidebar-nav .nav-link:hover{background-color:var(--de-dark-mid);border-radius:8px}.dashboard .dash-sidebar .sidebar-nav .sidebar-subnav{display:flex;flex-direction:column;gap:4px;margin-left:40px}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-nav .sidebar-subnav{display:none}}.dashboard .dash-sidebar .sidebar-nav .sidebar-subnav .nav-link{display:block;padding:4px 16px;width:100%;font-size:.875rem;line-height:1rem}.dashboard .dash-sidebar .sidebar-nav .sidebar-subnav .nav-link.active span,.dashboard .dash-sidebar .sidebar-nav .sidebar-subnav .nav-link:hover span{font-weight:400}.dashboard .dash-sidebar .sidebar-actions{display:flex;flex-direction:column;gap:8px}.dashboard .dash-sidebar .sidebar-actions button.add-booking{display:flex;flex-direction:row;gap:8px;align-items:center;justify-content:center;padding:12px;max-width:100%;width:100%;background-color:var(--white);border:var(--white);color:var(--neutral-900)}.dashboard .dash-sidebar .sidebar-actions button.add-booking i.fa-plus{font-size:1rem;color:var(--neutral-900)}.dashboard .dash-sidebar .sidebar-actions button.add-booking span{color:var(--neutral-900)}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-actions button.add-booking span{display:none}}.dashboard .dash-sidebar .sidebar-actions .dash-search{display:none;width:100%;position:relative}.dashboard .dash-sidebar .sidebar-actions .dash-search input{width:100%;max-width:360px}.dashboard .dash-sidebar .sidebar-actions .dash-search .results-container{display:flex;flex-direction:column;gap:8px;position:absolute;top:calc(100% + 8px);left:0;background-color:var(--bg-light-grey);border:1px solid var(--ui-light-grey);padding:24px;box-shadow:0 2px 4px rgba(0,0,0,.1);z-index:999;border-radius:4px}.dashboard .dash-sidebar .sidebar-footer{display:flex;flex-direction:row;align-items:flex-start;justify-content:space-between;gap:16px;height:56px}.dashboard .dash-sidebar .sidebar-footer .footer-content{display:flex;flex-direction:column;gap:8px;padding:0 4px}.dashboard .dash-sidebar .sidebar-footer .footer-content .logo{color:var(--white);font-size:1.5rem;line-height:1.5rem}.dashboard .dash-sidebar .sidebar-footer .footer-content .logo .de-icon{display:none}.dashboard .dash-sidebar .sidebar-footer .footer-content .logo .de-logo{display:block}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-footer .footer-content .logo .de-icon{display:block}.dashboard .dash-sidebar .sidebar-footer .footer-content .logo .de-logo{display:none}}.dashboard .dash-sidebar .sidebar-footer .footer-content .links{display:flex;flex-direction:row;gap:16px}@container dash-sidebar (inline-size <= 56px){.dashboard .dash-sidebar .sidebar-footer .footer-content .links{display:none}}.dashboard .dash-sidebar .sidebar-footer .footer-content .links .footer-link{color:var(--white);font-size:.875rem;line-height:1.25rem}.dashboard .dash-sidebar .sidebar-toggle{position:absolute;bottom:8px;right:-16px;transform:translateY(-50%);z-index:5}.dashboard .dash-sidebar .sidebar-toggle button.toggle{border-radius:50%;width:24px;height:24px;padding:0;display:flex;align-items:center;justify-content:center;background-color:var(--bg-white);border:none;box-shadow:0 0 8px rgba(0,0,0,.33);outline:none;color:var(--neutral-900);font-size:.875rem;line-height:1rem}.dashboard-wrapper{display:flex}.dashboard-wrapper .dashboard{flex-grow:2}.booking-sidebar{flex-grow:1;background-color:var(--bg);overflow:auto;box-sizing:border-box;width:100%;min-width:420px;max-width:fit-content;height:100vh;display:flex;border-left:1px solid var(--ui-light-grey);box-shadow:0 2px 8px rgba(0,0,0,.05)}.booking-sidebar::-webkit-scrollbar{display:none}.booking-sidebar::-webkit-scrollbar-track{background:rgba(0,0,0,0)}.booking-sidebar::-webkit-scrollbar-thumb{background:rgba(0,0,0,0)}@media screen and (max-width: 768px){.booking-sidebar{position:fixed;inset:0;z-index:9999;max-width:100%;width:100%;background-color:rgba(0,0,0,.5);backdrop-filter:blur(4px);min-width:unset}.booking-sidebar .sidebar-content{background-color:var(--bg);margin:0;padding:16px;height:100%;border-radius:0}}@media screen and (max-width: 430px){.booking-sidebar .sidebar-content{padding:8px 16px}.booking-sidebar .sidebar-close{top:8px;right:8px}}.booking-sidebar .sidebar-close{position:absolute;top:4px;right:8px;font-size:1.25rem;z-index:101;padding:4px;border-radius:50%;border:none;width:40px;height:40px;display:flex;align-items:center;justify-content:center}.booking-sidebar .sidebar-close:hover{background-color:var(--bg-light-grey);text-decoration:none}.booking-sidebar .sidebar-header{display:flex;flex-direction:row;gap:8px;justify-content:center;padding:16px;margin-bottom:24px;border-bottom:1px solid var(--ui-light-grey);color:var(--text);position:sticky;top:0;background-color:var(--bg);z-index:100}.booking-sidebar .sidebar-header span{color:var(--text-grey)}.booking-sidebar .sidebar-content{height:100%;width:100%;overflow-y:auto;padding:0 24px;display:flex;flex-direction:column;gap:24px;width:100%}.booking-sidebar .sidebar-content .label{color:var(--label-grey)}.booking-sidebar .sidebar-content.fade-transition>div{animation:fadein .5s ease-in-out}.booking-sidebar .sticky-button-bar{position:sticky;z-index:10;background-color:var(--bg);border-top:1px solid var(--ui-light-grey);width:100%;bottom:0;left:0;padding:8px}.booking-sidebar .sticky-button-bar .prepayment-option{margin-bottom:8px}.booking-sidebar .sticky-button-bar .prepayment-option .prepayment-help-text{margin-left:32px;color:var(--text-light-grey);font-size:.875rem;display:block;margin-top:4px}.booking-sidebar .sticky-button-bar .actions{display:flex;flex-direction:row;gap:8px;padding-top:8px;padding-bottom:12px}.booking-sidebar .booking-warning{padding:.75rem;margin-bottom:1rem;border-radius:6px;font-size:.875rem;display:flex;align-items:center}.booking-sidebar .booking-warning i{margin-right:.5rem}.booking-sidebar .booking-warning.error{background-color:#fef2f2;border:1px solid #fecaca;color:#dc2626}.booking-sidebar .booking-warning.warning{background-color:#fefbf2;border:1px solid #fed7aa;color:#d97706}.booking-sidebar .create-booking .how,.booking-sidebar .edit-booking .how{display:flex;flex-direction:column;gap:4px;padding-bottom:40px}.booking-sidebar .create-booking .who,.booking-sidebar .edit-booking .who{display:flex;flex-direction:column;gap:4px;padding-bottom:40px}.booking-sidebar .create-booking .who .group-size,.booking-sidebar .edit-booking .who .group-size{display:flex;flex-direction:row;gap:16px;align-items:center;justify-content:space-between;max-width:360px;padding-top:40px;flex-wrap:wrap}.booking-sidebar .create-booking .who .group-size .group-size-inputs,.booking-sidebar .edit-booking .who .group-size .group-size-inputs{display:flex;flex-direction:row;gap:16px;flex-wrap:nowrap}.booking-sidebar .create-booking .who .group-size .total-guests,.booking-sidebar .edit-booking .who .group-size .total-guests{display:flex;flex-direction:column;gap:4px;max-width:106px}.booking-sidebar .create-booking .who .group-size .total-guests .count-total,.booking-sidebar .edit-booking .who .group-size .total-guests .count-total{width:100%;text-align:center}.booking-sidebar .create-booking .who .group-size .counter-error,.booking-sidebar .edit-booking .who .group-size .counter-error{flex-basis:100%;color:var(--error-text);background-color:var(--error-bg);border-radius:4px;padding:4px;font-size:.875rem;font-weight:500}.booking-sidebar .create-booking .what,.booking-sidebar .edit-booking .what{display:flex;flex-direction:column;gap:8px;padding-bottom:40px}.booking-sidebar .create-booking .what .extras,.booking-sidebar .edit-booking .what .extras{display:flex;flex-direction:column;gap:4px}.booking-sidebar .create-booking .what .extras .available-extras,.booking-sidebar .edit-booking .what .extras .available-extras{display:flex;flex-direction:column;gap:8px}.booking-sidebar .create-booking .what .extras .available-extras .extra-card,.booking-sidebar .edit-booking .what .extras .available-extras .extra-card{border-radius:8px;padding:12px}.booking-sidebar .create-booking .what .extras .available-extras .extra-card .extra-name,.booking-sidebar .edit-booking .what .extras .available-extras .extra-card .extra-name{color:var(--text);font-size:1rem;line-height:1.2rem;font-weight:600;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.booking-sidebar .create-booking .what .extras .available-extras .extra-card .extra-price,.booking-sidebar .edit-booking .what .extras .available-extras .extra-card .extra-price{color:var(--text-light-grey);font-size:.875rem;line-height:1rem;font-weight:400}.booking-sidebar .create-booking .when,.booking-sidebar .edit-booking .when{display:flex;flex-direction:column;gap:4px;padding-bottom:40px}.booking-sidebar .create-booking .where,.booking-sidebar .edit-booking .where{display:flex;flex-direction:column;gap:4px;padding-bottom:40px}.booking-sidebar .create-booking .why,.booking-sidebar .edit-booking .why{display:flex;flex-direction:column;gap:4px;padding-bottom:16px}.booking-sidebar .view-booking .contact{display:flex;flex-direction:column;gap:4px;padding-top:16px}.booking-sidebar .view-booking .contact .name{margin:0;padding:0}.booking-sidebar .view-booking .contact p{padding:0}.booking-sidebar .view-booking .details{display:flex;flex-direction:column;gap:4px;padding-top:16px}.booking-sidebar .view-booking .details .guest-count{display:flex;flex-direction:row;gap:48px}.booking-sidebar .view-booking .details .experience-extras{display:flex;flex-direction:row;gap:48px;padding-bottom:16px}.booking-sidebar .view-booking .details .experience-extras .experience,.booking-sidebar .view-booking .details .experience-extras .extras{max-width:fit-content;flex-basis:50%;overflow:hidden}.booking-sidebar .view-booking .details .experience-extras .experience p,.booking-sidebar .view-booking .details .experience-extras .extras p{padding:0;text-wrap:nowrap;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.booking-sidebar .view-booking .details .date-time{display:flex;flex-direction:row;gap:48px}.booking-sidebar .view-booking .payment-status{display:flex;flex-direction:column;gap:4px;padding-top:16px}.booking-sidebar .view-booking .internal-notes{display:flex;flex-direction:column;gap:4px;padding-top:16px}.booking-sidebar .event-log{padding-top:48px;padding-bottom:48px}.booking-sidebar .event-log table th{padding:8px}.booking-sidebar .event-log table td{padding:12px 8px}.booking-sidebar .event-log table td{vertical-align:top;font-size:.875rem;color:var(--text-grey)}.booking-sidebar .event-log table td.date-time{display:flex;flex-direction:column;gap:4px}.booking-sidebar .event-log table td.date-time .date{white-space:nowrap;font-size:.875rem}.booking-sidebar .event-log table td.date-time .time{white-space:nowrap;font-size:.875rem}.booking-sidebar .payment-status .payment-info{display:flex;flex-direction:column;gap:8px}.booking-sidebar .payment-status .payment-info .payment-badge{display:flex;flex-direction:row;align-items:center;gap:4px;padding:4px 8px;border-radius:6px;font-size:.875rem;font-weight:500;width:fit-content}.booking-sidebar .payment-status .payment-info .payment-badge i{font-size:1rem}.booking-sidebar .payment-status .payment-info .payment-badge.not_required{background-color:var(--bg-light-grey);color:var(--text-grey);border:1px solid var(--ui-light-grey)}.booking-sidebar .payment-status .payment-info .payment-badge.pending{background-color:#fef3c7;color:#92400e;border:1px solid #f59e0b}.booking-sidebar .payment-status .payment-info .payment-badge.partial{background-color:#fef2f2;color:#dc2626;border:1px solid #ef4444}.booking-sidebar .payment-status .payment-info .payment-badge.paid{background-color:#d1fae5;color:#065f46;border:1px solid #10b981}.booking-sidebar .payment-status .payment-info .payment-badge.refunded{background-color:#f3f4f6;color:#4b5563;border:1px solid #9ca3af}.booking-sidebar .payment-status .payment-info .payment-summary .payment-amounts{display:flex;flex-direction:column;gap:4px;font-size:.875rem}.booking-sidebar .payment-status .payment-info .payment-summary .payment-amounts .amount-received{color:var(--text-grey)}.booking-sidebar .payment-status .payment-info .payment-summary .payment-amounts .amount-refunded{color:var(--text-light-grey)}.actions-overflow-container{display:flex;flex-direction:row;gap:8px;align-items:flex-start;position:relative;width:100%}.actions-overflow-visible{display:flex;flex-direction:row;gap:8px}.actions-overflow-menu{position:relative;flex-shrink:0}.actions-overflow-trigger{white-space:nowrap}.actions-overflow-dropdown{position:absolute;bottom:calc(100% + 4px);right:0;background-color:var(--white);border:1px solid var(--ui-light-grey);border-radius:6px;box-shadow:0 4px 12px rgba(0,0,0,.15);z-index:1000;min-width:200px;display:flex;flex-direction:column;gap:0;padding:4px 0;max-height:400px;overflow-y:auto}.actions-overflow-dropdown .actions-overflow-item{width:100%;border-radius:0;border:none;border-bottom:1px solid var(--ui-light-grey);text-align:left;padding:4px 8px;background-color:rgba(0,0,0,0);color:var(--text-primary, #171717) !important}.actions-overflow-dropdown .actions-overflow-item:last-child{border-bottom:none}.actions-overflow-dropdown .actions-overflow-item:hover{background-color:var(--bg-light-grey)}.accordion{max-width:800px;margin:8px 0}@media screen and (max-width: 768px){.accordion button{padding:16px 8px}.accordion .content{padding:0 8px}.accordion .content.is-open{padding:16px 8px}}.accordion .accordion-item{padding:8px}.accordion .accordion-item:not(:last-child){border-bottom:1px solid var(--ui-light-grey)}.accordion button{display:flex;flex-direction:row;gap:8px;border:none;outline:none;cursor:pointer;justify-content:space-between;width:100%;color:var(--text);transition:.4s}.accordion button:hover{color:var(--link-primary)}.accordion button .fa-angle-down{transition:transform .2s ease-in-out}.accordion button[aria-expanded=true] .fa-angle-down{transform:rotate(180deg)}.accordion .content{max-height:0;overflow:hidden;transition:max-height .2s ease-in-out;padding:0 24px}.accordion .content.is-open{transition:padding .2s ease-in-out;padding:8px 24px}@media screen and (min-width: 768px){.card{grid-column:span 3/span 3}}@media screen and (max-width: 768px)and (min-width: 430px){.card{grid-column:span 4/span 4}}@media screen and (max-width: 430px){.card{grid-column:span 4/span 4;margin-bottom:32px}}.card{display:block}.card a,.card a>*{text-decoration:none}.card .image{display:block;margin-bottom:8px;position:relative}@media(hover: none){.card .image .image-indicators{background:linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%)}.card .image .card-arrows .card-arrow{background-color:rgba(0,0,0,.8)}.card .image .card-arrows .card-arrow.active{display:flex}}.card .image picture img{margin-bottom:-5px}.card .image .card-image{display:none}.card .image .card-image.active{display:block}.card .image:hover .image-indicators{background:linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%)}.card .image:hover .card-arrow.active{display:flex}.card .image .image-indicators{position:absolute;top:calc(100% - 50px);height:50px;border-radius:0 0 16px 16px;width:100%;display:flex;justify-content:center}.card .image .image-indicators .image-indicator{width:8px;height:8px;border-radius:50%;background-color:none;border:1px solid var(--white);margin:0 4px;margin-top:30px}.card .image .image-indicators .image-indicator.active{background-color:#fff}.card .image .card-arrows{position:absolute;top:calc(50% - 16px);width:100%}.card .image .card-arrows .card-arrow{position:absolute;width:32px;height:32px;background-color:rgba(0,0,0,.5);border-radius:50%;color:#fff;display:none;justify-content:center;align-items:center;cursor:pointer;z-index:2}.card .image .card-arrows .card-arrow:hover{background-color:rgba(0,0,0,.8)}.card .image .card-arrows .card-arrow.prev-arrow{left:10px}.card .image .card-arrows .card-arrow.next-arrow{right:10px}.card .image .card-arrows .dead-spot{z-index:1;width:60px;height:60px;top:-15px;display:block;position:absolute;cursor:default}.card .image .card-arrows .dead-spot.prev-dead-spot{left:1px}.card .image .card-arrows .dead-spot.next-dead-spot{right:1px}.card .image img{border-radius:16px}.card .image.mid img{aspect-ratio:1/1}.card .image.short{min-height:98px;background-color:var(--image-fallback)}.card .image .image-label{display:inline-block;margin-top:16px;margin-left:16px;border-radius:4px;background-color:var(--bg-grey);color:var(--text);padding:4px 8px;position:absolute}.card .image i.fa-heart{left:calc(100% - 32px);top:6px;border-radius:50%;background-color:var(--bg-grey);position:absolute;padding:4px;width:24px;height:24px;text-align:center}.card .image i.fa-heart::before{vertical-align:middle}.card .image i.fa-heart.fa-solid.fa-heart{color:var(--red)}.card .content{display:flex;flex-direction:row;margin:8px;flex-direction:column;gap:4px}.card .content .top{display:flex;align-items:center;justify-content:space-between;flex-flow:row wrap}.card .content .top .name{color:var(--text);padding-bottom:0;margin-top:0;flex-grow:1}.card .content .top .rating{color:var(--text);font-size:1rem;line-height:1.5rem}.card .content .top .region{color:var(--text);font-weight:600;flex-basis:100%;font-size:.875rem;line-height:1.25rem}.card .content p{font-size:1rem;color:var(--text-grey)}.card.disabled{opacity:.5}.card strong{display:inline-block;margin-top:8px}.card .columns{display:grid;grid-gap:16px;grid-template-columns:1fr 1fr;margin-top:16px;color:var(--text)}.card .columns li{list-style-type:none;padding-bottom:16px}.card .columns table{width:100%;border-spacing:0}.card .columns table td{padding-bottom:16px}.gallery{display:grid}.gallery .image{background:none}@media screen and (width >= 769px){.gallery{gap:4px}.gallery-1,.gallery-2,.gallery-3,.gallery-4,.gallery-5{aspect-ratio:24/10;grid-template-columns:repeat(12, 1fr);grid-template-rows:repeat(6, 1fr)}.gallery-1 .image{grid-column:span 12;grid-row:span 6}.gallery-1 .image img{border-radius:1rem}.gallery-2 .image:first-child{grid-column:span 8;grid-row:span 6}.gallery-2 .image:nth-child(2){grid-column:span 4;grid-row:span 6}.gallery-2 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-2 .image:nth-child(2) img{border-radius:0 1rem 1rem 0}.gallery-3 .image:first-child{grid-column:span 8;grid-row:span 6}.gallery-3 .image:nth-child(2){grid-column:span 4;grid-row:span 3}.gallery-3 .image:nth-child(3){grid-column:span 4;grid-row:span 3}.gallery-3 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-3 .image:nth-child(2) img{border-radius:0 1rem 0 0}.gallery-3 .image:nth-child(3) img{border-radius:0 0 1rem}.gallery-4 .image:first-child{grid-column:span 9;grid-row:span 6}.gallery-4 .image:nth-child(2){grid-column:span 3;grid-row:span 2}.gallery-4 .image:nth-child(3){grid-column:span 3;grid-row:span 2}.gallery-4 .image:nth-child(4){grid-column:span 3;grid-row:span 2}.gallery-4 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-4 .image:nth-child(2) img{border-radius:0 1rem 0 0}.gallery-4 .image:nth-child(3) img{border-radius:0}.gallery-4 .image:nth-child(4) img{border-radius:0 0 1rem}.gallery-5 .image:first-child{grid-column:span 6;grid-row:span 6}.gallery-5 .image:nth-child(2){grid-column:span 3;grid-row:span 3}.gallery-5 .image:nth-child(3){grid-column:span 3;grid-row:span 3}.gallery-5 .image:nth-child(4){grid-column:span 3;grid-row:span 3}.gallery-5 .image:nth-child(5){grid-column:span 3;grid-row:span 3}.gallery-5 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-5 .image:nth-child(2) img{border-radius:0}.gallery-5 .image:nth-child(3) img{border-radius:0 1rem 0 0}.gallery-5 .image:nth-child(4) img{border-radius:0}.gallery-5 .image:nth-child(5) img{border-radius:0 0 1rem}}@media screen and (width <= 768px)and (width >= 431px){.gallery{gap:4px}.gallery-1,.gallery-2,.gallery-3,.gallery-4,.gallery-5{aspect-ratio:24/10;grid-template-columns:repeat(8, 1fr);grid-template-rows:repeat(6, 1fr)}.gallery-1 .image{grid-column:span 8;grid-row:span 6}.gallery-1 .image img{border-radius:1rem}.gallery-2 .image:first-child{grid-column:span 5;grid-row:span 6}.gallery-2 .image:nth-child(2){grid-column:span 3;grid-row:span 6}.gallery-2 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-2 .image:nth-child(2) img{border-radius:0 1rem 1rem 0}.gallery-3 .image:first-child{grid-column:span 5;grid-row:span 6}.gallery-3 .image:nth-child(2){grid-column:span 3;grid-row:span 3}.gallery-3 .image:nth-child(3){grid-column:span 3;grid-row:span 3}.gallery-3 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-3 .image:nth-child(2) img{border-radius:0 1rem 0 0}.gallery-3 .image:nth-child(3) img{border-radius:0 0 1rem}.gallery-4 .image:first-child{grid-column:span 6;grid-row:span 6}.gallery-4 .image:nth-child(2){grid-column:span 2;grid-row:span 2}.gallery-4 .image:nth-child(3){grid-column:span 2;grid-row:span 2}.gallery-4 .image:nth-child(4){grid-column:span 2;grid-row:span 2}.gallery-4 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-4 .image:nth-child(2) img{border-radius:0 1rem 0 0}.gallery-4 .image:nth-child(3) img{border-radius:0}.gallery-4 .image:nth-child(4) img{border-radius:0 0 1rem}.gallery-5 .image:first-child{grid-column:span 4;grid-row:span 6}.gallery-5 .image:nth-child(2){grid-column:span 2;grid-row:span 3}.gallery-5 .image:nth-child(3){grid-column:span 2;grid-row:span 3}.gallery-5 .image:nth-child(4){grid-column:span 2;grid-row:span 3}.gallery-5 .image:nth-child(5){grid-column:span 2;grid-row:span 3}.gallery-5 .image:first-child img{border-radius:1rem 0 0 1rem}.gallery-5 .image:nth-child(2) img{border-radius:0}.gallery-5 .image:nth-child(3) img{border-radius:0 1rem 0 0}.gallery-5 .image:nth-child(4) img{border-radius:0}.gallery-5 .image:nth-child(5) img{border-radius:0 0 1rem}}@media screen and (width <= 430px){.gallery{gap:4px}.gallery-1,.gallery-2{aspect-ratio:24/10;grid-template-columns:repeat(12, 1fr);grid-template-rows:repeat(3, 1fr)}.gallery-3,.gallery-4,.gallery-5{aspect-ratio:4/3;grid-template-columns:repeat(12, 1fr);grid-template-rows:repeat(12, 1fr)}.gallery-1 .image{grid-column:span 12;grid-row:span 3}.gallery-1 .image img{border-radius:.75rem}.gallery-2 .image:first-child{grid-column:span 8;grid-row:span 3}.gallery-2 .image:nth-child(2){grid-column:span 4;grid-row:span 3}.gallery-2 .image:first-child img{border-radius:.75rem 0 0 .75rem}.gallery-2 .image:nth-child(2) img{border-radius:0 .75rem .75rem 0}.gallery-3 .image:first-child{grid-column:span 12;grid-row:span 8}.gallery-3 .image:nth-child(2){grid-column:span 6;grid-row:span 4}.gallery-3 .image:nth-child(3){grid-column:span 6;grid-row:span 4}.gallery-3 .image:first-child img{border-radius:.75rem .75rem 0 0}.gallery-3 .image:nth-child(2) img{border-radius:0 0 0 .75rem}.gallery-3 .image:nth-child(3) img{border-radius:0 0 .75rem}.gallery-4 .image:first-child{grid-column:span 12;grid-row:span 8}.gallery-4 .image:nth-child(2){grid-column:span 4;grid-row:span 4}.gallery-4 .image:nth-child(3){grid-column:span 4;grid-row:span 4}.gallery-4 .image:nth-child(4){grid-column:span 4;grid-row:span 4}.gallery-4 .image:first-child img{border-radius:.75rem .75rem 0 0}.gallery-4 .image:nth-child(2) img{border-radius:0 0 0 .75rem}.gallery-4 .image:nth-child(3) img{border-radius:0}.gallery-4 .image:nth-child(4) img{border-radius:0 0 .75rem}.gallery-5 .image:first-child{grid-column:span 12;grid-row:span 8}.gallery-5 .image:nth-child(2){grid-column:span 3;grid-row:span 4}.gallery-5 .image:nth-child(3){grid-column:span 3;grid-row:span 4}.gallery-5 .image:nth-child(4){grid-column:span 3;grid-row:span 4}.gallery-5 .image:nth-child(5){grid-column:span 3;grid-row:span 4}.gallery-5 .image:first-child img{border-radius:.75rem .75rem 0 0}.gallery-5 .image:nth-child(2) img{border-radius:0 0 0 .75rem}.gallery-5 .image:nth-child(3) img{border-radius:0}.gallery-5 .image:nth-child(4) img{border-radius:0}.gallery-5 .image:nth-child(5) img{border-radius:0 0 .75rem}}.tile{border:1px solid var(--ui-light-grey);border-radius:8px;padding:16px}.tile:hover{border:1px solid var(--ui-grey)}.tile h2,.tile h3,.tile h4{margin:0}.tiles{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:wrap;gap:16px}.tiles .tile{flex-basis:400px}.tileOld{border-radius:8px;background-color:var(--bg-light);border:1px solid var(--ui-grey)}.tileOld .image{height:120px;border-radius:0;border-radius:8px 8px 0 0}.tileOld .image img{border-radius:8px 8px 0 0}.tileOld p{padding:12px 16px;color:var(--text);font-weight:600}@media screen and (width >= 1129px){.tileOld{grid-column:span 2/span 2}}@media screen and (width <= 1128px)and (width >= 769px){.tileOld{grid-column:span 3/span 3}}@media screen and (width <= 768px)and (width >= 641px){.tileOld{grid-column:span 2/span 2}}@media screen and (width <= 640px)and (width >= 431px){.tileOld{grid-column:span 4/span 4}}@media screen and (width <= 430px){.tileOld{grid-column:span 2/span 2}}.reviews{padding-top:4px;max-width:60ch}.reviews .rating{display:flex;flex-direction:row;gap:40px;padding:16px}.reviews .rating .score{display:flex;flex-direction:column;align-items:center}.reviews .rating .score .score-num{color:var(--text);font-size:3rem;font-weight:700;line-height:3.5rem}.reviews .rating .breakdown{display:flex;justify-content:end;flex-direction:column;width:100%}.reviews .rating .breakdown .stars{display:flex;flex-direction:row;gap:8px;flex-wrap:nowrap;color:var(--orange);font-size:2rem;padding-bottom:12px}.reviews .rating .breakdown .stars .s1-5,.reviews .rating .breakdown .stars .s2-5,.reviews .rating .breakdown .stars .s3-5,.reviews .rating .breakdown .stars .s4-5{display:none}.reviews .rating .breakdown.r4-7 .s5,.reviews .rating .breakdown.r4-6 .s5,.reviews .rating .breakdown.r4-5 .s5,.reviews .rating .breakdown.r4-4 .s5{display:none}.reviews .rating .breakdown.r4-7 .s4-5,.reviews .rating .breakdown.r4-6 .s4-5,.reviews .rating .breakdown.r4-5 .s4-5,.reviews .rating .breakdown.r4-4 .s4-5{display:block !important}.reviews .rating .breakdown.r4-3 .s5,.reviews .rating .breakdown.r4-2 .s5,.reviews .rating .breakdown.r4-1 .s5,.reviews .rating .breakdown.r4-0 .s5,.reviews .rating .breakdown.r3-9 .s5,.reviews .rating .breakdown.r3-8 .s5{display:none}.reviews .rating .breakdown.r4-3 .s4-5,.reviews .rating .breakdown.r4-2 .s4-5,.reviews .rating .breakdown.r4-1 .s4-5,.reviews .rating .breakdown.r4-0 .s4-5,.reviews .rating .breakdown.r3-9 .s4-5,.reviews .rating .breakdown.r3-8 .s4-5{display:none}.reviews .rating .breakdown.r3-7 .s5,.reviews .rating .breakdown.r3-6 .s5,.reviews .rating .breakdown.r3-5 .s5,.reviews .rating .breakdown.r3-4 .s5{display:none}.reviews .rating .breakdown.r3-7 .s4,.reviews .rating .breakdown.r3-6 .s4,.reviews .rating .breakdown.r3-5 .s4,.reviews .rating .breakdown.r3-4 .s4{display:none}.reviews .rating .breakdown.r3-7 .s3-5,.reviews .rating .breakdown.r3-6 .s3-5,.reviews .rating .breakdown.r3-5 .s3-5,.reviews .rating .breakdown.r3-4 .s3-5{display:block !important}.reviews .rating .breakdown.r3-3 .s5,.reviews .rating .breakdown.r3-2 .s5,.reviews .rating .breakdown.r3-1 .s5,.reviews .rating .breakdown.r3-0 .s5,.reviews .rating .breakdown.r2-9 .s5,.reviews .rating .breakdown.r2-8 .s5{display:none}.reviews .rating .breakdown.r3-3 .s4,.reviews .rating .breakdown.r3-2 .s4,.reviews .rating .breakdown.r3-1 .s4,.reviews .rating .breakdown.r3-0 .s4,.reviews .rating .breakdown.r2-9 .s4,.reviews .rating .breakdown.r2-8 .s4{display:none}.reviews .rating .breakdown.r2-7 .s5,.reviews .rating .breakdown.r2-6 .s5,.reviews .rating .breakdown.r2-5 .s5,.reviews .rating .breakdown.r2-4 .s5{display:none}.reviews .rating .breakdown.r2-7 .s4,.reviews .rating .breakdown.r2-6 .s4,.reviews .rating .breakdown.r2-5 .s4,.reviews .rating .breakdown.r2-4 .s4{display:none}.reviews .rating .breakdown.r2-7 .s3,.reviews .rating .breakdown.r2-6 .s3,.reviews .rating .breakdown.r2-5 .s3,.reviews .rating .breakdown.r2-4 .s3{display:none}.reviews .rating .breakdown.r2-7 .s2-5,.reviews .rating .breakdown.r2-6 .s2-5,.reviews .rating .breakdown.r2-5 .s2-5,.reviews .rating .breakdown.r2-4 .s2-5{display:block !important}.reviews .rating .breakdown.r2-3 .s5,.reviews .rating .breakdown.r2-2 .s5,.reviews .rating .breakdown.r2-1 .s5,.reviews .rating .breakdown.r2-0 .s5,.reviews .rating .breakdown.r1-9 .s5,.reviews .rating .breakdown.r1-8 .s5{display:none}.reviews .rating .breakdown.r2-3 .s4,.reviews .rating .breakdown.r2-2 .s4,.reviews .rating .breakdown.r2-1 .s4,.reviews .rating .breakdown.r2-0 .s4,.reviews .rating .breakdown.r1-9 .s4,.reviews .rating .breakdown.r1-8 .s4{display:none}.reviews .rating .breakdown.r2-3 .s3,.reviews .rating .breakdown.r2-2 .s3,.reviews .rating .breakdown.r2-1 .s3,.reviews .rating .breakdown.r2-0 .s3,.reviews .rating .breakdown.r1-9 .s3,.reviews .rating .breakdown.r1-8 .s3{display:none}.reviews .rating .breakdown.r1-7 .s5,.reviews .rating .breakdown.r1-6 .s5,.reviews .rating .breakdown.r1-5 .s5,.reviews .rating .breakdown.r1-4 .s5{display:none}.reviews .rating .breakdown.r1-7 .s4,.reviews .rating .breakdown.r1-6 .s4,.reviews .rating .breakdown.r1-5 .s4,.reviews .rating .breakdown.r1-4 .s4{display:none}.reviews .rating .breakdown.r1-7 .s3,.reviews .rating .breakdown.r1-6 .s3,.reviews .rating .breakdown.r1-5 .s3,.reviews .rating .breakdown.r1-4 .s3{display:none}.reviews .rating .breakdown.r1-7 .s2,.reviews .rating .breakdown.r1-6 .s2,.reviews .rating .breakdown.r1-5 .s2,.reviews .rating .breakdown.r1-4 .s2{display:none}.reviews .rating .breakdown.r1-7 .s1-5,.reviews .rating .breakdown.r1-6 .s1-5,.reviews .rating .breakdown.r1-5 .s1-5,.reviews .rating .breakdown.r1-4 .s1-5{display:block !important}.reviews .rating .breakdown.r1-3 .s5,.reviews .rating .breakdown.r1-2 .s5,.reviews .rating .breakdown.r1-1 .s5,.reviews .rating .breakdown.r1-0 .s5{display:none}.reviews .rating .breakdown.r1-3 .s4,.reviews .rating .breakdown.r1-2 .s4,.reviews .rating .breakdown.r1-1 .s4,.reviews .rating .breakdown.r1-0 .s4{display:none}.reviews .rating .breakdown.r1-3 .s3,.reviews .rating .breakdown.r1-2 .s3,.reviews .rating .breakdown.r1-1 .s3,.reviews .rating .breakdown.r1-0 .s3{display:none}.reviews .rating .breakdown.r1-3 .s2,.reviews .rating .breakdown.r1-2 .s2,.reviews .rating .breakdown.r1-1 .s2,.reviews .rating .breakdown.r1-0 .s2{display:none}.reviews .review{display:block;background-color:var(--bg-de-light);padding:16px;border-radius:8px}.reviews .review h4{padding-bottom:0;margin-top:0}.reviews .review .stars{color:var(--orange);padding-bottom:8px}.reviews .review p{padding-bottom:0}.modal{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.5);z-index:99998}.modal .modal-content{position:fixed;overflow:auto;top:50%;left:50%;transform:translate(-50%, -50%);opacity:1;display:flex;flex-direction:column;gap:8px;background-color:var(--bg);box-shadow:0 0 20px rgba(0,0,0,.2);border-radius:8px;max-width:800px;max-height:calc(100svh - 24px - 24px);padding:16px 24px}@media(prefers-color-scheme: dark){.modal .modal-content{background-color:var(--bg-light-grey);border:1px solid var(--ui-light-grey)}}@media screen and (max-width: 768px)and (min-width: 430px){.modal .modal-content{max-width:calc(100svw - 16px - 16px);min-height:400px;max-height:calc(100svh - 16px - 16px);padding:16px}.modal .modal-content.wide{min-width:calc(100% - 16px - 16px);max-width:calc(100svw - 16px - 16px);max-height:calc(100svh - 16px - 16px)}}@media screen and (max-width: 430px){.modal .modal-content{width:100%;max-width:calc(100svw - 16px - 16px);padding:16px}.modal .modal-content.wide{width:100%;max-width:100svw;min-height:400px;height:100%;max-height:100svh;border-radius:0}}.modal .modal-content.wide{min-width:736px;max-width:calc(100svw - 24px - 24px);min-height:400px}.modal .modal-content .modal-close{position:absolute;top:0;right:0;padding:12px}.modal .modal-content .modal-header,.modal .modal-content .modal-footer{margin:0;height:auto;background:none;padding:8px 0;flex-shrink:0;flex-basis:100%}.modal .modal-content .modal-footer{display:flex;flex-direction:row;gap:8px;justify-content:flex-end;align-items:center}.modal .modal-content .modal-header{display:flex;flex-direction:row;gap:8px;justify-content:start;min-height:64px}.modal .modal-content .modal-header .close{position:relative;z-index:1}.modal .modal-content .modal-header .close:hover,.modal .modal-content .modal-header .close:focus{color:var(--black);text-decoration:none;cursor:pointer}.modal .modal-content .modal-body{overflow-y:auto;width:100%;flex:1}.date-picker{display:flex;flex-direction:column;gap:16px;align-items:center}.date-picker .datepicker-toggle{display:inline-block}.date-picker .datepicker-toggle .current-date{display:flex;flex-direction:row;gap:8px;align-items:center;font-weight:600;color:var(--text);cursor:pointer;font-size:1.5rem;line-height:2rem}@media screen and (max-width: 430px){.date-picker .datepicker-toggle .current-date{font-size:1.125rem;line-height:1.5rem}}.date-picker .datepicker-toggle .current-date i{margin-left:4px}.date-picker .date-row{display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:4px;user-select:none;width:100%}.date-picker .date-row .date-cell{display:flex;flex-direction:column;gap:8px;align-items:center;justify-content:space-around;color:var(--text);padding:8px 16px;border-radius:8px;border:1px solid rgba(0,0,0,0);cursor:pointer}.date-picker .date-row .date-cell .date-name{color:var(--text)}.date-picker .date-row .date-cell .date-number{font-weight:700}.date-picker .date-row .date-cell:hover{border:1px solid var(--ui-light-grey)}.date-picker .date-row .date-cell.selected{border:1px solid var(--green)}.date-picker .date-row .date-cell.disabled{background-color:var(--bg-light-grey);cursor:not-allowed}.date-picker .date-row .left-right-date{border:1px solid rgba(0,0,0,0);color:var(--text)}.date-picker .date-row .left-right-date:hover{cursor:pointer;border:1px solid gray}.date-picker .time-list{display:flex;flex-direction:column;gap:4px;width:100%}.date-picker .time-list .time-option{color:var(--text);padding:12px 24px;border-radius:8px;text-align:center;cursor:pointer;border:1px solid var(--ui-light-grey)}.date-picker .time-list .time-option:hover{border:1px solid var(--ui-grey)}.date-picker .time-list .time-option.selected{border:1px solid var(--green)}.date-picker .time-list .time-option input[type=radio]{display:none}.date-picker .time-list .time-option.existing-booking{background-color:var(--bg-light-grey);border:1px solid var(--ui-light-grey);cursor:not-allowed;opacity:.7}.date-picker .time-list .time-option.existing-booking:hover{border:1px solid var(--ui-light-grey)}.date-picker .time-list .time-option.existing-booking .existing-booking-details{display:flex;flex-direction:column;gap:4px;align-items:center}.date-picker .time-list .time-option.existing-booking .existing-booking-details small{color:var(--text-muted);font-style:italic;font-size:.875rem;line-height:1.25rem}.date-picker .time-list .time-option.existing-booking input[type=radio]{display:none}.date-picker .availability-error{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;width:100%;padding:8px}.date-picker .availability-error p{color:var(--text);font-weight:600}.alert{display:flex;flex-direction:row;align-items:center;justify-content:space-between;gap:0;border-radius:8px;padding:8px 16px;background-color:var(--alert-bg);color:var(--alert-text)}.alert.sm{width:fit-content}.alert .link{color:var(--alert-link)}.alert.success{background-color:var(--success-bg);color:var(--success-text)}.alert.success .link{color:var(--success-link)}.alert.warning{background-color:var(--warning-bg);color:var(--warning-text)}.alert.warning .link{color:var(--warning-link)}.alert.error{background-color:var(--error-bg);color:var(--error-text)}.alert.error .link{color:var(--error-link)}.alert.error button{margin-top:8px}.badge{text-transform:capitalize;border-radius:8px;width:fit-content;padding:8px 16px;background-color:var(--alert-bg);color:var(--alert-text)}.badge.pending,.badge.new{background-color:var(--alert-link);color:var(--white)}.badge.success,.badge.confirmed{background-color:var(--success-bg);color:var(--success-text)}.badge.warning,.badge.edited{background-color:var(--warning-bg);color:var(--warning-text)}.badge.error,.badge.declined,.badge.cancelled{background-color:var(--error-bg);color:var(--error-text)}.badge.disabled,.badge.draft{background-color:var(--ui-light-grey);color:var(--text)}.badge.sm{padding:4px 8px}.badge.xs{padding:1px 8px;font-size:.75rem;line-height:1rem}.badge.dot{height:4px;width:4px;padding:4px;font-size:0;line-height:0;background-color:var(--alert-link)}.badge.dot.success,.badge.dot.confirmed{background-color:var(--success-link)}.badge.dot.warning,.badge.dot.edited{background-color:var(--warning-link)}.badge.dot.error,.badge.dot.declined,.badge.dot.cancelled{background-color:var(--error-link)}.badge.dot.disabled,.badge.dot.draft{background-color:var(--text-link)}.callout{background-color:var(--bg-de-light);border-radius:16px;padding:40px}.callout h1,.callout h2,.callout h3,.callout h4{margin:0}.booking-card{display:flex;flex-direction:column;gap:16px;justify-content:space-between;border:1px solid var(--ui-light-grey);border-radius:8px;padding:12px;padding-bottom:8px;cursor:pointer}.booking-card.payment-pending{border-style:dashed;position:relative}.booking-card .content{display:flex;flex-direction:column;gap:8px}.booking-card h4{margin:0;padding:0}.booking-card .details{color:var(--text-light-grey)}.booking-card .details .time,.booking-card .details .date{color:var(--text-light-grey)}.booking-card .details .time{text-decoration:lowercase}.booking-card .name-row{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start}.booking-card .name-row .name-section{display:flex;flex-direction:row;gap:8px;justify-content:flex-start;align-items:baseline;flex:1;min-width:0}.booking-card .name-row .name-section .name{font-size:1rem;line-height:1.2rem;font-weight:600;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.booking-card .name-row .name-section:has(.tour-operator) .name{max-width:75%}.booking-card .name-row .name-section .tour-operator{color:var(--text-grey);font-size:.85rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.booking-card .name-row .name-section:not(:has(.name)) .tour-operator{font-size:1rem;line-height:1.2rem;font-weight:600}.booking-card .experience-row{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;gap:4px;width:100%}.booking-card .experience-row .experience-extras{color:var(--text-grey);white-space:nowrap;max-width:100%;text-overflow:ellipsis;overflow:hidden;padding-bottom:4px}.booking-card .actions{display:flex;flex-direction:row;gap:16px}.booking-card .actions button{padding:.25rem 1rem}.booking-card .payment-indicator{font-size:.75rem;flex-shrink:0;margin-left:8px}.booking-card .payment-indicator i{padding:2px;border-radius:50%}.booking-card .payment-indicator.pending i{color:#f59e0b}.booking-card .payment-indicator.partial i{color:#ef4444}.booking-card .payment-indicator.paid i{color:#10b981}.booking-card .payment-indicator.refunded i{color:#6b7280}.booking-card.inactive h4,.booking-card.inactive span{color:var(--text-light-grey)}.booking-summary h2,.booking-summary h3{margin-bottom:1rem}.booking-summary .summary-row{display:flex;justify-content:space-between}.booking-summary .total-row{display:flex;justify-content:space-between;font-weight:bold;font-size:1.1rem}.booking-summary .grow{flex-grow:1}.booking-summary .booking-summary-details{display:flex;flex-direction:column;gap:16px}.booking-summary .booking-summary-details .line{display:flex;align-items:center;gap:.5rem;padding:0 4px 16px}.booking-summary .booking-summary-details .breakdown{border-bottom:1px solid var(--ui-light-grey)}.booking-summary .booking-summary-details .breakdown .line .extra-breakdown{min-width:auto}.booking-summary .booking-summary-details .sub{margin-bottom:.5rem;border-bottom:2px solid var(--ui-light-grey)}.booking-summary .booking-summary-details .sub .line{font-size:.9rem;color:var(--text-grey)}.booking-summary .booking-summary-details .line.total{font-size:1.1rem;font-weight:bold}.experience-card{display:flex;flex-direction:column;gap:8px;max-width:520px;width:100%;border:1px solid var(--ui-light-grey);padding:16px;border-radius:12px;cursor:pointer}.experience-card input[type=radio]{display:none}.experience-card h4{margin:0;padding:0}.experience-card span{color:var(--text-light-grey)}.experience-card p{padding:0;color:var(--text-grey)}.experience-card:hover{border:1px solid var(--ui-grey)}.experience-card.selected{border:1px solid var(--green)}.experience-card.inactive{background-color:var(--bg-grey)}.experience-card.inactive h4,.experience-card.inactive span,.experience-card.inactive p{color:var(--text-light-grey)}.featured-experiences .experience-card{width:100%;max-width:600px;flex-direction:row;gap:16px;align-items:center;justify-content:space-between}.featured-experiences .experience-card .detail{display:flex;flex-direction:column;gap:8px}.policy-card{display:flex;flex-direction:column;gap:8px;max-width:520px;width:100%;border:1px solid var(--ui-light-grey);padding:16px;border-radius:12px;cursor:pointer;margin-bottom:12px}.policy-card input[type=radio]{display:none}.policy-card .policy-header{display:flex;flex-direction:row;gap:8px;align-items:center;justify-content:space-between;margin-bottom:8px}.policy-card .policy-header h4{margin:0;padding:0;flex-grow:1}.policy-card .policy-header .notice-period{background-color:var(--ui-light-grey);padding:2px 8px;border-radius:12px;font-size:.75rem;color:var(--text-grey);white-space:nowrap}.policy-card .policy-description{margin:0;padding:0;color:var(--text-grey);font-size:.9rem;line-height:1.4}.policy-card:hover{border:1px solid var(--text-grey)}.policy-card.selected{border:1px solid var(--green);background-color:var(--background-light)}.policy-card.inactive{background-color:var(--bg-grey);cursor:not-allowed;opacity:.6}.policy-card.inactive .policy-header h4,.policy-card.inactive .policy-header .notice-period,.policy-card.inactive .policy-description{color:var(--text-light-grey)}.extra-card{display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:8px;max-width:520px;width:100%;border:1px solid var(--ui-light-grey);padding:16px;border-radius:12px;cursor:pointer}.extra-card .extra-details{display:flex;flex-direction:column;gap:4px}.extra-card .extra-details h4{margin:0;padding:0}.extra-card .extra-details .extra-price{padding:0;color:var(--text-light-grey)}.extra-card .extra-details .extra-description{padding:0;color:var(--text-grey)}.extra-card:hover{border:1px solid var(--ui-grey)}.extra-card.selected{border:1px solid var(--green)}.extra-card.inactive{background-color:var(--bg-grey)}.extra-card.inactive h4,.extra-card.inactive span,.extra-card.inactive p{color:var(--text-light-grey)}@media(max-width: 768px){.extra-card .extra-header{flex-direction:column;align-items:flex-start;gap:.5rem}.extra-card .extra-header .extra-meta{align-items:flex-start}.extra-card .extra-actions{flex-wrap:wrap}}.section.internal-links{background-color:var(--bg-light-grey);padding-bottom:64px}.section.internal-links .container .h3{padding-bottom:16px}.section.internal-links .container .content{display:flex;flex-flow:row wrap;gap:40px 8px}.section.internal-links .container .content span.header{display:block;font-weight:800;color:var(--text)}.section.internal-links .container .content .internal-link-group{display:flex;flex-flow:row wrap;gap:40px 8px;min-width:190px}.section.internal-links .container .content .internal-link-group a{color:var(--link-dark);flex-basis:190px;font-size:.875rem;line-height:1.25rem}.section.internal-links .container .content .internal-link-group a strong{display:block}.section.internal-links.regions .container .content .state{display:flex;flex-direction:column;gap:8px}.section.internal-links.regions .container .content .state.NSW,.section.internal-links.regions .container .content .state.VIC,.section.internal-links.regions .container .content .state.SA,.section.internal-links.regions .container .content .state.TAS{width:100%}.section.internal-links.regions .container .content .state .internal-link-group{gap:24px 8px}.section.internal-links.cross-region-features .container .content .internal-link-group a strong{display:inline-block}.opening-hours-selector{overflow-x:scroll}.opening-hours-selector table{min-width:800px}.opening-hours-selector .earlier,.opening-hours-selector .later{width:100px}.opening-hours-selector .earlier button,.opening-hours-selector .later button{padding:12px}.opening-hours-selector .earlier button:hover,.opening-hours-selector .later button:hover{text-decoration:none}.opening-hours-selector .day-label{width:120px;padding-left:16px}.opening-hours-selector table{margin:16px 0;table-layout:auto;user-select:none;border:none}.opening-hours-selector .time-cell{overflow:visible;white-space:nowrap;height:40px}.opening-hours-selector .time-cell p{padding:0;text-transform:lowercase;font-size:.875rem;line-height:1.25rem}.opening-hours-selector .selected{background-color:var(--bg-grey)}.opening-hours-selector .selected .time-label{width:0;overflow:visible;pointer-events:none}.opening-hours-selector .tmp-selected{background-color:var(--blue)}.dashboard .bookings.new{--column-width: 80px;--label-width: 100px;--min-column-width: 80px;--grid-columns: 1}.dashboard.with-booking-sidebar .dashboard .bookings.new{--column-width: 60px}.dashboard .bookings.new .date-row{display:flex;flex-direction:row;gap:8px;overflow-x:scroll;overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none}.dashboard .bookings.new .date-row::-webkit-scrollbar{display:none}.dashboard .bookings.new .date-row .month .month-name{padding:0 4px;font-weight:600;position:sticky;left:0}.dashboard .bookings.new .date-row .month .calendar-days{display:flex;flex-direction:row;gap:4px}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell{display:flex;flex-direction:column;gap:4px;align-items:center;padding:8px 4px;border:1px solid var(--bg);border-radius:8px;margin:4px;min-width:56px}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell .date-number{font-size:1.25rem;line-height:1.5rem;margin:0;padding:0;font-weight:700;color:var(--text)}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell:hover{border:1px solid var(--ui-light-grey)}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.closed{background-color:var(--bg-light-grey)}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.closed .date-name,.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.closed .date-number{color:var(--ui-grey)}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.no-availability{background-color:var(--bg-light-grey)}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.no-availability .date-name,.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.no-availability .date-number{color:var(--ui-grey)}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.selected{border:1px solid var(--btn-primary)}.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.today .date-name,.dashboard .bookings.new .date-row .calendar-days .date-cell-outer .date-cell.today .date-number{color:var(--btn-primary)}.dashboard .bookings.new .calendar-day .booking-list{display:flex;flex-direction:column;width:100%;gap:0}.dashboard .bookings.new .calendar-day .booking-list .time-headers{z-index:10;width:100%;overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none}.dashboard .bookings.new .calendar-day .booking-list .time-headers::-webkit-scrollbar{display:none}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content{display:grid;grid-template-columns:var(--label-width) repeat(var(--grid-columns), var(--column-width));position:relative}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content .table-spacer{background-color:var(--bg)}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content .time-header{display:flex;flex-direction:row;align-items:baseline;justify-content:space-between;width:var(--column-width);position:relative;padding:8px 4px;height:32px;font-size:14px;color:var(--text-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content .time-header:last-child{border-right:none}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content .time-header.hour{color:var(--text-grey);border-left:1px solid var(--ui-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content .time-header.current-time{border-left:2px solid var(--btn-primary);font-weight:600}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content .time-header .guest-count{font-size:.875rem;line-height:1.25rem;color:var(--green)}.dashboard .bookings.new .calendar-day .booking-list .time-headers .time-headers-content .time-header .guest-count.error{color:var(--red)}.dashboard .bookings.new .calendar-day .booking-list .booking-section .section-header{width:100%;padding:6px 16px;border-radius:4px;background-color:var(--de-dark);display:flex;justify-content:space-between;align-items:center;position:sticky;z-index:5}.dashboard .bookings.new .calendar-day .booking-list .booking-section .section-header .section-name{color:var(--text-white);font-weight:600}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section{margin-top:24px;border-top:1px solid var(--ui-light-grey);padding-top:8px}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .section-header{background-color:var(--text-light-grey);opacity:.8}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .section-header .section-name{color:var(--text-white);opacity:.9}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table{opacity:.7}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .table-label{background-color:var(--bg-light-grey);color:var(--text-light-grey);opacity:.8}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-slot{background-color:var(--bg-light-grey);border-color:var(--ui-light-grey);min-height:80px;position:relative;grid-column:var(--time-index, 1);grid-row:var(--row-index, 1);position:relative}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-booking{opacity:.8;height:calc(100% - 8px);padding:0;margin:4px;grid-column:var(--start-column, 1)/span var(--duration-columns, 1);grid-row:var(--row-index, 1);position:relative;box-sizing:border-box}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-booking .booking-card{background-color:var(--bg-light-grey);border-color:var(--ui-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-booking .booking-card .name,.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-booking .booking-card .experience,.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-booking .booking-card .time,.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-booking .booking-card .guests{color:var(--text-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-section.cancelled-section .booking-table.cancelled-table .cancelled-booking .booking-card:hover{background-color:var(--bg-light-grey);cursor:pointer}.dashboard .bookings.new .calendar-day .booking-list .booking-table{width:100%;position:relative;display:grid;grid-template-columns:var(--label-width, 100px) repeat(var(--grid-columns, 4), var(--column-width, 80px));grid-auto-rows:minmax(80px, auto);gap:0;background-color:var(--bg);overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none}.dashboard .bookings.new .calendar-day .booking-list .booking-table::-webkit-scrollbar{display:none}.dashboard .bookings.new .calendar-day .booking-list .booking-table .booking-table-row{display:contents;position:relative}.dashboard .bookings.new .calendar-day .booking-list .booking-table .booking-table-row .table-label{grid-column:1;position:sticky;left:0;z-index:10;padding:8px;border-right:1px solid var(--ui-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .booking-table-row .table-label .hour-start{font-weight:600;color:var(--text-grey);border-left:1px solid var(--ui-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .booking-table-row .table-label{padding:16px 0 0 16px;background-color:var(--bg)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .booking-table-row .hour-start{border-left:1px solid var(--ui-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking{height:calc(100% - 8px);cursor:grab;touch-action:none;z-index:5;padding:0;margin:4px;transition:box-shadow .1s ease,transform .3s ease;grid-column:var(--start-column, 1)/span var(--duration-columns, 1);grid-row:var(--row-index, 1);position:relative;box-sizing:border-box}.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking:active,.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking.is-dragging{cursor:grabbing}.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking.is-dragging{opacity:.5}.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking.selected-booking{border-radius:8px;z-index:6}.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking.selected-booking .booking-card{border:2px solid var(--btn-primary)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking.selected-booking .booking-card:hover{border:2px solid var(--btn-primary)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .draggable-booking.payment-pending .booking-card{border-style:dashed;position:relative}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area{background-color:rgba(0,0,0,0);transition:all .2s ease;cursor:pointer;display:flex;justify-content:center;align-items:center;z-index:1;min-height:80px;position:relative;grid-column:var(--time-index, 1);grid-row:var(--row-index, 1);position:relative}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area.no-availability{background-color:var(--bg-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area.time-closed{background-color:var(--bg-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area:not(.has-minimum-time){cursor:not-allowed}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area:not(.has-minimum-time).is-hovered,.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area:not(.has-minimum-time).is-hovered-column{cursor:not-allowed}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area::before,.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area::after{content:"";position:absolute;top:0;bottom:0;width:0;z-index:2}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area::before{left:0}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area::after{right:0}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area.current-time{border-left:2px solid var(--btn-primary)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .empty-slot.droppable-area.show-booking-preview{z-index:2}.dashboard .bookings.new .calendar-day .booking-list .booking-table .add-booking-preview{z-index:3;display:flex;align-items:center;justify-content:center;background-color:var(--bg);border:1px dashed var(--ui-grey);border-radius:8px;padding:4px 12px;margin:4px 4px 8px 4px;cursor:pointer;transition:all .2s ease;pointer-events:none;grid-column:var(--start-column, 1)/span var(--duration-columns, 1);grid-row:var(--row-index, 1);position:relative;box-sizing:border-box}.dashboard .bookings.new .calendar-day .booking-list .booking-table .add-booking-preview .add-booking-content{display:flex;flex-direction:row;align-items:center;gap:16px;pointer-events:none}.dashboard .bookings.new .calendar-day .booking-list .booking-table .add-booking-preview .add-booking-content i.fa-plus{font-size:1rem;color:var(--text-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .add-booking-preview .add-booking-content .add-booking{display:flex;flex-direction:column;align-items:center;padding-right:16px;gap:4px}.dashboard .bookings.new .calendar-day .booking-list .booking-table .add-booking-preview .add-booking-content .add-booking .add-booking-text{color:var(--text-grey);font-size:1rem;line-height:1.2rem;font-weight:600}.dashboard .bookings.new .calendar-day .booking-list .booking-table .add-booking-preview .add-booking-content .add-booking .availability-count{color:var(--text-light-grey)}.dashboard .bookings.new .calendar-day .booking-list .booking-table .drop-preview-ghost,.dashboard .bookings.new .calendar-day .booking-list .booking-table .original-position-ghost{position:relative;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:500;pointer-events:none;height:calc(100% - 8px);margin:4px;border-radius:6px;backdrop-filter:blur(2px);transition:all .2s ease;background-color:var(--alert-bg);z-index:15;max-height:80px;grid-column:var(--start-column, 1)/span var(--duration-columns, 1);grid-row:var(--row-index, 1);position:relative;box-sizing:border-box}.dashboard .bookings.new .calendar-day .booking-list .booking-card{gap:12px;background-color:var(--bg)}.dashboard .bookings.new .calendar-day .booking-list .booking-card:hover{border:1px solid var(--ui-grey)}.dashboard .bookings.new .calendar-day .booking-list .no-bookings{display:flex;flex-direction:column;gap:8px;background-color:var(--bg-light-grey);align-items:center;flex-grow:1;border:1px solid var(--ui-light-grey);text-align:center;border-radius:8px;padding:40px 16px;margin-top:24px}.dashboard .bookings.new .calendar-day .booking-list .no-bookings p{max-width:48ch;color:var(--text-grey)}.dashboard .bookings.new .calendar-day .booking-list .cancelled-section{grid-column:1/-1;margin-top:24px;border-top:1px solid var(--ui-light-grey);padding-top:16px}.dashboard .bookings.new .calendar-day .booking-list .cancelled-section h5{font-size:1rem;margin:0 0 12px;color:var(--text-grey)}.dashboard .bookings.new .calendar-day .booking-list .cancelled-section .cancelled-bookings{display:flex;flex-wrap:wrap;gap:12px}.dashboard .bookings.new .calendar-day .booking-list .cancelled-section .cancelled-bookings .booking-card .name,.dashboard .bookings.new .calendar-day .booking-list .cancelled-section .cancelled-bookings .booking-card .experience{color:var(--text-light-grey)}@keyframes pulse-highlight{0%{box-shadow:0 0 0 2px var(--btn-primary),0 2px 8px rgba(0,0,0,.15);transform:scale(1)}20%{box-shadow:0 0 0 3px var(--btn-primary),0 3px 10px rgba(0,0,0,.2);transform:scale(1.03)}100%{box-shadow:0 0 0 2px var(--btn-primary),0 2px 8px rgba(0,0,0,.15);transform:scale(1)}}.counter{display:flex;flex-direction:column;gap:8px;align-items:flex-start}.counter .counter-input{display:flex;flex-direction:row;gap:0;align-items:center;box-sizing:border-box;height:40px;border:1px solid var(--ui-light-grey);border-radius:8px}.counter .counter-input button{border:none;padding:12px;width:36px;height:40px;color:var(--text);font-size:1rem;line-height:1rem}.counter .counter-input button:hover{background-color:var(--ui-very-light-grey)}.counter .counter-input button:active{outline:none}.counter .counter-input button:disabled{background-color:rgba(0,0,0,0)}.counter .counter-input button:disabled:hover{background-color:rgba(0,0,0,0)}.counter .counter-input .count-container{display:flex;flex-direction:row;gap:8px;align-items:baseline;color:var(--text);min-width:32px}.counter .counter-input .count-container .count,.counter .counter-input .count-container .count-edit{height:24px;width:32px;box-sizing:border-box;padding:0;padding-bottom:4px;outline:none;text-align:center;box-shadow:none;border:none;border-radius:0;color:var(--text-grey);font-weight:400;font-size:1rem;line-height:1.5rem}.counter .counter-input .count-container .count{cursor:text}.counter .counter-input .count-container .count:hover,.counter .counter-input .count-container .count:focus{border-radius:0;border:none;outline:none;border-bottom:2px solid var(--blue)}.counter .counter-input .count-container .count-edit{border-bottom:2px solid var(--blue);margin:0}.counter .counter-error{color:#e11d48;font-size:.9rem;margin-left:.5rem;margin-top:.25rem;position:absolute}.home-hero{background-color:var(--de-dark);color:var(--text-white)}.home-hero .hero-content{display:flex;flex-direction:column;gap:8px;justify-content:center;align-items:center;text-align:center;padding-top:48px;padding-bottom:48px}@media screen and (max-width: 430px){.home-hero .hero-content{padding-top:40px;padding-bottom:40px}}.home-hero .hero-content h1.hero-title{color:var(--text-white)}@media screen and (max-width: 768px){.home-hero .hero-content h1.hero-title{font-size:2.5rem;line-height:3rem}}@media screen and (width <= 480px){.home-hero .hero-content h1.hero-title{font-size:2rem;line-height:2.5rem}}.home-hero .hero-content .headline{color:var(--text-white);font-size:1.5rem;line-height:2rem}@media screen and (width <= 480px){.home-hero .hero-content .headline{font-size:1.125rem;line-height:1.75rem}}.home-hero .hero-content .search{display:flex;flex-flow:row wrap;justify-content:center;gap:8px;width:100%;max-width:480px}@media screen and (max-width: 430px){.home-hero .hero-content .search{width:100%;min-width:100%;max-width:100%}}.home-hero .hero-content .search select{flex:1 1 320px;font-size:1.1rem}.home-hero .hero-content .search .button.primary{flex:1 10 140px;font-size:1.1rem;background-color:var(--de-primary);border:var(--de-primary);color:var(--text-white);padding-left:32px;padding-right:32px}.section.homepage.for-wineries{padding-bottom:64px}.section.homepage.for-wineries .container{display:flex;flex-direction:column;align-items:center;gap:40px}.section.homepage.for-wineries .content{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center;max-width:560px}.section.homepage.for-wineries .content h2{max-width:440px}.section.homepage.for-wineries .usps{display:flex;flex-flow:row wrap;gap:48px;justify-content:space-around}.section.homepage.for-wineries .usps .usp{flex-basis:320px}.account-bookings .booking-cards{display:flex;flex-direction:column;gap:16px;max-width:400px;padding:16px 0}.account-bookings .booking-cards .booking-card{width:100%}.account-bookings .booking-cards .booking-card .top{display:flex;flex-direction:row;justify-content:space-between}.account-bookings .booking-cards .booking-card .middle{display:flex;flex-direction:row;justify-content:space-between}.payment-processing-overlay{display:flex;flex-direction:row;gap:8px;position:fixed;inset:0;background-color:hsla(0,0%,100%,.95);align-items:center;justify-content:center;z-index:9999}.payment-processing-overlay .processing-content{display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center;max-width:400px;padding:40px}.payment-processing-overlay .processing-content h2{margin:0;color:var(--text)}.payment-processing-overlay .processing-content p{color:var(--text-grey);margin:0;line-height:1.5}.payment-processing-overlay .processing-content .spinner{width:48px;height:48px;border:4px solid var(--ui-light-grey);border-top:4px solid var(--link-primary);border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.disabled-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:hsla(0,0%,100%,.7);z-index:20;display:flex;align-items:center;justify-content:center}.booking-form{display:flex;flex-direction:column;gap:48px;min-height:100svh;margin:0 auto 33svh}@media screen and (max-width: 430px){.booking-form{margin:0 0 33svh}}.booking-form .booking-form-inner{display:flex;flex-direction:column;gap:48px}.booking-form h2{margin-bottom:16px}.booking-form input,.booking-form select,.booking-form textarea{width:100%;max-width:none}.booking-form .group-size{padding:24px 0}.booking-form .group-size .header{margin-bottom:16px}.booking-form .group-size .header h2{margin:0}.booking-form .group-size .guest-count-inputs{display:flex;flex-direction:column;gap:12px}.booking-form .group-size .guest-count-inputs .guest-type{display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:8px;border:1px solid var(--ui-light-grey);border-radius:8px;padding:16px}.booking-form .group-size .guest-count-inputs .guest-type .content{display:block;flex-basis:180px;flex-grow:1}.booking-form .group-size .guest-count-inputs .guest-type .content h4{margin:0}.booking-form .group-size .guest-count-inputs .guest-type .content p{padding:0;color:var(--text);text-wrap:wrap}.booking-form .group-size .guest-count-total{display:flex;flex-direction:row;gap:8px;flex-wrap:nowrap;align-items:center;justify-content:flex-end;background-color:var(--bg-de-light);border-radius:8px;padding:16px}.booking-form .group-size .guest-count-total .content{display:block;flex-basis:180px;flex-grow:1}.booking-form .group-size .guest-count-total .content h4{margin:0}.booking-form .group-size .guest-count-total .content p{margin:0;padding:0}.booking-form .group-size .guest-count-total .count-total{flex-basis:106px;flex-shrink:1;text-align:center;margin:0;padding:0}.booking-form .group-size .actions{display:flex;flex-direction:row;gap:8px;justify-content:flex-end;margin-top:16px}.booking-form .experiences{padding:24px 0}.booking-form .experiences .header{margin-bottom:16px}.booking-form .experiences .header h2{margin:0}.booking-form .experiences .experience-list{display:flex;flex-direction:column;gap:12px}.booking-form .extras{padding:24px 0}.booking-form .extras .header{margin-bottom:16px}.booking-form .extras .header h2{margin:0}.booking-form .extras .selected-extras,.booking-form .extras .available-extras{display:flex;flex-direction:column;gap:12px}.booking-form .extras .actions{display:flex;flex-direction:row;gap:8px;justify-content:flex-end;margin-top:16px;padding:0 16px}.booking-form .date-time{padding:24px 0}.booking-form .contact-details{padding:24px 0}.booking-form .contact-details .actions{display:flex;flex-direction:row;gap:8px;justify-content:flex-end}.booking-form .contact-details .footnote{margin-top:16px;color:var(--text-grey)}.booking-form .payment-details{display:flex;flex-direction:column;gap:8px;padding:24px 0}.booking-form .payment-details h2{margin-bottom:0}.booking-form .payment-details .booking-payment{margin-top:16px}.booking-form .payment-details .booking-payment h3{margin-bottom:16px}.booking-form .payment-details .booking-payment .StripeElement{padding-bottom:48px}.booking-form .payment-details .booking-payment .payment-error-message{background-color:var(--bg);color:var(--error);border:1px solid var(--error);border-radius:8px;padding:8px;margin:16px 0}.booking-form .payment-details.processing{position:relative}.booking-form .payment-details.processing>*:not(.payment-processing-overlay){opacity:.3;pointer-events:none}.booking-form .payment-details{position:relative}.booking-form .extra-breakdown{font-size:.9rem;line-height:1.2}.booking-form .booking-submit{padding:24px 0}.booking-form .booking-submit .booking-cancellation-policy{background-color:var(--background-light);border-radius:4px;padding:16px;margin-bottom:16px}.booking-form .booking-submit .booking-cancellation-policy h4{margin-top:0;margin-bottom:8px;color:var(--text)}.booking-form .booking-submit .booking-cancellation-policy .policy-intro{margin-bottom:8px;color:var(--text)}.booking-form .booking-submit .booking-cancellation-policy .policy-intro strong{color:var(--text);text-transform:capitalize}.booking-form .booking-submit .booking-cancellation-policy p{margin-bottom:8px;color:var(--text-grey);font-size:.9rem;line-height:1.4}.booking-form .booking-submit .booking-cancellation-policy p:last-child{margin-bottom:0}.booking-form .booking-submit .booking-cancellation-policy .learn-more{font-size:.85rem}.booking-form .booking-submit .booking-cancellation-policy .learn-more a{color:var(--link-primary);text-decoration:none}.booking-form .booking-submit .booking-cancellation-policy .learn-more a:hover{text-decoration:underline}.booking-form .booking-submit button{margin:16px 0}@media screen and (max-width: 430px){.booking-form .booking-submit button{width:100%}}.booking-form .PhoneInput{max-width:360px}.booking-form .PhoneInput.success input{border:1px solid var(--green)}.booking-view{display:flex;flex-direction:column;gap:40px}.booking-view .heading{display:flex;flex-direction:column;margin-bottom:16px}.booking-view .heading .top{display:flex;flex-direction:row;gap:8px;align-items:center;justify-content:space-between}.booking-view .heading .top .ref{color:var(--text-light-grey)}.booking-view .heading h1{padding:0;margin:0}.booking-view .booking-request{display:flex;flex-direction:column;gap:8px;flex-basis:600px;flex-grow:1}.booking-view .details{display:flex;flex-direction:row;gap:24px 16px;flex-wrap:wrap;justify-content:space-between}.booking-view .details .col{display:flex;flex-direction:column;gap:16px;flex-basis:320px}.booking-view .details .col h3{padding:0}.booking-view .actions{display:flex;flex-direction:row;gap:16px}.booking-view .content{display:flex;flex-direction:row;gap:8px;flex-wrap:wrap}.booking-view .content .location{flex-basis:360px}.booking-view .claim{flex-basis:600px;margin-top:40px}.booking-view .cancellation-policy{background-color:var(--background-light);border-radius:4px;padding:16px;margin:16px 0}.booking-view .cancellation-policy h3{margin-top:0;margin-bottom:8px;color:var(--text)}.booking-view .cancellation-policy .policy-intro{margin-bottom:8px;color:var(--text)}.booking-view .cancellation-policy .policy-intro strong{color:var(--text);text-transform:capitalize}.booking-view .cancellation-policy p{margin-bottom:8px;color:var(--text-grey);font-size:.9rem;line-height:1.4}.booking-view .cancellation-policy p:last-child{margin-bottom:0}.booking-view .cancellation-policy .learn-more{font-size:.85rem}.booking-view .cancellation-policy .learn-more a{color:var(--link-primary);text-decoration:none}.booking-view .cancellation-policy .learn-more a:hover{text-decoration:underline}.booking-view .cancellation-policy .refund-info{margin-top:16px;padding-top:16px;border-top:1px solid var(--ui-light-grey)}.booking-view .cancellation-policy .refund-info .eligible-refund,.booking-view .cancellation-policy .refund-info .not-eligible-refund{display:flex;flex-direction:row;align-items:center;gap:8px;margin:0;padding:8px;border-radius:4px;font-size:.9rem}.booking-view .cancellation-policy .refund-info .eligible-refund i,.booking-view .cancellation-policy .refund-info .not-eligible-refund i{font-size:1rem}.booking-view .cancellation-policy .refund-info .eligible-refund{background-color:rgba(16,185,129,.1);color:var(--text)}.booking-view .cancellation-policy .refund-info .not-eligible-refund{background-color:rgba(245,158,11,.1);color:var(--text)}.booking-view .admin.alert-bar{margin-bottom:40px}.booking-view .admin .booking{display:flex;flex-direction:column;gap:8px;margin-bottom:40px}.booking-view .admin .booking .details{display:flex;flex-direction:row;gap:8px}.booking-view .admin .booking .details .col{display:flex;flex-direction:column;gap:16px;flex-basis:360px}.booking-view .admin .booking .buttons{padding:8px 0}.booking-view .admin .winery-users{margin-bottom:40px}.booking-view .admin.audit-log{margin:0 16px;overflow-x:scroll}.booking-view .admin.audit-log table tr th,.booking-view .admin.audit-log table tr td{text-wrap:nowrap;overflow-x:scroll}.booking-view .admin.audit-log table #ref{max-width:100px}.modal-content.booking-view{gap:16px}.modal-content.booking-view .status-ref{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;gap:8px}.modal-content.booking-view .status-ref .ref{padding:4px}.modal:has(.modal-content.booking-view.create-booking) .modal-content.wide{min-width:800px}.modal:has(.modal-content.booking-view.create-booking) .booking-view.create-booking .modal-body{display:flex;flex-direction:row;flex-wrap:wrap;gap:8px 16px;justify-content:space-between}.modal:has(.modal-content.booking-view.create-booking) .booking-view.create-booking .modal-body input{margin-bottom:8px}.modal:has(.modal-content.booking-view.create-booking) .booking-view.create-booking .modal-body input,.modal:has(.modal-content.booking-view.create-booking) .booking-view.create-booking .modal-body select{height:40px}.modal:has(.modal-content.booking-view.create-booking) .booking-view.create-booking .modal-body .booking-details,.modal:has(.modal-content.booking-view.create-booking) .booking-view.create-booking .modal-body .guest-details{flex:1 1 360px}.modal:has(.modal-content.booking-view.create-booking) .booking-view.create-booking .modal-body #date-time input{margin-bottom:16px}.payment-page .payment-content{max-width:600px;margin:0 auto}.payment-page .payment-header{text-align:center;margin-bottom:2rem}.payment-page .payment-header h1{margin-bottom:.5rem}.payment-page .payment-header .winery-details{color:var(--text-grey);font-size:1.1rem}.payment-page .payment-unavailable{text-align:center;padding:2rem;background-color:#fef2f2;border:1px solid #fecaca;border-radius:8px;color:#dc2626}.payment-page .payment-unavailable h3{margin-bottom:1rem}.payment-success .success-content{text-align:center;padding:3rem 1rem}.payment-success .success-content .success-icon{font-size:4rem;margin-bottom:1rem}.payment-success .success-content h1{color:#059669;margin-bottom:1rem}.payment-success .success-content .success-message{font-size:1.2rem;margin-bottom:2rem}.payment-success .success-content .success-details{color:#6b7280;margin-bottom:2rem}.payment-success .success-content .success-button{display:inline-block;padding:.75rem 1.5rem;text-decoration:none}.payment-error .error-content{text-align:center;padding:3rem 1rem}.payment-error .error-content .error-icon{font-size:4rem;margin-bottom:1rem}.payment-error .error-content h1{color:#dc2626;margin-bottom:1rem}.payment-error .error-content .error-message{font-size:1.2rem;margin-bottom:2rem}.payment-error .error-content .error-details{color:#6b7280;margin-bottom:2rem}.payment-error .error-content .error-button{display:inline-block;padding:.75rem 1.5rem;text-decoration:none}.dashboard{flex-grow:2;display:grid;grid-template:"sidebar main" 1fr/280px auto}.dashboard .dash-sidebar{grid-area:sidebar}.dashboard .dash-content{grid-area:main}.dashboard .container{max-width:100%}.dashboard .container.fill{padding:8px 24px}.dashboard .dash-sidebar{height:100svh}.dashboard .dash-content{height:100svh;width:100%;overflow-x:auto}.header-content{display:flex;flex-direction:column;gap:8px;width:100%}.dash-actions .container{display:flex;flex-direction:row;gap:8px;overflow-y:scroll}.dash-actions .container .booking-card{max-width:360px;width:100%}.dashboard .container.content{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;gap:48px}.dashboard .container.content .left{flex-basis:600px}.dashboard .container.content .left .button{margin:16px 0}.dashboard .container.content .right{display:flex;flex-direction:column;gap:0}.dashboard .container.content .right.callout{padding:24px;border-radius:8px;flex-basis:400px;height:fit-content}.dashboard .container.content .right.callout h3{margin:0}.dashboard .container.content .right.callout ul{padding-right:8px}.dashboard .container.content .right.callout button{margin:0 auto}.dashboard .dash-home .calendar{display:flex;flex-direction:column;gap:8px;display:none}.dashboard .dash-home .calendar .cal-days-header{display:flex;flex-direction:row;gap:16px;flex-direction:row;justify-content:start;align-items:baseline}.dashboard .dash-home .calendar .cal-days-header .link{text-wrap:nowrap}.dashboard .dash-home .calendar .calendar-days{display:flex;flex-direction:row;gap:24px}.dashboard .dash-home .calendar .calendar-days .booking-list{min-width:360px}.dashboard .bookings .header .header-content{display:flex;flex-direction:row;gap:8px;justify-content:space-between;align-items:baseline}.dashboard .bookings .header .header-content .link-group{gap:8px}.dashboard .bookings .header .header-content .link-group .link{padding:8px}.dashboard .settings h2{flex-basis:100%}.dashboard .settings .tile{max-width:480px}.dashboard .users .user-table{border:0;width:fit-content}.dashboard .users .user-table thead{font-weight:600;border-bottom:1px solid var(--ui-dark-grey)}.dashboard .users .user-table tr td{padding:8px 8px}.dashboard .users .user-table #email,.dashboard .users .user-table #name{width:40ch;overflow-x:scroll}.dashboard .users .user-table #email td,.dashboard .users .user-table #name td{text-wrap:nowrap}.dashboard .users .user-table #status,.dashboard .users .user-table #role,.dashboard .users .user-table #action{width:15ch}.dashboard .users .user-table tr.invite{background-color:var(--bg-light-grey)}.dashboard .users .user-table tr.invite #name{color:var(--text-light-grey)}.dashboard .users .user-table tr.invite #action{text-align:center}.dashboard .integrate .left{display:flex;flex-direction:column;gap:40px}.dashboard .integrate .method .booking-url{padding:16px 24px;margin-bottom:16px;border-radius:8px;width:fit-content;background-color:var(--bg-grey);color:var(--text-grey)}.dashboard .integrate .method .booking-url span{color:var(--link-primary)}.dashboard .integrate .method .embed-iframe{padding:16px 24px;margin-bottom:16px;border-radius:8px;width:360px;min-width:fit-content;background-color:var(--bg-grey);color:var(--text-grey)}.dashboard .choose-location .container.locations{display:flex;flex-direction:column;gap:16px}.dashboard .choose-location .container.locations .location{max-width:600px}.dashboard .experience-edit .editor .container{display:flex;flex-direction:row;flex-wrap:wrap;gap:40px}.dashboard .experience-edit .editor .container .form-container{display:flex;flex-direction:column;gap:8px;flex-basis:600px}.dashboard .experience-edit .editor .container .form-container .form-group label{flex-basis:30%;flex-grow:1}.dashboard .experience-edit .editor .container .form-container .form-group textarea{max-width:100%}.dashboard .experience-edit .editor .container .extras-assignment{max-width:400px;display:flex;flex-direction:column;gap:8px;border-radius:8px;padding-top:16px;max-height:fit-content}.dashboard .experience-edit .editor .container .extras-assignment h3{margin:0;padding:0}.dashboard .experience-edit .editor .container .extras-assignment p{margin:0;padding:0}.dashboard .experience-edit .editor .container .extras-assignment .extras-assignment-list .extra-option{display:flex;flex-direction:row;align-items:flex-start;gap:8px;cursor:pointer}.dashboard .experience-edit .editor .container .extras-assignment .extras-assignment-list .extra-option .extra-info{display:flex;flex-direction:column}.dashboard .experience-edit .editor .container .extras-assignment .extras-assignment-list .extra-option .extra-info .extra-name{padding:0}.dashboard .experience-edit .editor .container .extras-assignment .extras-assignment-list .extra-option .extra-info .extra-price{color:var(--text-light-grey)}.dashboard .experience-edit .editor .container .extras-assignment .selected-count{color:var(--green);font-weight:500;margin-top:.5rem}.dashboard .experience-edit .editor .container .experience-assignment{max-width:400px;display:flex;flex-direction:column;gap:8px;border-radius:8px;padding-top:16px;max-height:fit-content}.dashboard .experience-edit .editor .container .experience-assignment h3{margin:0;padding:0}.dashboard .experience-edit .editor .container .experience-assignment p{margin:0;padding:0}.dashboard .experience-edit .editor .container .experience-assignment .experience-assignment-list .experience-option{display:flex;flex-direction:row;align-items:flex-start;gap:8px;cursor:pointer}.dashboard .experience-edit .editor .container .experience-assignment .experience-assignment-list .experience-option .experience-info{display:flex;flex-direction:column}.dashboard .experience-edit .editor .container .experience-assignment .experience-assignment-list .experience-option .experience-info .experience-name{padding:0}.dashboard .experience-edit .editor .container .experience-assignment .experience-assignment-list .experience-option .experience-info .experience-price{color:var(--text-light-grey)}.dashboard .experience-edit .editor .container .experience-assignment .selected-count{color:var(--green);font-weight:500;margin-top:.5rem}.dashboard .experience-edit .editor .container .actions{display:flex;flex-direction:row;flex-basis:100%;gap:16px;justify-content:flex-start}.dashboard .experience-edit .editor .container .actions label{margin:0}.dashboard .experience-edit .editor .container .public-booking{display:flex;flex-direction:row;align-items:center;gap:8px;margin-top:8px}.dashboard .experience-edit .editor .container .public-booking input[type=checkbox]{margin:0}.dashboard .experience-edit .editor .container .direct-link-section{margin-top:16px;padding:16px;background-color:var(--bg-light-grey);border-radius:8px;border:1px solid var(--ui-light-grey)}.dashboard .experience-edit .editor .container .direct-link-section h4{margin:0 0 8px 0;color:var(--text-dark)}.dashboard .experience-edit .editor .container .direct-link-section p{margin:0 0 8px 0;color:var(--text-grey)}.dashboard .experience-edit .editor .container .direct-link-section .direct-links{display:flex;flex-direction:column;gap:8px}.dashboard .experience-edit .editor .container .direct-link-section .direct-links .link-group{display:flex;flex-direction:column;gap:4px}.dashboard .experience-edit .editor .container .direct-link-section .direct-links .link-group label{font-weight:500;color:var(--text-dark);margin:0}.dashboard .experience-edit .editor .container .direct-link-section .direct-links .link-group .link-display{display:flex;flex-direction:row;align-items:center;gap:8px;background-color:var(--bg);padding:8px;border-radius:4px;border:1px solid var(--ui-light-grey)}.dashboard .experience-edit .editor .container .direct-link-section .direct-links .link-group .link-display code{flex:1;font-family:monospace;background-color:var(--bg-light-grey);padding:4px;border-radius:2px;word-break:break-all}.dashboard .experience-edit .editor .container .direct-link-section .direct-links .link-group .link-display .copy-btn{padding:4px 8px;background-color:var(--primary);border:none;border-radius:4px;cursor:pointer;font-size:.875rem;transition:background-color .2s ease}.dashboard .experience-edit .editor .container .direct-link-section .direct-links .link-group .link-display .copy-btn:hover{background-color:var(--primary-dark)}.dashboard .experiences-list .experiences .container,.dashboard .experiences-list .extras .container{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;gap:24px;margin-bottom:16px;margin-left:0}.dashboard .experiences-list .experiences .container .content,.dashboard .experiences-list .extras .container .content{flex-basis:560px;max-width:640px;flex-grow:1}.dashboard .experiences-list .experiences .container .content .experience-list,.dashboard .experiences-list .experiences .container .content .extras-list,.dashboard .experiences-list .extras .container .content .experience-list,.dashboard .experiences-list .extras .container .content .extras-list{display:flex;flex-direction:column;gap:16px}.dashboard .experiences-list .experiences .container .content .experience-list .experience-card-link,.dashboard .experiences-list .experiences .container .content .extras-list .experience-card-link,.dashboard .experiences-list .extras .container .content .experience-list .experience-card-link,.dashboard .experiences-list .extras .container .content .extras-list .experience-card-link{position:relative;text-decoration:none;color:inherit}.dashboard .experiences-list .experiences .container .content .experience-list .experience-card-link .private-badge,.dashboard .experiences-list .experiences .container .content .extras-list .experience-card-link .private-badge,.dashboard .experiences-list .extras .container .content .experience-list .experience-card-link .private-badge,.dashboard .experiences-list .extras .container .content .extras-list .experience-card-link .private-badge{position:absolute;top:8px;right:8px;background-color:var(--warning);color:#fff;padding:4px 8px;border-radius:4px;font-size:.75rem;font-weight:500;z-index:1}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder{display:flex;flex-direction:row;align-items:center;gap:8px;padding:8px;border:1px solid var(--ui-light-grey);border-radius:8px;background-color:var(--bg);cursor:grab;transition:all .2s ease}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder:hover,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder:hover,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder:hover,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder:hover,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder:hover,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder:hover,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder:hover,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder:hover{border-color:var(--text-grey);box-shadow:0 2px 4px rgba(0,0,0,.1)}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder:active,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder:active,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder:active,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder:active,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder:active,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder:active,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder:active,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder:active{cursor:grabbing}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder .drag-handle,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder .drag-handle,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder .drag-handle,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder .drag-handle,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder .drag-handle,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder .drag-handle,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder .drag-handle,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder .drag-handle{display:flex;align-items:center;justify-content:center;width:24px;height:24px;color:var(--text-light-grey);cursor:grab}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder .drag-handle:active,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder .drag-handle:active,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder .drag-handle:active,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder .drag-handle:active,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder .drag-handle:active,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder .drag-handle:active,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder .drag-handle:active,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder .drag-handle:active{cursor:grabbing}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder .drag-handle i,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder .drag-handle i,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder .drag-handle i,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder .drag-handle i,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder .drag-handle i,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder .drag-handle i,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder .drag-handle i,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder .drag-handle i{font-size:1rem}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder .experience-content,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder .extra-content,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder .experience-content,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder .extra-content,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder .experience-content,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder .extra-content,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder .experience-content,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder .extra-content,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder .experience-content,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder .extra-content,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder .experience-content,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder .extra-content,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder .experience-content,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder .extra-content,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder .experience-content,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder .extra-content{flex:1;pointer-events:none}.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .experience-card-reorder+.drop-indicator,.dashboard .experiences-list .experiences .container .content .experience-list.reorder-mode .extra-card-reorder+.drop-indicator,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .experience-card-reorder+.drop-indicator,.dashboard .experiences-list .experiences .container .content .extras-list.reorder-mode .extra-card-reorder+.drop-indicator,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .experience-card-reorder+.drop-indicator,.dashboard .experiences-list .extras .container .content .experience-list.reorder-mode .extra-card-reorder+.drop-indicator,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .experience-card-reorder+.drop-indicator,.dashboard .experiences-list .extras .container .content .extras-list.reorder-mode .extra-card-reorder+.drop-indicator{height:8px;border-radius:4px;background:var(--btn-primary);opacity:.3;margin:4px 0}.dashboard .experiences-list .experiences .container .content .experience-list .reorder-controls,.dashboard .experiences-list .experiences .container .content .extras-list .reorder-controls,.dashboard .experiences-list .extras .container .content .experience-list .reorder-controls,.dashboard .experiences-list .extras .container .content .extras-list .reorder-controls{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}.dashboard .experiences-list .experiences .container .content .experience-list .reorder-controls .reorder-help,.dashboard .experiences-list .experiences .container .content .extras-list .reorder-controls .reorder-help,.dashboard .experiences-list .extras .container .content .experience-list .reorder-controls .reorder-help,.dashboard .experiences-list .extras .container .content .extras-list .reorder-controls .reorder-help{color:var(--text-grey);font-size:.875rem;margin:0}.dashboard .experiences-list .experiences .container .content .experience-list .reorder-controls .active,.dashboard .experiences-list .experiences .container .content .extras-list .reorder-controls .active,.dashboard .experiences-list .extras .container .content .experience-list .reorder-controls .active,.dashboard .experiences-list .extras .container .content .extras-list .reorder-controls .active{background-color:var(--btn-primary);color:#fff}.dashboard .experiences-list .experiences .container .callout,.dashboard .experiences-list .extras .container .callout{flex-basis:360px;max-width:480px;flex-grow:2;height:fit-content;margin-top:40px}.dashboard .experiences-list .experiences .extra-card,.dashboard .experiences-list .extras .extra-card{display:flex;flex-direction:column;gap:8px;align-items:flex-start;max-width:520px;width:100%;padding:16px}.dashboard .experiences-list .experiences .extra-card .name,.dashboard .experiences-list .extras .extra-card .name{margin:0;padding:0}.dashboard .experiences-list .experiences .extra-card .price,.dashboard .experiences-list .extras .extra-card .price{color:var(--text-light-grey)}.dashboard .experiences-list .experiences .extra-card .description,.dashboard .experiences-list .extras .extra-card .description{padding:0}.dashboard .experiences-list .experiences .create-experience,.dashboard .experiences-list .experiences .create-extra,.dashboard .experiences-list .extras .create-experience,.dashboard .experiences-list .extras .create-extra{display:flex;flex-direction:column;align-items:center;gap:4px;max-width:520px;width:100%;margin-top:16px;padding:24px;background-color:var(--bg-light-grey);border-radius:8px;text-align:center}.dashboard .experiences-list .experiences .create-experience p,.dashboard .experiences-list .experiences .create-extra p,.dashboard .experiences-list .extras .create-experience p,.dashboard .experiences-list .extras .create-extra p{color:var(--text-grey);max-width:48ch}.dashboard .opening-hours .hours .container{display:flex;flex-direction:column;gap:64px;padding-bottom:120px;margin-bottom:120px}.dashboard .opening-hours .hours .location-availability .inputs{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px 40px;margin-bottom:48px;max-width:80ch}.dashboard .opening-hours .hours .location-availability .inputs .form-group{padding-left:32px}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability,.dashboard .opening-hours .hours .location-availability .inputs .limit-groups,.dashboard .opening-hours .hours .location-availability .inputs .min-notice,.dashboard .opening-hours .hours .location-availability .inputs .max-notice{max-width:300px;padding-bottom:16px}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability input[type=number],.dashboard .opening-hours .hours .location-availability .inputs .limit-groups input[type=number],.dashboard .opening-hours .hours .location-availability .inputs .min-notice input[type=number],.dashboard .opening-hours .hours .location-availability .inputs .max-notice input[type=number]{max-width:160px}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability label{position:relative}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability label:has(>.emoji){gap:40px}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability .emoji{position:absolute;left:2.25rem;top:.25rem;transition:opacity .3s ease,transform .3s ease;transform:scale(1)}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability .emoji.before,.dashboard .opening-hours .hours .location-availability .inputs .instant-availability .emoji.after{display:block}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability .emoji.before{opacity:1}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability .emoji.after{opacity:0;transform:scale(0)}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability input[type=checkbox]:checked+.emoji.before{opacity:0;transform:scale(0)}.dashboard .opening-hours .hours .location-availability .inputs .instant-availability input[type=checkbox]:checked~.emoji.after{opacity:1;transform:scale(1)}.dashboard .opening-hours .hours .location-overrides .override-rules{display:flex;flex-direction:column;gap:8px;padding-bottom:16px}.dashboard .opening-hours .hours .location-overrides .override-rules .override-rule{display:flex;flex-direction:column;gap:8px}.dashboard .opening-hours .hours .location-overrides .override-rules .override-rule .rule-name{padding:0}.dashboard .opening-hours .hours .location-overrides .override-rules .override-rule .rule-detail{display:flex;flex-direction:column;gap:8px}.dashboard .opening-hours .hours .location-overrides .override-rules .override-rule .actions{display:flex;flex-direction:row;justify-content:flex-end}.dashboard .features .section.feature-groups{padding-top:0}.dashboard .features .features-list{display:flex;flex-direction:row;gap:16px;flex-wrap:wrap}.dashboard .features .feature-checkbox{display:flex;flex-direction:row;flex-basis:480px;align-items:center;gap:16px;border:1px solid var(--ui-light-grey);border-radius:4px;padding:16px;margin:0}.dashboard .features .feature-checkbox:hover{border:1px solid var(--text-grey)}.dashboard .features .feature-checkbox .feature-icon{width:2rem;text-align:center}.dashboard .features .feature-checkbox .feature-icon i{font-size:1.5rem;color:var(--text)}.dashboard .features .feature-checkbox .feature-detail{flex-grow:1}.dashboard .features .feature-checkbox .feature-detail .feature-title{padding:0;color:var(--text)}.dashboard .features .feature-checkbox .feature-detail .feature-tagline{color:var(--text-light-grey)}.dashboard .features .feature-checkbox.selected{border:1px solid var(--link-primary)}.dashboard .payments .cancellation-policies{margin-top:32px;padding-top:32px;border-top:1px solid var(--ui-light-grey)}.dashboard .payments .cancellation-policies h3{margin-bottom:4px}.dashboard .payments .cancellation-policies>p{margin-bottom:16px;color:var(--text-grey)}.dashboard .payments .cancellation-policies .policies-list{margin-bottom:32px}.dashboard .payments .cancellation-policies .policy-save-section{margin-bottom:32px;padding-top:16px}.dashboard .payments .cancellation-policies .policy-save-section button{min-width:120px}.dashboard .payments .cancellation-policies .policy-option{border:1px solid var(--ui-light-grey);border-radius:4px;padding:16px;margin-bottom:12px;cursor:pointer;transition:all .2s ease}.dashboard .payments .cancellation-policies .policy-option:hover{border-color:var(--text-grey)}.dashboard .payments .cancellation-policies .policy-option.selected{border-color:var(--link-primary);background-color:var(--background-light)}.dashboard .payments .cancellation-policies .policy-option.disabled{opacity:.6;cursor:not-allowed}.dashboard .payments .cancellation-policies .policy-option .policy-header{display:flex;flex-direction:row;align-items:center;gap:12px;margin-bottom:8px}.dashboard .payments .cancellation-policies .policy-option .policy-header input[type=radio]{margin:0}.dashboard .payments .cancellation-policies .policy-option .policy-header h4{margin:0;flex-grow:1}.dashboard .payments .cancellation-policies .policy-option .policy-header .notice-period{background-color:var(--ui-light-grey);padding:2px 8px;border-radius:12px;font-size:.75rem;color:var(--text-grey)}.dashboard .payments .cancellation-policies .policy-option .policy-description{margin:0;margin-left:24px;color:var(--text-grey);font-size:.9rem;line-height:1.4}.dashboard .payments .cancellation-policies .policy-info{background-color:var(--background-light);border-radius:4px;padding:16px}.dashboard .payments .cancellation-policies .policy-info h4{margin-top:0;margin-bottom:12px}.dashboard .payments .cancellation-policies .policy-info ul{margin:0;padding-left:16px}.dashboard .payments .cancellation-policies .policy-info ul li{margin-bottom:8px;color:var(--text-grey);font-size:.9rem}.dashboard .payments .cancellation-policies .policy-info ul li:last-child{margin-bottom:0}.dashboard .winery-profile .container.content .left{display:flex;flex-direction:column;gap:16px}.dashboard .winery-profile .container.content .right.callout{flex-basis:480px}.dashboard-grid{display:grid;grid-template-columns:1fr 1fr 1fr}.card-data{padding:16px;text-align:center}.card-data .big-number{font-size:48px}.dashboard .contacts .header-content .header-top{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start;gap:16px;width:100%}@media screen and (max-width: 430px){.dashboard .contacts .header-content .header-top{flex-direction:column}}.dashboard .contacts .header-content .sort-controls{display:flex;flex-direction:row;align-items:center;gap:8px;flex-shrink:0}.dashboard .contacts .header-content .sort-controls .sort-label{font-size:.9rem;color:var(--text-grey);white-space:nowrap}.dashboard .contacts .header-content .sort-controls .sort-select{padding:4px 8px;border:1px solid var(--ui-light-grey);border-radius:4px;background-color:var(--bg);color:var(--text);font-size:.9rem;cursor:pointer}.dashboard .contacts .header-content .sort-controls .sort-select:hover{border-color:var(--ui-grey)}.dashboard .contacts .header-content .sort-controls .sort-select:focus{outline:none;border-color:var(--primary)}.dashboard .contacts .contacts-list{display:flex;flex-direction:column;gap:8px}.dashboard .contacts .contact-row-link{text-decoration:none;color:inherit}.dashboard .contacts .contact-row-link:hover .contact-row{border-color:var(--primary)}.dashboard .contacts .contact-row{border:1px solid var(--ui-light-grey);border-radius:8px;background-color:var(--bg);overflow:hidden}.dashboard .contacts .contact-row .contact-header{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:16px;cursor:pointer;transition:background-color .2s}.dashboard .contacts .contact-row .contact-header:hover{background-color:var(--background-light)}.dashboard .contacts .contact-row .contact-header .contact-info{display:flex;flex-direction:column;gap:4px;flex:1}.dashboard .contacts .contact-row .contact-header .contact-info .contact-name{font-weight:600;font-size:1rem;color:var(--text)}.dashboard .contacts .contact-row .contact-header .contact-info .contact-email{font-size:.9rem;color:var(--text-grey)}.dashboard .contacts .contact-row .contact-header .contact-meta{display:flex;flex-direction:column;align-items:flex-end;gap:4px;margin-right:16px}.dashboard .contacts .contact-row .contact-header .contact-meta .booking-count{font-size:.9rem;color:var(--text-grey)}.dashboard .contacts .contact-row .contact-header .contact-meta .last-booking{font-size:.85rem;color:var(--text-light-grey)}.dashboard .contacts .contact-row .contact-header i{color:var(--text-grey);transition:transform .2s;margin-left:8px}.dashboard .contacts .contact-row .contact-details{padding:0 16px 16px;border-top:1px solid var(--ui-light-grey);background-color:var(--background-light)}.dashboard .contacts .contact-row .contact-details .contact-detail-section{padding-top:16px}.dashboard .contacts .contact-row .contact-details .contact-detail-section:first-child{padding-top:16px}.dashboard .contacts .contact-row .contact-details .contact-detail-section h3{margin:0 0 8px 0;font-size:1rem;font-weight:600;color:var(--text)}.dashboard .contacts .contact-row .contact-details .contact-detail-section .detail-item{margin-bottom:8px;font-size:.9rem;color:var(--text)}.dashboard .contacts .contact-row .contact-details .contact-detail-section .detail-item strong{display:inline-block;min-width:80px;color:var(--text-grey)}.dashboard .contacts .contact-row .contact-details .contact-detail-section .detail-item a{color:var(--primary);text-decoration:none}.dashboard .contacts .contact-row .contact-details .contact-detail-section .detail-item a:hover{text-decoration:underline}.dashboard .contacts .contact-row .contact-details .contact-detail-section .bookings-list{display:flex;flex-direction:column;gap:8px}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:8px;background-color:var(--bg);border:1px solid var(--ui-light-grey);border-radius:4px}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info{display:flex;flex-direction:column;gap:4px;flex:1}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-reference{font-weight:600;font-size:.9rem;color:var(--text)}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-date{font-size:.85rem;color:var(--text-grey)}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-status .status-badge{display:inline-block;padding:2px 8px;border-radius:4px;font-size:.75rem;font-weight:600;text-transform:capitalize}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-status .status-badge.status-confirmed{background-color:rgba(34,197,94,.1);color:#16a34a}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-status .status-badge.status-pending{background-color:rgba(251,191,36,.1);color:#d97706}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-status .status-badge.status-cancelled{background-color:rgba(239,68,68,.1);color:#dc2626}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-status .status-badge.status-declined{background-color:rgba(107,114,128,.1);color:#4b5563}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-info .booking-guests{font-size:.85rem;color:var(--text-grey)}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-link{display:flex;align-items:center;gap:4px;padding:4px 8px;background-color:var(--primary);color:#fff;text-decoration:none;border-radius:4px;font-size:.85rem;transition:background-color .2s}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-link:hover{background-color:var(--primary-dark)}.dashboard .contacts .contact-row .contact-details .contact-detail-section .booking-item .booking-link i{font-size:.8rem}.dashboard .contacts .empty-state{padding:32px;text-align:center;color:var(--text-grey)}.dashboard .contacts .empty-state p{margin:0;font-size:1rem}.dashboard .contacts .infinite-scroll-trigger{padding:16px;text-align:center;min-height:60px}.dashboard .contacts .loading-indicator{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:8px;color:var(--text-grey);font-size:.9rem}.dashboard .contacts .loading-indicator i{font-size:1rem}.dashboard .contacts .end-of-list{padding:16px;text-align:center;color:var(--text-grey);font-size:.9rem}.dashboard .contacts .end-of-list p{margin:0}.dashboard .contact-detail .back-link{display:inline-flex;align-items:center;gap:4px;margin-bottom:8px;color:var(--text-grey);text-decoration:none;font-size:.9rem;transition:color .2s}.dashboard .contact-detail .back-link:hover{color:var(--primary)}.dashboard .contact-detail .back-link i{font-size:.8rem}.dashboard .contact-detail .contact-detail-layout{display:grid;grid-template-columns:400px 1fr;gap:32px;align-items:start}@media screen and (max-width: 1024px){.dashboard .contact-detail .contact-detail-layout{grid-template-columns:1fr}}.dashboard .contact-detail .contact-detail-layout .contact-detail-left .contact-info-panel{background-color:var(--bg);border:1px solid var(--ui-light-grey);border-radius:8px;padding:16px;position:sticky;top:16px}.dashboard .contact-detail .contact-detail-layout .contact-detail-left .contact-info-panel h2{margin:0 0 16px 0;font-size:1.25rem;font-weight:600}.dashboard .contact-detail .contact-detail-layout .contact-detail-left .contact-info-panel .detail-item{margin-bottom:8px;font-size:.9rem;color:var(--text)}.dashboard .contact-detail .contact-detail-layout .contact-detail-left .contact-info-panel .detail-item strong{display:inline-block;min-width:60px;color:var(--text-grey)}.dashboard .contact-detail .contact-detail-layout .contact-detail-left .contact-info-panel .detail-item a{color:var(--primary);text-decoration:none}.dashboard .contact-detail .contact-detail-layout .contact-detail-left .contact-info-panel .detail-item a:hover{text-decoration:underline}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel h2{margin:0 0 16px 0;font-size:1.25rem;font-weight:600}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .bookings-list{display:flex;flex-direction:column;gap:8px}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:16px;background-color:var(--bg);border:1px solid var(--ui-light-grey);border-radius:8px;cursor:pointer;transition:all .2s}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item:hover{border-color:var(--primary);background-color:var(--background-light)}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info{display:flex;flex-direction:column;gap:4px;flex:1}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-reference{font-weight:600;font-size:.95rem;color:var(--text)}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-date{font-size:.9rem;color:var(--text-grey)}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-location{font-size:.85rem;color:var(--text-light-grey);font-style:italic}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-status .status-badge{display:inline-block;padding:2px 8px;border-radius:4px;font-size:.75rem;font-weight:600;text-transform:capitalize}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-status .status-badge.status-confirmed{background-color:rgba(34,197,94,.1);color:#16a34a}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-status .status-badge.status-pending{background-color:rgba(251,191,36,.1);color:#d97706}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-status .status-badge.status-cancelled{background-color:rgba(239,68,68,.1);color:#dc2626}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-status .status-badge.status-declined{background-color:rgba(107,114,128,.1);color:#4b5563}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item .booking-info .booking-guests{font-size:.85rem;color:var(--text-grey)}.dashboard .contact-detail .contact-detail-layout .contact-detail-right .bookings-panel .booking-item i{color:var(--text-grey);margin-left:8px}.component-docs{display:flex;flex-direction:row;gap:64px}.component-docs .docs{flex-basis:60%}.component-docs .demo{display:flex;flex-direction:column;gap:8px;flex-basis:40%}.button-styles div{display:flex;align-items:center;flex-flow:row wrap;gap:8px;padding-bottom:8px}.container.input-styles{display:flex;flex-flow:row wrap;gap:8px}.container.input-styles .input-col{flex-basis:400px}.container.input-styles .testing-wrapper{display:block;margin:1rem}.container.input-styles label{margin-top:2rem}.container.alert-styles{display:flex;flex-direction:column;gap:8px}.container.badge-styles div{display:flex;flex-direction:row;gap:16px;padding:16px}.auth.login{min-height:80svh}.auth .login-box{display:flex;flex-direction:column;gap:8px;max-width:480px;width:fit-content;margin:auto;margin-top:0}@media screen and (min-width: 430px){.auth .login-box{border:1px solid var(--ui-light-grey);border-radius:12px;padding:40px}}.auth .login-box .header h1.h3{margin:0}.auth .login-buttons{display:flex;flex-direction:column;align-items:stretch;gap:16px}.auth p.xs{padding-bottom:0;padding-top:16px;color:var(--text-light-grey)}.login-button.facebook,.login-button.google{width:100%;border-radius:4px;max-width:100%}.login-button.facebook button,.login-button.google button{display:flex;flex-direction:row;gap:8px;align-items:center;width:100%;max-width:100%;padding:8px}.login-button.facebook button img,.login-button.google button img{flex-basis:24px;height:24px;width:24px}.login-button.facebook button span.link,.login-button.google button span.link{flex-basis:100%;margin-right:24px;display:inline-block;color:var(--text)}.login-button.facebook button span.link:hover,.login-button.google button span.link:hover{text-decoration:none}.login-button.email{display:flex;flex-direction:column;gap:8px;width:100%}.login-button.email input,.login-button.email button{width:100%;max-width:100%}.login-button.email .auth-code{display:flex;flex-direction:column;justify-content:center;gap:16px}.login-button.email .auth-code div{display:flex;flex-direction:row;gap:8px;justify-content:center}.login-button.email .auth-code span{text-align:center}.login-button.email .auth-code input{width:40px !important;text-align:center}.search-section{width:100%;display:block;padding:0}.search-section .search-jsx-wrapper .search-form-container{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;gap:16px;overflow-x:scroll}@media screen and (max-width: 430px){.search-section .search-jsx-wrapper .search-form-container .region select{padding:.5rem 1rem;padding-right:2rem}}.search-section .search-jsx-wrapper .search-form-container .region select{width:fit-content;margin:0}.search-section .search-jsx-wrapper .search-form-container button.hide-closed{display:flex;align-items:center;border:none}.search-section .search-jsx-wrapper .search-form-container span.clear-button{cursor:pointer;font-weight:600;font-size:14px}.search-section .search-jsx-wrapper .search-form-container .vertical-spacer{height:40px;width:0;border-right:1px solid var(--ui-light-grey);margin-left:8px;margin-right:8px;display:inline-block}.search-section .search-jsx-wrapper .search-form-container select .checkbox-button,.search-section .search-jsx-wrapper .search-form-container button .checkbox-button{display:inline-flex}.search-section .search-jsx-wrapper .search-form-container select .checkbox-button .checkbox-input,.search-section .search-jsx-wrapper .search-form-container button .checkbox-button .checkbox-input{margin-top:0;margin-bottom:2px}.search-section .search-jsx-wrapper .search-form-container .features-filter{z-index:30}.search-section .search-jsx-wrapper .search-form-container .features-filter .grid{grid-template-columns:repeat(5, 1fr);margin-bottom:12px}@media(width <= 767px){.search-section .search-jsx-wrapper .search-form-container .features-filter .grid{grid-template-columns:repeat(3, 1fr)}}.search-section .search-jsx-wrapper .search-form-container .features-filter .style-checkbox{display:flex;flex-direction:column;align-items:center;cursor:pointer;border:1px solid var(--ui-grey);padding:16px;padding-top:8px;padding-bottom:8px;border-radius:4px}.search-section .search-jsx-wrapper .search-form-container .features-filter .checkbox-icon{display:flex;justify-content:center;align-items:center;font-size:32px;margin-bottom:10px;color:var(--text)}.search-section .search-jsx-wrapper .search-form-container .features-filter .checkbox-title{font-size:16px;text-align:center;color:var(--ui-grey-dark)}.search-section .search-jsx-wrapper .search-form-container .features-filter .checkbox-input{display:none}.search-section .search-jsx-wrapper .search-form-container .features-filter .style-checkbox:has(.checkbox-input:checked){border:1px solid var(--blue)}.search-section .search-jsx-wrapper .search-form-container .features-filter .style-checkbox:has(.checkbox-input:checked) .checkbox-title,.search-section .search-jsx-wrapper .search-form-container .features-filter .style-checkbox:has(.checkbox-input:checked) .checkbox-icon{color:var(--blue)}.search-section .search-jsx-wrapper .search-form-container .styles-filter{z-index:30}.search-section .search-jsx-wrapper .search-form-container .styles-filter .style-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px}.search-section .search-jsx-wrapper .search-form-container .styles-filter .style-checkbox{display:inline-flex;align-items:center;cursor:pointer;padding:8px 16px;border-radius:32px;height:32px;line-height:32px;border:1px solid var(--ui-light-grey);color:var(--text)}.search-section .search-jsx-wrapper .search-form-container .styles-filter .style-checkbox:hover{background-color:var(--ui-very-light-grey)}.search-section .search-jsx-wrapper .search-form-container .styles-filter .style-checkbox:has(.checkbox-input:checked){border:1px solid var(--blue)}.search-section .search-jsx-wrapper .search-form-container .styles-filter .checkbox-title{text-align:center;color:var(--text)}.search-section .search-jsx-wrapper .search-form-container .styles-filter .checkbox-input{display:none}.search-section .search-jsx-wrapper .search-form-container .features-filter,.search-section .search-jsx-wrapper .search-form-container .styles-filter{display:flex;flex-direction:column}.search-section .search-jsx-wrapper .search-form-container .features-filter .show-more,.search-section .search-jsx-wrapper .search-form-container .styles-filter .show-more{font-weight:600}.search-section .search-jsx-wrapper .search-form-container .features-filter .show-more:hover,.search-section .search-jsx-wrapper .search-form-container .styles-filter .show-more:hover{text-decoration:underline;cursor:pointer}.search-section .search-jsx-wrapper .search-form-container .features-filter .toggle,.search-section .search-jsx-wrapper .search-form-container .styles-filter .toggle{justify-content:space-between;display:flex;flex-direction:row}.search-section .search-jsx-wrapper .search-form-container .features-filter .toggle input,.search-section .search-jsx-wrapper .search-form-container .styles-filter .toggle input{width:18px;height:18px;margin:2px 8px 0 0}.search-section .search-jsx-wrapper .search-form-container .features-filter .toggle .count,.search-section .search-jsx-wrapper .search-form-container .styles-filter .toggle .count{display:flex;font-weight:600}.search-section .search-jsx-wrapper .search-form-container .features-filter .toggle span,.search-section .search-jsx-wrapper .search-form-container .styles-filter .toggle span{display:flex;height:30px}.search-section .search-jsx-wrapper .search-results-container{display:flex;flex-direction:row;justify-content:flex-end;height:85svh;width:100%}.search-section .search-jsx-wrapper .search-results-container .results-container{height:100%;width:800px;max-width:50%;overflow:scroll;padding-left:16px;padding-right:16px;padding-bottom:32px}@media screen and (max-width: 768px){.search-section .search-jsx-wrapper .search-results-container .results-container{max-width:none;width:100%;border-radius:0;transform:none;position:fixed;z-index:20;background-color:var(--bg)}}.search-section .search-jsx-wrapper .search-results-container .results-container .results-header{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start;gap:8px;padding:8px 0}.search-section .search-jsx-wrapper .search-results-container .results-container .results-header h1{display:inline-block}.search-section .search-jsx-wrapper .search-results-container .results-container .results-header button.close{background-color:rgba(0,0,0,0)}.search-section .search-jsx-wrapper .search-results-container .map-container{display:block;position:relative;width:100%;height:100%;margin-bottom:80px;z-index:10}@media screen and (max-width: 430px){.search-section .search-jsx-wrapper .search-results-container .map-container .gm-bundled-control{display:none}}.search-section .search-jsx-wrapper .search-results-container .map-container .show-winery-wrapper{position:absolute;margin-top:16px;margin-left:16px;top:0;left:0;z-index:15}.search-section .search-jsx-wrapper .search-results-container .map-container .show-winery-wrapper .show-winery-list-button{display:flex;flex-direction:row;align-items:center;background-color:var(--white);color:var(--neutral-900);height:40px;width:fit-content;font-weight:600;padding-left:16px;padding-right:16px;border-radius:4px;cursor:pointer}.search-section .search-jsx-wrapper .search-results-container .map-container .map-top-row{display:flex;margin-top:16px;margin-left:16px;gap:8px;background-color:rgba(0,0,0,0)}.search-section .search-jsx-wrapper .search-results-container .map-container .gm-style-iw-tc{display:none}.search-section .search-jsx-wrapper .search-results-container .map-container .gm-style-iw-d{overflow:hidden !important}.search-section .search-jsx-wrapper .search-results-container .map-container .gm-style-iw{padding:0;border-radius:16px;max-width:368px !important}.search-section .search-jsx-wrapper .search-results-container .map-container .gm-style-iw:nth-child(2),.search-section .search-jsx-wrapper .search-results-container .map-container .gm-style-iw:nth-child(4){display:none}.search-section .search-jsx-wrapper .search-results-container .map-container .gm-style-iw-t button{right:0 !important}.search-section .search-jsx-wrapper .search-results-container .map-container .gm-style-iw-t button span{background-color:var(--white);width:20px !important;height:20px !important}.search-section .search-jsx-wrapper .search-results-container .map-container .map-marker{height:32px;width:24px}.search-section .search-jsx-wrapper .search-results-container .map-container .map-marker .fill{fill:var(--blue)}.search-section .search-jsx-wrapper .search-results-container .map-container .map-marker .outline{fill:var(--blue-700)}.search-section .search-jsx-wrapper .search-results-container .map-container .map-marker:hover .fill{fill:var(--blue-800)}.search-section .search-jsx-wrapper .search-results-container .map-container .map-marker.map-marker-selected .fill{fill:var(--blue-800)}.search-section .search-jsx-wrapper .search-results-container .map-container :has(>.map-info-window){padding:0}.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window{width:368px}.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window .card-image{height:320px}.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window .image-indicators{border-radius:0}.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window img,.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window .image,.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window picture{border-radius:0}.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window .content{margin:16px;padding-bottom:0}.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window .image{height:320px}.search-section .search-jsx-wrapper .search-results-container .map-container .map-info-window p{padding-bottom:0}.search-bar-container{min-width:32px}.search-bar-container .btn-search{cursor:pointer;pointer-events:painted}.search-bar-container .search-box{width:fit-content;height:fit-content}.search-bar-container .results-container{position:absolute;margin-left:16px;margin-top:12px;background-color:var(--white);padding:16px;border-radius:8px;display:flex;flex-direction:column;row-gap:12px;z-index:10}.search-bar-container .results-container .result-item{display:block}.search-bar-container input{border-style:none;margin-left:12px;font-size:1rem;font-weight:400;outline:none;background-color:rgba(0,0,0,0);border-radius:0;border-bottom:1px solid var(--ui-grey)}.style-content{display:flex;flex-direction:row;gap:8px;flex-wrap:wrap}.style-content .style-description{flex:2 2 50%}.style-content .style-image{flex:1 1 160px}.style-content .style-image .image{border-radius:16px;min-width:160px;height:360px}.section.region-header{padding-bottom:0}.section.region-header .feature-filters{--feature-arrow-gradient-colour: 255, 255, 255;display:flex;flex-direction:row;align-items:stretch}@media(prefers-color-scheme: dark){.section.region-header .feature-filters{--feature-arrow-gradient-colour: 10, 10, 10}}.section.region-header .feature-filters .feature-arrow-container{display:flex;align-items:flex-end;justify-content:center;flex-direction:column;background-color:rgba(0,0,0,0);cursor:pointer}.section.region-header .feature-filters #arrow-left{padding-right:8px;position:relative;left:8px;background:linear-gradient(to left, transparent 0%, rgb(var(--feature-arrow-gradient-colour), 0.5) 5%, rgb(var(--feature-arrow-gradient-colour), 1) 20%)}.section.region-header .feature-filters #arrow-right{padding-left:8px;position:relative;right:8px;background:linear-gradient(to right, transparent 0%, rgb(var(--feature-arrow-gradient-colour), 0.5) 5%, rgb(var(--feature-arrow-gradient-colour), 1) 20%)}.section.region-header .feature-filters .content.filters{margin-top:0;padding-top:0;padding-bottom:0;gap:24px;width:100%;display:inline-flex;overflow-x:scroll;-ms-overflow-style:none;scrollbar-width:none}.section.region-header .feature-filters .content.filters::-webkit-scrollbar{display:none}.section.region-header .feature-filters .content.filters .feature{text-align:center;color:var(--feature-icon);display:inline-block}.section.region-header .feature-filters .content.filters .feature i{color:var(--feature-icon);font-size:32px;padding:4px;display:block}.section.region-header .feature-filters .content.filters .feature span{font-size:.875rem;color:var(--feature-icon);white-space:nowrap}.section.region-header .feature-filters .content.filters .feature.selected *{color:var(--feature-icon-blue)}.section.region-header .feature-filters .content.filters .feature:hover *{color:var(--feature-icon-blue)}.section.region-winery-cards{padding:8px 0}.section.region-map .section-header{display:flex;flex-direction:column;align-items:flex-start;gap:8px}.section.region-root .section-header .copy{max-width:88ch}.section.region-root .section-header .copy h1{padding-bottom:8px}.section.region-root .section-header .copy .headline{padding-bottom:16px;line-height:1.75rem}.winery-header{padding-top:16px;padding-bottom:8px}@media screen and (max-width: 430px){.winery-header{padding-top:16px}}.winery-header h1{text-wrap:balance}.winery-header .crumbs{display:flex;flex-flow:row wrap;gap:8px;flex-basis:80%;flex-grow:1}.winery-header .crumbs .breadcrumbs{flex-basis:content;flex-grow:0}.winery-header .crumbs .regioncrumbs{flex-basis:content;flex-grow:0;color:var(--text-light-grey);font-size:1rem;line-height:1rem}.winery-header .crumbs .regioncrumbs a{color:var(--text-light-grey);font-size:1rem;line-height:1rem;text-wrap:nowrap}.winery-header .crumbs .regioncrumbs a:hover{text-decoration:underline}.winery-header .crumbs .regioncrumbs span{padding:0 .25rem;font-size:1rem;line-height:1rem}@media screen and (max-width: 430px){.winery-content{padding-top:16px}}.winery-content .container{display:flex;flex-flow:row wrap;justify-content:space-between;gap:16px}.winery-content .container .description{flex:2 1 600px}.winery-content .container .description .winery-description,.winery-content .container .description .location-description,.winery-content .container .description .book-tasting{padding-bottom:40px}.winery-content .container .sidebar{display:flex;flex-direction:column;flex:1 1 320px;gap:24px}@media screen and (max-width: 430px){.winery-content .container .sidebar{gap:16px}}.winery-map .map .leaflet-pane.leaflet-map-pane{z-index:1}.winery-map .map .leaflet-bottom.leaflet-right{display:none}.location-description{flex:2 1 600px}.location-description .features-list{display:grid;grid-template-columns:repeat(2, 1fr);gap:8px;padding:8px 0;margin-bottom:16px}.location-description .features-list .feature{font-weight:600;color:var(--text)}.location-description .features-list i{padding-right:4px;min-width:1.5rem}.book-tasting .policy p{padding-bottom:16px}.book-tasting .featured-experiences{display:flex;flex-direction:column;gap:16px}.sticky-booking{position:sticky;z-index:10;background-color:var(--bg);width:100%;max-height:80px;bottom:0;left:0;padding:8px;border-top:1px solid var(--ui-light-grey)}@media screen and (max-width: 430px){.sticky-booking{padding:4px}}.sticky-booking .container{display:flex;flex-direction:row;justify-content:flex-end;gap:40px}@media screen and (max-width: 430px){.sticky-booking .container{justify-content:space-between;gap:16px}}.sticky-booking .sticky-rating{display:flex;flex-direction:column;gap:4px}.sticky-booking .sticky-rating .reviews{padding:0}.sticky-booking .sticky-rating .reviews .rating{padding:0}.sticky-booking .sticky-rating .breakdown{display:flex;flex-direction:row;gap:8px;align-items:center;justify-content:start}.sticky-booking .sticky-rating .breakdown .stars{padding:0}.sticky-booking .sticky-rating .breakdown i{gap:4px;color:var(--orange);font-size:1rem;line-height:1.5rem}.sticky-booking .hidden{display:none}.wine-styles{padding:24px 0}.wine-styles .style-list{display:flex;flex-direction:row;flex-flow:wrap;gap:8px}.wine-styles .style-list .style{color:var(--text);text-decoration:none;font-weight:600;padding:8px 16px;border-radius:.25rem;background-color:var(--ui-very-light-grey)}.wine-styles .style-list .style:hover{background-color:var(--ui-light-grey)}.cellar-door-details{padding:24px 0}.cellar-door-details .contact p{padding-bottom:8px}.cellar-door-details .contact a{color:var(--link-grey)}.cellar-door-details .contact a:hover{text-decoration:underline}.cellar-door-details .contact .social-icons i{font-size:2rem;padding-right:1rem}.winery-content .opening-hours{padding:24px 0}.winery-content .opening-hours td{margin:0 40px 4px 0}.winery-content .opening-hours table,.winery-content .opening-hours tr{border:none !important;border-bottom:none !important}.location-content .opening-hours{padding:0}.location-content .opening-hours td{margin:0 40px 4px 0}.location-content .opening-hours table,.location-content .opening-hours tr{border:none !important;border-bottom:none !important}.locations{flex-wrap:wrap}.locations .card.location{flex:1;flex-basis:480px;max-width:600px}.locations .links.add-to-trip{padding-top:16px}.index-content{padding-top:16px}.index-content .copy{padding-bottom:16px}.index-content .copy a{color:var(--link-primary);font-weight:600}.index-content .index-links{display:flex;flex-flow:row wrap;gap:8px}.index-content .index-links a{color:var(--text-grey);min-width:180px;line-height:1.5rem}.index-content .index-sub{display:block;background-color:var(--bg-grey);padding:16px 0 16px 16px;margin:16px 0;border-radius:8px}.index-content .index-sub span{color:var(--text-grey);font-weight:800;min-width:164px}.index-content .index-sub a{min-width:180px}.section.help-hero .section-header{justify-content:center;gap:40px;text-align:center;padding-bottom:32px}.section.help-hero .section-header .user-type{background-color:var(--de-dark-mid);border-radius:16px;padding:32px 48px}.section.help-content article.help{margin:120px 0}.section.help-content article.help h1{padding:12px 0}.section.help-content article.help h2{margin-top:40px}.section.help-content article.help h3{margin-top:24px}.section.help-content .fee-table{margin-bottom:16px;overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none}.section.help-content .fee-table::-webkit-scrollbar{display:none}.section.help-content .fee-table .calc{color:var(--text-light-grey)}.section.help-content .fee-table #w-booking-fee-table{width:100%;max-width:480px}.section.help-content .fee-table #w-payments-table td{height:56px}.section.help-content #contact .callout{max-width:80ch;background-color:var(--de-light);border-radius:16px;padding:40px;margin:120px 0}.author{display:flex;flex-direction:row;align-items:center;gap:0}.author img{height:32px;border-radius:100%;margin-right:16px}.author cite span{text-wrap:nowrap;color:var(--link-light-grey)}.author cite .authorName{font-weight:500;color:var(--text);text-wrap:nowrap}.img-wrapper{display:block;padding:16px 0}.img-wrapper img{display:block}.img-wrapper:has(.caption){padding-bottom:24px}.img-wrapper:has(.caption) img{margin-bottom:4px;border:1px solid var(--ui-very-light-grey)}.img-wrapper .caption,.img-wrapper strong{color:var(--text-light-grey)}article img{max-width:100%;border-radius:8px}.section.newsroom.featured .container{display:flex;flex-direction:row;gap:48px;flex-wrap:wrap;justify-content:space-between}.section.newsroom.featured .container .featured-callout{display:flex;flex-direction:column;gap:8px;flex-basis:600px;flex-grow:10}.section.newsroom.featured .container .featured-callout .callout{max-width:fit-content}.section.newsroom.featured .container .featured-callout .callout h2{text-wrap:balance}.section.newsroom.featured .container .featured-callout .callout p{max-width:70ch}.section.newsroom.featured .container .sidebar{display:flex;flex-direction:row;flex-wrap:wrap;flex-basis:240px;flex-grow:1;gap:8px;justify-content:space-around}.section.newsroom.featured .container .sidebar .media-kit,.section.newsroom.featured .container .sidebar .contact{flex-basis:200px;max-width:240px;flex-grow:1}.section.newsroom.latest .container .articles{display:flex;flex-direction:column;gap:16px}.section.newsroom.latest .container .articles .article{display:flex;flex-direction:column;gap:8px;max-width:80ch;padding-bottom:40px}article.news .section-header{display:flex;flex-direction:column;align-items:flex-start;gap:16px;padding-top:64px;padding-bottom:64px}@media screen and (max-width: 768px){article.news .section-header{padding-top:48px;padding-bottom:64px}}article.news .section-header .article-type{display:flex;flex-direction:row;gap:8px;align-items:center;color:var(--link-light-grey)}article.news .section-header .article-type a{color:var(--link-light-grey)}article.news .section-header .article-type a:hover{color:var(--link-grey)}article.news .section-header .article-type .shortTitle{color:var(--text);font-weight:500}article.news .section-header h1{text-wrap:balance;padding-bottom:8px}@media screen and (max-width: 1024px){article.news .section-header h1{font-size:2.5rem;line-height:3rem}}@media screen and (max-width: 430px){article.news .section-header h1{font-size:2rem;line-height:2.5rem}}article.news .section-header .summary{max-width:80ch}article.news .article-content{display:flex;flex-direction:row;gap:8px;flex-wrap:wrap}@media screen and (min-width: 1024px){article.news .article-content .copy p,article.news .article-content .copy .p,article.news .article-content .copy ul,article.news .article-content .copy ol,article.news .article-content .copy li{font-size:1.125rem;line-height:1.75rem}}.section.news.latest-articles{margin-bottom:120px}.section.news.latest-articles .articles{display:flex;flex-direction:row;gap:16px}.section.news.latest-articles .articles .article{flex-basis:320px;padding-bottom:16px}.section.news.latest-articles .articles h4{text-wrap:balance}.about.hero{padding-top:120px;padding-bottom:64px}@media screen and (max-width: 768px){.about.hero{padding-top:64px}}.about.hero .container{display:flex;flex-direction:row;justify-content:space-between;gap:40px;flex-wrap:wrap}.about.hero .heading{flex:10 0 400px}.about.hero .heading h1{max-width:400px;margin:0}@media screen and (max-width: 768px){.about.hero .heading h1{max-width:560px}}.about.hero .copy{min-width:480px;flex:1 10 480px}@media screen and (max-width: 768px){.about.hero .copy{min-width:360px}}.about.hero .copy .lighter{color:hsla(0,0%,100%,.5)}.about.our-story,.about.for-wineries,.about.for-guests{padding-top:48px;padding-bottom:48px}.about.for-wineries .container{display:flex;flex-direction:row;gap:8px;justify-content:end}.section.for-wineries.hero .container{flex-direction:column;margin:0 auto;gap:16px;text-align:center;max-width:720px}.section.for-wineries.hero .container .button{border:var(--de-primary);color:var(--white)}.section.for-wineries.hero .container .button.primary{background-color:var(--de-primary)}.section.for-wineries.usp .container{display:flex;flex-direction:column;align-items:center;gap:16px}.section.for-wineries.usp .container .usp-buttons-container{width:100%;max-width:1280px;position:relative;overflow:hidden}@media screen and (max-width: 768px){.section.for-wineries.usp .container .usp-buttons-container::before,.section.for-wineries.usp .container .usp-buttons-container::after{width:30px}}.section.for-wineries.usp .container .usp-buttons-container::before,.section.for-wineries.usp .container .usp-buttons-container::after{content:"";position:absolute;top:0;bottom:0;width:100px;z-index:2;background:linear-gradient(to right, rgba(49, 12, 54, 0), rgb(49, 12, 54))}.section.for-wineries.usp .container .usp-buttons-container::before{left:0;transform:rotateZ(180deg)}.section.for-wineries.usp .container .usp-buttons-container::after{right:0}.section.for-wineries.usp .container .usp-buttons{display:flex;flex-direction:row;align-items:baseline;justify-content:center;transition:transform .5s ease-in-out;width:100%;padding:8px 0}.section.for-wineries.usp .container .usp-buttons button.icon{display:flex;flex-direction:column;gap:8px;align-items:center;min-width:110px;padding:0;border:none;font-weight:400;cursor:pointer;transition:all .3s ease;outline:none;opacity:.5}@media screen and (max-width: 768px){.section.for-wineries.usp .container .usp-buttons button.icon{min-width:100px}}.section.for-wineries.usp .container .usp-buttons button.icon span{color:var(--white)}.section.for-wineries.usp .container .usp-buttons button.icon i{font-size:2rem;color:var(--white)}.section.for-wineries.usp .container .usp-buttons button.icon:hover{opacity:1;transform:translateY(-3px)}.section.for-wineries.usp .container .usp-buttons button.icon:hover i{color:var(--white);font-size:2.5rem}.section.for-wineries.usp .container .usp-buttons button.icon.selected{opacity:1}.section.for-wineries.usp .container .usp-buttons button.icon.selected span{color:var(--white);font-weight:600}.section.for-wineries.usp .container .usp-buttons button.icon.selected i{color:var(--white);font-size:2.5rem}.section.for-wineries.usp .container .usp-descriptions{display:flex;flex-direction:row;justify-content:center;gap:0;overflow:hidden;padding:16px;max-width:560px}.section.for-wineries.usp .container .usp-descriptions .description{height:80px;max-width:0;text-align:center;transition:opacity .5s ease,transform .5s ease;opacity:0;padding:0;z-index:-1}.section.for-wineries.usp .container .usp-descriptions .description.selected{max-width:480px;opacity:1;transform:translateY(0);z-index:1}.section.for-wineries.booking-tools .container,.section.for-wineries.selling-wine .container,.section.for-wineries.winery-analytics .container{display:flex;flex-direction:column;align-items:center;gap:40px}.section.for-wineries.booking-tools .content,.section.for-wineries.selling-wine .content,.section.for-wineries.winery-analytics .content{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center;max-width:560px}.section.for-wineries.booking-tools .content h2,.section.for-wineries.selling-wine .content h2,.section.for-wineries.winery-analytics .content h2{max-width:480px}.section.for-wineries.booking-tools .usps,.section.for-wineries.selling-wine .usps,.section.for-wineries.winery-analytics .usps{display:flex;flex-direction:row;gap:48px;flex-wrap:wrap;justify-content:space-around}.section.for-wineries.booking-tools .usps .usp,.section.for-wineries.selling-wine .usps .usp,.section.for-wineries.winery-analytics .usps .usp{flex-basis:320px}.section.for-wineries.pricing-plans .section-header{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center;padding-bottom:40px}.section.for-wineries.pricing-plans .plans{display:flex;flex-direction:column;gap:8px;justify-content:center;align-items:center}.section.for-wineries.pricing-plans .plans .pricing-table{display:flex;flex-direction:row;flex-flow:row wrap;gap:16px;justify-content:center;padding-bottom:24px}.section.for-wineries.pricing-plans .plans .pricing-table .plan{display:flex;flex-direction:column;text-align:center;gap:24px;flex-basis:360px 1;border:1px solid var(--ui-light-grey);border-radius:16px;padding:24px 16px}.section.for-wineries.pricing-plans .plans .pricing-table .plan .header{display:flex;flex-direction:column;gap:8px;align-items:center}.section.for-wineries.pricing-plans .plans .pricing-table .plan .header .h1{margin:0}.section.for-wineries.pricing-plans .plans .pricing-table .plan .headline{max-width:340px}.section.for-wineries.pricing-plans .plans .note{max-width:800px;text-align:center}.section.for-wineries.accept-payments{padding:64px 16px}@media screen and (width <= 1135px){.section.for-wineries.accept-payments .callout{display:flex;flex-direction:column;justify-content:center;gap:40px}.section.for-wineries.accept-payments .fee-table{width:100%}.section.for-wineries.accept-payments .content{text-align:center;align-items:center}.section.for-wineries.accept-payments .content .link-group.left{justify-content:center}}.section.for-wineries.accept-payments .callout{display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:40px;width:fit-content;margin:0 auto}.section.for-wineries.accept-payments .content{display:flex;flex-direction:column;gap:8px;align-items:start;max-width:600px;text-align:left}.section.for-wineries.accept-payments .fee-table{display:flex;flex-direction:column;gap:16px;align-items:center;max-width:600px;flex-grow:1}.section.for-wineries.accept-payments .fee-table table{width:100%;max-width:600px;padding-bottom:8px}.section.for-wineries.accept-payments .fee-table table th,.section.for-wineries.accept-payments .fee-table table td{padding:4px 8px}.section.for-wineries.faq .headline a{color:var(--link-primary);text-decoration:underline}.section.for-wineries.faq .faq-accordion{display:flex;flex-direction:column;gap:8px;align-items:center}.section.for-wineries.faq table{margin-bottom:24px;overflow-x:scroll}.section.for-wineries.faq table .cost-breakdown{color:var(--text-light-grey)}.section.for-wineries.booking-software.usp .section-header{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center;padding-bottom:8px;max-width:560px}.section.for-wineries.booking-software.usp .usp-buttons-container::before,.section.for-wineries.booking-software.usp .usp-buttons-container::after{background:linear-gradient(to right, rgba(254, 249, 235, 0), rgb(254, 249, 235))}.section.for-wineries.booking-software.usp .usp-buttons-container .usp-buttons button.icon span{color:var(--text)}.section.for-wineries.booking-software.usp .usp-buttons-container .usp-buttons button.icon i{color:var(--text)}.section.for-wineries.booking-software.usp .usp-buttons-container .usp-buttons button.icon:hover i{color:var(--text)}.section.for-wineries.booking-software.usp .usp-buttons-container .usp-buttons button.icon.selected span{color:var(--text)}.section.for-wineries.booking-software.usp .usp-buttons-container .usp-buttons button.icon.selected i{color:var(--text)}.section.for-wineries.booking-software.booking-features .container,.section.for-wineries.booking-software.winery-specific .container,.section.for-wineries.booking-software.data-driven .container{display:flex;flex-direction:column;align-items:center;gap:40px}.section.for-wineries.booking-software.booking-features .content,.section.for-wineries.booking-software.winery-specific .content,.section.for-wineries.booking-software.data-driven .content{display:flex;flex-direction:column;align-items:center;text-align:center;max-width:560px}.section.for-wineries.booking-software.booking-features .content h2,.section.for-wineries.booking-software.winery-specific .content h2,.section.for-wineries.booking-software.data-driven .content h2{max-width:480px}.section.for-wineries.booking-software.booking-features .usps,.section.for-wineries.booking-software.winery-specific .usps,.section.for-wineries.booking-software.data-driven .usps{display:flex;flex-direction:row;gap:48px;flex-wrap:wrap;justify-content:space-around}.section.for-wineries.booking-software.booking-features .usps .usp,.section.for-wineries.booking-software.winery-specific .usps .usp,.section.for-wineries.booking-software.data-driven .usps .usp{flex-basis:320px}.shimmer{width:100%;height:100%;background:#f6f7f8;background-image:linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);background-repeat:no-repeat;background-size:800px 104px;animation-duration:1s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeholderShimmer;animation-timing-function:linear}@keyframes placeholderShimmer{0%{background-position:-468px 0}100%{background-position:468px 0}}.wine-loader{margin:0;display:flex;justify-content:center;align-items:center;height:120px}.wine-loader .wineglass{height:36px;position:relative}.wine-loader .wineglass::after{content:"";position:absolute;top:47px;left:5px;width:20px;height:5px;background:#000;box-shadow:0 0 1px #000}.wine-loader .wineglass.left{display:inline-block;margin-right:10px;animation:rotate1 2s cubic-bezier(0.39, 1.52, 0.46, 0.92) infinite}.wine-loader .wineglass.left .top::before{animation:rotate2 2s linear infinite}.wine-loader .wineglass.left .top{background:#000;width:30px;height:36px;border-radius:0 0 36px 36px;box-shadow:0 0 1px #000}.wine-loader .wineglass.left .top::before{content:"";position:absolute;left:4px;bottom:4px;width:22px;height:22px;border-radius:50%;background:linear-gradient(transparent 50%, white 50%)}.wine-loader .wineglass.left .top::after{content:"";position:absolute;top:35px;left:12px;width:6px;height:13px;background:#000;box-shadow:0 0 1px #000}.wine-loader .wineglass.right{display:inline-block;animation:rotate2 2s cubic-bezier(0.39, 1.52, 0.46, 0.92) infinite}.wine-loader .wineglass.right .top{background:#000;width:30px;height:36px;border-radius:0 0 36px 36px;box-shadow:0 0 1px #000}.wine-loader .wineglass.right .top::before{content:"";position:absolute;left:4px;bottom:4px;width:22px;height:22px;border-radius:50%;background:linear-gradient(transparent 50%, white 50%)}.wine-loader .wineglass.right .top::after{content:"";position:absolute;top:35px;left:12px;width:6px;height:13px;background:#000;box-shadow:0 0 1px #000}.wine-loader .wineglass.right .top::before{animation:rotate1 2s linear infinite}@keyframes rotate1{0%{transform:rotate(0deg)}50%{transform:rotate(22deg)}}@keyframes rotate2{0%{transform:rotate(0deg)}50%{transform:rotate(-22deg)}}.time-slot .new-booking{display:none}.time-slot:hover .new-booking{display:inline;cursor:pointer;border:dashed 1px var(--ui-grey);border-radius:8px;padding-left:4px;padding-right:4px;text-align:center;flex-direction:column}.images-grid,.file-list{display:grid;grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));gap:10px}.images-grid img,.file-list img{width:100%;height:100%;object-fit:cover}.winery-images .image-container{position:relative}.winery-images .reorder-buttons{position:absolute;top:50%;width:100%;display:flex;justify-content:space-between;transform:translateY(-50%);opacity:0;transition:opacity .2s ease-in-out}.winery-images .image-container:hover .reorder-buttons{opacity:1}.winery-images .reorder-button{background-color:hsla(0,0%,100%,.8);border:1px solid #ddd;border-radius:50%;width:30px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:12px;transition:background-color .2s}.winery-images .reorder-button.left-arrow{margin-left:5px}.winery-images .reorder-button.right-arrow{margin-right:5px}.winery-images .reorder-button:hover:not(:disabled){background-color:#fff}.winery-images .reorder-button:disabled{opacity:.5;cursor:not-allowed}.winery-images .title-input{width:100%;padding:.5rem;margin-bottom:.5rem;border:1px solid #ddd;border-radius:4px}.winery-images .title-actions{display:flex;gap:.5rem}.winery-images .title-text.clickable{cursor:pointer;color:#333}.winery-images .title-text.clickable:hover{text-decoration:underline}.winery-images .dropzone{width:100%;border:2px dashed var(--ui-grey-light, #ccc);border-radius:8px;padding:30px;text-align:center;transition:all .3s ease;background-color:var(--ui-grey-lightest, #f9f9f9);min-height:150px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;box-sizing:border-box}.winery-images .dropzone:hover{background-color:var(--ui-grey-lighter, #f0f0f0);border-color:var(--ui-grey, #aaa)}.winery-images .dropzone.active{border-color:var(--primary-color, #26c6da);background-color:rgba(38,198,218,.05);box-shadow:0 0 10px rgba(38,198,218,.2)}.winery-images .dropzone .dropzone-content p{margin-bottom:15px;font-size:1.1em;color:var(--ui-grey-dark, #666)}.winery-images .upload-section{width:100%}.winery-images .selected-files{margin-top:20px}.winery-images .selected-files h4{margin-bottom:15px;border-bottom:1px solid var(--ui-grey-light, #eee);padding-bottom:8px}.winery-images .selected-files .file-list{display:grid;grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));gap:15px;margin-bottom:20px}.winery-images .selected-files .file-item{border:1px solid var(--ui-grey-light, #eee);border-radius:6px;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease}.winery-images .selected-files .file-item:hover{transform:translateY(-3px);box-shadow:0 4px 8px rgba(0,0,0,.1)}.winery-images .selected-files .file-item .file-preview{height:150px;overflow:hidden}.winery-images .selected-files .file-item .file-preview img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.winery-images .selected-files .file-item .file-preview img:hover{transform:scale(1.05)}.winery-images .selected-files .file-item .file-info{padding:10px;background:#fff}.winery-images .selected-files .file-item .file-info p{margin:0;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;font-size:.9em}.winery-images .selected-files .file-item .file-info p.file-size{color:var(--ui-grey, #888);font-size:.8em;margin-top:4px}.winery-images .selected-files .file-item button{width:100%;border-top-left-radius:0;border-top-right-radius:0}.winery-images .selected-files .upload-actions{margin-top:15px;text-align:center}

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