@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-ul > li {
  position: relative;
}

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

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

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

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

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0);
  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, 0);
  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-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, .fa-fade {
  animation-delay: var(--fa-animation-delay, 0);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  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, 0);
  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-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-shake, .fa-spin {
  animation-delay: var(--fa-animation-delay, 0);
  animation-direction: var(--fa-animation-direction, normal);
}

.fa-spin {
  animation-name: fa-spin;
  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-beat-fade, .fa-bounce, .fa-fade, .fa-flip, .fa-pulse, .fa-shake, .fa-spin, .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1) 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) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, to {
    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%, to {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

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

.fa-0:before {
  content: "0";
}

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

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

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

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

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

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

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

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

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

.fa-a:before {
  content: "A";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-angle-double-left:before, .fa-angles-left:before {
  content: "\f100";
}

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

.fa-angle-double-up:before, .fa-angles-up:before {
  content: "\f102";
}

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

.fa-apple-alt:before, .fa-apple-whole:before {
  content: "\f5d1";
}

.fa-archway:before {
  content: "\f557";
}

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

.fa-arrow-down-1-9:before, .fa-sort-numeric-asc:before, .fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-arrow-down-9-1:before, .fa-sort-numeric-desc:before, .fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-arrow-down-a-z:before, .fa-sort-alpha-asc:before, .fa-sort-alpha-down:before {
  content: "\f15d";
}

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

.fa-arrow-down-short-wide:before, .fa-sort-amount-desc:before, .fa-sort-amount-down-alt:before {
  content: "\f884";
}

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

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

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

.fa-arrow-down-z-a:before, .fa-sort-alpha-desc:before, .fa-sort-alpha-down-alt:before {
  content: "\f881";
}

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

.fa-arrow-left-long:before, .fa-long-arrow-left:before {
  content: "\f177";
}

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

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

.fa-arrow-right-arrow-left:before, .fa-exchange:before {
  content: "\f0ec";
}

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

.fa-arrow-right-long:before, .fa-long-arrow-right:before {
  content: "\f178";
}

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

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

.fa-arrow-left-rotate:before, .fa-arrow-rotate-back:before, .fa-arrow-rotate-backward:before, .fa-arrow-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-arrow-right-rotate:before, .fa-arrow-rotate-forward:before, .fa-arrow-rotate-right:before, .fa-redo:before {
  content: "\f01e";
}

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

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

.fa-arrow-turn-down:before, .fa-level-down:before {
  content: "\f149";
}

.fa-arrow-turn-up:before, .fa-level-up:before {
  content: "\f148";
}

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

.fa-arrow-up-1-9:before, .fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-arrow-up-9-1:before, .fa-sort-numeric-up-alt:before {
  content: "\f887";
}

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

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

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

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

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

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

.fa-arrow-up-right-from-square:before, .fa-external-link:before {
  content: "\f08e";
}

.fa-arrow-up-short-wide:before, .fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-arrow-up-wide-short:before, .fa-sort-amount-up:before {
  content: "\f161";
}

.fa-arrow-up-z-a:before, .fa-sort-alpha-up-alt:before {
  content: "\f882";
}

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

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

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

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

.fa-arrows-rotate:before, .fa-refresh:before, .fa-sync:before {
  content: "\f021";
}

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

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

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

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

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

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

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

.fa-arrows-up-down:before, .fa-arrows-v:before {
  content: "\f07d";
}

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

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

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

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

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

.fa-audio-description:before {
  content: "\f29e";
}

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

.fa-award:before {
  content: "\f559";
}

.fa-b:before {
  content: "B";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before, .fa-carriage-baby:before {
  content: "\f77d";
}

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

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

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

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

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

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

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

.fa-bahai:before {
  content: "\f666";
}

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

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

.fa-ban-smoking:before, .fa-smoking-ban:before {
  content: "\f54d";
}

.fa-band-aid:before, .fa-bandage:before {
  content: "\f462";
}

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

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

.fa-bars-progress:before, .fa-tasks-alt:before {
  content: "\f828";
}

.fa-bars-staggered:before, .fa-reorder:before, .fa-stream:before {
  content: "\f550";
}

.fa-baseball-ball:before, .fa-baseball:before {
  content: "\f433";
}

.fa-baseball-bat-ball:before {
  content: "\f432";
}

.fa-basket-shopping:before, .fa-shopping-basket:before {
  content: "\f291";
}

.fa-basketball-ball:before, .fa-basketball:before {
  content: "\f434";
}

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

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-5:before, .fa-battery-full:before, .fa-battery:before {
  content: "\f240";
}

.fa-battery-3:before, .fa-battery-half:before {
  content: "\f242";
}

.fa-battery-2:before, .fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-4:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

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

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

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

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

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

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

.fa-bezier-curve:before {
  content: "\f55b";
}

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

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

.fa-biohazard:before {
  content: "\f780";
}

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

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

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

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

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

.fa-bolt:before, .fa-zap:before {
  content: "\f0e7";
}

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

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

.fa-bone:before {
  content: "\f5d7";
}

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

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

.fa-atlas:before, .fa-book-atlas:before {
  content: "\f558";
}

.fa-bible:before, .fa-book-bible:before {
  content: "\f647";
}

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

.fa-book-journal-whills:before, .fa-journal-whills:before {
  content: "\f66a";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-open-reader:before, .fa-book-reader:before {
  content: "\f5da";
}

.fa-book-quran:before, .fa-quran:before {
  content: "\f687";
}

.fa-book-dead:before, .fa-book-skull:before {
  content: "\f6b7";
}

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

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

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

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

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

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

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

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

.fa-bowling-ball:before {
  content: "\f436";
}

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

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

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

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

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

.fa-boxes-alt:before, .fa-boxes-stacked:before, .fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

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

.fa-bread-slice:before {
  content: "\f7ec";
}

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

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

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

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

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

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

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

.fa-briefcase-medical:before {
  content: "\f469";
}

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

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

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

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

.fa-bug:before {
  content: "\f188";
}

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

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

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

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

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

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

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

.fa-bank:before, .fa-building-columns:before, .fa-institution:before, .fa-museum:before, .fa-university:before {
  content: "\f19c";
}

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

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

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

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

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

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

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

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

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

.fa-burger:before, .fa-hamburger:before {
  content: "\f805";
}

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

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before, .fa-bus-simple:before {
  content: "\f55e";
}

.fa-briefcase-clock:before, .fa-business-time:before {
  content: "\f64a";
}

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

.fa-birthday-cake:before, .fa-cake-candles:before, .fa-cake:before {
  content: "\f1fd";
}

.fa-calculator:before {
  content: "\f1ec";
}

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

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

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

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-calendar-times:before, .fa-calendar-xmark:before {
  content: "\f273";
}

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

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

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

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

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

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

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

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

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

.fa-car-burst:before, .fa-car-crash:before {
  content: "\f5e1";
}

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

.fa-car-alt:before, .fa-car-rear:before {
  content: "\f5de";
}

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

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

.fa-caravan:before {
  content: "\f8ff";
}

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

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

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

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

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-flatbed:before, .fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-cart-flatbed-suitcase:before, .fa-luggage-cart:before {
  content: "\f59d";
}

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

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

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

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

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

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

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

.fa-blackboard:before, .fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before, .fa-chalkboard-user:before {
  content: "\f51c";
}

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

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

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

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

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

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

.fa-chart-line:before, .fa-line-chart:before {
  content: "\f201";
}

.fa-chart-pie:before, .fa-pie-chart:before {
  content: "\f200";
}

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

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

.fa-check-double:before {
  content: "\f560";
}

.fa-check-to-slot:before, .fa-vote-yea:before {
  content: "\f772";
}

.fa-cheese:before {
  content: "\f7ef";
}

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

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

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

.fa-chess-king:before {
  content: "\f43f";
}

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

.fa-chess-pawn:before {
  content: "\f443";
}

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

.fa-chess-rook:before {
  content: "\f447";
}

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

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

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

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

.fa-child:before {
  content: "\f1ae";
}

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

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

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

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

.fa-church:before {
  content: "\f51d";
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-arrow-alt-circle-down:before, .fa-circle-down:before {
  content: "\f358";
}

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

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

.fa-adjust:before, .fa-circle-half-stroke:before {
  content: "\f042";
}

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

.fa-arrow-alt-circle-left:before, .fa-circle-left:before {
  content: "\f359";
}

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

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

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

.fa-circle-pause:before, .fa-pause-circle:before {
  content: "\f28b";
}

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

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

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

.fa-circle-radiation:before, .fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-arrow-alt-circle-right:before, .fa-circle-right:before {
  content: "\f35a";
}

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

.fa-arrow-alt-circle-up:before, .fa-circle-up:before {
  content: "\f35b";
}

.fa-circle-user:before, .fa-user-circle:before {
  content: "\f2bd";
}

.fa-circle-xmark:before, .fa-times-circle:before, .fa-xmark-circle:before {
  content: "\f057";
}

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

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

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

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

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

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

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

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

.fa-clock-rotate-left:before, .fa-history:before {
  content: "\f1da";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

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

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

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

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

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

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

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

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

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

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

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

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

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

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

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

.fa-code-commit:before {
  content: "\f386";
}

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

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

.fa-code-merge:before {
  content: "\f387";
}

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

.fa-coins:before {
  content: "\f51e";
}

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

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

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before, .fa-commenting:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

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

.fa-comment-sms:before, .fa-sms:before {
  content: "\f7cd";
}

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

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

.fa-compact-disc:before {
  content: "\f51f";
}

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

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

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

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

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

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

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

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

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

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

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

.fa-crop-alt:before, .fa-crop-simple:before {
  content: "\f565";
}

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

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

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

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

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

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

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

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

.fa-d:before {
  content: "D";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-backspace:before, .fa-delete-left:before {
  content: "\f55a";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-desktop-alt:before, .fa-desktop:before {
  content: "\f390";
}

.fa-dharmachakra:before {
  content: "\f655";
}

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

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

.fa-diagram-project:before, .fa-project-diagram:before {
  content: "\f542";
}

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

.fa-diamond:before {
  content: "\f219";
}

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

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

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

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

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

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

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

.fa-disease:before {
  content: "\f7fa";
}

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

.fa-divide:before {
  content: "\f529";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before, .fa-dollar:before, .fa-usd:before {
  content: "$";
}

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

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

.fa-door-closed:before {
  content: "\f52a";
}

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

.fa-dove:before {
  content: "\f4ba";
}

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

.fa-down-long:before, .fa-long-arrow-alt-down:before {
  content: "\f309";
}

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

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-droplet:before, .fa-tint:before {
  content: "\f043";
}

.fa-droplet-slash:before, .fa-tint-slash:before {
  content: "\f5c7";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-dumbbell:before {
  content: "\f44b";
}

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

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

.fa-dungeon:before {
  content: "\f6d9";
}

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

.fa-deaf:before, .fa-deafness:before, .fa-ear-deaf:before, .fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa-assistive-listening-systems:before, .fa-ear-listen:before {
  content: "\f2a2";
}

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

.fa-earth-america:before, .fa-earth-americas:before, .fa-earth:before, .fa-globe-americas:before {
  content: "\f57d";
}

.fa-earth-asia:before, .fa-globe-asia:before {
  content: "\f57e";
}

.fa-earth-europe:before, .fa-globe-europe:before {
  content: "\f7a2";
}

.fa-earth-oceania:before, .fa-globe-oceania:before {
  content: "\e47b";
}

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

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

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

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

.fa-ellipsis-v:before, .fa-ellipsis-vertical:before {
  content: "\f142";
}

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

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

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

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

.fa-equals:before {
  content: "=";
}

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

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

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

.fa-exclamation:before {
  content: "!";
}

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

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

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

.fa-eye-dropper-empty:before, .fa-eye-dropper:before, .fa-eyedropper:before {
  content: "\f1fb";
}

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

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

.fa-f:before {
  content: "F";
}

.fa-angry:before, .fa-face-angry:before {
  content: "\f556";
}

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

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

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

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

.fa-face-grimace:before, .fa-grimace:before {
  content: "\f57f";
}

.fa-face-grin:before, .fa-grin:before {
  content: "\f580";
}

.fa-face-grin-beam:before, .fa-grin-beam:before {
  content: "\f582";
}

.fa-face-grin-beam-sweat:before, .fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-face-grin-hearts:before, .fa-grin-hearts:before {
  content: "\f584";
}

.fa-face-grin-squint:before, .fa-grin-squint:before {
  content: "\f585";
}

.fa-face-grin-squint-tears:before, .fa-grin-squint-tears:before {
  content: "\f586";
}

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

.fa-face-grin-tears:before, .fa-grin-tears:before {
  content: "\f588";
}

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

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

.fa-face-grin-tongue-wink:before, .fa-grin-tongue-wink:before {
  content: "\f58b";
}

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

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

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

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

.fa-face-kiss-wink-heart:before, .fa-kiss-wink-heart:before {
  content: "\f598";
}

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

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

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

.fa-face-laugh-wink:before, .fa-laugh-wink:before {
  content: "\f59c";
}

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

.fa-face-meh-blank:before, .fa-meh-blank:before {
  content: "\f5a4";
}

.fa-face-rolling-eyes:before, .fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-face-sad-cry:before, .fa-sad-cry:before {
  content: "\f5b3";
}

.fa-face-sad-tear:before, .fa-sad-tear:before {
  content: "\f5b4";
}

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

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

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

.fa-face-surprise:before, .fa-surprise:before {
  content: "\f5c2";
}

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

.fa-fan:before {
  content: "\f863";
}

.fa-faucet:before {
  content: "\e005";
}

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

.fa-fax:before {
  content: "\f1ac";
}

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

.fa-feather-alt:before, .fa-feather-pointed:before {
  content: "\f56b";
}

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

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

.fa-file-arrow-down:before, .fa-file-download:before {
  content: "\f56d";
}

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

.fa-file-audio:before {
  content: "\f1c7";
}

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

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

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

.fa-file-circle-plus:before {
  content: "\e4ee";
}

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

.fa-file-circle-xmark:before {
  content: "\e494";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

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

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-arrow-right-from-file:before, .fa-file-export:before {
  content: "\f56e";
}

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

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

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

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

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

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

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-edit:before, .fa-file-pen:before {
  content: "\f31c";
}

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

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

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

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

.fa-file-video:before {
  content: "\f1c8";
}

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

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

.fa-file-archive:before, .fa-file-zipper:before {
  content: "\f1c6";
}

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

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

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

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

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

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

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

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

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

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

.fa-fire-alt:before, .fa-fire-flame-curved:before {
  content: "\f7e4";
}

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

.fa-fish:before {
  content: "\f578";
}

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

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

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

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

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

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

.fa-floppy-disk:before, .fa-save:before {
  content: "\f0c7";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-dashboard:before, .fa-gauge-med:before, .fa-gauge:before, .fa-tachometer-alt-average:before {
  content: "\f624";
}

.fa-gauge-high:before, .fa-tachometer-alt-fast:before, .fa-tachometer-alt:before {
  content: "\f625";
}

.fa-gauge-simple-med:before, .fa-gauge-simple:before, .fa-tachometer-average:before {
  content: "\f629";
}

.fa-gauge-simple-high:before, .fa-tachometer-fast:before, .fa-tachometer:before {
  content: "\f62a";
}

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

.fa-cog:before, .fa-gear:before {
  content: "\f013";
}

.fa-cogs:before, .fa-gears:before {
  content: "\f085";
}

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

.fa-genderless:before {
  content: "\f22d";
}

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

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

.fa-gifts:before {
  content: "\f79c";
}

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

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

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

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

.fa-golf-ball-tee:before, .fa-golf-ball:before {
  content: "\f450";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
  content: "\f19d";
}

.fa-greater-than:before {
  content: ">";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grip-horizontal:before, .fa-grip:before {
  content: "\f58d";
}

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

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

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

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

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

.fa-guitar:before {
  content: "\f7a6";
}

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

.fa-h:before {
  content: "H";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

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

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

.fa-allergies:before, .fa-hand-dots:before {
  content: "\f461";
}

.fa-fist-raised:before, .fa-hand-fist:before {
  content: "\f6de";
}

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

.fa-hand-holding-dollar:before, .fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-droplet:before, .fa-hand-holding-water:before {
  content: "\f4c1";
}

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

.fa-hand-holding-heart:before {
  content: "\f4be";
}

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

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

.fa-hand-middle-finger:before {
  content: "\f806";
}

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

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

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

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

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

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

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

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

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

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

.fa-hands:before, .fa-sign-language:before, .fa-signing:before {
  content: "\f2a7";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before, .fa-hands-american-sign-language-interpreting:before, .fa-hands-asl-interpreting:before {
  content: "\f2a3";
}

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

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

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

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

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

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

.fa-hands-praying:before, .fa-praying-hands:before {
  content: "\f684";
}

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

.fa-hands-helping:before, .fa-handshake-angle:before {
  content: "\f4c4";
}

.fa-handshake-alt:before, .fa-handshake-simple:before {
  content: "\f4c6";
}

.fa-handshake-alt-slash:before, .fa-handshake-simple-slash:before {
  content: "\e05f";
}

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

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

.fa-hard-drive:before, .fa-hdd:before {
  content: "\f0a0";
}

.fa-hashtag:before {
  content: "#";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-hard-hat:before, .fa-hat-hard:before, .fa-helmet-safety:before {
  content: "\f807";
}

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

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

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

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

.fa-hippo:before {
  content: "\f6ed";
}

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

.fa-holly-berry:before {
  content: "\f7aa";
}

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

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

.fa-hospital-alt:before, .fa-hospital-wide:before, .fa-hospital:before {
  content: "\f0f8";
}

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

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

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hourglass-2:before, .fa-hourglass-half:before, .fa-hourglass:before {
  content: "\f254";
}

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

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

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

.fa-home-alt:before, .fa-home-lg-alt:before, .fa-home:before, .fa-house:before {
  content: "\f015";
}

.fa-home-lg:before, .fa-house-chimney:before {
  content: "\e3af";
}

.fa-house-chimney-crack:before, .fa-house-damage:before {
  content: "\f6f1";
}

.fa-clinic-medical:before, .fa-house-chimney-medical:before {
  content: "\f7f2";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-home-user:before, .fa-house-user:before {
  content: "\e1b0";
}

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

.fa-hurricane:before {
  content: "\f751";
}

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

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

.fa-ice-cream:before {
  content: "\f810";
}

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

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

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

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before, .fa-id-card-clip:before {
  content: "\f47f";
}

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

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

.fa-image-portrait:before, .fa-portrait:before {
  content: "\f3e0";
}

.fa-images:before {
  content: "\f302";
}

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

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

.fa-indian-rupee-sign:before, .fa-indian-rupee:before, .fa-inr:before {
  content: "\e1bc";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

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

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

.fa-j:before {
  content: "J";
}

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

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

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

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

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

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

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

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

.fa-kaaba:before {
  content: "\f66b";
}

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

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

.fa-khanda:before {
  content: "\f66d";
}

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

.fa-first-aid:before, .fa-kit-medical:before {
  content: "\f479";
}

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

.fa-kiwi-bird:before {
  content: "\f535";
}

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

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

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

.fa-landmark-alt:before, .fa-landmark-dome:before {
  content: "\f752";
}

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

.fa-language:before {
  content: "\f1ab";
}

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

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

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

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

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

.fa-layer-group:before {
  content: "\f5fd";
}

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

.fa-left-long:before, .fa-long-arrow-alt-left:before {
  content: "\f30a";
}

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

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

.fa-less-than:before {
  content: "<";
}

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

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

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

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

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-chain-broken:before, .fa-chain-slash:before, .fa-link-slash:before, .fa-unlink:before {
  content: "\f127";
}

.fa-lira-sign:before {
  content: "\f195";
}

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

.fa-list-check:before, .fa-tasks:before {
  content: "\f0ae";
}

.fa-list-1-2:before, .fa-list-numeric:before, .fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-dots:before, .fa-list-ul:before {
  content: "\f0ca";
}

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

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

.fa-location-crosshairs:before, .fa-location:before {
  content: "\f601";
}

.fa-location-dot:before, .fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-location-pin:before, .fa-map-marker:before {
  content: "\f041";
}

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

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

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

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

.fa-lungs:before {
  content: "\f604";
}

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

.fa-m:before {
  content: "M";
}

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

.fa-magnifying-glass:before, .fa-search:before {
  content: "\f002";
}

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

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

.fa-magnifying-glass-dollar:before, .fa-search-dollar:before {
  content: "\f688";
}

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

.fa-magnifying-glass-minus:before, .fa-search-minus:before {
  content: "\f010";
}

.fa-magnifying-glass-plus:before, .fa-search-plus:before {
  content: "\f00e";
}

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

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

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

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

.fa-map-pin:before {
  content: "\f276";
}

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

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

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

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

.fa-mars-double:before {
  content: "\f227";
}

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

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

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

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

.fa-cocktail:before, .fa-martini-glass-citrus:before {
  content: "\f561";
}

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

.fa-mask:before {
  content: "\f6fa";
}

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

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

.fa-masks-theater:before, .fa-theater-masks:before {
  content: "\f630";
}

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

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

.fa-medal:before {
  content: "\f5a2";
}

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

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

.fa-mercury:before {
  content: "\f223";
}

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

.fa-meteor:before {
  content: "\f753";
}

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

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

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

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

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

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

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

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

.fa-minus:before, .fa-subtract:before {
  content: "\f068";
}

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

.fa-mobile-android:before, .fa-mobile-phone:before, .fa-mobile:before {
  content: "\f3ce";
}

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

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

.fa-mobile-android-alt:before, .fa-mobile-screen:before {
  content: "\f3cf";
}

.fa-mobile-alt:before, .fa-mobile-screen-button:before {
  content: "\f3cd";
}

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

.fa-money-bill-1:before, .fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-1-wave:before, .fa-money-bill-wave-alt:before {
  content: "\f53b";
}

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

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

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

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

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

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before, .fa-money-check-dollar:before {
  content: "\f53d";
}

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

.fa-moon:before {
  content: "\f186";
}

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

.fa-mosque:before {
  content: "\f678";
}

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

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

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

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

.fa-mountain:before {
  content: "\f6fc";
}

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

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

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

.fa-coffee:before, .fa-mug-saucer:before {
  content: "\f0f4";
}

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

.fa-n:before {
  content: "N";
}

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

.fa-network-wired:before {
  content: "\f6ff";
}

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

.fa-newspaper:before {
  content: "\f1ea";
}

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

.fa-note-sticky:before, .fa-sticky-note:before {
  content: "\f249";
}

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

.fa-o:before {
  content: "O";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-oil-can:before {
  content: "\f613";
}

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

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

.fa-otter:before {
  content: "\f700";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-p:before {
  content: "P";
}

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

.fa-paint-roller:before {
  content: "\f5aa";
}

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

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

.fa-pallet:before {
  content: "\f482";
}

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

.fa-paper-plane:before {
  content: "\f1d8";
}

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

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

.fa-paragraph:before {
  content: "\f1dd";
}

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

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

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

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

.fa-peace:before {
  content: "\f67c";
}

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

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

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

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

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

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

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

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

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

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

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

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

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

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

.fa-percent:before, .fa-percentage:before {
  content: "%";
}

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

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

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

.fa-biking:before, .fa-person-biking:before {
  content: "\f84a";
}

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

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

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

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

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

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

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

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

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

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

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

.fa-digging:before, .fa-person-digging:before {
  content: "\f85e";
}

.fa-diagnoses:before, .fa-person-dots-from-line:before {
  content: "\f470";
}

.fa-female:before, .fa-person-dress:before {
  content: "\f182";
}

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

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

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

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

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

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

.fa-hiking:before, .fa-person-hiking:before {
  content: "\f6ec";
}

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

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

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

.fa-person-praying:before, .fa-pray:before {
  content: "\f683";
}

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

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

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

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

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

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

.fa-person-skiing:before, .fa-skiing:before {
  content: "\f7c9";
}

.fa-person-skiing-nordic:before, .fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-person-snowboarding:before, .fa-snowboarding:before {
  content: "\f7ce";
}

.fa-person-swimming:before, .fa-swimmer:before {
  content: "\f5c4";
}

.fa-person-through-window:before {
  content: "\e433";
}

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

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

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

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

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

.fa-blind:before, .fa-person-walking-with-cane:before {
  content: "\f29d";
}

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

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

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

.fa-phone-alt:before, .fa-phone-flip:before {
  content: "\f879";
}

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

.fa-phone-volume:before, .fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-photo-film:before, .fa-photo-video:before {
  content: "\f87c";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

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

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

.fa-place-of-worship:before {
  content: "\f67f";
}

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

.fa-plane-arrival:before {
  content: "\f5af";
}

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

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

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

.fa-plane-departure:before {
  content: "\f5b0";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-add:before, .fa-plus:before {
  content: "+";
}

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

.fa-podcast:before {
  content: "\f2ce";
}

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

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

.fa-poop:before {
  content: "\f619";
}

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

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

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

.fa-prescription-bottle-alt:before, .fa-prescription-bottle-medical:before {
  content: "\f486";
}

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

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

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

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

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

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

.fa-question:before {
  content: "?";
}

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

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

.fa-r:before {
  content: "R";
}

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

.fa-radio:before {
  content: "\f8d7";
}

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

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

.fa-receipt:before {
  content: "\f543";
}

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

.fa-ad:before, .fa-rectangle-ad:before {
  content: "\f641";
}

.fa-list-alt:before, .fa-rectangle-list:before {
  content: "\f022";
}

.fa-rectangle-times:before, .fa-rectangle-xmark:before, .fa-times-rectangle:before, .fa-window-close:before {
  content: "\f410";
}

.fa-recycle:before {
  content: "\f1b8";
}

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

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

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

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

.fa-republican:before {
  content: "\f75e";
}

.fa-restroom:before {
  content: "\f7bd";
}

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

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-right-from-bracket:before, .fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-exchange-alt:before, .fa-right-left:before {
  content: "\f362";
}

.fa-long-arrow-alt-right:before, .fa-right-long:before {
  content: "\f30b";
}

.fa-right-to-bracket:before, .fa-sign-in-alt:before {
  content: "\f2f6";
}

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

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

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

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

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

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

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

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

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

.fa-robot:before {
  content: "\f544";
}

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

.fa-rotate:before, .fa-sync-alt:before {
  content: "\f2f1";
}

.fa-rotate-back:before, .fa-rotate-backward:before, .fa-rotate-left:before, .fa-undo-alt:before {
  content: "\f2ea";
}

.fa-redo-alt:before, .fa-rotate-forward:before, .fa-rotate-right:before {
  content: "\f2f9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble-sign:before, .fa-ruble:before {
  content: "\f158";
}

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

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

.fa-ruler-combined:before {
  content: "\f546";
}

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

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-rupee-sign:before, .fa-rupee:before {
  content: "\f156";
}

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

.fa-s:before {
  content: "S";
}

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

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

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

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-balance-scale:before, .fa-scale-balanced:before {
  content: "\f24e";
}

.fa-balance-scale-left:before, .fa-scale-unbalanced:before {
  content: "\f515";
}

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

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

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

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

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

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

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

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

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

.fa-screwdriver-wrench:before, .fa-tools:before {
  content: "\f7d9";
}

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

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

.fa-sd-card:before {
  content: "\f7c2";
}

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

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

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

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

.fa-arrow-turn-right:before, .fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-share-from-square:before, .fa-share-square:before {
  content: "\f14d";
}

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

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

.fa-ils:before, .fa-shekel-sign:before, .fa-shekel:before, .fa-sheqel-sign:before, .fa-sheqel:before {
  content: "\f20b";
}

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

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

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

.fa-shield-alt:before, .fa-shield-halved:before {
  content: "\f3ed";
}

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

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

.fa-ship:before {
  content: "\f21a";
}

.fa-shirt:before, .fa-t-shirt:before, .fa-tshirt:before {
  content: "\f553";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shop:before, .fa-store-alt:before {
  content: "\f54f";
}

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

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

.fa-shower:before {
  content: "\f2cc";
}

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

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

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

.fa-sign-hanging:before, .fa-sign:before {
  content: "\f4d9";
}

.fa-signal-5:before, .fa-signal-perfect:before, .fa-signal:before {
  content: "\f012";
}

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

.fa-map-signs:before, .fa-signs-post:before {
  content: "\f277";
}

.fa-sim-card:before {
  content: "\f7c4";
}

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

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

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

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

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before, .fa-sliders:before {
  content: "\f1de";
}

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

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

.fa-snowflake:before {
  content: "\f2dc";
}

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

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

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

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before, .fa-unsorted:before {
  content: "\f0dc";
}

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

.fa-sort-asc:before, .fa-sort-up:before {
  content: "\f0de";
}

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

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

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

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

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

.fa-splotch:before {
  content: "\f5bc";
}

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

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

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

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

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

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

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

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

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

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

.fa-envelope-square:before, .fa-square-envelope:before {
  content: "\f199";
}

.fa-square-full:before {
  content: "\f45c";
}

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

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

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

.fa-parking:before, .fa-square-parking:before {
  content: "\f540";
}

.fa-pen-square:before, .fa-pencil-square:before, .fa-square-pen:before {
  content: "\f14b";
}

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

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

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

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

.fa-poll-h:before, .fa-square-poll-horizontal:before {
  content: "\f682";
}

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

.fa-square-root-alt:before, .fa-square-root-variable:before {
  content: "\f698";
}

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

.fa-share-alt-square:before, .fa-square-share-nodes:before {
  content: "\f1e1";
}

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

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

.fa-square-xmark:before, .fa-times-square:before, .fa-xmark-square:before {
  content: "\f2d3";
}

.fa-rod-asclepius:before, .fa-rod-snake:before, .fa-staff-aesculapius:before, .fa-staff-snake:before {
  content: "\e579";
}

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

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

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

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

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

.fa-star-half-alt:before, .fa-star-half-stroke:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

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

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

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

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

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

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

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

.fa-street-view:before {
  content: "\f21d";
}

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

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

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

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

.fa-medkit:before, .fa-suitcase-medical:before {
  content: "\f0fa";
}

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

.fa-sun:before {
  content: "\f185";
}

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

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

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

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

.fa-syringe:before {
  content: "\f48e";
}

.fa-t:before {
  content: "T";
}

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

.fa-table-cells:before, .fa-th:before {
  content: "\f00a";
}

.fa-table-cells-large:before, .fa-th-large:before {
  content: "\f009";
}

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

.fa-table-list:before, .fa-th-list:before {
  content: "\f00b";
}

.fa-ping-pong-paddle-ball:before, .fa-table-tennis-paddle-ball:before, .fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet-android:before, .fa-tablet:before {
  content: "\f3fb";
}

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

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

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

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

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

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

.fa-tape:before {
  content: "\f4db";
}

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

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

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-temperature-arrow-down:before, .fa-temperature-down:before {
  content: "\e03f";
}

.fa-temperature-arrow-up:before, .fa-temperature-up:before {
  content: "\e040";
}

.fa-temperature-0:before, .fa-temperature-empty:before, .fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-temperature-4:before, .fa-temperature-full:before, .fa-thermometer-4:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-temperature-2:before, .fa-temperature-half:before, .fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-temperature-1:before, .fa-temperature-quarter:before, .fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-temperature-3:before, .fa-temperature-three-quarters:before, .fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-tenge-sign:before, .fa-tenge:before {
  content: "\f7d7";
}

.fa-tent:before {
  content: "\e57d";
}

.fa-tent-arrow-down-to-line:before {
  content: "\e57e";
}

.fa-tent-arrow-left-right:before {
  content: "\e57f";
}

.fa-tent-arrow-turn-left:before {
  content: "\e580";
}

.fa-tent-arrows-down:before {
  content: "\e581";
}

.fa-tents:before {
  content: "\e582";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-remove-format:before, .fa-text-slash:before {
  content: "\f87d";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumb-tack:before, .fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before, .fa-ticket-simple:before {
  content: "\f3ff";
}

.fa-timeline:before {
  content: "\e29c";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toilet-portable:before {
  content: "\e583";
}

.fa-toilets-portable:before {
  content: "\e584";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tornado:before {
  content: "\f76f";
}

.fa-broadcast-tower:before, .fa-tower-broadcast:before {
  content: "\f519";
}

.fa-tower-cell:before {
  content: "\e585";
}

.fa-tower-observation:before {
  content: "\e586";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before, .fa-train-subway:before {
  content: "\f239";
}

.fa-train-tram:before, .fa-tram:before {
  content: "\f7da";
}

.fa-transgender-alt:before, .fa-transgender:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-arrow-up:before, .fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-alt:before, .fa-trash-can:before {
  content: "\f2ed";
}

.fa-trash-can-arrow-up:before, .fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-city:before {
  content: "\e587";
}

.fa-exclamation-triangle:before, .fa-triangle-exclamation:before, .fa-warning:before {
  content: "\f071";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trowel:before {
  content: "\e589";
}

.fa-trowel-bricks:before {
  content: "\e58a";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-arrow-right:before {
  content: "\e58b";
}

.fa-truck-droplet:before {
  content: "\e58c";
}

.fa-shipping-fast:before, .fa-truck-fast:before {
  content: "\f48b";
}

.fa-truck-field:before {
  content: "\e58d";
}

.fa-truck-field-un:before {
  content: "\e58e";
}

.fa-truck-front:before {
  content: "\e2b7";
}

.fa-ambulance:before, .fa-truck-medical:before {
  content: "\f0f9";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-truck-plane:before {
  content: "\e58f";
}

.fa-truck-loading:before, .fa-truck-ramp-box:before {
  content: "\f4de";
}

.fa-teletype:before, .fa-tty:before {
  content: "\f1e4";
}

.fa-try:before, .fa-turkish-lira-sign:before, .fa-turkish-lira:before {
  content: "\e2bb";
}

.fa-level-down-alt:before, .fa-turn-down:before {
  content: "\f3be";
}

.fa-level-up-alt:before, .fa-turn-up:before {
  content: "\f3bf";
}

.fa-television:before, .fa-tv-alt:before, .fa-tv:before {
  content: "\f26c";
}

.fa-u:before {
  content: "U";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before, .fa-unlock-keyhole:before {
  content: "\f13e";
}

.fa-arrows-alt-v:before, .fa-up-down:before {
  content: "\f338";
}

.fa-arrows-alt:before, .fa-up-down-left-right:before {
  content: "\f0b2";
}

.fa-long-arrow-alt-up:before, .fa-up-long:before {
  content: "\f30c";
}

.fa-expand-alt:before, .fa-up-right-and-down-left-from-center:before {
  content: "\f424";
}

.fa-external-link-alt:before, .fa-up-right-from-square:before {
  content: "\f35d";
}

.fa-upload:before {
  content: "\f093";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-doctor:before, .fa-user-md:before {
  content: "\f0f0";
}

.fa-user-cog:before, .fa-user-gear:before {
  content: "\f4fe";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-friends:before, .fa-user-group:before {
  content: "\f500";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-alt:before, .fa-user-large:before {
  content: "\f406";
}

.fa-user-alt-slash:before, .fa-user-large-slash:before {
  content: "\f4fa";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-edit:before, .fa-user-pen:before {
  content: "\f4ff";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before, .fa-user-xmark:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-between-lines:before {
  content: "\e591";
}

.fa-users-cog:before, .fa-users-gear:before {
  content: "\f509";
}

.fa-users-line:before {
  content: "\e592";
}

.fa-users-rays:before {
  content: "\e593";
}

.fa-users-rectangle:before {
  content: "\e594";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-users-viewfinder:before {
  content: "\e595";
}

.fa-cutlery:before, .fa-utensils:before {
  content: "\f2e7";
}

.fa-v:before {
  content: "V";
}

.fa-shuttle-van:before, .fa-van-shuttle:before {
  content: "\f5b6";
}

.fa-vault:before {
  content: "\e2c5";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vial-circle-check:before {
  content: "\e596";
}

.fa-vial-virus:before {
  content: "\e597";
}

.fa-vials:before {
  content: "\f493";
}

.fa-video-camera:before, .fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-covid:before {
  content: "\e4a8";
}

.fa-virus-covid-slash:before {
  content: "\e4a9";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volcano:before {
  content: "\f770";
}

.fa-volleyball-ball:before, .fa-volleyball:before {
  content: "\f45f";
}

.fa-volume-high:before, .fa-volume-up:before {
  content: "\f028";
}

.fa-volume-down:before, .fa-volume-low:before {
  content: "\f027";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-mute:before, .fa-volume-times:before, .fa-volume-xmark:before {
  content: "\f6a9";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-w:before {
  content: "W";
}

.fa-walkie-talkie:before {
  content: "\f8ef";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-magic:before, .fa-wand-magic:before {
  content: "\f0d0";
}

.fa-magic-wand-sparkles:before, .fa-wand-magic-sparkles:before {
  content: "\e2ca";
}

.fa-wand-sparkles:before {
  content: "\f72b";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-ladder-water:before, .fa-swimming-pool:before, .fa-water-ladder:before {
  content: "\f5c5";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weight-scale:before, .fa-weight:before {
  content: "\f496";
}

.fa-wheat-alt:before, .fa-wheat-awn:before {
  content: "\e2cd";
}

.fa-wheat-awn-circle-exclamation:before {
  content: "\e598";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-wheelchair-alt:before, .fa-wheelchair-move:before {
  content: "\e2ce";
}

.fa-glass-whiskey:before, .fa-whiskey-glass:before {
  content: "\f7a0";
}

.fa-wifi-3:before, .fa-wifi-strong:before, .fa-wifi:before {
  content: "\f1eb";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before, .fa-wine-glass-empty:before {
  content: "\f5ce";
}

.fa-krw:before, .fa-won-sign:before, .fa-won:before {
  content: "\f159";
}

.fa-worm:before {
  content: "\e599";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x:before {
  content: "X";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-close:before, .fa-multiply:before, .fa-remove:before, .fa-times:before, .fa-xmark:before {
  content: "\f00d";
}

.fa-xmarks-lines:before {
  content: "\e59a";
}

.fa-y:before {
  content: "Y";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen-sign:before, .fa-yen:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-z:before {
  content: "Z";
}

.fa-sr-only, .fa-sr-only-focusable:not(:focus), .sr-only, .sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:host, :root {
  --fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/fa-brands-400.woff2) format("woff2"), url(../webfonts/fa-brands-400.ttf) format("truetype");
}
.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fa-42-group:before, .fa-innosoft:before {
  content: "\e080";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-audible:before {
  content: "\f373";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-aws:before {
  content: "\f375";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bilibili:before {
  content: "\e3d9";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-bots:before {
  content: "\e340";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cmplid:before {
  content: "\e360";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envira:before {
  content: "\f299";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-figma:before {
  content: "\f799";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-fly:before {
  content: "\f417";
}

.fa-font-awesome-flag:before, .fa-font-awesome-logo-full:before, .fa-font-awesome:before {
  content: "\f2b4";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golang:before {
  content: "\e40f";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hashnode:before {
  content: "\e499";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-less:before {
  content: "\f41d";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium-m:before, .fa-medium:before {
  content: "\f23a";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-nfc-directional:before {
  content: "\e530";
}

.fa-nfc-symbol:before {
  content: "\e531";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-padlet:before {
  content: "\e4a0";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pix:before {
  content: "\e43a";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-screenpal:before {
  content: "\e570";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sith:before {
  content: "\f512";
}

.fa-sitrox:before {
  content: "\e44a";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack-hash:before, .fa-slack:before {
  content: "\f198";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-snapchat-ghost:before, .fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-square-font-awesome:before {
  content: "\f425";
}

.fa-font-awesome-alt:before, .fa-square-font-awesome-stroke:before {
  content: "\f35c";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-telegram-plane:before, .fa-telegram:before {
  content: "\f2c6";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-viber:before {
  content: "\f409";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wirsindhandwerk:before, .fa-wsh:before {
  content: "\e2d0";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

:host, :root {
  --fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/fa-regular-400.woff2) format("woff2"), url(../webfonts/fa-regular-400.ttf) format("truetype");
}
.fa-regular, .far {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

:host, :root {
  --fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free";
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(../webfonts/fa-solid-900.woff2) format("woff2"), url(../webfonts/fa-solid-900.ttf) format("truetype");
}
.fa-solid, .fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-display: block;
  font-weight: 400;
  src: url(../webfonts/fa-brands-400.woff2) format("woff2"), url(../webfonts/fa-brands-400.ttf) format("truetype");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 900;
  src: url(../webfonts/fa-solid-900.woff2) format("woff2"), url(../webfonts/fa-solid-900.ttf) format("truetype");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 400;
  src: url(../webfonts/fa-regular-400.woff2) format("woff2"), url(../webfonts/fa-regular-400.ttf) format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../webfonts/fa-solid-900.woff2) format("woff2"), url(../webfonts/fa-solid-900.ttf) format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../webfonts/fa-brands-400.woff2) format("woff2"), url(../webfonts/fa-brands-400.ttf) format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../webfonts/fa-regular-400.woff2) format("woff2"), url(../webfonts/fa-regular-400.ttf) format("truetype");
  unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc;
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url(../webfonts/fa-v4compatibility.woff2) format("woff2"), url(../webfonts/fa-v4compatibility.ttf) format("truetype");
  unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f250, u+f252, u+f27a;
}
/* Ionicons 4.5.10-1 */
/*!
  Ionicons, v4.5.10-1
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
  font-family: "Ionicons";
  src: url("../webfonts/ionicons.eot?v=4.5.10-1");
  src: url("../webfonts/ionicons.eot?v=4.5.10-1#iefix") format("embedded-opentype"), url("../webfonts/ionicons.woff2?v=4.5.10-1") format("woff2"), url("../webfonts/ionicons.woff?v=4.5.10-1") format("woff"), url("../webfonts/ionicons.ttf?v=4.5.10-1") format("truetype"), url("../webfonts/ionicons.svg?v=4.5.10-1#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.ion, .ionicons, .ion-ios-add:before, .ion-ios-add-circle:before, .ion-ios-add-circle-outline:before, .ion-ios-airplane:before, .ion-ios-alarm:before, .ion-ios-albums:before, .ion-ios-alert:before, .ion-ios-american-football:before, .ion-ios-analytics:before, .ion-ios-aperture:before, .ion-ios-apps:before, .ion-ios-appstore:before, .ion-ios-archive:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-dropdown:before, .ion-ios-arrow-dropdown-circle:before, .ion-ios-arrow-dropleft:before, .ion-ios-arrow-dropleft-circle:before, .ion-ios-arrow-dropright:before, .ion-ios-arrow-dropright-circle:before, .ion-ios-arrow-dropup:before, .ion-ios-arrow-dropup-circle:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-round-back:before, .ion-ios-arrow-round-down:before, .ion-ios-arrow-round-forward:before, .ion-ios-arrow-round-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-attach:before, .ion-ios-backspace:before, .ion-ios-barcode:before, .ion-ios-baseball:before, .ion-ios-basket:before, .ion-ios-basketball:before, .ion-ios-battery-charging:before, .ion-ios-battery-dead:before, .ion-ios-battery-full:before, .ion-ios-beaker:before, .ion-ios-bed:before, .ion-ios-beer:before, .ion-ios-bicycle:before, .ion-ios-bluetooth:before, .ion-ios-boat:before, .ion-ios-body:before, .ion-ios-bonfire:before, .ion-ios-book:before, .ion-ios-bookmark:before, .ion-ios-bookmarks:before, .ion-ios-bowtie:before, .ion-ios-briefcase:before, .ion-ios-browsers:before, .ion-ios-brush:before, .ion-ios-bug:before, .ion-ios-build:before, .ion-ios-bulb:before, .ion-ios-bus:before, .ion-ios-business:before, .ion-ios-cafe:before, .ion-ios-calculator:before, .ion-ios-calendar:before, .ion-ios-call:before, .ion-ios-camera:before, .ion-ios-car:before, .ion-ios-card:before, .ion-ios-cart:before, .ion-ios-cash:before, .ion-ios-cellular:before, .ion-ios-chatboxes:before, .ion-ios-chatbubbles:before, .ion-ios-checkbox:before, .ion-ios-checkbox-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-circle:before, .ion-ios-checkmark-circle-outline:before, .ion-ios-clipboard:before, .ion-ios-clock:before, .ion-ios-close:before, .ion-ios-close-circle:before, .ion-ios-close-circle-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-circle:before, .ion-ios-cloud-done:before, .ion-ios-cloud-download:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-code:before, .ion-ios-code-download:before, .ion-ios-code-working:before, .ion-ios-cog:before, .ion-ios-color-fill:before, .ion-ios-color-filter:before, .ion-ios-color-palette:before, .ion-ios-color-wand:before, .ion-ios-compass:before, .ion-ios-construct:before, .ion-ios-contact:before, .ion-ios-contacts:before, .ion-ios-contract:before, .ion-ios-contrast:before, .ion-ios-copy:before, .ion-ios-create:before, .ion-ios-crop:before, .ion-ios-cube:before, .ion-ios-cut:before, .ion-ios-desktop:before, .ion-ios-disc:before, .ion-ios-document:before, .ion-ios-done-all:before, .ion-ios-download:before, .ion-ios-easel:before, .ion-ios-egg:before, .ion-ios-exit:before, .ion-ios-expand:before, .ion-ios-eye:before, .ion-ios-eye-off:before, .ion-ios-fastforward:before, .ion-ios-female:before, .ion-ios-filing:before, .ion-ios-film:before, .ion-ios-finger-print:before, .ion-ios-fitness:before, .ion-ios-flag:before, .ion-ios-flame:before, .ion-ios-flash:before, .ion-ios-flash-off:before, .ion-ios-flashlight:before, .ion-ios-flask:before, .ion-ios-flower:before, .ion-ios-folder:before, .ion-ios-folder-open:before, .ion-ios-football:before, .ion-ios-funnel:before, .ion-ios-gift:before, .ion-ios-git-branch:before, .ion-ios-git-commit:before, .ion-ios-git-compare:before, .ion-ios-git-merge:before, .ion-ios-git-network:before, .ion-ios-git-pull-request:before, .ion-ios-glasses:before, .ion-ios-globe:before, .ion-ios-grid:before, .ion-ios-hammer:before, .ion-ios-hand:before, .ion-ios-happy:before, .ion-ios-headset:before, .ion-ios-heart:before, .ion-ios-heart-dislike:before, .ion-ios-heart-empty:before, .ion-ios-heart-half:before, .ion-ios-help:before, .ion-ios-help-buoy:before, .ion-ios-help-circle:before, .ion-ios-help-circle-outline:before, .ion-ios-home:before, .ion-ios-hourglass:before, .ion-ios-ice-cream:before, .ion-ios-image:before, .ion-ios-images:before, .ion-ios-infinite:before, .ion-ios-information:before, .ion-ios-information-circle:before, .ion-ios-information-circle-outline:before, .ion-ios-jet:before, .ion-ios-journal:before, .ion-ios-key:before, .ion-ios-keypad:before, .ion-ios-laptop:before, .ion-ios-leaf:before, .ion-ios-link:before, .ion-ios-list:before, .ion-ios-list-box:before, .ion-ios-locate:before, .ion-ios-lock:before, .ion-ios-log-in:before, .ion-ios-log-out:before, .ion-ios-magnet:before, .ion-ios-mail:before, .ion-ios-mail-open:before, .ion-ios-mail-unread:before, .ion-ios-male:before, .ion-ios-man:before, .ion-ios-map:before, .ion-ios-medal:before, .ion-ios-medical:before, .ion-ios-medkit:before, .ion-ios-megaphone:before, .ion-ios-menu:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-microphone:before, .ion-ios-moon:before, .ion-ios-more:before, .ion-ios-move:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-notifications:before, .ion-ios-notifications-off:before, .ion-ios-notifications-outline:before, .ion-ios-nuclear:before, .ion-ios-nutrition:before, .ion-ios-open:before, .ion-ios-options:before, .ion-ios-outlet:before, .ion-ios-paper:before, .ion-ios-paper-plane:before, .ion-ios-partly-sunny:before, .ion-ios-pause:before, .ion-ios-paw:before, .ion-ios-people:before, .ion-ios-person:before, .ion-ios-person-add:before, .ion-ios-phone-landscape:before, .ion-ios-phone-portrait:before, .ion-ios-photos:before, .ion-ios-pie:before, .ion-ios-pin:before, .ion-ios-pint:before, .ion-ios-pizza:before, .ion-ios-planet:before, .ion-ios-play:before, .ion-ios-play-circle:before, .ion-ios-podium:before, .ion-ios-power:before, .ion-ios-pricetag:before, .ion-ios-pricetags:before, .ion-ios-print:before, .ion-ios-pulse:before, .ion-ios-qr-scanner:before, .ion-ios-quote:before, .ion-ios-radio:before, .ion-ios-radio-button-off:before, .ion-ios-radio-button-on:before, .ion-ios-rainy:before, .ion-ios-recording:before, .ion-ios-redo:before, .ion-ios-refresh:before, .ion-ios-refresh-circle:before, .ion-ios-remove:before, .ion-ios-remove-circle:before, .ion-ios-remove-circle-outline:before, .ion-ios-reorder:before, .ion-ios-repeat:before, .ion-ios-resize:before, .ion-ios-restaurant:before, .ion-ios-return-left:before, .ion-ios-return-right:before, .ion-ios-reverse-camera:before, .ion-ios-rewind:before, .ion-ios-ribbon:before, .ion-ios-rocket:before, .ion-ios-rose:before, .ion-ios-sad:before, .ion-ios-save:before, .ion-ios-school:before, .ion-ios-search:before, .ion-ios-send:before, .ion-ios-settings:before, .ion-ios-share:before, .ion-ios-share-alt:before, .ion-ios-shirt:before, .ion-ios-shuffle:before, .ion-ios-skip-backward:before, .ion-ios-skip-forward:before, .ion-ios-snow:before, .ion-ios-speedometer:before, .ion-ios-square:before, .ion-ios-square-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stats:before, .ion-ios-stopwatch:before, .ion-ios-subway:before, .ion-ios-sunny:before, .ion-ios-swap:before, .ion-ios-switch:before, .ion-ios-sync:before, .ion-ios-tablet-landscape:before, .ion-ios-tablet-portrait:before, .ion-ios-tennisball:before, .ion-ios-text:before, .ion-ios-thermometer:before, .ion-ios-thumbs-down:before, .ion-ios-thumbs-up:before, .ion-ios-thunderstorm:before, .ion-ios-time:before, .ion-ios-timer:before, .ion-ios-today:before, .ion-ios-train:before, .ion-ios-transgender:before, .ion-ios-trash:before, .ion-ios-trending-down:before, .ion-ios-trending-up:before, .ion-ios-trophy:before, .ion-ios-tv:before, .ion-ios-umbrella:before, .ion-ios-undo:before, .ion-ios-unlock:before, .ion-ios-videocam:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-volume-mute:before, .ion-ios-volume-off:before, .ion-ios-walk:before, .ion-ios-wallet:before, .ion-ios-warning:before, .ion-ios-watch:before, .ion-ios-water:before, .ion-ios-wifi:before, .ion-ios-wine:before, .ion-ios-woman:before, .ion-logo-android:before, .ion-logo-angular:before, .ion-logo-apple:before, .ion-logo-bitbucket:before, .ion-logo-bitcoin:before, .ion-logo-buffer:before, .ion-logo-chrome:before, .ion-logo-closed-captioning:before, .ion-logo-codepen:before, .ion-logo-css3:before, .ion-logo-designernews:before, .ion-logo-dribbble:before, .ion-logo-dropbox:before, .ion-logo-euro:before, .ion-logo-facebook:before, .ion-logo-flickr:before, .ion-logo-foursquare:before, .ion-logo-freebsd-devil:before, .ion-logo-game-controller-a:before, .ion-logo-game-controller-b:before, .ion-logo-github:before, .ion-logo-google:before, .ion-logo-googleplus:before, .ion-logo-hackernews:before, .ion-logo-html5:before, .ion-logo-instagram:before, .ion-logo-ionic:before, .ion-logo-ionitron:before, .ion-logo-javascript:before, .ion-logo-linkedin:before, .ion-logo-markdown:before, .ion-logo-model-s:before, .ion-logo-no-smoking:before, .ion-logo-nodejs:before, .ion-logo-npm:before, .ion-logo-octocat:before, .ion-logo-pinterest:before, .ion-logo-playstation:before, .ion-logo-polymer:before, .ion-logo-python:before, .ion-logo-reddit:before, .ion-logo-rss:before, .ion-logo-sass:before, .ion-logo-skype:before, .ion-logo-slack:before, .ion-logo-snapchat:before, .ion-logo-steam:before, .ion-logo-tumblr:before, .ion-logo-tux:before, .ion-logo-twitch:before, .ion-logo-twitter:before, .ion-logo-usd:before, .ion-logo-vimeo:before, .ion-logo-vk:before, .ion-logo-whatsapp:before, .ion-logo-windows:before, .ion-logo-wordpress:before, .ion-logo-xbox:before, .ion-logo-xing:before, .ion-logo-yahoo:before, .ion-logo-yen:before, .ion-logo-youtube:before, .ion-md-add:before, .ion-md-add-circle:before, .ion-md-add-circle-outline:before, .ion-md-airplane:before, .ion-md-alarm:before, .ion-md-albums:before, .ion-md-alert:before, .ion-md-american-football:before, .ion-md-analytics:before, .ion-md-aperture:before, .ion-md-apps:before, .ion-md-appstore:before, .ion-md-archive:before, .ion-md-arrow-back:before, .ion-md-arrow-down:before, .ion-md-arrow-dropdown:before, .ion-md-arrow-dropdown-circle:before, .ion-md-arrow-dropleft:before, .ion-md-arrow-dropleft-circle:before, .ion-md-arrow-dropright:before, .ion-md-arrow-dropright-circle:before, .ion-md-arrow-dropup:before, .ion-md-arrow-dropup-circle:before, .ion-md-arrow-forward:before, .ion-md-arrow-round-back:before, .ion-md-arrow-round-down:before, .ion-md-arrow-round-forward:before, .ion-md-arrow-round-up:before, .ion-md-arrow-up:before, .ion-md-at:before, .ion-md-attach:before, .ion-md-backspace:before, .ion-md-barcode:before, .ion-md-baseball:before, .ion-md-basket:before, .ion-md-basketball:before, .ion-md-battery-charging:before, .ion-md-battery-dead:before, .ion-md-battery-full:before, .ion-md-beaker:before, .ion-md-bed:before, .ion-md-beer:before, .ion-md-bicycle:before, .ion-md-bluetooth:before, .ion-md-boat:before, .ion-md-body:before, .ion-md-bonfire:before, .ion-md-book:before, .ion-md-bookmark:before, .ion-md-bookmarks:before, .ion-md-bowtie:before, .ion-md-briefcase:before, .ion-md-browsers:before, .ion-md-brush:before, .ion-md-bug:before, .ion-md-build:before, .ion-md-bulb:before, .ion-md-bus:before, .ion-md-business:before, .ion-md-cafe:before, .ion-md-calculator:before, .ion-md-calendar:before, .ion-md-call:before, .ion-md-camera:before, .ion-md-car:before, .ion-md-card:before, .ion-md-cart:before, .ion-md-cash:before, .ion-md-cellular:before, .ion-md-chatboxes:before, .ion-md-chatbubbles:before, .ion-md-checkbox:before, .ion-md-checkbox-outline:before, .ion-md-checkmark:before, .ion-md-checkmark-circle:before, .ion-md-checkmark-circle-outline:before, .ion-md-clipboard:before, .ion-md-clock:before, .ion-md-close:before, .ion-md-close-circle:before, .ion-md-close-circle-outline:before, .ion-md-cloud:before, .ion-md-cloud-circle:before, .ion-md-cloud-done:before, .ion-md-cloud-download:before, .ion-md-cloud-outline:before, .ion-md-cloud-upload:before, .ion-md-cloudy:before, .ion-md-cloudy-night:before, .ion-md-code:before, .ion-md-code-download:before, .ion-md-code-working:before, .ion-md-cog:before, .ion-md-color-fill:before, .ion-md-color-filter:before, .ion-md-color-palette:before, .ion-md-color-wand:before, .ion-md-compass:before, .ion-md-construct:before, .ion-md-contact:before, .ion-md-contacts:before, .ion-md-contract:before, .ion-md-contrast:before, .ion-md-copy:before, .ion-md-create:before, .ion-md-crop:before, .ion-md-cube:before, .ion-md-cut:before, .ion-md-desktop:before, .ion-md-disc:before, .ion-md-document:before, .ion-md-done-all:before, .ion-md-download:before, .ion-md-easel:before, .ion-md-egg:before, .ion-md-exit:before, .ion-md-expand:before, .ion-md-eye:before, .ion-md-eye-off:before, .ion-md-fastforward:before, .ion-md-female:before, .ion-md-filing:before, .ion-md-film:before, .ion-md-finger-print:before, .ion-md-fitness:before, .ion-md-flag:before, .ion-md-flame:before, .ion-md-flash:before, .ion-md-flash-off:before, .ion-md-flashlight:before, .ion-md-flask:before, .ion-md-flower:before, .ion-md-folder:before, .ion-md-folder-open:before, .ion-md-football:before, .ion-md-funnel:before, .ion-md-gift:before, .ion-md-git-branch:before, .ion-md-git-commit:before, .ion-md-git-compare:before, .ion-md-git-merge:before, .ion-md-git-network:before, .ion-md-git-pull-request:before, .ion-md-glasses:before, .ion-md-globe:before, .ion-md-grid:before, .ion-md-hammer:before, .ion-md-hand:before, .ion-md-happy:before, .ion-md-headset:before, .ion-md-heart:before, .ion-md-heart-dislike:before, .ion-md-heart-empty:before, .ion-md-heart-half:before, .ion-md-help:before, .ion-md-help-buoy:before, .ion-md-help-circle:before, .ion-md-help-circle-outline:before, .ion-md-home:before, .ion-md-hourglass:before, .ion-md-ice-cream:before, .ion-md-image:before, .ion-md-images:before, .ion-md-infinite:before, .ion-md-information:before, .ion-md-information-circle:before, .ion-md-information-circle-outline:before, .ion-md-jet:before, .ion-md-journal:before, .ion-md-key:before, .ion-md-keypad:before, .ion-md-laptop:before, .ion-md-leaf:before, .ion-md-link:before, .ion-md-list:before, .ion-md-list-box:before, .ion-md-locate:before, .ion-md-lock:before, .ion-md-log-in:before, .ion-md-log-out:before, .ion-md-magnet:before, .ion-md-mail:before, .ion-md-mail-open:before, .ion-md-mail-unread:before, .ion-md-male:before, .ion-md-man:before, .ion-md-map:before, .ion-md-medal:before, .ion-md-medical:before, .ion-md-medkit:before, .ion-md-megaphone:before, .ion-md-menu:before, .ion-md-mic:before, .ion-md-mic-off:before, .ion-md-microphone:before, .ion-md-moon:before, .ion-md-more:before, .ion-md-move:before, .ion-md-musical-note:before, .ion-md-musical-notes:before, .ion-md-navigate:before, .ion-md-notifications:before, .ion-md-notifications-off:before, .ion-md-notifications-outline:before, .ion-md-nuclear:before, .ion-md-nutrition:before, .ion-md-open:before, .ion-md-options:before, .ion-md-outlet:before, .ion-md-paper:before, .ion-md-paper-plane:before, .ion-md-partly-sunny:before, .ion-md-pause:before, .ion-md-paw:before, .ion-md-people:before, .ion-md-person:before, .ion-md-person-add:before, .ion-md-phone-landscape:before, .ion-md-phone-portrait:before, .ion-md-photos:before, .ion-md-pie:before, .ion-md-pin:before, .ion-md-pint:before, .ion-md-pizza:before, .ion-md-planet:before, .ion-md-play:before, .ion-md-play-circle:before, .ion-md-podium:before, .ion-md-power:before, .ion-md-pricetag:before, .ion-md-pricetags:before, .ion-md-print:before, .ion-md-pulse:before, .ion-md-qr-scanner:before, .ion-md-quote:before, .ion-md-radio:before, .ion-md-radio-button-off:before, .ion-md-radio-button-on:before, .ion-md-rainy:before, .ion-md-recording:before, .ion-md-redo:before, .ion-md-refresh:before, .ion-md-refresh-circle:before, .ion-md-remove:before, .ion-md-remove-circle:before, .ion-md-remove-circle-outline:before, .ion-md-reorder:before, .ion-md-repeat:before, .ion-md-resize:before, .ion-md-restaurant:before, .ion-md-return-left:before, .ion-md-return-right:before, .ion-md-reverse-camera:before, .ion-md-rewind:before, .ion-md-ribbon:before, .ion-md-rocket:before, .ion-md-rose:before, .ion-md-sad:before, .ion-md-save:before, .ion-md-school:before, .ion-md-search:before, .ion-md-send:before, .ion-md-settings:before, .ion-md-share:before, .ion-md-share-alt:before, .ion-md-shirt:before, .ion-md-shuffle:before, .ion-md-skip-backward:before, .ion-md-skip-forward:before, .ion-md-snow:before, .ion-md-speedometer:before, .ion-md-square:before, .ion-md-square-outline:before, .ion-md-star:before, .ion-md-star-half:before, .ion-md-star-outline:before, .ion-md-stats:before, .ion-md-stopwatch:before, .ion-md-subway:before, .ion-md-sunny:before, .ion-md-swap:before, .ion-md-switch:before, .ion-md-sync:before, .ion-md-tablet-landscape:before, .ion-md-tablet-portrait:before, .ion-md-tennisball:before, .ion-md-text:before, .ion-md-thermometer:before, .ion-md-thumbs-down:before, .ion-md-thumbs-up:before, .ion-md-thunderstorm:before, .ion-md-time:before, .ion-md-timer:before, .ion-md-today:before, .ion-md-train:before, .ion-md-transgender:before, .ion-md-trash:before, .ion-md-trending-down:before, .ion-md-trending-up:before, .ion-md-trophy:before, .ion-md-tv:before, .ion-md-umbrella:before, .ion-md-undo:before, .ion-md-unlock:before, .ion-md-videocam:before, .ion-md-volume-high:before, .ion-md-volume-low:before, .ion-md-volume-mute:before, .ion-md-volume-off:before, .ion-md-walk:before, .ion-md-wallet:before, .ion-md-warning:before, .ion-md-watch:before, .ion-md-water:before, .ion-md-wifi:before, .ion-md-wine:before, .ion-md-woman:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ion-ios-add:before {
  content: "\f102";
}

.ion-ios-add-circle:before {
  content: "\f101";
}

.ion-ios-add-circle-outline:before {
  content: "\f100";
}

.ion-ios-airplane:before {
  content: "\f137";
}

.ion-ios-alarm:before {
  content: "\f3c8";
}

.ion-ios-albums:before {
  content: "\f3ca";
}

.ion-ios-alert:before {
  content: "\f104";
}

.ion-ios-american-football:before {
  content: "\f106";
}

.ion-ios-analytics:before {
  content: "\f3ce";
}

.ion-ios-aperture:before {
  content: "\f108";
}

.ion-ios-apps:before {
  content: "\f10a";
}

.ion-ios-appstore:before {
  content: "\f10c";
}

.ion-ios-archive:before {
  content: "\f10e";
}

.ion-ios-arrow-back:before {
  content: "\f3cf";
}

.ion-ios-arrow-down:before {
  content: "\f3d0";
}

.ion-ios-arrow-dropdown:before {
  content: "\f110";
}

.ion-ios-arrow-dropdown-circle:before {
  content: "\f125";
}

.ion-ios-arrow-dropleft:before {
  content: "\f112";
}

.ion-ios-arrow-dropleft-circle:before {
  content: "\f129";
}

.ion-ios-arrow-dropright:before {
  content: "\f114";
}

.ion-ios-arrow-dropright-circle:before {
  content: "\f12b";
}

.ion-ios-arrow-dropup:before {
  content: "\f116";
}

.ion-ios-arrow-dropup-circle:before {
  content: "\f12d";
}

.ion-ios-arrow-forward:before {
  content: "\f3d1";
}

.ion-ios-arrow-round-back:before {
  content: "\f117";
}

.ion-ios-arrow-round-down:before {
  content: "\f118";
}

.ion-ios-arrow-round-forward:before {
  content: "\f119";
}

.ion-ios-arrow-round-up:before {
  content: "\f11a";
}

.ion-ios-arrow-up:before {
  content: "\f3d8";
}

.ion-ios-at:before {
  content: "\f3da";
}

.ion-ios-attach:before {
  content: "\f11b";
}

.ion-ios-backspace:before {
  content: "\f11d";
}

.ion-ios-barcode:before {
  content: "\f3dc";
}

.ion-ios-baseball:before {
  content: "\f3de";
}

.ion-ios-basket:before {
  content: "\f11f";
}

.ion-ios-basketball:before {
  content: "\f3e0";
}

.ion-ios-battery-charging:before {
  content: "\f120";
}

.ion-ios-battery-dead:before {
  content: "\f121";
}

.ion-ios-battery-full:before {
  content: "\f122";
}

.ion-ios-beaker:before {
  content: "\f124";
}

.ion-ios-bed:before {
  content: "\f139";
}

.ion-ios-beer:before {
  content: "\f126";
}

.ion-ios-bicycle:before {
  content: "\f127";
}

.ion-ios-bluetooth:before {
  content: "\f128";
}

.ion-ios-boat:before {
  content: "\f12a";
}

.ion-ios-body:before {
  content: "\f3e4";
}

.ion-ios-bonfire:before {
  content: "\f12c";
}

.ion-ios-book:before {
  content: "\f3e8";
}

.ion-ios-bookmark:before {
  content: "\f12e";
}

.ion-ios-bookmarks:before {
  content: "\f3ea";
}

.ion-ios-bowtie:before {
  content: "\f130";
}

.ion-ios-briefcase:before {
  content: "\f3ee";
}

.ion-ios-browsers:before {
  content: "\f3f0";
}

.ion-ios-brush:before {
  content: "\f132";
}

.ion-ios-bug:before {
  content: "\f134";
}

.ion-ios-build:before {
  content: "\f136";
}

.ion-ios-bulb:before {
  content: "\f138";
}

.ion-ios-bus:before {
  content: "\f13a";
}

.ion-ios-business:before {
  content: "\f1a3";
}

.ion-ios-cafe:before {
  content: "\f13c";
}

.ion-ios-calculator:before {
  content: "\f3f2";
}

.ion-ios-calendar:before {
  content: "\f3f4";
}

.ion-ios-call:before {
  content: "\f13e";
}

.ion-ios-camera:before {
  content: "\f3f6";
}

.ion-ios-car:before {
  content: "\f140";
}

.ion-ios-card:before {
  content: "\f142";
}

.ion-ios-cart:before {
  content: "\f3f8";
}

.ion-ios-cash:before {
  content: "\f144";
}

.ion-ios-cellular:before {
  content: "\f13d";
}

.ion-ios-chatboxes:before {
  content: "\f3fa";
}

.ion-ios-chatbubbles:before {
  content: "\f146";
}

.ion-ios-checkbox:before {
  content: "\f148";
}

.ion-ios-checkbox-outline:before {
  content: "\f147";
}

.ion-ios-checkmark:before {
  content: "\f3ff";
}

.ion-ios-checkmark-circle:before {
  content: "\f14a";
}

.ion-ios-checkmark-circle-outline:before {
  content: "\f149";
}

.ion-ios-clipboard:before {
  content: "\f14c";
}

.ion-ios-clock:before {
  content: "\f403";
}

.ion-ios-close:before {
  content: "\f406";
}

.ion-ios-close-circle:before {
  content: "\f14e";
}

.ion-ios-close-circle-outline:before {
  content: "\f14d";
}

.ion-ios-cloud:before {
  content: "\f40c";
}

.ion-ios-cloud-circle:before {
  content: "\f152";
}

.ion-ios-cloud-done:before {
  content: "\f154";
}

.ion-ios-cloud-download:before {
  content: "\f408";
}

.ion-ios-cloud-outline:before {
  content: "\f409";
}

.ion-ios-cloud-upload:before {
  content: "\f40b";
}

.ion-ios-cloudy:before {
  content: "\f410";
}

.ion-ios-cloudy-night:before {
  content: "\f40e";
}

.ion-ios-code:before {
  content: "\f157";
}

.ion-ios-code-download:before {
  content: "\f155";
}

.ion-ios-code-working:before {
  content: "\f156";
}

.ion-ios-cog:before {
  content: "\f412";
}

.ion-ios-color-fill:before {
  content: "\f159";
}

.ion-ios-color-filter:before {
  content: "\f414";
}

.ion-ios-color-palette:before {
  content: "\f15b";
}

.ion-ios-color-wand:before {
  content: "\f416";
}

.ion-ios-compass:before {
  content: "\f15d";
}

.ion-ios-construct:before {
  content: "\f15f";
}

.ion-ios-contact:before {
  content: "\f41a";
}

.ion-ios-contacts:before {
  content: "\f161";
}

.ion-ios-contract:before {
  content: "\f162";
}

.ion-ios-contrast:before {
  content: "\f163";
}

.ion-ios-copy:before {
  content: "\f41c";
}

.ion-ios-create:before {
  content: "\f165";
}

.ion-ios-crop:before {
  content: "\f41e";
}

.ion-ios-cube:before {
  content: "\f168";
}

.ion-ios-cut:before {
  content: "\f16a";
}

.ion-ios-desktop:before {
  content: "\f16c";
}

.ion-ios-disc:before {
  content: "\f16e";
}

.ion-ios-document:before {
  content: "\f170";
}

.ion-ios-done-all:before {
  content: "\f171";
}

.ion-ios-download:before {
  content: "\f420";
}

.ion-ios-easel:before {
  content: "\f173";
}

.ion-ios-egg:before {
  content: "\f175";
}

.ion-ios-exit:before {
  content: "\f177";
}

.ion-ios-expand:before {
  content: "\f178";
}

.ion-ios-eye:before {
  content: "\f425";
}

.ion-ios-eye-off:before {
  content: "\f17a";
}

.ion-ios-fastforward:before {
  content: "\f427";
}

.ion-ios-female:before {
  content: "\f17b";
}

.ion-ios-filing:before {
  content: "\f429";
}

.ion-ios-film:before {
  content: "\f42b";
}

.ion-ios-finger-print:before {
  content: "\f17c";
}

.ion-ios-fitness:before {
  content: "\f1ab";
}

.ion-ios-flag:before {
  content: "\f42d";
}

.ion-ios-flame:before {
  content: "\f42f";
}

.ion-ios-flash:before {
  content: "\f17e";
}

.ion-ios-flash-off:before {
  content: "\f12f";
}

.ion-ios-flashlight:before {
  content: "\f141";
}

.ion-ios-flask:before {
  content: "\f431";
}

.ion-ios-flower:before {
  content: "\f433";
}

.ion-ios-folder:before {
  content: "\f435";
}

.ion-ios-folder-open:before {
  content: "\f180";
}

.ion-ios-football:before {
  content: "\f437";
}

.ion-ios-funnel:before {
  content: "\f182";
}

.ion-ios-gift:before {
  content: "\f191";
}

.ion-ios-git-branch:before {
  content: "\f183";
}

.ion-ios-git-commit:before {
  content: "\f184";
}

.ion-ios-git-compare:before {
  content: "\f185";
}

.ion-ios-git-merge:before {
  content: "\f186";
}

.ion-ios-git-network:before {
  content: "\f187";
}

.ion-ios-git-pull-request:before {
  content: "\f188";
}

.ion-ios-glasses:before {
  content: "\f43f";
}

.ion-ios-globe:before {
  content: "\f18a";
}

.ion-ios-grid:before {
  content: "\f18c";
}

.ion-ios-hammer:before {
  content: "\f18e";
}

.ion-ios-hand:before {
  content: "\f190";
}

.ion-ios-happy:before {
  content: "\f192";
}

.ion-ios-headset:before {
  content: "\f194";
}

.ion-ios-heart:before {
  content: "\f443";
}

.ion-ios-heart-dislike:before {
  content: "\f13f";
}

.ion-ios-heart-empty:before {
  content: "\f19b";
}

.ion-ios-heart-half:before {
  content: "\f19d";
}

.ion-ios-help:before {
  content: "\f446";
}

.ion-ios-help-buoy:before {
  content: "\f196";
}

.ion-ios-help-circle:before {
  content: "\f198";
}

.ion-ios-help-circle-outline:before {
  content: "\f197";
}

.ion-ios-home:before {
  content: "\f448";
}

.ion-ios-hourglass:before {
  content: "\f103";
}

.ion-ios-ice-cream:before {
  content: "\f19a";
}

.ion-ios-image:before {
  content: "\f19c";
}

.ion-ios-images:before {
  content: "\f19e";
}

.ion-ios-infinite:before {
  content: "\f44a";
}

.ion-ios-information:before {
  content: "\f44d";
}

.ion-ios-information-circle:before {
  content: "\f1a0";
}

.ion-ios-information-circle-outline:before {
  content: "\f19f";
}

.ion-ios-jet:before {
  content: "\f1a5";
}

.ion-ios-journal:before {
  content: "\f189";
}

.ion-ios-key:before {
  content: "\f1a7";
}

.ion-ios-keypad:before {
  content: "\f450";
}

.ion-ios-laptop:before {
  content: "\f1a8";
}

.ion-ios-leaf:before {
  content: "\f1aa";
}

.ion-ios-link:before {
  content: "\f22a";
}

.ion-ios-list:before {
  content: "\f454";
}

.ion-ios-list-box:before {
  content: "\f143";
}

.ion-ios-locate:before {
  content: "\f1ae";
}

.ion-ios-lock:before {
  content: "\f1b0";
}

.ion-ios-log-in:before {
  content: "\f1b1";
}

.ion-ios-log-out:before {
  content: "\f1b2";
}

.ion-ios-magnet:before {
  content: "\f1b4";
}

.ion-ios-mail:before {
  content: "\f1b8";
}

.ion-ios-mail-open:before {
  content: "\f1b6";
}

.ion-ios-mail-unread:before {
  content: "\f145";
}

.ion-ios-male:before {
  content: "\f1b9";
}

.ion-ios-man:before {
  content: "\f1bb";
}

.ion-ios-map:before {
  content: "\f1bd";
}

.ion-ios-medal:before {
  content: "\f1bf";
}

.ion-ios-medical:before {
  content: "\f45c";
}

.ion-ios-medkit:before {
  content: "\f45e";
}

.ion-ios-megaphone:before {
  content: "\f1c1";
}

.ion-ios-menu:before {
  content: "\f1c3";
}

.ion-ios-mic:before {
  content: "\f461";
}

.ion-ios-mic-off:before {
  content: "\f45f";
}

.ion-ios-microphone:before {
  content: "\f1c6";
}

.ion-ios-moon:before {
  content: "\f468";
}

.ion-ios-more:before {
  content: "\f1c8";
}

.ion-ios-move:before {
  content: "\f1cb";
}

.ion-ios-musical-note:before {
  content: "\f46b";
}

.ion-ios-musical-notes:before {
  content: "\f46c";
}

.ion-ios-navigate:before {
  content: "\f46e";
}

.ion-ios-notifications:before {
  content: "\f1d3";
}

.ion-ios-notifications-off:before {
  content: "\f1d1";
}

.ion-ios-notifications-outline:before {
  content: "\f133";
}

.ion-ios-nuclear:before {
  content: "\f1d5";
}

.ion-ios-nutrition:before {
  content: "\f470";
}

.ion-ios-open:before {
  content: "\f1d7";
}

.ion-ios-options:before {
  content: "\f1d9";
}

.ion-ios-outlet:before {
  content: "\f1db";
}

.ion-ios-paper:before {
  content: "\f472";
}

.ion-ios-paper-plane:before {
  content: "\f1dd";
}

.ion-ios-partly-sunny:before {
  content: "\f1df";
}

.ion-ios-pause:before {
  content: "\f478";
}

.ion-ios-paw:before {
  content: "\f47a";
}

.ion-ios-people:before {
  content: "\f47c";
}

.ion-ios-person:before {
  content: "\f47e";
}

.ion-ios-person-add:before {
  content: "\f1e1";
}

.ion-ios-phone-landscape:before {
  content: "\f1e2";
}

.ion-ios-phone-portrait:before {
  content: "\f1e3";
}

.ion-ios-photos:before {
  content: "\f482";
}

.ion-ios-pie:before {
  content: "\f484";
}

.ion-ios-pin:before {
  content: "\f1e5";
}

.ion-ios-pint:before {
  content: "\f486";
}

.ion-ios-pizza:before {
  content: "\f1e7";
}

.ion-ios-planet:before {
  content: "\f1eb";
}

.ion-ios-play:before {
  content: "\f488";
}

.ion-ios-play-circle:before {
  content: "\f113";
}

.ion-ios-podium:before {
  content: "\f1ed";
}

.ion-ios-power:before {
  content: "\f1ef";
}

.ion-ios-pricetag:before {
  content: "\f48d";
}

.ion-ios-pricetags:before {
  content: "\f48f";
}

.ion-ios-print:before {
  content: "\f1f1";
}

.ion-ios-pulse:before {
  content: "\f493";
}

.ion-ios-qr-scanner:before {
  content: "\f1f3";
}

.ion-ios-quote:before {
  content: "\f1f5";
}

.ion-ios-radio:before {
  content: "\f1f9";
}

.ion-ios-radio-button-off:before {
  content: "\f1f6";
}

.ion-ios-radio-button-on:before {
  content: "\f1f7";
}

.ion-ios-rainy:before {
  content: "\f495";
}

.ion-ios-recording:before {
  content: "\f497";
}

.ion-ios-redo:before {
  content: "\f499";
}

.ion-ios-refresh:before {
  content: "\f49c";
}

.ion-ios-refresh-circle:before {
  content: "\f135";
}

.ion-ios-remove:before {
  content: "\f1fc";
}

.ion-ios-remove-circle:before {
  content: "\f1fb";
}

.ion-ios-remove-circle-outline:before {
  content: "\f1fa";
}

.ion-ios-reorder:before {
  content: "\f1fd";
}

.ion-ios-repeat:before {
  content: "\f1fe";
}

.ion-ios-resize:before {
  content: "\f1ff";
}

.ion-ios-restaurant:before {
  content: "\f201";
}

.ion-ios-return-left:before {
  content: "\f202";
}

.ion-ios-return-right:before {
  content: "\f203";
}

.ion-ios-reverse-camera:before {
  content: "\f49f";
}

.ion-ios-rewind:before {
  content: "\f4a1";
}

.ion-ios-ribbon:before {
  content: "\f205";
}

.ion-ios-rocket:before {
  content: "\f14b";
}

.ion-ios-rose:before {
  content: "\f4a3";
}

.ion-ios-sad:before {
  content: "\f207";
}

.ion-ios-save:before {
  content: "\f1a6";
}

.ion-ios-school:before {
  content: "\f209";
}

.ion-ios-search:before {
  content: "\f4a5";
}

.ion-ios-send:before {
  content: "\f20c";
}

.ion-ios-settings:before {
  content: "\f4a7";
}

.ion-ios-share:before {
  content: "\f211";
}

.ion-ios-share-alt:before {
  content: "\f20f";
}

.ion-ios-shirt:before {
  content: "\f213";
}

.ion-ios-shuffle:before {
  content: "\f4a9";
}

.ion-ios-skip-backward:before {
  content: "\f215";
}

.ion-ios-skip-forward:before {
  content: "\f217";
}

.ion-ios-snow:before {
  content: "\f218";
}

.ion-ios-speedometer:before {
  content: "\f4b0";
}

.ion-ios-square:before {
  content: "\f21a";
}

.ion-ios-square-outline:before {
  content: "\f15c";
}

.ion-ios-star:before {
  content: "\f4b3";
}

.ion-ios-star-half:before {
  content: "\f4b1";
}

.ion-ios-star-outline:before {
  content: "\f4b2";
}

.ion-ios-stats:before {
  content: "\f21c";
}

.ion-ios-stopwatch:before {
  content: "\f4b5";
}

.ion-ios-subway:before {
  content: "\f21e";
}

.ion-ios-sunny:before {
  content: "\f4b7";
}

.ion-ios-swap:before {
  content: "\f21f";
}

.ion-ios-switch:before {
  content: "\f221";
}

.ion-ios-sync:before {
  content: "\f222";
}

.ion-ios-tablet-landscape:before {
  content: "\f223";
}

.ion-ios-tablet-portrait:before {
  content: "\f24e";
}

.ion-ios-tennisball:before {
  content: "\f4bb";
}

.ion-ios-text:before {
  content: "\f250";
}

.ion-ios-thermometer:before {
  content: "\f252";
}

.ion-ios-thumbs-down:before {
  content: "\f254";
}

.ion-ios-thumbs-up:before {
  content: "\f256";
}

.ion-ios-thunderstorm:before {
  content: "\f4bd";
}

.ion-ios-time:before {
  content: "\f4bf";
}

.ion-ios-timer:before {
  content: "\f4c1";
}

.ion-ios-today:before {
  content: "\f14f";
}

.ion-ios-train:before {
  content: "\f258";
}

.ion-ios-transgender:before {
  content: "\f259";
}

.ion-ios-trash:before {
  content: "\f4c5";
}

.ion-ios-trending-down:before {
  content: "\f25a";
}

.ion-ios-trending-up:before {
  content: "\f25b";
}

.ion-ios-trophy:before {
  content: "\f25d";
}

.ion-ios-tv:before {
  content: "\f115";
}

.ion-ios-umbrella:before {
  content: "\f25f";
}

.ion-ios-undo:before {
  content: "\f4c7";
}

.ion-ios-unlock:before {
  content: "\f261";
}

.ion-ios-videocam:before {
  content: "\f4cd";
}

.ion-ios-volume-high:before {
  content: "\f11c";
}

.ion-ios-volume-low:before {
  content: "\f11e";
}

.ion-ios-volume-mute:before {
  content: "\f263";
}

.ion-ios-volume-off:before {
  content: "\f264";
}

.ion-ios-walk:before {
  content: "\f266";
}

.ion-ios-wallet:before {
  content: "\f18b";
}

.ion-ios-warning:before {
  content: "\f268";
}

.ion-ios-watch:before {
  content: "\f269";
}

.ion-ios-water:before {
  content: "\f26b";
}

.ion-ios-wifi:before {
  content: "\f26d";
}

.ion-ios-wine:before {
  content: "\f26f";
}

.ion-ios-woman:before {
  content: "\f271";
}

.ion-logo-android:before {
  content: "\f225";
}

.ion-logo-angular:before {
  content: "\f227";
}

.ion-logo-apple:before {
  content: "\f229";
}

.ion-logo-bitbucket:before {
  content: "\f193";
}

.ion-logo-bitcoin:before {
  content: "\f22b";
}

.ion-logo-buffer:before {
  content: "\f22d";
}

.ion-logo-chrome:before {
  content: "\f22f";
}

.ion-logo-closed-captioning:before {
  content: "\f105";
}

.ion-logo-codepen:before {
  content: "\f230";
}

.ion-logo-css3:before {
  content: "\f231";
}

.ion-logo-designernews:before {
  content: "\f232";
}

.ion-logo-dribbble:before {
  content: "\f233";
}

.ion-logo-dropbox:before {
  content: "\f234";
}

.ion-logo-euro:before {
  content: "\f235";
}

.ion-logo-facebook:before {
  content: "\f236";
}

.ion-logo-flickr:before {
  content: "\f107";
}

.ion-logo-foursquare:before {
  content: "\f237";
}

.ion-logo-freebsd-devil:before {
  content: "\f238";
}

.ion-logo-game-controller-a:before {
  content: "\f13b";
}

.ion-logo-game-controller-b:before {
  content: "\f181";
}

.ion-logo-github:before {
  content: "\f239";
}

.ion-logo-google:before {
  content: "\f23a";
}

.ion-logo-googleplus:before {
  content: "\f23b";
}

.ion-logo-hackernews:before {
  content: "\f23c";
}

.ion-logo-html5:before {
  content: "\f23d";
}

.ion-logo-instagram:before {
  content: "\f23e";
}

.ion-logo-ionic:before {
  content: "\f150";
}

.ion-logo-ionitron:before {
  content: "\f151";
}

.ion-logo-javascript:before {
  content: "\f23f";
}

.ion-logo-linkedin:before {
  content: "\f240";
}

.ion-logo-markdown:before {
  content: "\f241";
}

.ion-logo-model-s:before {
  content: "\f153";
}

.ion-logo-no-smoking:before {
  content: "\f109";
}

.ion-logo-nodejs:before {
  content: "\f242";
}

.ion-logo-npm:before {
  content: "\f195";
}

.ion-logo-octocat:before {
  content: "\f243";
}

.ion-logo-pinterest:before {
  content: "\f244";
}

.ion-logo-playstation:before {
  content: "\f245";
}

.ion-logo-polymer:before {
  content: "\f15e";
}

.ion-logo-python:before {
  content: "\f246";
}

.ion-logo-reddit:before {
  content: "\f247";
}

.ion-logo-rss:before {
  content: "\f248";
}

.ion-logo-sass:before {
  content: "\f249";
}

.ion-logo-skype:before {
  content: "\f24a";
}

.ion-logo-slack:before {
  content: "\f10b";
}

.ion-logo-snapchat:before {
  content: "\f24b";
}

.ion-logo-steam:before {
  content: "\f24c";
}

.ion-logo-tumblr:before {
  content: "\f24d";
}

.ion-logo-tux:before {
  content: "\f2ae";
}

.ion-logo-twitch:before {
  content: "\f2af";
}

.ion-logo-twitter:before {
  content: "\f2b0";
}

.ion-logo-usd:before {
  content: "\f2b1";
}

.ion-logo-vimeo:before {
  content: "\f2c4";
}

.ion-logo-vk:before {
  content: "\f10d";
}

.ion-logo-whatsapp:before {
  content: "\f2c5";
}

.ion-logo-windows:before {
  content: "\f32f";
}

.ion-logo-wordpress:before {
  content: "\f330";
}

.ion-logo-xbox:before {
  content: "\f34c";
}

.ion-logo-xing:before {
  content: "\f10f";
}

.ion-logo-yahoo:before {
  content: "\f34d";
}

.ion-logo-yen:before {
  content: "\f34e";
}

.ion-logo-youtube:before {
  content: "\f34f";
}

.ion-md-add:before {
  content: "\f273";
}

.ion-md-add-circle:before {
  content: "\f272";
}

.ion-md-add-circle-outline:before {
  content: "\f158";
}

.ion-md-airplane:before {
  content: "\f15a";
}

.ion-md-alarm:before {
  content: "\f274";
}

.ion-md-albums:before {
  content: "\f275";
}

.ion-md-alert:before {
  content: "\f276";
}

.ion-md-american-football:before {
  content: "\f277";
}

.ion-md-analytics:before {
  content: "\f278";
}

.ion-md-aperture:before {
  content: "\f279";
}

.ion-md-apps:before {
  content: "\f27a";
}

.ion-md-appstore:before {
  content: "\f27b";
}

.ion-md-archive:before {
  content: "\f27c";
}

.ion-md-arrow-back:before {
  content: "\f27d";
}

.ion-md-arrow-down:before {
  content: "\f27e";
}

.ion-md-arrow-dropdown:before {
  content: "\f280";
}

.ion-md-arrow-dropdown-circle:before {
  content: "\f27f";
}

.ion-md-arrow-dropleft:before {
  content: "\f282";
}

.ion-md-arrow-dropleft-circle:before {
  content: "\f281";
}

.ion-md-arrow-dropright:before {
  content: "\f284";
}

.ion-md-arrow-dropright-circle:before {
  content: "\f283";
}

.ion-md-arrow-dropup:before {
  content: "\f286";
}

.ion-md-arrow-dropup-circle:before {
  content: "\f285";
}

.ion-md-arrow-forward:before {
  content: "\f287";
}

.ion-md-arrow-round-back:before {
  content: "\f288";
}

.ion-md-arrow-round-down:before {
  content: "\f289";
}

.ion-md-arrow-round-forward:before {
  content: "\f28a";
}

.ion-md-arrow-round-up:before {
  content: "\f28b";
}

.ion-md-arrow-up:before {
  content: "\f28c";
}

.ion-md-at:before {
  content: "\f28d";
}

.ion-md-attach:before {
  content: "\f28e";
}

.ion-md-backspace:before {
  content: "\f28f";
}

.ion-md-barcode:before {
  content: "\f290";
}

.ion-md-baseball:before {
  content: "\f291";
}

.ion-md-basket:before {
  content: "\f292";
}

.ion-md-basketball:before {
  content: "\f293";
}

.ion-md-battery-charging:before {
  content: "\f294";
}

.ion-md-battery-dead:before {
  content: "\f295";
}

.ion-md-battery-full:before {
  content: "\f296";
}

.ion-md-beaker:before {
  content: "\f297";
}

.ion-md-bed:before {
  content: "\f160";
}

.ion-md-beer:before {
  content: "\f298";
}

.ion-md-bicycle:before {
  content: "\f299";
}

.ion-md-bluetooth:before {
  content: "\f29a";
}

.ion-md-boat:before {
  content: "\f29b";
}

.ion-md-body:before {
  content: "\f29c";
}

.ion-md-bonfire:before {
  content: "\f29d";
}

.ion-md-book:before {
  content: "\f29e";
}

.ion-md-bookmark:before {
  content: "\f29f";
}

.ion-md-bookmarks:before {
  content: "\f2a0";
}

.ion-md-bowtie:before {
  content: "\f2a1";
}

.ion-md-briefcase:before {
  content: "\f2a2";
}

.ion-md-browsers:before {
  content: "\f2a3";
}

.ion-md-brush:before {
  content: "\f2a4";
}

.ion-md-bug:before {
  content: "\f2a5";
}

.ion-md-build:before {
  content: "\f2a6";
}

.ion-md-bulb:before {
  content: "\f2a7";
}

.ion-md-bus:before {
  content: "\f2a8";
}

.ion-md-business:before {
  content: "\f1a4";
}

.ion-md-cafe:before {
  content: "\f2a9";
}

.ion-md-calculator:before {
  content: "\f2aa";
}

.ion-md-calendar:before {
  content: "\f2ab";
}

.ion-md-call:before {
  content: "\f2ac";
}

.ion-md-camera:before {
  content: "\f2ad";
}

.ion-md-car:before {
  content: "\f2b2";
}

.ion-md-card:before {
  content: "\f2b3";
}

.ion-md-cart:before {
  content: "\f2b4";
}

.ion-md-cash:before {
  content: "\f2b5";
}

.ion-md-cellular:before {
  content: "\f164";
}

.ion-md-chatboxes:before {
  content: "\f2b6";
}

.ion-md-chatbubbles:before {
  content: "\f2b7";
}

.ion-md-checkbox:before {
  content: "\f2b9";
}

.ion-md-checkbox-outline:before {
  content: "\f2b8";
}

.ion-md-checkmark:before {
  content: "\f2bc";
}

.ion-md-checkmark-circle:before {
  content: "\f2bb";
}

.ion-md-checkmark-circle-outline:before {
  content: "\f2ba";
}

.ion-md-clipboard:before {
  content: "\f2bd";
}

.ion-md-clock:before {
  content: "\f2be";
}

.ion-md-close:before {
  content: "\f2c0";
}

.ion-md-close-circle:before {
  content: "\f2bf";
}

.ion-md-close-circle-outline:before {
  content: "\f166";
}

.ion-md-cloud:before {
  content: "\f2c9";
}

.ion-md-cloud-circle:before {
  content: "\f2c2";
}

.ion-md-cloud-done:before {
  content: "\f2c3";
}

.ion-md-cloud-download:before {
  content: "\f2c6";
}

.ion-md-cloud-outline:before {
  content: "\f2c7";
}

.ion-md-cloud-upload:before {
  content: "\f2c8";
}

.ion-md-cloudy:before {
  content: "\f2cb";
}

.ion-md-cloudy-night:before {
  content: "\f2ca";
}

.ion-md-code:before {
  content: "\f2ce";
}

.ion-md-code-download:before {
  content: "\f2cc";
}

.ion-md-code-working:before {
  content: "\f2cd";
}

.ion-md-cog:before {
  content: "\f2cf";
}

.ion-md-color-fill:before {
  content: "\f2d0";
}

.ion-md-color-filter:before {
  content: "\f2d1";
}

.ion-md-color-palette:before {
  content: "\f2d2";
}

.ion-md-color-wand:before {
  content: "\f2d3";
}

.ion-md-compass:before {
  content: "\f2d4";
}

.ion-md-construct:before {
  content: "\f2d5";
}

.ion-md-contact:before {
  content: "\f2d6";
}

.ion-md-contacts:before {
  content: "\f2d7";
}

.ion-md-contract:before {
  content: "\f2d8";
}

.ion-md-contrast:before {
  content: "\f2d9";
}

.ion-md-copy:before {
  content: "\f2da";
}

.ion-md-create:before {
  content: "\f2db";
}

.ion-md-crop:before {
  content: "\f2dc";
}

.ion-md-cube:before {
  content: "\f2dd";
}

.ion-md-cut:before {
  content: "\f2de";
}

.ion-md-desktop:before {
  content: "\f2df";
}

.ion-md-disc:before {
  content: "\f2e0";
}

.ion-md-document:before {
  content: "\f2e1";
}

.ion-md-done-all:before {
  content: "\f2e2";
}

.ion-md-download:before {
  content: "\f2e3";
}

.ion-md-easel:before {
  content: "\f2e4";
}

.ion-md-egg:before {
  content: "\f2e5";
}

.ion-md-exit:before {
  content: "\f2e6";
}

.ion-md-expand:before {
  content: "\f2e7";
}

.ion-md-eye:before {
  content: "\f2e9";
}

.ion-md-eye-off:before {
  content: "\f2e8";
}

.ion-md-fastforward:before {
  content: "\f2ea";
}

.ion-md-female:before {
  content: "\f2eb";
}

.ion-md-filing:before {
  content: "\f2ec";
}

.ion-md-film:before {
  content: "\f2ed";
}

.ion-md-finger-print:before {
  content: "\f2ee";
}

.ion-md-fitness:before {
  content: "\f1ac";
}

.ion-md-flag:before {
  content: "\f2ef";
}

.ion-md-flame:before {
  content: "\f2f0";
}

.ion-md-flash:before {
  content: "\f2f1";
}

.ion-md-flash-off:before {
  content: "\f169";
}

.ion-md-flashlight:before {
  content: "\f16b";
}

.ion-md-flask:before {
  content: "\f2f2";
}

.ion-md-flower:before {
  content: "\f2f3";
}

.ion-md-folder:before {
  content: "\f2f5";
}

.ion-md-folder-open:before {
  content: "\f2f4";
}

.ion-md-football:before {
  content: "\f2f6";
}

.ion-md-funnel:before {
  content: "\f2f7";
}

.ion-md-gift:before {
  content: "\f199";
}

.ion-md-git-branch:before {
  content: "\f2fa";
}

.ion-md-git-commit:before {
  content: "\f2fb";
}

.ion-md-git-compare:before {
  content: "\f2fc";
}

.ion-md-git-merge:before {
  content: "\f2fd";
}

.ion-md-git-network:before {
  content: "\f2fe";
}

.ion-md-git-pull-request:before {
  content: "\f2ff";
}

.ion-md-glasses:before {
  content: "\f300";
}

.ion-md-globe:before {
  content: "\f301";
}

.ion-md-grid:before {
  content: "\f302";
}

.ion-md-hammer:before {
  content: "\f303";
}

.ion-md-hand:before {
  content: "\f304";
}

.ion-md-happy:before {
  content: "\f305";
}

.ion-md-headset:before {
  content: "\f306";
}

.ion-md-heart:before {
  content: "\f308";
}

.ion-md-heart-dislike:before {
  content: "\f167";
}

.ion-md-heart-empty:before {
  content: "\f1a1";
}

.ion-md-heart-half:before {
  content: "\f1a2";
}

.ion-md-help:before {
  content: "\f30b";
}

.ion-md-help-buoy:before {
  content: "\f309";
}

.ion-md-help-circle:before {
  content: "\f30a";
}

.ion-md-help-circle-outline:before {
  content: "\f16d";
}

.ion-md-home:before {
  content: "\f30c";
}

.ion-md-hourglass:before {
  content: "\f111";
}

.ion-md-ice-cream:before {
  content: "\f30d";
}

.ion-md-image:before {
  content: "\f30e";
}

.ion-md-images:before {
  content: "\f30f";
}

.ion-md-infinite:before {
  content: "\f310";
}

.ion-md-information:before {
  content: "\f312";
}

.ion-md-information-circle:before {
  content: "\f311";
}

.ion-md-information-circle-outline:before {
  content: "\f16f";
}

.ion-md-jet:before {
  content: "\f315";
}

.ion-md-journal:before {
  content: "\f18d";
}

.ion-md-key:before {
  content: "\f316";
}

.ion-md-keypad:before {
  content: "\f317";
}

.ion-md-laptop:before {
  content: "\f318";
}

.ion-md-leaf:before {
  content: "\f319";
}

.ion-md-link:before {
  content: "\f22e";
}

.ion-md-list:before {
  content: "\f31b";
}

.ion-md-list-box:before {
  content: "\f31a";
}

.ion-md-locate:before {
  content: "\f31c";
}

.ion-md-lock:before {
  content: "\f31d";
}

.ion-md-log-in:before {
  content: "\f31e";
}

.ion-md-log-out:before {
  content: "\f31f";
}

.ion-md-magnet:before {
  content: "\f320";
}

.ion-md-mail:before {
  content: "\f322";
}

.ion-md-mail-open:before {
  content: "\f321";
}

.ion-md-mail-unread:before {
  content: "\f172";
}

.ion-md-male:before {
  content: "\f323";
}

.ion-md-man:before {
  content: "\f324";
}

.ion-md-map:before {
  content: "\f325";
}

.ion-md-medal:before {
  content: "\f326";
}

.ion-md-medical:before {
  content: "\f327";
}

.ion-md-medkit:before {
  content: "\f328";
}

.ion-md-megaphone:before {
  content: "\f329";
}

.ion-md-menu:before {
  content: "\f32a";
}

.ion-md-mic:before {
  content: "\f32c";
}

.ion-md-mic-off:before {
  content: "\f32b";
}

.ion-md-microphone:before {
  content: "\f32d";
}

.ion-md-moon:before {
  content: "\f32e";
}

.ion-md-more:before {
  content: "\f1c9";
}

.ion-md-move:before {
  content: "\f331";
}

.ion-md-musical-note:before {
  content: "\f332";
}

.ion-md-musical-notes:before {
  content: "\f333";
}

.ion-md-navigate:before {
  content: "\f334";
}

.ion-md-notifications:before {
  content: "\f338";
}

.ion-md-notifications-off:before {
  content: "\f336";
}

.ion-md-notifications-outline:before {
  content: "\f337";
}

.ion-md-nuclear:before {
  content: "\f339";
}

.ion-md-nutrition:before {
  content: "\f33a";
}

.ion-md-open:before {
  content: "\f33b";
}

.ion-md-options:before {
  content: "\f33c";
}

.ion-md-outlet:before {
  content: "\f33d";
}

.ion-md-paper:before {
  content: "\f33f";
}

.ion-md-paper-plane:before {
  content: "\f33e";
}

.ion-md-partly-sunny:before {
  content: "\f340";
}

.ion-md-pause:before {
  content: "\f341";
}

.ion-md-paw:before {
  content: "\f342";
}

.ion-md-people:before {
  content: "\f343";
}

.ion-md-person:before {
  content: "\f345";
}

.ion-md-person-add:before {
  content: "\f344";
}

.ion-md-phone-landscape:before {
  content: "\f346";
}

.ion-md-phone-portrait:before {
  content: "\f347";
}

.ion-md-photos:before {
  content: "\f348";
}

.ion-md-pie:before {
  content: "\f349";
}

.ion-md-pin:before {
  content: "\f34a";
}

.ion-md-pint:before {
  content: "\f34b";
}

.ion-md-pizza:before {
  content: "\f354";
}

.ion-md-planet:before {
  content: "\f356";
}

.ion-md-play:before {
  content: "\f357";
}

.ion-md-play-circle:before {
  content: "\f174";
}

.ion-md-podium:before {
  content: "\f358";
}

.ion-md-power:before {
  content: "\f359";
}

.ion-md-pricetag:before {
  content: "\f35a";
}

.ion-md-pricetags:before {
  content: "\f35b";
}

.ion-md-print:before {
  content: "\f35c";
}

.ion-md-pulse:before {
  content: "\f35d";
}

.ion-md-qr-scanner:before {
  content: "\f35e";
}

.ion-md-quote:before {
  content: "\f35f";
}

.ion-md-radio:before {
  content: "\f362";
}

.ion-md-radio-button-off:before {
  content: "\f360";
}

.ion-md-radio-button-on:before {
  content: "\f361";
}

.ion-md-rainy:before {
  content: "\f363";
}

.ion-md-recording:before {
  content: "\f364";
}

.ion-md-redo:before {
  content: "\f365";
}

.ion-md-refresh:before {
  content: "\f366";
}

.ion-md-refresh-circle:before {
  content: "\f228";
}

.ion-md-remove:before {
  content: "\f368";
}

.ion-md-remove-circle:before {
  content: "\f367";
}

.ion-md-remove-circle-outline:before {
  content: "\f176";
}

.ion-md-reorder:before {
  content: "\f369";
}

.ion-md-repeat:before {
  content: "\f36a";
}

.ion-md-resize:before {
  content: "\f36b";
}

.ion-md-restaurant:before {
  content: "\f36c";
}

.ion-md-return-left:before {
  content: "\f36d";
}

.ion-md-return-right:before {
  content: "\f36e";
}

.ion-md-reverse-camera:before {
  content: "\f36f";
}

.ion-md-rewind:before {
  content: "\f370";
}

.ion-md-ribbon:before {
  content: "\f371";
}

.ion-md-rocket:before {
  content: "\f179";
}

.ion-md-rose:before {
  content: "\f372";
}

.ion-md-sad:before {
  content: "\f373";
}

.ion-md-save:before {
  content: "\f1a9";
}

.ion-md-school:before {
  content: "\f374";
}

.ion-md-search:before {
  content: "\f375";
}

.ion-md-send:before {
  content: "\f376";
}

.ion-md-settings:before {
  content: "\f377";
}

.ion-md-share:before {
  content: "\f379";
}

.ion-md-share-alt:before {
  content: "\f378";
}

.ion-md-shirt:before {
  content: "\f37a";
}

.ion-md-shuffle:before {
  content: "\f37b";
}

.ion-md-skip-backward:before {
  content: "\f37c";
}

.ion-md-skip-forward:before {
  content: "\f37d";
}

.ion-md-snow:before {
  content: "\f37e";
}

.ion-md-speedometer:before {
  content: "\f37f";
}

.ion-md-square:before {
  content: "\f381";
}

.ion-md-square-outline:before {
  content: "\f380";
}

.ion-md-star:before {
  content: "\f384";
}

.ion-md-star-half:before {
  content: "\f382";
}

.ion-md-star-outline:before {
  content: "\f383";
}

.ion-md-stats:before {
  content: "\f385";
}

.ion-md-stopwatch:before {
  content: "\f386";
}

.ion-md-subway:before {
  content: "\f387";
}

.ion-md-sunny:before {
  content: "\f388";
}

.ion-md-swap:before {
  content: "\f389";
}

.ion-md-switch:before {
  content: "\f38a";
}

.ion-md-sync:before {
  content: "\f38b";
}

.ion-md-tablet-landscape:before {
  content: "\f38c";
}

.ion-md-tablet-portrait:before {
  content: "\f38d";
}

.ion-md-tennisball:before {
  content: "\f38e";
}

.ion-md-text:before {
  content: "\f38f";
}

.ion-md-thermometer:before {
  content: "\f390";
}

.ion-md-thumbs-down:before {
  content: "\f391";
}

.ion-md-thumbs-up:before {
  content: "\f392";
}

.ion-md-thunderstorm:before {
  content: "\f393";
}

.ion-md-time:before {
  content: "\f394";
}

.ion-md-timer:before {
  content: "\f395";
}

.ion-md-today:before {
  content: "\f17d";
}

.ion-md-train:before {
  content: "\f396";
}

.ion-md-transgender:before {
  content: "\f397";
}

.ion-md-trash:before {
  content: "\f398";
}

.ion-md-trending-down:before {
  content: "\f399";
}

.ion-md-trending-up:before {
  content: "\f39a";
}

.ion-md-trophy:before {
  content: "\f39b";
}

.ion-md-tv:before {
  content: "\f17f";
}

.ion-md-umbrella:before {
  content: "\f39c";
}

.ion-md-undo:before {
  content: "\f39d";
}

.ion-md-unlock:before {
  content: "\f39e";
}

.ion-md-videocam:before {
  content: "\f39f";
}

.ion-md-volume-high:before {
  content: "\f123";
}

.ion-md-volume-low:before {
  content: "\f131";
}

.ion-md-volume-mute:before {
  content: "\f3a1";
}

.ion-md-volume-off:before {
  content: "\f3a2";
}

.ion-md-walk:before {
  content: "\f3a4";
}

.ion-md-wallet:before {
  content: "\f18f";
}

.ion-md-warning:before {
  content: "\f3a5";
}

.ion-md-watch:before {
  content: "\f3a6";
}

.ion-md-water:before {
  content: "\f3a7";
}

.ion-md-wifi:before {
  content: "\f3a8";
}

.ion-md-wine:before {
  content: "\f3a9";
}

.ion-md-woman:before {
  content: "\f3aa";
}

/* icons.scss */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
.abi-language dl dt button, .box-hero .btn-video-play button, .abi-widget-side h2 a,
.abi-widget-side h2 button {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.post-list, .abi-breadcrumbs dd ol, .wp-block-table {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.post-list::-webkit-scrollbar, .abi-breadcrumbs dd ol::-webkit-scrollbar, .wp-block-table::-webkit-scrollbar {
  display: none;
}

.abi-breadcrumbs dt, .abi-tel:not(.is-style-abi-sp-icon) a .label, .wp-block-image.is-style-icon-circle-1 figcaption, .visually-hidden,
.is-style-visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.notice, .box-hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

:root {
  --symbol-1-default: url("../images/ico_symbol.png");
  --symbol-1-userselect: unset;
  --symbol-2-default: url("../images/ico_stamp.svg");
  --symbol-2-userselect: unset;
  --symbol-3-default: url("../images/ico_dog.svg");
  --symbol-3-userselect: unset;
  --symbol-4-default: url("../images/ico_cat.svg");
  --symbol-4-userselect: unset;
  --symbol-5-default: url("../images/ico_bird.svg");
  --symbol-5-userselect: unset;
  --symbol-6-default: url("../images/ico_rabbit.svg");
  --symbol-6-userselect: unset;
  --symbol-7-default: url("../images/ico_turtle.svg");
  --symbol-7-userselect: unset;
  --symbol-8-default: url("../images/ico_frog.svg");
  --symbol-8-userselect: unset;
}

.ico-animal-dog,
.ico-animal-cat,
.ico-animal-bird,
.ico-animal-rabbit,
.ico-animal-turtle,
.ico-animal-frog {
  display: block;
}
.ico-animal-dog::before,
.ico-animal-cat::before,
.ico-animal-bird::before,
.ico-animal-rabbit::before,
.ico-animal-turtle::before,
.ico-animal-frog::before {
  display: block;
  width: 100%;
  height: 100%;
  background: center/contain no-repeat;
  content: "";
}

.ico-animal-dog::before {
  -webkit-mask: var(--symbol-3-userselect, var(--symbol-3-default));
  mask: var(--symbol-3-userselect, var(--symbol-3-default));
}

.ico-animal-cat::before {
  -webkit-mask: var(--symbol-4-userselect, var(--symbol-4-default));
  mask: var(--symbol-4-userselect, var(--symbol-4-default));
}

.ico-animal-bird::before {
  -webkit-mask: var(--symbol-5-userselect, var(--symbol-5-default));
  mask: var(--symbol-5-userselect, var(--symbol-5-default));
}

.ico-animal-rabbit::before {
  -webkit-mask: var(--symbol-6-userselect, var(--symbol-6-default));
  mask: var(--symbol-6-userselect, var(--symbol-6-default));
}

.ico-animal-turtle::before {
  -webkit-mask: var(--symbol-7-userselect, var(--symbol-7-default));
  mask: var(--symbol-7-userselect, var(--symbol-7-default));
}

.ico-animal-frog::before {
  -webkit-mask: var(--symbol-8-userselect, var(--symbol-8-default));
  mask: var(--symbol-8-userselect, var(--symbol-8-default));
}

/* common.scss */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
.abi-language dl dt button, .box-hero .btn-video-play button, .abi-widget-side h2 a,
.abi-widget-side h2 button {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.post-list, .abi-breadcrumbs dd ol, .wp-block-table {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.post-list::-webkit-scrollbar, .abi-breadcrumbs dd ol::-webkit-scrollbar, .wp-block-table::-webkit-scrollbar {
  display: none;
}

.abi-breadcrumbs dt, .abi-tel:not(.is-style-abi-sp-icon) a .label, .wp-block-image.is-style-icon-circle-1 figcaption, .visually-hidden,
.is-style-visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.notice, .box-hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  color: inherit;
  cursor: pointer;
}

:root {
  --abi-margin-x-small: 16;
}
@media only screen and (min-width: 1200px) {
  :root {
    --abi-margin-small: 32;
  }
}
@media print {
  :root {
    --abi-margin-small: 32;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --abi-margin-small: 26;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --abi-margin-small: 16;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --abi-margin-medium: 40;
  }
}
@media print {
  :root {
    --abi-margin-medium: 40;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --abi-margin-medium: 30;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --abi-margin-medium: 20;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --abi-margin-large: 50;
  }
}
@media print {
  :root {
    --abi-margin-large: 50;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --abi-margin-large: 42;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --abi-margin-large: 32;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --abi-margin-x-large: 120;
  }
}
@media print {
  :root {
    --abi-margin-x-large: 120;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --abi-margin-x-large: 100;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --abi-margin-x-large: 60;
  }
}

@media only screen and (max-width: 767px) {
  .hide-sp {
    display: none;
  }
}

/* view
-------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  body .view_tab-sp,
  body .view_tab {
    display: none !important;
  }
}
@media print {
  body .view_tab-sp,
  body .view_tab {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  body .view_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 1199px) {
  body .view_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body .view_pc-tab,
  body .view_tab {
    display: none !important;
  }
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  overflow-x: hidden;
}
body .is-layout-flow > * + * {
  margin-block-start: calc(var(--abi-margin-small) / 16 * 1rem) !important;
}
body .is-layout-flow > * + * .wp-block-post {
  margin-block-start: 0 !important;
}
body .is-layout-flow .wp-block-post {
  margin-block-start: 0 !important;
}
.wp-site-blocks {
  position: relative;
}

.wp-site-blocks,
.wp-site-blocks .edit-post-visual-editor__post-title-wrapper,
.wp-site-blocks .wp-block-group.alignfull,
.wp-site-blocks .wp-block-cover.alignfull,
.wp-site-blocks .wp-block[data-align=full] > .wp-block-group,
.wp-site-blocks .wp-block[data-align=full] > .wp-block-cover {
  padding-left: var(--wp--custom--spacing--outer);
  padding-right: var(--wp--custom--spacing--outer);
}
.wp-site-blocks .edit-post-visual-editor__post-title-wrapper,
.wp-site-blocks .wp-block-group.alignmax,
.wp-site-blocks .wp-block-cover.alignmax,
.wp-site-blocks .wp-block[data-align=full] > .wp-block-group,
.wp-site-blocks .wp-block[data-align=full] > .wp-block-cover {
  position: relative;
  width: unset;
  max-width: none;
  margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover, .wp-site-blocks.is-root-container .wp-block[data-align=full],
.wp-site-blocks .abi-background,
.wp-site-blocks .wp-block-template-part > .abi-background {
  margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  width: unset;
}

body > .wp-site-blocks.is-root-container {
  padding-left: var(--wp--custom--spacing--outer);
  padding-right: var(--wp--custom--spacing--outer);
}
body > .wp-site-blocks.is-root-container > .wp-block-cover,
body > .wp-site-blocks.is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .wp-site-blocks.is-root-container > .wp-block-template-part > .wp-block-cover {
  margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  width: unset;
}

:where(.wp-site-blocks) > *,
:where(body .is-layout-flow) > * {
  margin-block-start: 0 !important;
}

.is-root-container:not(.wp-site-blocks) .edit-post-visual-editor__post-title-wrapper,
.is-root-container:not(.wp-site-blocks) .wp-block-group.alignfull,
.is-root-container:not(.wp-site-blocks) .wp-block-cover.alignfull,
.is-root-container:not(.wp-site-blocks) .wp-block[data-align=full] > .wp-block-group,
.is-root-container:not(.wp-site-blocks) .wp-block[data-align=full] > .wp-block-cover {
  margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
  width: unset;
}
body > .is-root-container:not(.wp-site-blocks) {
  padding-left: var(--wp--custom--spacing--outer);
  padding-right: var(--wp--custom--spacing--outer);
}
/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align=full],
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align=full] > *:not(.wp-block-group) .wp-block[data-align=full] {
  margin-left: auto !important;
  margin-right: auto !important;
  width: inherit;
}

.abi-main-container {
  position: relative;
  margin-top: 0 !important;
  margin-bottom: 0;
  padding-top: 0 !important;
  padding-bottom: calc(var(--wp--custom--spacing--outer) + 4em);
}
@media only screen and (max-width: 767px) {
  .abi-main-container {
    padding-top: 4.375rem !important;
  }
}
.abi-main-container + footer {
  margin-top: 0 !important;
}

.abi-template-part-background {
  position: absolute !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  margin-top: 0 !important;
}

.abi-background {
  position: relative;
  z-index: 0;
  height: 100%;
}
.abi-background .wp-block-cover__inner-container {
  max-width: 980px;
  margin: auto;
}
.abi-background .abi-background-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: 0 !important;
}
.abi-background .abi-background-image.is-style-abi-mask.is-style-abi-bg-repeat {
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
}
.abi-background .abi-background-image.is-style-abi-mask:not(.is-style-abi-bg-repeat) {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.abi-background .abi-background-image:not(.is-style-abi-mask).is-style-abi-bg-repeat {
  background-repeat: repeat;
}
.abi-background .abi-background-image:not(.is-style-abi-mask):not(.is-style-abi-bg-repeat) {
  background-repeat: no-repeat;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
}
a:hover, a:focus {
  /* text-decoration-style: dashed; */
}
a:active, a:hover {
  text-decoration: none;
}

[data-text]::before {
  content: attr(data-text) "";
}

.br::before {
  content: "\a";
  white-space: pre;
}

footer figure[class*=is-style-separate] table.has-c-foreground-color.has-text-color tr td:not(:first-child) {
  color: #fff !important;
}

.wp-block-table {
  margin: 0 0 1em 0;
  overflow-x: auto;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}
.wp-block-table table thead {
  border-bottom: none;
}
.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word;
}
.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {
  display: table;
  width: auto;
}
.wp-block-table.alignleft td, .wp-block-table.alignleft th, .wp-block-table.aligncenter td, .wp-block-table.aligncenter th, .wp-block-table.alignright td, .wp-block-table.alignright th {
  word-break: break-word;
}
.wp-block-table .has-border-color > *,
.wp-block-table .has-border-color tr,
.wp-block-table .has-border-color th,
.wp-block-table .has-border-color td {
  border-color: inherit;
}
.wp-block-table table[style*=border-style] > *,
.wp-block-table table[style*=border-style] tr,
.wp-block-table table[style*=border-style] th,
.wp-block-table table[style*=border-style] td {
  border-style: inherit;
}
.wp-block-table table[style*=border-width] > *,
.wp-block-table table[style*=border-width] tr,
.wp-block-table table[style*=border-width] th,
.wp-block-table table[style*=border-width] td {
  border-width: inherit;
  border-style: inherit;
}
.wp-block-table table th,
.wp-block-table table td {
  border: 0;
}
.wp-block-table.is-style-regular table {
  width: 100%;
  border: 1px solid var(--wp--preset--color--c-main);
}
.wp-block-table.is-style-regular table tr {
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--c-main);
}
@media only screen and (min-width: 768px) {
  .wp-block-table.is-style-regular table tr th,
  .wp-block-table.is-style-regular table tr td {
    padding: 0.5625em 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-table.is-style-regular table tr th,
  .wp-block-table.is-style-regular table tr td {
    padding: 0.5625em 1em;
  }
}
.wp-block-table.is-style-regular table tr th,
.wp-block-table.is-style-regular table tr td:first-child {
  white-space: nowrap;
  font-weight: 400;
  background: var(--wp--preset--color--c-sub-2);
}
.wp-block-table.is-style-separate-1 table, .wp-block-table.is-style-separate-2 table {
  line-height: var(--wp--custom--typography--line-height--lh-medium);
}
@media only screen and (min-width: 768px) {
  .wp-block-table.is-style-separate-1 table tr th,
  .wp-block-table.is-style-separate-1 table tr td, .wp-block-table.is-style-separate-2 table tr th,
  .wp-block-table.is-style-separate-2 table tr td {
    padding: 0.5625em 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-table.is-style-separate-1 table tr th,
  .wp-block-table.is-style-separate-1 table tr td, .wp-block-table.is-style-separate-2 table tr th,
  .wp-block-table.is-style-separate-2 table tr td {
    display: block;
    padding: 0.75em 1em;
  }
}
.wp-block-table.is-style-separate-1 table tr th,
.wp-block-table.is-style-separate-1 table tr td:first-child, .wp-block-table.is-style-separate-2 table tr th,
.wp-block-table.is-style-separate-2 table tr td:first-child {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .wp-block-table.is-style-separate-1 table tr th,
  .wp-block-table.is-style-separate-1 table tr td:first-child, .wp-block-table.is-style-separate-2 table tr th,
  .wp-block-table.is-style-separate-2 table tr td:first-child {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.wp-block-table.is-style-separate-1 table tr td:not(:first-child) a[href^="tel:"], .wp-block-table.is-style-separate-2 table tr td:not(:first-child) a[href^="tel:"] {
  line-height: 1;
  font-size: 1.625em;
}
.wp-block-table.is-style-separate-1 table {
  border-collapse: collapse;
}
.wp-block-table.is-style-separate-1 table tr {
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--c-main);
}
.wp-block-table.is-style-separate-1 table tr:first-of-type {
  border-top: 1px solid var(--wp--preset--color--c-main);
}
.wp-block-table.is-style-separate-1 table tr th:first-child,
.wp-block-table.is-style-separate-1 table tr td:first-child {
  background: transparent;
}
.wp-block-table.is-style-separate-2 table {
  border-collapse: separate;
}
.wp-block-table.is-style-separate-2 table tr th,
.wp-block-table.is-style-separate-2 table tr td {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wp-block-table.is-style-separate-2 table tr th,
  .wp-block-table.is-style-separate-2 table tr td {
    border-bottom: 1px solid var(--wp--preset--color--c-foreground);
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-table.is-style-separate-2 table tr th,
  .wp-block-table.is-style-separate-2 table tr td {
    width: 100% !important;
    text-align: left;
  }
}
.wp-block-table.is-style-separate-2 table tr td:first-child:before {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  height: 0.25rem;
  background-color: var(--wp--preset--color--c-main);
}
@media only screen and (min-width: 768px) {
  .wp-block-table.is-style-separate-2 table tr td:first-child:before {
    bottom: -0.125rem;
    width: calc(100% + 0.125rem);
    height: 0.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-table.is-style-separate-2 table tr td:first-child:before {
    bottom: -0.0625rem;
    width: 100%;
    height: 0.125rem;
  }
}
.wp-block-table.is-style-flat table {
  max-width: none;
  white-space: nowrap;
  border: 1px solid var(--wp--preset--color--c-main);
}
.wp-block-table.is-style-flat table tr {
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--c-main);
}
.wp-block-table.is-style-flat table thead tr {
  background: var(--wp--preset--color--c-sub-2);
}
.wp-block-table.is-style-flat table thead tr th {
  color: var(--wp--preset--color--c-foreground);
  font-weight: 400;
}
.wp-block-table.is-style-flat table tbody tr th,
.wp-block-table.is-style-flat table tbody tr td:first-child {
  color: var(--wp--preset--color--c-foreground);
  font-weight: 400;
}

.wp-block-list {
  padding-left: 2em;
  list-style: revert;
}

.is-style-circle {
  padding-left: 0;
}
.is-style-circle:not(ol) {
  list-style: none;
}
.is-style-circle:not(ol) li {
  padding-left: 1.1875em;
  text-indent: -1.1875em;
}
.is-style-circle:not(ol) li::marker {
  display: none;
}
.is-style-circle:not(ol) li::before {
  display: inline-block;
  margin-right: 0.5em;
  width: 0.6875em;
  aspect-ratio: 1;
  background: var(--wp--preset--color--c-main);
  border-radius: 50%;
  content: "";
}
.is-style-circle:not(ol) li + li {
  margin-top: 0.25em;
}

.wp-block-image.is-style-icon-circle-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5em;
  aspect-ratio: 1;
  color: var(--wp--preset--color--c-main);
  border: 1px solid currentColor;
  border-radius: 50%;
}
.wp-block-image.is-style-icon-circle-1 img {
  display: block;
  width: 62.5%;
  height: 62.5%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: currentColor;
}
@media only screen and (min-width: 768px) {
  .wp-block-image.is-style-abi-pc-tab-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-image.is-style-abi-sp-hide {
    display: none !important;
  }
}
.wp-block-image figcaption.is-style-left {
  text-align: left;
}
.wp-block-image figcaption.is-style-center {
  text-align: center;
}
.wp-block-image.is-style-center {
  text-align: center;
}

.abi-small-width {
  max-width: 1024px !important;
}

.abi-medium-width {
  max-width: 1280px !important;
}

.abi-full-width {
  max-width: 1600px !important;
}

body .is-layout-constrained .abi-headline {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 !important;
}
body .is-layout-constrained .abi-headline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: rotate(145deg) translate(-50%);
  transform-origin: 0% 0% 0;
  width: 1rem;
  height: 1px;
  background-color: var(--wp--preset--color--c-foreground);
}
body .is-layout-constrained .abi-headline-jp {
  margin: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0;
  font-size: clamp(1.875rem, 1.875rem + (1vw - 0.2rem) * 0.75, 1.875rem);
  font-family: var(--wp--preset--font-family--ff-noto-sans-jp);
  font-size: var(--wp--preset--font-size--medium);
  letter-spacing: 0.08em;
}
body .is-layout-constrained .abi-headline-en {
  margin-block-start: 0 !important;
  margin-block-end: 0;
  font-size: clamp(1.875rem, 1.875rem + (1vw - 0.2rem) * 0.75, 1.875rem);
}

body .abi-mainvisual.is-layout-constrained {
  margin-block-start: 0 !important;
}
body .abi-mainvisual-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-block-start: 0 !important;
  margin-block-end: 0;
  z-index: 2;
}
body .abi-mainvisual .wp-block-wdl-my-slider {
  margin-block-start: 0 !important;
  max-width: none !important;
}

.abi-plans .is-layout-flow > p:first-of-type {
  margin-block-start: 0.5em !important;
}
.abi-plans .is-layout-flow > p:last-of-type {
  margin-block-start: calc(var(--abi-margin-x-small) / 16 * 1rem) !important;
}
.abi-narrow {
  max-width: 780px !important;
}

.abi-spotlist .is-layout-flow > p:first-of-type {
  margin-block-start: 0.5em !important;
}
.abi-spotlist .is-layout-flow > p:last-of-type {
  margin-block-start: calc(var(--abi-margin-x-small) / 16 * 1rem) !important;
}
.abi-spotlist .wp-block-buttons {
  gap: calc(var(--abi-margin-x-small) / 16 * 1rem) !important;
}

.abi-grouplogo {
  width: 100%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .abi-grouplogo {
    gap: 10px !important;
    max-width: 1000px;
  }
}
@media only screen and (max-width: 767px) {
  .abi-grouplogo {
    gap: 0 !important;
    flex-wrap: wrap !important;
    justify-content: space-between;
    max-width: 470px;
  }
}
.abi-grouplogo > * {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .abi-grouplogo > *:first-of-type a:after {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .abi-grouplogo > * {
    width: 29%;
  }
  .abi-grouplogo > *:first-of-type a:after, .abi-grouplogo > *:nth-of-type(4n) a:after {
    content: none;
  }
}
.abi-grouplogo > * a {
  display: block;
  position: relative;
}

.abi-link {
  width: 100%;
  margin: auto;
}
.abi-link figure.wp-block-image {
  position: relative;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.5;
  z-index: 1;
}
.abi-link figure.wp-block-image:after {
  content: "\f3d0";
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: Ionicons;
  z-index: -1;
}

body .is-layout-flex.abi-pagelink {
  width: 100%;
  margin: auto;
  gap: 0 !important;
}
@media only screen and (max-width: 767px) {
  body .is-layout-flex.abi-pagelink {
    flex-wrap: wrap !important;
    justify-content: space-between;
  }
}
body .is-layout-flex.abi-pagelink .wp-block-column {
  border-left: 1px solid var(--wp--preset--color--c-foreground);
}
body .is-layout-flex.abi-pagelink .wp-block-column:last-of-type {
  border-right: 1px solid var(--wp--preset--color--c-foreground);
}
body .is-layout-flex.abi-pagelink .wp-block-column > p {
  height: 100%;
}
body .is-layout-flex.abi-pagelink .wp-block-column > p > a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0.78125em 0.78125em 1.5625em;
  text-decoration: none;
  line-height: var(--wp--custom--typography--line-height--lh-medium);
}
body .is-layout-flex.abi-pagelink .wp-block-column > p > a:after {
  content: "\f3d0";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: Ionicons;
}

.abi-tab {
  position: relative;
  width: unset;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .abi-tab {
    padding: 0 10%;
  }
}
@media only screen and (max-width: 767px) {
  .abi-tab {
    padding: 0 2.5%;
  }
}
.abi-tab:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--wp--preset--color--c-main);
  z-index: -1;
}
.abi-tab .wp-block-column.is-active a {
  border-bottom: 1px solid var(--wp--preset--color--c-background);
}
.abi-tab .wp-block-column.is-active a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.375rem;
  background-color: var(--wp--preset--color--c-main);
}
.abi-tab .wp-block-column a {
  display: block;
  position: relative;
  width: 100%;
  padding: 1.8em 2em;
  padding: 1.5625em;
  border: 1px solid var(--wp--preset--color--c-main);
  border-bottom: 0px;
  text-decoration: none;
  text-align: center;
}

.abi-news .wp-block-post-template .wp-block-post {
  display: flex;
  align-items: baseline;
}
@media only screen and (min-width: 768px) {
  .abi-news .wp-block-post-template .wp-block-post {
    margin-block-start: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-news .wp-block-post-template .wp-block-post {
    flex-wrap: wrap;
    margin-block-end: 0;
    padding: var(--wp--style--block-gap) 0;
  }
  .abi-news .wp-block-post-template .wp-block-post:not(:first-of-type) {
    border-top: 1px solid var(--wp--preset--color--c-foreground);
  }
}
.abi-news .wp-block-post-template .wp-block-post .wp-block-post-date {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .abi-news .wp-block-post-template .wp-block-post .wp-block-post-date {
    margin-left: 2em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-news .wp-block-post-template .wp-block-post .wp-block-post-date {
    margin-left: 1em;
  }
}
@media only screen and (min-width: 768px) {
  .abi-news .wp-block-post-template .wp-block-post .wp-block-post-title {
    margin-left: 2em;
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .abi-news .wp-block-post-template .wp-block-post .wp-block-post-title {
    width: 100%;
    margin-top: 0.8em;
  }
}
.abi-news .wp-block-post-template .wp-block-post .wp-block-categories-list a,
.abi-news .wp-block-post-template .wp-block-post .wp-block-categories a {
  text-decoration: none;
}

.abi-tel {
  padding: 0 !important;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.125rem, 1.125rem + (1vw - 0.2rem) * 0.75, 1.875rem);
}
@media only screen and (max-width: 767px) {
  .abi-tel {
    display: flex;
    justify-content: center;
  }
}
.abi-tel a {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  text-decoration: none;
  color: inherit;
}
.abi-tel a .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--c-main);
}
@media only screen and (min-width: 768px) {
  .abi-tel a .ico {
    margin-right: 0.625em;
    width: 1.875em;
    aspect-ratio: 1;
    font-size: 0.5333333333em;
    border: 1px solid currentColor;
    border-radius: 50%;
  }
}
.abi-tel a .txt {
  letter-spacing: 0.02em;
  color: inherit;
  white-space: nowrap !important;
}
@media only screen and (max-width: 767px) {
  .abi-tel:not(.is-style-abi-sp-icon) a .ico {
    margin-right: 0.6428571429em;
    width: 1.9642857143em;
    aspect-ratio: 1;
    font-size: 0.5833333333em;
    border: 1px solid currentColor;
    border-radius: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .abi-tel.is-style-abi-sp-icon {
    font-size: 0.64rem;
  }
}
@media only screen and (max-width: 767px) {
  .abi-tel.is-style-abi-sp-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    min-width: 5em;
    height: 100%;
    text-align: center;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  .abi-tel.is-style-abi-sp-icon a .ico {
    line-height: 1;
    font-size: 1.4285714286em;
    color: var(--wp--preset--color--c-main);
  }
}
@media only screen and (min-width: 768px) {
  .abi-tel.is-style-abi-sp-icon a .label {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .abi-tel.is-style-abi-sp-icon a .label {
    line-height: 1.1666666667;
  }
}
@media only screen and (max-width: 767px) {
  .abi-tel.is-style-abi-sp-icon a .txt {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
  }
}
.abi-tel[style*=background-color] a {
  padding: 0.5em;
  height: 100%;
}
.abi-ico {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: none;
  height: auto !important;
}
.abi-ico .abi-ico-object {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: 0;
}
.abi-ico .abi-ico-object .abi-img {
  width: 62.5%;
  height: 62.5%;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}
.abi-ico .abi-ico-object .abi-img.is-style-abi-mask {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: currentColor;
}
.abi-ico .abi-ico-object .abi-txt {
  line-height: 1;
}
.abi-ico .abi-ico-object .abi-txt[data-text] {
  white-space: pre;
}
.abi-ico .abi-ico-object .abi-iconfont {
  line-height: 1;
}
.abi-ico .abi-ico-label {
  line-height: var(--wp--custom--typography--line-height--lh-medium);
}
.abi-ico:not(.is-style-circle-line):not(.is-style-circle-large):not(.is-style-square):not(.is-style-inline), .abi-ico.is-style-default {
  justify-content: flex-start;
  background-color: unset !important;
}
.abi-ico:not(.is-style-circle-line):not(.is-style-circle-large):not(.is-style-square):not(.is-style-inline) .abi-ico-object, .abi-ico.is-style-default .abi-ico-object {
  width: 1.5625em;
  height: 1.5625em;
  font-size: 2em;
}
.abi-ico.is-style-circle-line {
  justify-content: flex-start;
  background-color: unset !important;
}
.abi-ico.is-style-circle-line .abi-ico-object {
  width: 4.5em;
  height: 4.5em;
  border: 1px solid;
  border-radius: 50%;
}
.abi-ico.is-style-circle-large {
  justify-content: center;
  width: 6.7857142857em;
  height: 6.7857142857em;
  aspect-ratio: 1;
  font-size: 0.875em;
}
.abi-ico.is-style-circle-large .abi-ico-object {
  width: 3em;
  height: 3em;
}
.abi-ico.is-style-circle-large .abi-ico-object .abi-iconfont {
  font-size: 1.4285714286em;
}
.abi-ico.is-style-circle-large .abi-ico-label {
  letter-spacing: normal;
  white-space: nowrap;
}
.abi-ico.is-style-square {
  justify-content: center;
  aspect-ratio: 1;
  font-size: var(--wp--preset--font-size--small);
  border: 1px solid currentColor;
}
@media only screen and (min-width: 768px) {
  .abi-ico.is-style-square {
    min-width: 5em;
    min-height: 5em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-ico.is-style-square {
    min-width: 4.65em;
    min-height: 4.65em;
  }
}
.abi-ico.is-style-square .abi-ico-object .abi-img {
  width: 1em;
  height: 1em;
  font-size: 1.4285714286em;
}
.abi-ico.is-style-square .abi-ico-object .abi-iconfont {
  font-size: 1.4285714286em;
}
.abi-ico.is-style-square .abi-ico-label {
  line-height: 1.1666666667;
  letter-spacing: normal;
}
.abi-ico.is-style-inline .abi-ico-object {
  font-size: 1em;
}
.abi-ico.is-style-inline .abi-ico-object .abi-img {
  width: 1em;
  height: 1em;
}
.abi-ico.is-style-inline .abi-ico-label {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .abi-ico.is-style-abi-sp-hide {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .wp-block-group.is-style-bg-1:not(.alignfull), .wp-block-group.is-style-border-1:not(.alignfull) {
    padding: calc(var(--abi-margin-large) / 16 * 1em) 5em;
  }
}
@media print {
  .wp-block-group.is-style-bg-1:not(.alignfull), .wp-block-group.is-style-border-1:not(.alignfull) {
    padding: calc(var(--abi-margin-large) / 16 * 1em) 5em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .wp-block-group.is-style-bg-1:not(.alignfull), .wp-block-group.is-style-border-1:not(.alignfull) {
    padding: calc(var(--abi-margin-large) / 16 * 1em) calc(var(--abi-margin-large) / 16 * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-group.is-style-bg-1:not(.alignfull), .wp-block-group.is-style-border-1:not(.alignfull) {
    padding: 2em 1.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .wp-block-group.is-style-bg-1.alignfull, .wp-block-group.is-style-border-1.alignfull {
    padding: calc(var(--abi-margin-large) / 16 * 1em) calc(var(--wp--custom--spacing--outer) + 5em);
  }
}
@media print {
  .wp-block-group.is-style-bg-1.alignfull, .wp-block-group.is-style-border-1.alignfull {
    padding: calc(var(--abi-margin-large) / 16 * 1em) calc(var(--wp--custom--spacing--outer) + 5em);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .wp-block-group.is-style-bg-1.alignfull, .wp-block-group.is-style-border-1.alignfull {
    padding: calc(var(--abi-margin-large) / 16 * 1em) calc(var(--wp--custom--spacing--outer) + var(--abi-margin-large) / 16 * 1em);
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-group.is-style-bg-1.alignfull, .wp-block-group.is-style-border-1.alignfull {
    padding: 2em calc(var(--wp--custom--spacing--outer) + 1.5em);
  }
}
.wp-block-group.is-style-bg-1 {
  background: var(--wp--preset--color--c-sub-2);
}
.wp-block-group.is-style-border-1 {
  border: 1px solid var(--wp--preset--color--c-main);
}
.wp-block-group.is-style-flow {
  position: relative;
}
.wp-block-group.is-style-flow:not(:last-of-type) {
  margin-bottom: 1.25em;
}
.wp-block-group.is-style-flow::after {
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 2.0625em solid var(--wp--preset--color--c-sub-2);
  border-left: 1.71875em solid transparent;
  border-right: 1.71875em solid transparent;
  content: "";
}
.wp-block-group.is-style-flow + .is-style-flow:last-of-type::after {
  display: none;
}
.wp-block-group.is-style-flow:only-of-type::after {
  display: none;
}

.title-basic {
  margin-bottom: calc( ( var(--margin-base) - ((24 * 1.5 - 24) / 2)) / 24 * 1em );
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-userselect, var(--color-default));
}
@media only screen and (min-width: 1561px) {
  .title-basic {
    font-size: 1.5rem;
  }
}
@media print {
  .title-basic {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .title-basic {
    font-size: fszcalc(23, 24, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .title-basic {
    font-size: fszcalc(22, 23, 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .title-basic {
    font-size: fszcalc(21, 22, 768px, 983px);
  }
}
@media only screen and (min-width: 545px) and (max-width: 767px) {
  .title-basic {
    font-size: fszcalc(17.0666666667, 21, 545px, 767px);
  }
}
@media only screen and (max-width: 544px) {
  .title-basic {
    font-size: fszcalc(17.0666666667, 17.0666666667, 320, 544px);
  }
}
.title-basic [data-text] {
  display: block;
  font-size: 0.9166666667em;
  font-family: var(--font-family-en-userselect, var(--font-family-en-default));
  letter-spacing: 0.08em;
}
.title-basic [data-text]:last-child {
  margin-top: 0.2045454545em;
}
.title-basic .ico {
  display: block;
  position: relative;
  margin-right: 0.5416666667em;
  width: 1.25em;
  height: 1em;
}
.title-basic .ico::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1.25em;
  height: 1.25em;
  -webkit-mask: var(--symbol-1-userselect, var(--symbol-1-default));
  mask: var(--symbol-1-userselect, var(--symbol-1-default));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: currentColor;
  content: "";
}
.title-basic.is-style-center {
  text-align: center;
}

footer {
  position: relative;
}
footer .abi-to-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  margin-inline: auto;
  transform: translateY(-50%);
}
footer .abi-footer-nav {
  text-transform: uppercase;
  white-space: nowrap;
}
footer .abi-footer-nav > * p {
  margin-block-end: 0;
}
footer .abi-footer-nav > * p:not(:first-of-type) {
  margin-block-start: calc(var(--abi-margin-x-small) / 16 * 1rem) !important;
}
footer .abi-footer-nav > * p a {
  color: var(--wp--preset--color--c-background);
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  footer .abi-footer-inner {
    padding-top: 5em !important;
    padding-bottom: 8em !important;
  }
}

.wp-block-heading [data-text] {
  display: block;
  font-size: 0.9166666667em;
  font-family: var(--font-family-en-userselect, var(--font-family-en-default));
  letter-spacing: 0.08em;
}
.wp-block-heading [data-text]:last-child {
  margin-top: 0.2045454545em;
}
.wp-block-heading.is-style-icon {
  display: flex;
  align-items: center;
}
.wp-block-heading.is-style-icon::before {
  display: block;
  position: relative;
  margin-right: 0.5416666667em;
  width: 1.25em;
  height: 1.25em;
  -webkit-mask: var(--symbol-1-userselect, var(--symbol-1-default));
  mask: var(--symbol-1-userselect, var(--symbol-1-default));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: currentColor;
  content: "";
}
.wp-block-heading.is-style-border-1 {
  position: relative;
  margin-bottom: 0;
  padding: calc( ( 20 - ((24 * 1.5 - 24) / 2)) / 24 * 1em ) 1em;
  border-bottom: 2px solid var(--wp--preset--color--c-main);
}
.wp-block-heading.is-style-border-1::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: var(--wp--preset--color--c-main);
  content: "";
}

.wp-site-blocks > header {
  position: sticky;
  top: 0 !important;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks > header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
}
.admin-bar .wp-site-blocks > header, .edit-site-block-editor__block-list .wp-site-blocks > header {
  top: var(--wp-admin--admin-bar--height);
}
@media screen and (max-width: 782px) {
  .admin-bar.abi-header-fixed .wp-site-blocks > header {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .admin-bar.abi-header-fixed .wp-site-blocks > header {
    animation-name: fadein;
    animation-duration: 3s;
  }
}
.wp-site-blocks > header + .wp-block-template-part {
  margin-top: 0;
}
@keyframes fadein {
  from {
    opacity: 1;
    transform: translatey(20px);
  }
  to {
    opacity: 0;
    transform: translatey(0);
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header {
    margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
    margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
    height: 6.5625em;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header {
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: 4.375rem;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner {
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: inherit;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo {
  flex-shrink: 0;
}
body:not(.abi-header-fixed) .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo {
  height: 0;
}
body.abi-header-fixed .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo {
  height: inherit;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo a {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * {
    padding: 0.75em 0.75em 0;
    max-width: 7.5rem;
    width: 31.25vw;
    min-width: 5.3125rem;
  }
}
body:not(.abi-header-fixed) .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * {
  height: -moz-max-content;
  height: max-content;
}
body.abi-header-fixed .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * {
  height: 100%;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo {
  text-align: center;
}
body.abi-header-fixed .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo .custom-logo-link {
    margin-inline: auto;
  }
}
body.abi-header-fixed .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo .custom-logo-link {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo .custom-logo-link .custom-logo {
    width: 100%;
    height: auto;
  }
}
body.abi-header-fixed .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo .custom-logo-link .custom-logo {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo + * {
  margin-top: 0.75em;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo ~ p {
  font-family: var(--wp--preset--font-family--ff-noto-sans-jp);
  font-weight: 400;
  line-height: var(--wp--custom--typography--line-height--lh-medium);
  font-size: var(--wp--preset--font-size--small);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo ~ p {
    letter-spacing: 0;
  }
}
body.abi-header-fixed .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-logo ~ p {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-title {
    letter-spacing: 0;
  }
}
body.abi-header-fixed .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-logo > * .wp-block-site-title {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar {
  width: 100%;
  height: inherit;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar {
    gap: 1em !important;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar {
    gap: 0 !important;
    justify-content: flex-end;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar > * {
  height: inherit;
  background: inherit;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar > * {
    margin-left: 0.75em;
  }
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap {
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap {
    order: 1;
    margin-left: 0;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation {
  height: inherit;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation {
    margin-left: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation {
    display: none;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation .wp-block-navigation__container {
  height: inherit;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation .wp-block-navigation__container .wp-block-navigation-item.wp-block-navigation-link {
  height: inherit;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation .wp-block-navigation__container .wp-block-navigation-item.wp-block-navigation-link.wrapped {
  display: none;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation .wp-block-navigation__container .wp-block-navigation-item.wp-block-navigation-link a {
  display: block;
  position: relative;
  top: 0.1666666667em;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation .wp-block-navigation__container .wp-block-navigation-item.wp-block-navigation-link a .wp-block-navigation-item__label {
  white-space: nowrap;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-wrap .abi-navigation .wp-block-navigation__container .wp-block-navigation-item.wp-block-navigation-link.wrapped:not(:focus-within) {
  position: absolute;
  top: 100%;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button {
  display: flex;
  align-items: center;
  height: inherit;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button {
    display: flex !important;
    margin: 0 1em;
  }
}
@media only screen and (max-width: 1199px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button {
    display: flex !important;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button {
    order: 1;
    margin: 0;
    margin-left: 1px;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open {
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open {
    background: var(--wp--preset--color--c-main);
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before, .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 55%;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before {
  height: 22.5%;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before {
    border-color: #000;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before {
    border-color: #fff;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
  height: 2px;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
    background: #000;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
    background: #fff;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open svg {
  opacity: 0;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container.is-menu-open {
  padding-top: var(--wp--custom--spacing--outer);
  padding-bottom: var(--wp--custom--spacing--outer);
  padding-right: var(--wp--custom--spacing--outer);
  padding-left: var(--wp--custom--spacing--outer);
}
.admin-bar:not(.abi-header-fixed) .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container.is-menu-open {
  padding-top: calc(var(--wp--custom--spacing--outer) + var(--wp-admin--admin-bar--height));
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  margin: 0 auto;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
  color: var(--wp--preset--color--c-main);
}
@media only screen and (min-width: 1561px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: 1.875rem;
  }
}
@media print {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(28, 30, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(26, 28, 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(24, 26, 768px, 983px);
  }
}
@media only screen and (min-width: 545px) and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(15.36, 24, 545px, 767px);
  }
}
@media only screen and (max-width: 544px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(15.36, 15.36, 320, 544px);
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content:hover {
  text-decoration: underline;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close,
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open {
  min-width: 4.0625rem;
  font-size: 100%;
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close svg,
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open svg {
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close svg,
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open svg {
    width: 1.375em;
    height: 1.375em;
  }
}
.wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close {
  height: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .wp-block-template-part .wp-block-group.abi-header .abi-header-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close svg {
    width: 2.25em;
    height: 2.25em;
  }
}

.wp-site-blocks .abi-fixed-under-menu {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4.375rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  z-index: 100;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .abi-fixed-under-menu {
    display: none;
  }
}
.abi-header-fixed .wp-site-blocks .abi-fixed-under-menu {
  animation-name: fadein;
  animation-duration: 1s;
  opacity: 1;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner {
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: inherit;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-fixed-under-menu-container {
  height: 100%;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .wp-block-navigation__responsive-container-close {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar {
  width: 100%;
  height: inherit;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar {
    gap: 1em !important;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar {
    gap: 0 !important;
    justify-content: space-between;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar > * {
  height: inherit;
  background: inherit;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar > * {
    margin-left: 0.75em;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-wrap .abi-navigation {
  display: none;
  height: inherit;
  overflow: hidden;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-wrap .wp-block-navigation__responsive-close {
  height: 100%;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-wrap .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog {
  height: 100%;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button {
  display: flex;
  align-items: center;
  height: inherit;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button {
    display: flex !important;
    margin: 0 1em;
  }
}
@media only screen and (max-width: 1199px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button {
    display: flex !important;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button {
    order: 1;
    margin: 0;
    margin-left: 1px;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open {
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open {
    background: var(--wp--preset--color--c-main);
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before, .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 55%;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before {
  height: 22.5%;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before {
    border-color: #000;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::before {
    border-color: #fff;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
  height: 2px;
}
@media only screen and (min-width: 768px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
    background: #000;
  }
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open::after {
    background: #fff;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open svg {
  opacity: 0;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container.is-menu-open {
  padding-bottom: var(--wp--custom--spacing--outer);
  padding-right: var(--wp--custom--spacing--outer);
  padding-left: var(--wp--custom--spacing--outer);
}
.admin-bar:not(.abi-header-fixed) .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container.is-menu-open {
  padding-top: calc(var(--wp--custom--spacing--outer) + var(--wp-admin--admin-bar--height));
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  margin: 0 auto;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
  color: var(--wp--preset--color--c-main);
}
@media only screen and (min-width: 1561px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: 1.875rem;
  }
}
@media print {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(28, 30, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(26, 28, 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(24, 26, 768px, 983px);
  }
}
@media only screen and (min-width: 545px) and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(15.36, 24, 545px, 767px);
  }
}
@media only screen and (max-width: 544px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content {
    font-size: fszcalc(15.36, 15.36, 320, 544px);
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item__content:hover {
  text-decoration: underline;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close,
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open {
  min-width: 4.0625rem;
  font-size: 100%;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close svg,
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open svg {
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close svg,
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-open svg {
    width: 1.375em;
    height: 1.375em;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close {
  height: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-menubar .abi-navigation-button .wp-block-navigation__responsive-container-close svg {
    width: 2.25em;
    height: 2.25em;
  }
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .abi-ico.is-style-circle-large {
  aspect-ratio: 0;
}
.wp-site-blocks .abi-fixed-under-menu .abi-fixed-under-menu-inner .wp-block-button__link {
  width: auto;
}

.abi-widget-side {
  position: fixed !important;
  right: 0;
  bottom: 0;
  z-index: 10;
  transition: 0.5s;
  will-change: transform;
}
@media only screen and (min-width: 768px) {
  .abi-widget-side {
    display: flex;
    margin-bottom: 5em;
    min-height: 10em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-widget-side {
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .abi-widget-side[data-visible=show] {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 767px) {
  .abi-widget-side[data-visible=show] {
    transform: translateY(0);
  }
}
@media only screen and (min-width: 768px) {
  .abi-widget-side[data-visible=hide] {
    transform: translateX(100%);
  }
}
@media only screen and (max-width: 767px) {
  .abi-widget-side[data-visible=hide] {
    transform: translateY(100%);
  }
}
.abi-widget-side h2 {
  margin-block: 0 !important;
  padding: 0;
}
@media only screen and (min-width: 1561px) {
  .abi-widget-side h2 {
    font-size: 1.5rem;
  }
}
@media print {
  .abi-widget-side h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .abi-widget-side h2 {
    font-size: fszcalc(22, 24, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .abi-widget-side h2 {
    font-size: fszcalc(20, 22, 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .abi-widget-side h2 {
    font-size: fszcalc(18, 20, 768px, 983px);
  }
}
@media only screen and (min-width: 545px) and (max-width: 767px) {
  .abi-widget-side h2 {
    font-size: fszcalc(14, 18, 545px, 767px);
  }
}
@media only screen and (max-width: 544px) {
  .abi-widget-side h2 {
    font-size: fszcalc(10, 14, 320, 544px);
  }
}
@media only screen and (min-width: 768px) {
  .abi-widget-side h2 {
    flex-shrink: 0;
    position: relative;
    margin-left: -2.8333333333em;
    width: 2.8333333333em;
    height: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .abi-widget-side h2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: 1em;
    margin-top: -1em !important;
    max-width: 9.375rem;
    width: 23.3333333333%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateY(-100%);
  }
}
.abi-widget-side h2 a,
.abi-widget-side h2 button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: inherit;
  border-radius: inherit;
}
@media only screen and (min-width: 768px) {
  .abi-widget-side h2 a,
  .abi-widget-side h2 button {
    flex-direction: column;
    padding-block: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-widget-side h2 a,
  .abi-widget-side h2 button {
    flex-direction: column-reverse;
    line-height: 1;
    letter-spacing: 0;
    gap: 0.5em;
  }
}
.abi-widget-side h2 a > *,
.abi-widget-side h2 button > * {
  flex-shrink: 0;
}
.abi-widget-side h2 a .ico:first-child,
.abi-widget-side h2 button .ico:first-child {
  display: block;
  margin-bottom: 0.7em;
  width: 1.9em;
  height: 1.9em;
  -webkit-mask: var(--symbol-1-userselect, var(--symbol-1-default));
  mask: var(--symbol-1-userselect, var(--symbol-1-default));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: currentColor;
}
@media only screen and (max-width: 767px) {
  .abi-widget-side h2 a .ico:first-child,
  .abi-widget-side h2 button .ico:first-child {
    display: none;
  }
}
.abi-widget-side h2 a .ico.ico-tel,
.abi-widget-side h2 button .ico.ico-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}
@media only screen and (min-width: 768px) {
  .abi-widget-side h2 a .ico.ico-tel,
  .abi-widget-side h2 button .ico.ico-tel {
    margin-top: 0.5em;
    width: 2.1em;
    height: 2.1em;
    font-size: 0.8333333333em;
    border: 1px solid currentColor;
    border-radius: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .abi-widget-side h2 a .ico.ico-tel,
  .abi-widget-side h2 button .ico.ico-tel {
    font-size: 1.75em;
  }
}
@media only screen and (min-width: 768px) {
  .abi-widget-side h2 a .txt,
  .abi-widget-side h2 button .txt {
    writing-mode: vertical-rl;
    font-feature-settings: normal;
  }
}
.abi-widget-side .abi-widget-inner {
  padding: 2.1428571429em;
  min-width: 20em;
  font-size: 0.875em;
  height: inherit;
}
.abi-widget-side .abi-widget-inner[data-display=none] {
  display: none;
}
.abi-widget-side > .block-editor-inner-blocks {
  height: inherit;
}
.abi-widget-side > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: flex;
  height: 100%;
}
.abi-widget-side > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block {
  height: inherit;
}

@media only screen and (max-width: 767px) {
  .abi-breadcrumbs {
    margin-top: 0.5em !important;
  }
}
.abi-breadcrumbs dd {
  margin-inline: 0;
}
.abi-breadcrumbs dd ol {
  display: flex;
  align-items: center;
  gap: 1em;
  max-width: 100%;
  overflow-x: scroll;
}
.abi-breadcrumbs dd ol li {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1em;
}
.abi-breadcrumbs dd ol li a {
  flex-shrink: 0;
}
.abi-breadcrumbs dd ol li a[aria-current=page] {
  text-decoration: none;
}
.abi-breadcrumbs dd ol li .ico_arrow_r {
  flex-shrink: 0;
}
.abi-breadcrumbs dd ol li .ico_arrow_r::before {
  font-family: Ionicons;
  content: "\f3d1";
}

@media only screen and (max-width: 767px) {
  .footer .table.is-style-separate-1 {
    text-align: left;
  }
}
.table .block-editor-inner-blocks,
.table .block-editor-inner-blocks .block-editor-block-list__layout,
.table .block-editor-inner-blocks .block-editor-block-list__block {
  display: contents;
}

.list-basic li {
  display: flex;
  font-size: 0.875em;
}
.list-basic li::before {
  flex-shrink: 0;
  display: block;
  position: relative;
  top: calc( 0.875em - math.div(0.1875rem, 2) );
  margin: 0 0.375rem;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.list-box {
  padding: 1.875em;
  background: var(--wp--preset--color--c-sub-2);
  white-space: inherit !important;
}
.list-box li {
  display: flex;
  align-items: baseline;
}
.list-box li::before {
  flex-shrink: 0;
  display: block;
  margin-right: 0.5em;
  width: 0.6875em;
  height: 0.6875em;
  background: var(--wp--preset--color--c-main);
  border-radius: 50%;
  content: "";
}
.list-box li dl dt {
  margin-bottom: 0.875em;
}
.list-box li dl dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}
.list-box li dl dd img {
  display: block;
  height: 1.5625em;
  -o-object-fit: contain;
     object-fit: contain;
}
.list-box:not(.is-style-row) li + li {
  margin-top: 1.25em;
}
.list-box.is-style-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em;
}

.list-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  margin-bottom: calc( ( var(--abi-margin-medium) - ((16 * 2 - 16) / 2)) / 16 * 1em );
}
.list-icons li {
  text-align: center;
  color: var(--wp--preset--color--c-main);
}
.list-icons li .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 4.5em;
  height: 4.5em;
  color: var(--wp--preset--color--c-main);
  border: 1px solid currentColor;
  border-radius: 50%;
}
.list-icons li .ico::before {
  width: 62.5%;
  height: 62.5%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: currentColor;
}
.list-icons .block-editor-inner-blocks,
.list-icons .block-editor-inner-blocks > div {
  display: contents;
}

.post-list {
  display: flex;
  margin-bottom: 3.75em;
}
@media only screen and (min-width: 768px) {
  .post-list {
    gap: 2.5em;
  }
}
@media only screen and (max-width: 767px) {
  .post-list {
    gap: 1em;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media only screen and (min-width: 768px) {
  .post-list li {
    width: calc((100% - (2.5em * 2)) / 3);
  }
}
@media only screen and (max-width: 767px) {
  .post-list li {
    width: calc((100% - (1em * 2)) / 3);
    min-width: 15.625rem;
  }
}
.post-list li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.post-list li a time {
  margin-bottom: 0.3571428571em;
  font-size: 0.875em;
  color: var(--wp--preset--color--c-main);
}
.post-list li a .txt {
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .post-list li a .txt {
    font-size: 1.25em;
  }
}
.post-list li a .img {
  order: -1;
  margin-bottom: 1em;
  width: 100%;
  aspect-ratio: 1.7777777778;
}
.post-list li a .img:empty {
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: var(--wp--preset--color--c-main);
}
.post-list li a .img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1.7777777778;
}

p.align-left {
  text-align: left;
}
p.align-center {
  text-align: center;
}
p.align-right {
  text-align: right;
}

.layout-row {
  display: flex;
  gap: calc(var(--abi-margin-large) / 16 * 1em);
}
@media only screen and (max-width: 767px) {
  .layout-row {
    flex-direction: column;
  }
}
.layout-row .box-text {
  width: 100%;
}
.layout-row .box-text dl {
  display: grid;
  grid-template-columns: auto auto;
  gap: calc( ( var(--abi-margin-medium) - ((16 * 2 - 16) / 2 * 2)) / 16 * 1em ) calc(var(--abi-margin-large) / 16 * 1em);
}
.layout-row .box-text dl dt {
  flex-shrink: 0;
  font-size: 1.125em;
  color: var(--wp--preset--color--c-main);
}
.layout-row .box-text dl dt .ico {
  display: inline-block;
  position: relative;
  margin-right: 0.3888888889em;
  width: 1.1111111111em;
  height: 1em;
}
.layout-row .box-text dl dt .ico::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1.1111111111em;
  height: 1.1111111111em;
  -webkit-mask: var(--symbol-1-userselect, var(--symbol-1-default));
  mask: var(--symbol-1-userselect, var(--symbol-1-default));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: currentColor;
  content: "";
}
.layout-row .box-text dl[data-type="abi/dl"] > .block-editor-inner-blocks,
.layout-row .box-text dl[data-type="abi/dl"] > .block-editor-inner-blocks > .block-editor-block-list__layout,
.layout-row .box-text dl[data-type="abi/dl"] > .block-editor-inner-blocks > .block-editor-block-list__layout > div {
  display: contents;
}
.layout-row .box-img {
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .layout-row .box-img {
    width: 46.09375%;
  }
}
@media only screen and (max-width: 767px) {
  .layout-row .box-img {
    width: 100%;
  }
}
.layout-row .box-img img {
  display: block;
}
@media only screen and (max-width: 767px) {
  .layout-row:not(.is-style-img-left) .box-img {
    order: -1;
  }
}
.layout-row.is-style-img-left .box-img {
  order: -1;
}

.layout-items {
  display: flex;
  flex-wrap: wrap;
}
.layout-items li {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .layout-items li {
    width: 100%;
  }
}
.layout-items li .img {
  margin-bottom: calc( ( 24 - ((18 * 1.8333333333 - 18) / 2)) / 18 * 1em );
  width: 100%;
}
.layout-items li .img img {
  display: block;
  width: 100%;
}
.layout-items li .caption {
  line-height: 1.8333333333em;
  font-size: 1.125em;
  font-weight: normal;
}
.layout-items li p {
  line-height: 1.8333333333em;
  font-size: 1.125em;
}
.layout-items.is-style-col-2 {
  gap: 3.4375em;
}
@media only screen and (min-width: 768px) {
  .layout-items.is-style-col-2 li {
    width: calc((100% - (3.4375em * (2 - 1))) / 2);
  }
}
.layout-items.is-style-col-2 li .caption + p {
  margin-top: calc( ( 24 - math.div((18 * 1.8333333333 - 18), 2)) / 18 * 1em );
}
.layout-items.is-style-col-3 {
  gap: 2.5em;
}
@media only screen and (min-width: 768px) {
  .layout-items.is-style-col-3 li {
    width: calc((100% - (2.5em * (3 - 1))) / 3);
  }
}
.layout-items.is-style-col-3 li .caption + p {
  margin-top: calc( ( 30 - math.div((18 * 1.8333333333 - 18), 2)) / 18 * 1em );
}
.layout-items.is-style-col-4 {
  gap: 1.9375em;
}
@media only screen and (min-width: 768px) {
  .layout-items.is-style-col-4 li {
    width: calc((100% - (1.9375em * (4 - 1))) / 4);
  }
}
.layout-items.is-style-col-4 li .caption + p {
  margin-top: calc( ( 16 - math.div((18 * 1.8333333333 - 18), 2)) / 18 * 1em );
}
.layout-items .block-editor-inner-blocks,
.layout-items .block-editor-inner-blocks > div {
  display: contents;
}
.layout-items .block-editor-inner-blocks > div,
.layout-items .block-editor-inner-blocks > div > div {
  display: contents;
}

dl.abi-faq {
  margin-block-start: 0 !important;
  border-bottom: 1px solid #ededed;
}
@media only screen and (min-width: 768px) {
  dl.abi-faq {
    padding: 2.5em 1.5625em;
  }
}
@media only screen and (max-width: 767px) {
  dl.abi-faq {
    padding: 1.5em 0;
  }
}
dl.abi-faq dt,
dl.abi-faq dd {
  display: flex;
  margin: 0;
}
dl.abi-faq dt [data-text]:first-child,
dl.abi-faq dd [data-text]:first-child {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.78125em;
  width: 1.5625em;
  height: 1.5625em;
  letter-spacing: 0;
  font-size: 2em;
  font-family: var(--wp--preset--font-family--ff-arial);
}
dl.abi-faq dt .txt,
dl.abi-faq dd .txt {
  width: 100%;
}
dl.abi-faq dt {
  margin-bottom: 2em;
}
/*============================
main
============================*/
main {
  margin-top: 0 !important;
}

:where(main) .wp-block-group[class*=wp-container-] {
  align-items: flex-start;
}

.box-hero {
  position: relative;
  margin-top: 0 !important;
  width: 100vw;
}
.box-hero .txt-hero {
  position: absolute;
  line-height: 1.5;
  letter-spacing: 0.24em;
  color: #fff;
}
.box-hero .img-hero {
  position: relative;
  z-index: -1;
  max-width: 100%;
  background: center/cover #ddd;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .box-hero .img-hero {
    min-height: 31.25rem;
    aspect-ratio: 2.6666666667;
  }
}
@media only screen and (max-width: 767px) {
  .box-hero .img-hero {
    aspect-ratio: 1.0162601626;
  }
}
.box-hero .img-hero img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-hero .img-hero .ytWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  transform: translateX(-50%) translateY(-50%);
}
.box-hero .img-hero .ytWrapper.showThumbnail::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: center/cover;
  content: "";
}
.box-hero .img-hero .ytWrapper #yt-player {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.box-hero:not(.is-style-vertical) .txt-hero {
  padding: 0 0.875em;
  max-width: 100rem;
}
@media only screen and (min-width: 1561px) {
  .box-hero:not(.is-style-vertical) .txt-hero {
    font-size: 2.5rem;
  }
}
@media print {
  .box-hero:not(.is-style-vertical) .txt-hero {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .box-hero:not(.is-style-vertical) .txt-hero {
    font-size: fszcalc(36, 40, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .box-hero:not(.is-style-vertical) .txt-hero {
    font-size: fszcalc(34, 36, 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .box-hero:not(.is-style-vertical) .txt-hero {
    font-size: fszcalc(32, 34, 768px, 983px);
  }
}
@media only screen and (min-width: 545px) and (max-width: 767px) {
  .box-hero:not(.is-style-vertical) .txt-hero {
    font-size: fszcalc(20, 32, 545px, 767px);
  }
}
@media only screen and (max-width: 544px) {
  .box-hero:not(.is-style-vertical) .txt-hero {
    font-size: fszcalc(20, 20, 320, 544px);
  }
}
.box-hero:not(.is-style-vertical) .txt-hero:not(.pos-right):not(.pos-center), .box-hero:not(.is-style-vertical) .txt-hero.pos-left {
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto 7.2916666667%;
}
.box-hero:not(.is-style-vertical) .txt-hero.pos-right {
  right: 3.5416666667%;
  bottom: 0;
  margin: 0 auto 7.2916666667%;
}
.box-hero:not(.is-style-vertical) .txt-hero.pos-center {
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-50%);
}
.box-hero.is-style-vertical .txt-hero {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  text-align: left;
  display: inline-block;
  padding: 0.875em;
}
@media only screen and (min-width: 1561px) {
  .box-hero.is-style-vertical .txt-hero {
    font-size: 2.5rem;
  }
}
@media print {
  .box-hero.is-style-vertical .txt-hero {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .box-hero.is-style-vertical .txt-hero {
    font-size: fszcalc(26, 40, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .box-hero.is-style-vertical .txt-hero {
    font-size: fszcalc(26, 26, 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .box-hero.is-style-vertical .txt-hero {
    font-size: fszcalc(26, 26, 768px, 983px);
  }
}
@media only screen and (min-width: 545px) and (max-width: 767px) {
  .box-hero.is-style-vertical .txt-hero {
    font-size: fszcalc(36, 26, 545px, 767px);
  }
}
@media only screen and (max-width: 544px) {
  .box-hero.is-style-vertical .txt-hero {
    font-size: fszcalc(17, 36, 320, 544px);
  }
}
.box-hero.is-style-vertical .txt-hero:not(.pos-center), .box-hero.is-style-vertical .txt-hero.pos-right {
  top: 0;
  bottom: 0;
  right: 0;
}
.box-hero.is-style-vertical .txt-hero.pos-center {
  display: inline-flex;
  justify-content: center;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  height: 100%;
  transform: translate(-50%, -50%);
}
.box-hero .btn-video-play {
  position: absolute;
  bottom: 0.75em;
  left: 0.75em;
}
.box-hero .btn-video-play button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
}
.box-hero .btn-video-play button .ico {
  font-size: 2em;
  color: #fff;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100vw;
  height: 5em;
  background: var(--notice-bg-userselect, var(--notice-bg-default));
}
.notice h2 {
  flex-shrink: 0;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  color: var(--wp--preset--color--c-main);
}
@media only screen and (min-width: 1561px) {
  .notice h2 {
    font-size: 0.75rem;
  }
}
@media print {
  .notice h2 {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .notice h2 {
    font-size: fszcalc(12, 12, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .notice h2 {
    font-size: fszcalc(11, 12, 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .notice h2 {
    font-size: fszcalc(11, 11, 768px, 983px);
  }
}
@media only screen and (min-width: 545px) and (max-width: 767px) {
  .notice h2 {
    font-size: fszcalc(10.24, 11, 545px, 767px);
  }
}
@media only screen and (max-width: 544px) {
  .notice h2 {
    font-size: fszcalc(10.24, 10.24, 320, 544px);
  }
}
@media only screen and (min-width: 768px) {
  .notice h2 {
    margin-right: 5em;
  }
}
.notice h2 [data-text] {
  display: block;
  font-size: 1.6666666667em;
}
.notice h2 .txt {
  display: block;
  letter-spacing: 0.06em;
}
.notice .notice-inner p {
  letter-spacing: 0.06em;
}
.notice .notice-inner p a {
  text-decoration: none;
}
.notice .notice-inner p a time {
  margin-right: 1.875em;
}
@media only screen and (max-width: 767px) {
  .notice .notice-inner p a time {
    display: block;
  }
}
.abi-decoration {
  display: flex;
  position: relative;
  width: 100%;
}
.abi-decoration .abi-img {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
.abi-decoration .abi-img.is-style-abi-mask {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.abi-decoration .abi-img:not(.is-style-abi-mask) {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.abi-decoration .abi-img img {
  display: block;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}
.abi-decoration.is-style-abi-pos-left {
  justify-content: flex-start;
}
.abi-decoration.is-style-abi-pos-center {
  justify-content: center;
}
.abi-decoration.is-style-abi-pos-right {
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .abi-decoration.is-style-abi-sp-hide {
    display: none;
  }
}
.abi-decoration.is-style-abi-zindex {
  z-index: 1;
}
.abi-decoration:not(.is-style-abi-zindex) {
  z-index: -1;
}

.abi-slider {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.abi-banner {
  align-items: flex-start !important;
  max-width: 820px !important;
}
.abi-banner .wp-block-image {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .abi-banner .wp-block-image {
    width: calc((100% - (4 - 1) * 2em) / 4);
  }
}
@media only screen and (max-width: 767px) {
  .abi-banner .wp-block-image {
    width: calc((100% - (3 - 1) * 2em) / 3);
  }
}
.abi-banner .wp-block-image a {
  display: block;
}
.abi-banner .wp-block-image a img {
  display: block;
  width: 100%;
}
.abi-banner .wp-block-image figcaption {
  display: inline-flex;
}

.abi-language {
  display: flex;
  align-items: center;
  margin-top: 0 !important;
  height: inherit;
  background: inherit;
}
@media only screen and (max-width: 767px) {
  .abi-language {
    font-size: 0.64rem;
  }
}
.abi-language dl {
  position: relative;
  margin: 0;
  background: inherit;
}
.abi-language dl dt button {
  display: inline-flex;
  align-items: center;
  padding: 0.5em;
}
@media only screen and (max-width: 767px) {
  .abi-language dl dt button {
    flex-direction: column;
    padding: 0.25em;
  }
}
.abi-language dl dt button .ico {
  color: var(--color-userselect, var(--color-default));
}
@media only screen and (min-width: 768px) {
  .abi-language dl dt button .ico {
    margin-right: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-language dl dt button .ico {
    line-height: 1;
    font-size: 1.4285714286em;
  }
}
.abi-language dl dt button .txt {
  white-space: nowrap !important;
}
@media only screen and (max-width: 767px) {
  .abi-language dl dt button .txt {
    font-size: var(--wp--preset--font-size--small);
  }
}
.abi-language dl dd {
  position: absolute;
  top: 100%;
  margin: 0;
  background: inherit;
  transition: height 0.3s ease;
  overflow: hidden;
}
.abi-language dl dd:not(.active) {
  display: none;
}
.abi-language dl dd ul li a,
.abi-language dl dd ul li .abi-link {
  display: block;
  padding: 0.5em 1.25em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.wp-block-post-template .wp-block-post .abi-post-thumbnail {
  position: relative;
  margin-bottom: 1em;
  aspect-ratio: 296/166;
}
.wp-block-post-template .wp-block-post .abi-post-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/img_dummy.png");
  background-color: var(--wp--preset--color--c-sub-1);
  background-size: cover;
  background-position: center center;
}
.wp-block-post-template .wp-block-post .abi-post-thumbnail .wp-block-post-featured-image a {
  display: block;
}
.wp-block-post-template .wp-block-post .abi-post-thumbnail .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  aspect-ratio: 296/166;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-post-template .wp-block-post:not(.has-post-thumbnail) .wp-block-columns .wp-block-column:first-child {
  aspect-ratio: 296/166;
  background: url("../images/img_dummy.png");
  background-color: var(--wp--preset--color--c-sub-1);
  background-size: cover;
  background-position: center center;
}
.wp-block-post-template .wp-block-post div:not(.abi-post-thumbnail) .wp-block-post-featured-image {
  aspect-ratio: 296/166;
}
.wp-block-post-template .wp-block-post div:not(.abi-post-thumbnail) .wp-block-post-featured-image a {
  height: 100%;
}
.wp-block-post-template .wp-block-post div:not(.abi-post-thumbnail) .wp-block-post-featured-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-post-template .wp-block-post .wp-block-post-date {
  margin-bottom: 0.5em;
}
.wp-block-post-template .wp-block-post .wp-block-post-title {
  margin-block-start: 0 !important;
  margin: 0;
  line-height: 1.5;
  font-size: var(--wp--preset--font-size--x-large);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.wp-block-post-template .wp-block-post .wp-block-post-title a {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .wp-block-media-text {
    gap: calc(var(--abi-margin-large) / 16 * 1em);
  }
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media:before {
  left: auto;
  right: -25%;
}
.wp-block-media-text .wp-block-media-text__content {
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 767px) {
  .wp-block-buttons .wp-block-button {
    width: calc(100% - var(--wp--style--block-gap, 0.5em) * 0.25);
  }
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75em;
  padding-top: calc((58 - 16 * var(--wp--custom--typography--line-height--lh-medium)) / 2 / 16 * 1em);
  padding-right: 1.375em;
  padding-bottom: calc((58 - 16 * var(--wp--custom--typography--line-height--lh-medium)) / 2 / 16 * 1em);
  padding-left: 1.375em;
  border-radius: 0;
  line-height: initial;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .wp-block-buttons .wp-block-button .wp-block-button__link {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-buttons .wp-block-button.wp-block-button__width-25, .wp-block-buttons .wp-block-button.wp-block-button__width-50, .wp-block-buttons .wp-block-button.wp-block-button__width-75, .wp-block-buttons .wp-block-button.wp-block-button__width-100 {
    width: calc(100% - var(--wp--style--block-gap, 0.5em) * 0.25);
  }
}

.wp-block-button__link::after {
  flex-shrink: 0;
}
.is-style-icon-arrow .wp-block-button__link::after {
  font-family: Ionicons;
  content: "\f3d1";
}
.is-style-icon-pin .wp-block-button__link {
  border: 1px solid var(--wp--preset--color--c-main);
}
.is-style-icon-pin .wp-block-button__link::after {
  font-family: Ionicons;
  content: "\f34a";
}
.is-style-icon-pdf .wp-block-button__link::after {
  font: var(--fa-font-solid);
  content: "\f1c1";
}

.wp-block-search__button,
.wp-block-file .wp-block-file__button {
  background-color: var(--wp--preset--color--c-main);
  border-radius: 0;
  border: none;
  color: var(--wp--preset--color--c-background);
  font-size: var(--wp--preset--font-size--medium);
  padding: calc((60 - 16 * var(--wp--custom--typography--line-height--lh-medium)) / 2 / 16 * 1em) 1.375em;
}

.wp-block-search__button:hover,
.wp-block-file .wp-block-file__button:hover,
.wp-block-button__link:hover {
  opacity: 0.9;
}

.abi-searchform {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 2px;
  border: none;
  color: var(--wp--preset--color--c-search-foreground);
  background-color: var(--wp--preset--color--c-search-background);
  box-sizing: border-box;
}
@media only screen and (min-width: 1561px) and (min-width: 1561px) {
  .abi-searchform {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1561px) and (min-width: 1200px) and (max-width: 1560px) {
  .abi-searchform {
    font-size: fszcalc(, 16, 1200px, 1560px);
  }
}
@media only screen and (min-width: 1561px) and (min-width: 984px) and (max-width: 1199px) {
  .abi-searchform {
    font-size: fszcalc(, , 984px, 1199px);
  }
}
@media only screen and (min-width: 1561px) and (min-width: 768px) and (max-width: 983px) {
  .abi-searchform {
    font-size: fszcalc(, , 768px, 983px);
  }
}
@media only screen and (min-width: 1561px) and (max-width: 767px) {
  .abi-searchform {
    font-size: fszcalc(, , 320, 767px);
  }
}
@media print {
  .abi-searchform {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) and (min-width: 1561px) {
  .abi-searchform {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) and (min-width: 1200px) and (max-width: 1560px) {
  .abi-searchform {
    font-size: fszcalc(, 14, 1200px, 1560px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) and (min-width: 984px) and (max-width: 1199px) {
  .abi-searchform {
    font-size: fszcalc(, , 984px, 1199px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) and (min-width: 768px) and (max-width: 983px) {
  .abi-searchform {
    font-size: fszcalc(, , 768px, 983px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) and (max-width: 767px) {
  .abi-searchform {
    font-size: fszcalc(, , 320, 767px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) and (min-width: 1561px) {
  .abi-searchform {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) and (min-width: 1200px) and (max-width: 1560px) {
  .abi-searchform {
    font-size: fszcalc(, 14, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) and (min-width: 984px) and (max-width: 1199px) {
  .abi-searchform {
    font-size: fszcalc(, , 984px, 1199px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) and (min-width: 768px) and (max-width: 983px) {
  .abi-searchform {
    font-size: fszcalc(, , 768px, 983px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) and (max-width: 767px) {
  .abi-searchform {
    font-size: fszcalc(, , 320, 767px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) and (min-width: 1561px) {
  .abi-searchform {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) and (min-width: 1200px) and (max-width: 1560px) {
  .abi-searchform {
    font-size: fszcalc(, 12, 1200px, 1560px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) and (min-width: 984px) and (max-width: 1199px) {
  .abi-searchform {
    font-size: fszcalc(, , 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) and (min-width: 768px) and (max-width: 983px) {
  .abi-searchform {
    font-size: fszcalc(, , 768px, 983px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) and (max-width: 767px) {
  .abi-searchform {
    font-size: fszcalc(, , 320, 767px);
  }
}
.abi-searchform-inner {
  padding: 2% 5%;
}
.abi-searchform .abi-tabs {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.abi-searchform .abi-tabs-uitk {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-tabs-uitk {
    width: 230px;
  }
}
.abi-searchform .abi-tabs-uitk-name {
  margin-bottom: 1em;
  text-align: center;
  font-family: var(--font-en);
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-tabs-uitk-name {
    margin-bottom: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-tabs-uitk-list {
    display: flex;
    padding: 0 2.5%;
  }
  .abi-searchform .abi-tabs-uitk-list:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0e122d;
  }
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-tabs-uitk-item:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-tabs-uitk-item {
    width: 50%;
  }
}
.abi-searchform .abi-tabs-uitk-item a {
  display: block;
  position: relative;
  color: #0e122d;
  background-color: transparent;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  outline: none;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-tabs-uitk-item a {
    padding: 0.5em 1em;
    border: 1px solid #0e122d;
  }
  .abi-searchform .abi-tabs-uitk-item a:hover {
    color: #ffffff;
    background-color: #0e122d;
  }
  .abi-searchform .abi-tabs-uitk-item a.is-active {
    color: #ffffff;
    background-color: #0e122d;
  }
  .abi-searchform .abi-tabs-uitk-item a.is-active:after {
    opacity: 1;
  }
  .abi-searchform .abi-tabs-uitk-item a:after {
    opacity: 0;
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #0e122d;
    border-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-tabs-uitk-item a {
    padding: calc(1em + 4px) 1em 1em 1em;
  }
  .abi-searchform .abi-tabs-uitk-item a.is-active {
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #0e122d;
    border-right: 1px solid #0e122d;
  }
  .abi-searchform .abi-tabs-uitk-item a.is-active:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #0e122d;
  }
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-tabs-content {
    width: 100%;
    margin-left: 4%;
  }
}
.abi-searchform .abi-tabs-content-item {
  display: none;
}
.abi-searchform .abi-tabs-content-item.is-active {
  display: block;
}
.abi-searchform .abi-search {
  position: relative;
  z-index: 1;
}
.abi-searchform .abi-search label {
  display: block;
  position: relative;
  line-height: 1;
}
@media only screen and (min-width: 1561px) {
  .abi-searchform .abi-search label {
    font-size: 1rem;
  }
}
@media print {
  .abi-searchform .abi-search label {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .abi-searchform .abi-search label {
    font-size: fszcalc(, 16, 1200px, 1560px);
  }
}
@media only screen and (min-width: 984px) and (max-width: 1199px) {
  .abi-searchform .abi-search label {
    font-size: fszcalc(, , 984px, 1199px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .abi-searchform .abi-search label {
    font-size: fszcalc(, , 768px, 983px);
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search label {
    font-size: fszcalc(, , 320, 767px);
  }
}
.abi-searchform .abi-search input,
.abi-searchform .abi-search select {
  width: 100%;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
}
.abi-searchform .abi-search input::-ms-expand,
.abi-searchform .abi-search select::-ms-expand {
  display: none;
}
.abi-searchform .abi-search input option,
.abi-searchform .abi-search select option {
  padding: 0.1em 0.5em;
  color: var(--wp--preset--color--c-foreground);
  background-color: var(--wp--preset--color--c-background);
  box-sizing: border-box;
}
.abi-searchform .abi-search .box_day {
  width: 100%;
}
.abi-searchform .abi-search .box_day label {
  padding: 2.5px 5px;
  border-bottom: 1px solid var(--wp--preset--color--c-search-foreground);
}
.abi-searchform .abi-search .box_day label:after {
  content: "\f3d0";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "ionicons";
}
.abi-searchform .abi-search .box_day input[type=text][disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.abi-searchform .abi-search .box_day input {
  margin-block-start: 1em;
  margin-block-end: 1em;
  font-size: var(--wp--preset--font-size--medium);
}
.abi-searchform .abi-search .box_und {
  margin-left: 20px;
}
.abi-searchform .abi-search .box_und input[type=radio],
.abi-searchform .abi-search .box_und input[type=checkbox] {
  display: none;
  width: 13px;
  height: 13px;
  background: transparent;
  border-radius: 3px;
  border: 0;
  border: solid 1px var(--wp--preset--color--c-search-foreground);
  vertical-align: middle;
}
.abi-searchform .abi-search .box_und input[type=radio]:checked + .checkbox_parts:after,
.abi-searchform .abi-search .box_und input[type=checkbox]:checked + .checkbox_parts:after {
  content: "";
  display: block;
  position: absolute;
  transform: rotate(40deg);
  border-bottom: 2px solid var(--wp--preset--color--c-search-foreground);
  border-right: 2px solid var(--wp--preset--color--c-search-foreground);
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search .box_und input[type=radio]:checked + .checkbox_parts:after,
  .abi-searchform .abi-search .box_und input[type=checkbox]:checked + .checkbox_parts:after {
    top: 4px;
    left: 8px;
    width: 3px;
    height: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search .box_und input[type=radio]:checked + .checkbox_parts:after,
  .abi-searchform .abi-search .box_und input[type=checkbox]:checked + .checkbox_parts:after {
    top: 2.5px;
    left: 6px;
    width: 3px;
    height: 7px;
  }
}
.abi-searchform .abi-search .box_und .checkbox_parts {
  display: block;
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}
.abi-searchform .abi-search .box_und .checkbox_parts:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--wp--preset--color--c-search-foreground);
  box-sizing: border-box;
}
.abi-searchform .abi-search .box_sta label,
.abi-searchform .abi-search .box_roo label,
.abi-searchform .abi-search .box_per label {
  padding: 2.5px 5px;
  border-bottom: 1px solid var(--wp--preset--color--c-search-foreground);
}
.abi-searchform .abi-search .box_sta label:after,
.abi-searchform .abi-search .box_roo label:after,
.abi-searchform .abi-search .box_per label:after {
  content: "\f3d0";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "ionicons";
}
.abi-searchform .abi-search .box_sta label select,
.abi-searchform .abi-search .box_roo label select,
.abi-searchform .abi-search .box_per label select {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.abi-searchform .abi-search .box_sta select[disabled],
.abi-searchform .abi-search .box_roo select[disabled],
.abi-searchform .abi-search .box_per select[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}
.abi-searchform .abi-search-defultbox {
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-defultbox {
    padding: 8% 5%;
  }
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-panel {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.abi-searchform .abi-search-panel-item {
  flex-grow: 1;
  position: relative;
  box-sizing: border-box;
}
.abi-searchform .abi-search-panel-item:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-panel-item:not(:first-of-type) {
    margin-left: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-panel-item:not(:first-of-type) {
    margin-top: 20px;
  }
}
.abi-searchform .abi-search-panel-item .heading {
  margin-bottom: 0.5em;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-panel-btn {
    margin-left: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-panel-btn {
    margin-top: 30px;
  }
}
.abi-searchform .abi-search-panel-btn .btn_submit {
  margin: 0;
  padding: 1em 3em;
  color: var(--wp--preset--color--c-foreground);
  background-color: var(--wp--preset--color--c-sub-1);
  text-align: center;
  cursor: pointer;
}
.abi-searchform .abi-search-panel-btn .btn_list {
  margin-top: 1em;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-panel-btn .btn_list {
    display: none;
  }
}
.abi-searchform .abi-search-panel-btn .btn_list a {
  display: block;
  position: relative;
  width: 100%;
  padding: 1em 3em;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}
.abi-searchform .abi-search-panel-btn .btn_list a:before {
  content: "\f3d1";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-family: "ionicons";
}
.abi-searchform .abi-search-opt {
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-opt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-opt {
    width: 100%;
    padding: 5%;
  }
}
.abi-searchform .abi-search-opt-list {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-opt-list {
    order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-opt-list {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-opt-list li:not(:first-of-type) {
    margin-left: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-opt-list li {
    width: 50%;
    margin-bottom: 0.5em;
  }
}
.abi-searchform .abi-search-opt-list li a {
  display: block;
  position: relative;
  padding-left: 1em;
  color: var(--wp--preset--color--c-search-foreground);
  text-decoration: none;
}
.abi-searchform .abi-search-opt-list li a:before {
  content: "\f3d1";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "ionicons";
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-opt-list li a {
    width: 100%;
  }
}
.abi-searchform .abi-search-opt-list li a:hover {
  opacity: 0.8;
}
.abi-searchform .abi-search-opt-tel {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .abi-searchform .abi-search-opt-tel {
    margin-right: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .abi-searchform .abi-search-opt-tel {
    justify-content: center;
  }
}
.abi-searchform .abi-search-opt-tel-num {
  position: relative;
  vertical-align: middle;
  padding-left: 1em;
  margin-left: 1em;
  font-size: 20px;
}
.abi-searchform .abi-search-opt-tel-num:before {
  content: "\f4b9";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "ionicons";
}
.abi-searchform .abi-search-opt-tel-num a {
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .abi-intro .wp-block-heading,
  .abi-intro p {
    -moz-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-feature-settings: normal;
    text-orientation: upright;
    margin: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .abi-intro .wp-block-heading {
    order: 1;
  }
}
@media only screen and (min-width: 768px) {
  .abi-intro.wp-block-cover .wp-block-cover__inner-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: calc(var(--abi-margin-medium) / 16 * 1rem);
  }
}

/* contact.scss */
/* ========================================

__contact

======================================== */
.contact_introduction {
  width: 84%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.contact_introduction h2 {
  letter-spacing: 0.04em;
  width: 36%;
}

.contact_introduction .txt {
  line-height: 2.3;
  width: 60%;
}

.contact_form {
  padding: 96px 0 190px;
  background: #f5f5f5;
}

.contact_form ul {
  width: 84%;
  max-width: 830px;
  margin: 0 auto;
}

.contact_form ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact_form ul li:not(:last-of-type) {
  padding-bottom: 20px;
}

.contact_form ul li.req p.label::after {
  color: #e60012;
  content: "*";
  margin-left: 4px;
}

.contact_form ul li .error {
  color: #e60012;
}

.contact_form ul li p.label {
  width: 200px;
}

.contact_form ul li p.input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 200px);
}

.contact_form ul li input[type=text],
.contact_form ul li input[type=tel],
.contact_form ul li input[type=email] {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: none;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
  box-sizing: border-box;
}

.contact_form ul li input[type=text]:focus,
.contact_form ul li input[type=tel]:focus,
.contact_form ul li input[type=email]:focus,
.contact_form ul li input[type=submit]:focus,
.contact_form ul li textarea {
  outline: none;
}

.contact_form ul li textarea {
  width: 100%;
  height: 400px;
  padding: 20px;
  border: none;
  font-size: inherit;
  color: #333;
  font-weight: inherit;
  font-family: inherit;
  box-sizing: border-box;
}

.contact_form ul li .radio {
  font-size: 1.4rem;
  position: relative;
  text-indent: -30px;
  padding-left: 30px;
}

.contact_form ul li input[type=radio] {
  border: none;
  outline: none;
  box-shadow: none;
  display: none;
}

.contact_form ul li input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  background: #fff;
  content: "";
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 2px;
  margin-right: 10px;
}

.contact_form ul li input[type=radio] + label::after {
  width: 5px;
  height: 8px;
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 6px;
  opacity: 0;
  border-bottom: 3px solid #002c54;
  border-right: 3px solid #002c54;
  transform: rotate(45deg);
}

.contact_form ul li input[type=radio]:checked + label::after {
  opacity: 1;
}

.contact_form ul li input[type=submit] {
  color: #fff;
  width: 320px;
  height: 60px;
  background: var(--wp--preset--color--c-main);
  border: none;
  transition: all 0.2s;
}

.contact_form ul li input[type=submit].lock {
  color: #333;
  background: #ddd;
}

.contact_form ul li input[type=submit].unlock {
  cursor: pointer;
}

.contact_form ul li input[type=submit].unlock:hover {
  background: var(--wp--preset--color--c-main);
}

button[type=submit] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  max-width: 160px;
  height: 50px;
  margin-left: 10px;
  padding: 0.5em 1em;
  background-color: transparent;
  border-bottom: 2px solid #010101;
  font-weight: normal;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  button[type=submit] {
    width: 100%;
    max-width: 180px;
  }
}

@media screen and (max-width: 800px) {
  .contact_introduction {
    width: 84%;
    max-width: 1060px;
    padding: 46px 0;
    display: block;
  }
  .contact_introduction h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .contact_introduction .txt {
    line-height: 2;
    width: 100%;
  }
  .contact_form {
    padding: 40px 0 110px;
  }
  .contact_form ul li {
    display: block;
    margin-bottom: 40px;
  }
  .contact_form ul li:not(:last-of-type) {
    padding-bottom: 0;
  }
  .contact_form ul li p.label {
    width: 100%;
    margin-bottom: 10px;
    padding-top: 0;
  }
  .contact_form ul li p.input {
    width: 100%;
  }
  .contact_form ul li input[type=text],
  .contact_form ul li input[type=tel],
  .contact_form ul li input[type=email] {
    height: 40px;
    padding: 0 10px;
  }
  .contact_form ul li textarea {
    height: 160px;
    padding: 10px;
    margin-bottom: 0;
  }
  .check_box {
    margin: 30px 0 60px;
  }
  .contact_form ul li input[type=checkbox] + label::before {
    margin-bottom: 0;
  }
  .contact_form ul li input[type=submit] {
    width: 100%;
  }
}
.contact_thanks {
  text-align: center;
  width: 84%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 94px 0 162px;
}

.contact_thanks h2 {
  color: #002c54;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 38px;
}

.contact_thanks .txt {
  font-size: 1.4rem;
  line-height: 2;
}

.contact_thanks .btn {
  margin-top: 56px;
}

@media screen and (max-width: 800px) {
  .contact_thanks {
    text-align: left;
    padding: 60px 0 84px;
  }
  .contact_thanks h2 {
    text-align: center;
    font-size: 1.78rem;
    margin-bottom: 30px;
  }
  .contact_thanks .txt {
    font-size: 1.2rem;
  }
  .contact_thanks .btn {
    margin-top: 34px;
  }
  .contact_thanks .btn a {
    width: 100%;
  }
}

/* WPオリジナルのカラムブロックのブレイクポイントを設定 */
@media (max-width: 767px) {
    /* 767px以下でカラムが縦に積み重なるように設定 */
    .wp-block-columns {
        flex-wrap: wrap !important;
    }
    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-basis: 100% !important;
    }
}

@media (min-width: 768px) {
    /* 768px以上でカラムが横並びになるように設定 */
    .wp-block-columns {
        flex-wrap: nowrap !important;
    }
    .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
        flex-basis: 0 !important;
        flex-grow: 1 !important;
    }
}