/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

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

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block;
}

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px;
}

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * Add the correct display in IE.
     */
main {
  display: block;
}

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

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit;
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
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.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000;
}

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

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block;
}

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none;
}

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto;
}

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block;
}

/**
     * Add the correct display in IE.
     */
template {
  display: none;
}

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none;
}

* {
  position: relative;
  box-sizing: border-box;
}

* html .arw_ary {
  min-height: 1%;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  background-color: #fff;
  min-height: 100%;
  color: #282828;
  font-family: "Agency", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

#app {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: auto;
}

/*
  file grid.scss
*/
.clearfix {
  display: block;
  min-height: 1%;
}

.clearfix::after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  font-size: 0;
  content: ' ';
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container:after {
  content: " ";
  display: block;
  clear: both;
}

.row {
  display: block;
  min-height: 1%;
  clear: both;
  width: 100%;
}

.row::after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  font-size: 0;
  content: ' ';
}

.col-1 {
  width: 5.89971%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-2 {
  width: 14.45428%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-3 {
  width: 23.00885%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-4 {
  width: 31.56342%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-5 {
  width: 40.11799%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-6 {
  width: 48.67257%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-7 {
  width: 57.22714%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-8 {
  width: 65.78171%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-9 {
  width: 74.33628%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-10 {
  width: 82.89086%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-11 {
  width: 91.44543%;
  float: left;
  margin-right: 2.65487%;
  min-height: 1px;
}

.col-12 {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  min-height: 1px;
}

[class*='col-']:last-child {
  margin-right: 0;
}

.arw_ar0 {
  margin-left: 5.89971%;
}

.arw_ar2 {
  margin-left: 14.45428%;
}

.arw_ar4 {
  margin-left: 23.00885%;
}

.arw_ar6 {
  margin-left: 31.56342%;
}

.arw_ar8 {
  margin-left: 40.11799%;
}

.arw_asa {
  margin-left: 48.67257%;
}

.arw_asc {
  margin-left: 57.22714%;
}

.arw_asf {
  margin-left: 65.78171%;
}

.arw_ash {
  margin-left: 74.33628%;
}

.arw_asj {
  margin-left: 82.89086%;
}

.arw_asl {
  margin-left: 91.44543%;
}

.arw_asn {
  margin-left: 100%;
}

.no-gutter {
  padding: 0;
}

@media screen and (max-width: 1280px) {
  .container {
    max-width: 96%;
  }
  .container .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .container .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}

@media screen and (max-width: 480px) {
  [class*='col-'] {
    width: 100%;
  }
}

a {
  transition: color .2s ease;
  text-decoration: none;
  color: #0ac8b4;
}

a.link {
  font-size: 14px;
  font-weight: 400;
}

a.link:visited {
  color: #089788;
}

a.link:hover {
  color: #12f3db;
}

p {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin: 13px 0;
}

span {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

label {
  color: rgba(59, 63, 59, 0.75);
  font-size: 14px;
  font-weight: 500;
}

@font-face {
  font-family: 'Agency';
  src: url(/fonts/33d2e5e40407fed5b306a362ea7b2602.woff2) format("woff2"), url(/fonts/91020af361e068c80216d5ab9d266331.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url(/fonts/4c17ce89a5165d74c1025b6053863e86.woff2) format("woff2"), url(/fonts/e968a9a169939d900a180598a905a0a4.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url(/fonts/130ae83423cb366cc1a64d6303baaf33.woff2) format("woff2"), url(/fonts/3e719a18e6f8195584899481320d9573.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Light';
  src: url(/fonts/c3a49a3c68f294fc64eed6dd74a6dd3f.woff2) format("woff2"), url(/fonts/0a599f168a5f9438c3f01479cf52f54b.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url(/fonts/433c9fbcf12a04f6ba7af773d7a01a51.woff2) format("woff2"), url(/fonts/42a3b6ddff26b92c9b18628efd6b7d01.ttf) format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Inter';
  src: url(/fonts/d1838d8d57339b9c5acbbebefbd05a02.woff2) format("woff2"), url(/fonts/dfd436d404b3be9f129e817cecddb504.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
}

.fa-solid,
.fa-regular,
.fa-brands,
.fa-classic,
.fas,
.far,
.fab,
.fal,
.fat,
.fad,
.fadr,
.fadl,
.fadt,
.fass,
.fasr,
.fasl,
.fast,
.fasds,
.fasdr,
.fasdl,
.fasdt,
.faslr,
.faslpr,
.fawsb,
.fatl,
.fans,
.fands,
.faes,
.fajr,
.fajfr,
.fajdr,
.facr,
.fausb,
.faudsb,
.faufsb,
.fa-solid,
.fa-semibold,
.fa-regular,
.fa-light,
.fa-thin,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fa-chisel,
.fa-etch,
.fa-jelly,
.fa-jelly-duo,
.fa-jelly-fill,
.fa-notdog,
.fa-notdog-duo,
.fa-slab,
.fa-slab-press,
.fa-thumbprint,
.fa-utility,
.fa-utility-duo,
.fa-utility-fill,
.fa-whiteboard,
.fa {
  --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Pro"));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: var(--fa-display, inline-block);
  font-family: var(--_fa-family);
  font-feature-settings: normal;
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  font-weight: var(--fa-style, 900);
  line-height: 1;
  text-align: center;
  text-rendering: auto;
  width: var(--fa-width, 1.25em);
}

:is(.fas,
.fass,
.far,
.fasr,
.fal,
.fasl,
.fat,
.fast,
.fad,
.fadr,
.fadl,
.fadt,
.fasds,
.fasdr,
.fasdl,
.fasdt,
.fab,
.faslr,
.faslpr,
.fawsb,
.fatl,
.fans,
.fands,
.faes,
.fajr,
.fajfr,
.fajdr,
.facr,
.fausb,
.faudsb,
.faufsb,
.fa-solid,
.fa-semibold,
.fa-regular,
.fa-light,
.fa-thin,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fa-chisel,
.fa-etch,
.fa-jelly,
.fa-jelly-duo,
.fa-jelly-fill,
.fa-notdog,
.fa-notdog-duo,
.fa-slab,
.fa-slab-press,
.fa-thumbprint,
.fa-utility,
.fa-utility-duo,
.fa-utility-fill,
.fa-whiteboard,
.fa)::before {
  content: var(--fa)/"";
}

@supports not (content: ""/"") {
  :is(.fas,
  .fass,
  .far,
  .fasr,
  .fal,
  .fasl,
  .fat,
  .fast,
  .fad,
  .fadr,
  .fadl,
  .fadt,
  .fasds,
  .fasdr,
  .fasdl,
  .fasdt,
  .fab,
  .faslr,
  .faslpr,
  .fawsb,
  .fatl,
  .fans,
  .fands,
  .faes,
  .fajr,
  .fajfr,
  .fajdr,
  .facr,
  .fausb,
  .faudsb,
  .faufsb,
  .fa-solid,
  .fa-semibold,
  .fa-regular,
  .fa-light,
  .fa-thin,
  .fa-brands,
  .fa-classic,
  .fa-duotone,
  .fa-sharp,
  .fa-sharp-duotone,
  .fa-chisel,
  .fa-etch,
  .fa-jelly,
  .fa-jelly-duo,
  .fa-jelly-fill,
  .fa-notdog,
  .fa-notdog-duo,
  .fa-slab,
  .fa-slab-press,
  .fa-thumbprint,
  .fa-utility,
  .fa-utility-duo,
  .fa-utility-fill,
  .fa-whiteboard,
  .fa)::before {
    content: var(--fa);
  }
}
:is(.fad,
.fa-duotone,
.fadr,
.fadl,
.fadt,
.fasds,
.fa-sharp-duotone,
.fasdr,
.fasdl,
.fasdt,
.fatl,
.fa-thumbprint,
.fands,
.fa-notdog-duo,
.fajdr,
.fa-jelly-duo,
.faudsb,
.fa-utility-duo)::after {
  content: var(--fa);
  font-feature-settings: "ss01";
}

@supports not (content: ""/"") {
  :is(.fad,
  .fa-duotone,
  .fadr,
  .fadl,
  .fadt,
  .fasds,
  .fa-sharp-duotone,
  .fasdr,
  .fasdl,
  .fasdt,
  .fatl,
  .fa-thumbprint,
  .fands,
  .fa-notdog-duo,
  .fajdr,
  .fa-jelly-duo,
  .faudsb,
  .fa-utility-duo)::after {
    content: var(--fa);
  }
}
.fa-1x {
  font-size: 1em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-0 { --fa: "0"; }
.fa-00 { --fa: "\E467"; }
.fa-1 { --fa: "1"; }
.fa-100 { --fa: "\E41C"; }
.fa-2 { --fa: "2"; }
.fa-3 { --fa: "3"; }
.fa-360-degrees { --fa: "\E2DC"; }
.fa-4 { --fa: "4"; }
.fa-5 { --fa: "5"; }
.fa-6 { --fa: "6"; }
.fa-7 { --fa: "7"; }
.fa-8 { --fa: "8"; }
.fa-9 { --fa: "9"; }
.fa-a { --fa: "A"; }
.fa-abacus { --fa: "\F640"; }
.fa-accent-grave { --fa: "`"; }
.fa-acorn { --fa: "\F6AE"; }
.fa-ad { --fa: "\F641"; }
.fa-add { --fa: "+"; }
.fa-address-book { --fa: "\F2B9"; }
.fa-address-card { --fa: "\F2BB"; }
.fa-adjust { --fa: "\F042"; }
.fa-aeropress { --fa: "\E82B"; }
.fa-air-conditioner { --fa: "\F8F4"; }
.fa-air-freshener { --fa: "\F5D0"; }
.fa-airplay { --fa: "\E089"; }
.fa-airplay-audio { --fa: "\E77B"; }
.fa-alarm-clock { --fa: "\F34E"; }
.fa-alarm-exclamation { --fa: "\F843"; }
.fa-alarm-minus { --fa: "\E803"; }
.fa-alarm-plus { --fa: "\F844"; }
.fa-alarm-snooze { --fa: "\F845"; }
.fa-album { --fa: "\F89F"; }
.fa-album-circle-plus { --fa: "\E48C"; }
.fa-album-circle-user { --fa: "\E48D"; }
.fa-album-collection { --fa: "\F8A0"; }
.fa-album-collection-circle-plus { --fa: "\E48E"; }
.fa-album-collection-circle-user { --fa: "\E48F"; }
.fa-alicorn { --fa: "\F6B0"; }
.fa-alien { --fa: "\F8F5"; }
.fa-alien-8bit { --fa: "\F8F6"; }
.fa-alien-monster { --fa: "\F8F6"; }
.fa-align-center { --fa: "\F037"; }
.fa-align-justify { --fa: "\F039"; }
.fa-align-left { --fa: "\F036"; }
.fa-align-right { --fa: "\F038"; }
.fa-align-slash { --fa: "\F846"; }
.fa-allergies { --fa: "\F461"; }
.fa-almost-equal-to { --fa: "\E818"; }
.fa-alt { --fa: "\E08A"; }
.fa-ambulance { --fa: "\F0F9"; }
.fa-american-sign-language-interpreting { --fa: "\F2A3"; }
.fa-amp-guitar { --fa: "\F8A1"; }
.fa-ampersand { --fa: "&"; }
.fa-analytics { --fa: "\F643"; }
.fa-anchor { --fa: "\F13D"; }
.fa-anchor-circle-check { --fa: "\E4AA"; }
.fa-anchor-circle-exclamation { --fa: "\E4AB"; }
.fa-anchor-circle-xmark { --fa: "\E4AC"; }
.fa-anchor-lock { --fa: "\E4AD"; }
.fa-angel { --fa: "\F779"; }
.fa-angle { --fa: "\E08C"; }
.fa-angle-90 { --fa: "\E08D"; }
.fa-angle-double-down { --fa: "\F103"; }
.fa-angle-double-left { --fa: "\F100"; }
.fa-angle-double-right { --fa: "\F101"; }
.fa-angle-double-up { --fa: "\F102"; }
.fa-angle-down { --fa: "\F107"; }
.fa-angle-left { --fa: "\F104"; }
.fa-angle-right { --fa: "\F105"; }
.fa-angle-up { --fa: "\F106"; }
.fa-angles-down { --fa: "\F103"; }
.fa-angles-left { --fa: "\F100"; }
.fa-angles-right { --fa: "\F101"; }
.fa-angles-up { --fa: "\F102"; }
.fa-angles-up-down { --fa: "\E60D"; }
.fa-angry { --fa: "\F556"; }
.fa-ankh { --fa: "\F644"; }
.fa-ant { --fa: "\E680"; }
.fa-apartment { --fa: "\E468"; }
.fa-aperture { --fa: "\E2DF"; }
.fa-apostrophe { --fa: "'"; }
.fa-apple-alt { --fa: "\F5D1"; }
.fa-apple-core { --fa: "\E08F"; }
.fa-apple-crate { --fa: "\F6B1"; }
.fa-apple-whole { --fa: "\F5D1"; }
.fa-archive { --fa: "\F187"; }
.fa-archway { --fa: "\F557"; }
.fa-area-chart { --fa: "\F1FE"; }
.fa-arrow-alt-circle-down { --fa: "\F358"; }
.fa-arrow-alt-circle-left { --fa: "\F359"; }
.fa-arrow-alt-circle-right { --fa: "\F35A"; }
.fa-arrow-alt-circle-up { --fa: "\F35B"; }
.fa-arrow-alt-down { --fa: "\F354"; }
.fa-arrow-alt-from-bottom { --fa: "\F346"; }
.fa-arrow-alt-from-left { --fa: "\F347"; }
.fa-arrow-alt-from-right { --fa: "\F348"; }
.fa-arrow-alt-from-top { --fa: "\F349"; }
.fa-arrow-alt-left { --fa: "\F355"; }
.fa-arrow-alt-right { --fa: "\F356"; }
.fa-arrow-alt-square-down { --fa: "\F350"; }
.fa-arrow-alt-square-left { --fa: "\F351"; }
.fa-arrow-alt-square-right { --fa: "\F352"; }
.fa-arrow-alt-square-up { --fa: "\F353"; }
.fa-arrow-alt-to-bottom { --fa: "\F34A"; }
.fa-arrow-alt-to-left { --fa: "\F34B"; }
.fa-arrow-alt-to-right { --fa: "\F34C"; }
.fa-arrow-alt-to-top { --fa: "\F34D"; }
.fa-arrow-alt-up { --fa: "\F357"; }
.fa-arrow-circle-down { --fa: "\F0AB"; }
.fa-arrow-circle-left { --fa: "\F0A8"; }
.fa-arrow-circle-right { --fa: "\F0A9"; }
.fa-arrow-circle-up { --fa: "\F0AA"; }
.fa-arrow-down { --fa: "\F063"; }
.fa-arrow-down-1-9 { --fa: "\F162"; }
.fa-arrow-down-9-1 { --fa: "\F886"; }
.fa-arrow-down-a-z { --fa: "\F15D"; }
.fa-arrow-down-arrow-up { --fa: "\F883"; }
.fa-arrow-down-big-small { --fa: "\F88C"; }
.fa-arrow-down-from-arc { --fa: "\E614"; }
.fa-arrow-down-from-bracket { --fa: "\E667"; }
.fa-arrow-down-from-dotted-line { --fa: "\E090"; }
.fa-arrow-down-from-line { --fa: "\F345"; }
.fa-arrow-down-left { --fa: "\E091"; }
.fa-arrow-down-left-and-arrow-up-right-to-center { --fa: "\E092"; }
.fa-arrow-down-long { --fa: "\F175"; }
.fa-arrow-down-long-to-line { --fa: "\E6B7"; }
.fa-arrow-down-right { --fa: "\E093"; }
.fa-arrow-down-short-wide { --fa: "\F884"; }
.fa-arrow-down-small-big { --fa: "\F88D"; }
.fa-arrow-down-square-triangle { --fa: "\F889"; }
.fa-arrow-down-to-arc { --fa: "\E4AE"; }
.fa-arrow-down-to-bracket { --fa: "\E094"; }
.fa-arrow-down-to-dotted-line { --fa: "\E095"; }
.fa-arrow-down-to-line { --fa: "\F33D"; }
.fa-arrow-down-to-square { --fa: "\E096"; }
.fa-arrow-down-triangle-square { --fa: "\F888"; }
.fa-arrow-down-up-across-line { --fa: "\E4AF"; }
.fa-arrow-down-up-lock { --fa: "\E4B0"; }
.fa-arrow-down-wide-short { --fa: "\F160"; }
.fa-arrow-down-z-a { --fa: "\F881"; }
.fa-arrow-from-bottom { --fa: "\F342"; }
.fa-arrow-from-left { --fa: "\F343"; }
.fa-arrow-from-right { --fa: "\F344"; }
.fa-arrow-from-top { --fa: "\F345"; }
.fa-arrow-left { --fa: "\F060"; }
.fa-arrow-left-arrow-right { --fa: "\E6B8"; }
.fa-arrow-left-from-arc { --fa: "\E615"; }
.fa-arrow-left-from-bracket { --fa: "\E668"; }
.fa-arrow-left-from-dotted-line { --fa: "\E6B9"; }
.fa-arrow-left-from-line { --fa: "\F344"; }
.fa-arrow-left-long { --fa: "\F177"; }
.fa-arrow-left-long-to-line { --fa: "\E3D4"; }
.fa-arrow-left-rotate { --fa: "\F0E2"; }
.fa-arrow-left-to-arc { --fa: "\E616"; }
.fa-arrow-left-to-bracket { --fa: "\E669"; }
.fa-arrow-left-to-dotted-line { --fa: "\E6BA"; }
.fa-arrow-left-to-line { --fa: "\F33E"; }
.fa-arrow-pointer { --fa: "\F245"; }
.fa-arrow-progress { --fa: "\E5DF"; }
.fa-arrow-right { --fa: "\F061"; }
.fa-arrow-right-arrow-left { --fa: "\F0EC"; }
.fa-arrow-right-from-arc { --fa: "\E4B1"; }
.fa-arrow-right-from-bracket { --fa: "\F08B"; }
.fa-arrow-right-from-dotted-line { --fa: "\E6BB"; }
.fa-arrow-right-from-file { --fa: "\F56E"; }
.fa-arrow-right-from-line { --fa: "\F343"; }
.fa-arrow-right-long { --fa: "\F178"; }
.fa-arrow-right-long-to-line { --fa: "\E3D5"; }
.fa-arrow-right-rotate { --fa: "\F01E"; }
.fa-arrow-right-to-arc { --fa: "\E4B2"; }
.fa-arrow-right-to-bracket { --fa: "\F090"; }
.fa-arrow-right-to-city { --fa: "\E4B3"; }
.fa-arrow-right-to-dotted-line { --fa: "\E6BC"; }
.fa-arrow-right-to-file { --fa: "\F56F"; }
.fa-arrow-right-to-line { --fa: "\F340"; }
.fa-arrow-rotate-back { --fa: "\F0E2"; }
.fa-arrow-rotate-backward { --fa: "\F0E2"; }
.fa-arrow-rotate-forward { --fa: "\F01E"; }
.fa-arrow-rotate-left { --fa: "\F0E2"; }
.fa-arrow-rotate-left-10 { --fa: "\E836"; }
.fa-arrow-rotate-right { --fa: "\F01E"; }
.fa-arrow-rotate-right-10 { --fa: "\E837"; }
.fa-arrow-square-down { --fa: "\F339"; }
.fa-arrow-square-left { --fa: "\F33A"; }
.fa-arrow-square-right { --fa: "\F33B"; }
.fa-arrow-square-up { --fa: "\F33C"; }
.fa-arrow-to-bottom { --fa: "\F33D"; }
.fa-arrow-to-left { --fa: "\F33E"; }
.fa-arrow-to-right { --fa: "\F340"; }
.fa-arrow-to-top { --fa: "\F341"; }
.fa-arrow-trend-down { --fa: "\E097"; }
.fa-arrow-trend-up { --fa: "\E098"; }
.fa-arrow-turn-down { --fa: "\F149"; }
.fa-arrow-turn-down-left { --fa: "\E2E1"; }
.fa-arrow-turn-down-right { --fa: "\E3D6"; }
.fa-arrow-turn-left { --fa: "\E632"; }
.fa-arrow-turn-left-down { --fa: "\E633"; }
.fa-arrow-turn-left-up { --fa: "\E634"; }
.fa-arrow-turn-right { --fa: "\E635"; }
.fa-arrow-turn-up { --fa: "\F148"; }
.fa-arrow-u-turn-down-left { --fa: "\E7E7"; }
.fa-arrow-u-turn-down-right { --fa: "\E7E8"; }
.fa-arrow-u-turn-left-down { --fa: "\E7E9"; }
.fa-arrow-u-turn-left-up { --fa: "\E7EA"; }
.fa-arrow-u-turn-right-down { --fa: "\E7EB"; }
.fa-arrow-u-turn-right-up { --fa: "\E7EC"; }
.fa-arrow-u-turn-up-left { --fa: "\E7ED"; }
.fa-arrow-u-turn-up-right { --fa: "\E7EE"; }
.fa-arrow-up { --fa: "\F062"; }
.fa-arrow-up-1-9 { --fa: "\F163"; }
.fa-arrow-up-9-1 { --fa: "\F887"; }
.fa-arrow-up-a-z { --fa: "\F15E"; }
.fa-arrow-up-arrow-down { --fa: "\E099"; }
.fa-arrow-up-big-small { --fa: "\F88E"; }
.fa-arrow-up-from-arc { --fa: "\E4B4"; }
.fa-arrow-up-from-bracket { --fa: "\E09A"; }
.fa-arrow-up-from-dotted-line { --fa: "\E09B"; }
.fa-arrow-up-from-ground-water { --fa: "\E4B5"; }
.fa-arrow-up-from-line { --fa: "\F342"; }
.fa-arrow-up-from-square { --fa: "\E09C"; }
.fa-arrow-up-from-water-pump { --fa: "\E4B6"; }
.fa-arrow-up-left { --fa: "\E09D"; }
.fa-arrow-up-left-from-circle { --fa: "\E09E"; }
.fa-arrow-up-long { --fa: "\F176"; }
.fa-arrow-up-long-to-line { --fa: "\E6BD"; }
.fa-arrow-up-right { --fa: "\E09F"; }
.fa-arrow-up-right-and-arrow-down-left-from-center { --fa: "\E0A0"; }
.fa-arrow-up-right-dots { --fa: "\E4B7"; }
.fa-arrow-up-right-from-square { --fa: "\F08E"; }
.fa-arrow-up-short-wide { --fa: "\F885"; }
.fa-arrow-up-small-big { --fa: "\F88F"; }
.fa-arrow-up-square-triangle { --fa: "\F88B"; }
.fa-arrow-up-to-arc { --fa: "\E617"; }
.fa-arrow-up-to-bracket { --fa: "\E66A"; }
.fa-arrow-up-to-dotted-line { --fa: "\E0A1"; }
.fa-arrow-up-to-line { --fa: "\F341"; }
.fa-arrow-up-triangle-square { --fa: "\F88A"; }
.fa-arrow-up-wide-short { --fa: "\F161"; }
.fa-arrow-up-z-a { --fa: "\F882"; }
.fa-arrows { --fa: "\F047"; }
.fa-arrows-alt { --fa: "\F0B2"; }
.fa-arrows-alt-h { --fa: "\F337"; }
.fa-arrows-alt-v { --fa: "\F338"; }
.fa-arrows-cross { --fa: "\E0A2"; }
.fa-arrows-down-to-line { --fa: "\E4B8"; }
.fa-arrows-down-to-people { --fa: "\E4B9"; }
.fa-arrows-from-dotted-line { --fa: "\E0A3"; }
.fa-arrows-from-line { --fa: "\E0A4"; }
.fa-arrows-h { --fa: "\F07E"; }
.fa-arrows-left-right { --fa: "\F07E"; }
.fa-arrows-left-right-to-line { --fa: "\E4BA"; }
.fa-arrows-maximize { --fa: "\F31D"; }
.fa-arrows-minimize { --fa: "\E0A5"; }
.fa-arrows-repeat { --fa: "\F364"; }
.fa-arrows-repeat-1 { --fa: "\F366"; }
.fa-arrows-retweet { --fa: "\F361"; }
.fa-arrows-rotate { --fa: "\F021"; }
.fa-arrows-rotate-reverse { --fa: "\E630"; }
.fa-arrows-spin { --fa: "\E4BB"; }
.fa-arrows-split-up-and-left { --fa: "\E4BC"; }
.fa-arrows-to-circle { --fa: "\E4BD"; }
.fa-arrows-to-dot { --fa: "\E4BE"; }
.fa-arrows-to-dotted-line { --fa: "\E0A6"; }
.fa-arrows-to-eye { --fa: "\E4BF"; }
.fa-arrows-to-line { --fa: "\E0A7"; }
.fa-arrows-turn-right { --fa: "\E4C0"; }
.fa-arrows-turn-to-dots { --fa: "\E4C1"; }
.fa-arrows-up-down { --fa: "\F07D"; }
.fa-arrows-up-down-left-right { --fa: "\F047"; }
.fa-arrows-up-to-line { --fa: "\E4C2"; }
.fa-arrows-v { --fa: "\F07D"; }
.fa-asl-interpreting { --fa: "\F2A3"; }
.fa-assistive-listening-systems { --fa: "\F2A2"; }
.fa-asterisk { --fa: "*"; }
.fa-at { --fa: "@"; }
.fa-atlas { --fa: "\F558"; }
.fa-atom { --fa: "\F5D2"; }
.fa-atom-alt { --fa: "\F5D3"; }
.fa-atom-simple { --fa: "\F5D3"; }
.fa-audio-description { --fa: "\F29E"; }
.fa-audio-description-slash { --fa: "\E0A8"; }
.fa-austral-sign { --fa: "\E0A9"; }
.fa-australian-dollar-sign { --fa: "\E6FE"; }
.fa-automobile { --fa: "\F1B9"; }
.fa-avocado { --fa: "\E0AA"; }
.fa-award { --fa: "\F559"; }
.fa-award-simple { --fa: "\E0AB"; }
.fa-axe { --fa: "\F6B2"; }
.fa-axe-battle { --fa: "\F6B3"; }
.fa-b { --fa: "B"; }
.fa-baby { --fa: "\F77C"; }
.fa-baby-carriage { --fa: "\F77D"; }
.fa-backpack { --fa: "\F5D4"; }
.fa-backspace { --fa: "\F55A"; }
.fa-backward { --fa: "\F04A"; }
.fa-backward-fast { --fa: "\F049"; }
.fa-backward-step { --fa: "\F048"; }
.fa-bacon { --fa: "\F7E5"; }
.fa-bacteria { --fa: "\E059"; }
.fa-bacterium { --fa: "\E05A"; }
.fa-badge { --fa: "\F335"; }
.fa-badge-check { --fa: "\F336"; }
.fa-badge-dollar { --fa: "\F645"; }
.fa-badge-percent { --fa: "\F646"; }
.fa-badge-sheriff { --fa: "\F8A2"; }
.fa-badger-honey { --fa: "\F6B4"; }
.fa-badminton { --fa: "\E33A"; }
.fa-bag-seedling { --fa: "\E5F2"; }
.fa-bag-shopping { --fa: "\F290"; }
.fa-bag-shopping-minus { --fa: "\E650"; }
.fa-bag-shopping-plus { --fa: "\E651"; }
.fa-bagel { --fa: "\E3D7"; }
.fa-bags-shopping { --fa: "\F847"; }
.fa-baguette { --fa: "\E3D8"; }
.fa-bahai { --fa: "\F666"; }
.fa-baht-sign { --fa: "\E0AC"; }
.fa-balance-scale { --fa: "\F24E"; }
.fa-balance-scale-left { --fa: "\F515"; }
.fa-balance-scale-right { --fa: "\F516"; }
.fa-ball-pile { --fa: "\F77E"; }
.fa-ball-yarn { --fa: "\E6CE"; }
.fa-balloon { --fa: "\E2E3"; }
.fa-balloons { --fa: "\E2E4"; }
.fa-ballot { --fa: "\F732"; }
.fa-ballot-check { --fa: "\F733"; }
.fa-ban { --fa: "\F05E"; }
.fa-ban-bug { --fa: "\F7F9"; }
.fa-ban-parking { --fa: "\F616"; }
.fa-ban-smoking { --fa: "\F54D"; }
.fa-banana { --fa: "\E2E5"; }
.fa-band-aid { --fa: "\F462"; }
.fa-bandage { --fa: "\F462"; }
.fa-bangladeshi-taka-sign { --fa: "\E2E6"; }
.fa-banjo { --fa: "\F8A3"; }
.fa-bank { --fa: "\F19C"; }
.fa-bar-chart { --fa: "\F080"; }
.fa-bar-progress { --fa: "\E6A4"; }
.fa-bar-progress-empty { --fa: "\E6A5"; }
.fa-bar-progress-full { --fa: "\E6A6"; }
.fa-bar-progress-half { --fa: "\E6A7"; }
.fa-bar-progress-quarter { --fa: "\E6A8"; }
.fa-bar-progress-three-quarters { --fa: "\E6A9"; }
.fa-barcode { --fa: "\F02A"; }
.fa-barcode-alt { --fa: "\F463"; }
.fa-barcode-read { --fa: "\F464"; }
.fa-barcode-scan { --fa: "\F465"; }
.fa-barn { --fa: "\E6C7"; }
.fa-barn-silo { --fa: "\F864"; }
.fa-bars { --fa: "\F0C9"; }
.fa-bars-filter { --fa: "\E0AD"; }
.fa-bars-progress { --fa: "\F828"; }
.fa-bars-sort { --fa: "\E0AE"; }
.fa-bars-staggered { --fa: "\F550"; }
.fa-baseball { --fa: "\F433"; }
.fa-baseball-ball { --fa: "\F433"; }
.fa-baseball-bat { --fa: "\E7E5"; }
.fa-baseball-bat-ball { --fa: "\F432"; }
.fa-basket-shopping { --fa: "\F291"; }
.fa-basket-shopping-minus { --fa: "\E652"; }
.fa-basket-shopping-plus { --fa: "\E653"; }
.fa-basket-shopping-simple { --fa: "\E0AF"; }
.fa-basketball { --fa: "\F434"; }
.fa-basketball-ball { --fa: "\F434"; }
.fa-basketball-hoop { --fa: "\F435"; }
.fa-bat { --fa: "\F6B5"; }
.fa-bath { --fa: "\F2CD"; }
.fa-bathtub { --fa: "\F2CD"; }
.fa-battery { --fa: "\F240"; }
.fa-battery-0 { --fa: "\F244"; }
.fa-battery-1 { --fa: "\E0B1"; }
.fa-battery-2 { --fa: "\F243"; }
.fa-battery-3 { --fa: "\F242"; }
.fa-battery-4 { --fa: "\F241"; }
.fa-battery-5 { --fa: "\F240"; }
.fa-battery-bolt { --fa: "\F376"; }
.fa-battery-car { --fa: "\F5DF"; }
.fa-battery-empty { --fa: "\F244"; }
.fa-battery-exclamation { --fa: "\E0B0"; }
.fa-battery-full { --fa: "\F240"; }
.fa-battery-half { --fa: "\F242"; }
.fa-battery-low { --fa: "\E0B1"; }
.fa-battery-quarter { --fa: "\F243"; }
.fa-battery-slash { --fa: "\F377"; }
.fa-battery-three-quarters { --fa: "\F241"; }
.fa-bed { --fa: "\F236"; }
.fa-bed-alt { --fa: "\F8F7"; }
.fa-bed-bunk { --fa: "\F8F8"; }
.fa-bed-empty { --fa: "\F8F9"; }
.fa-bed-front { --fa: "\F8F7"; }
.fa-bed-pulse { --fa: "\F487"; }
.fa-bee { --fa: "\E0B2"; }
.fa-beer { --fa: "\F0FC"; }
.fa-beer-foam { --fa: "\E0B3"; }
.fa-beer-mug { --fa: "\E0B3"; }
.fa-beer-mug-empty { --fa: "\F0FC"; }
.fa-bell { --fa: "\F0F3"; }
.fa-bell-concierge { --fa: "\F562"; }
.fa-bell-exclamation { --fa: "\F848"; }
.fa-bell-on { --fa: "\F8FA"; }
.fa-bell-plus { --fa: "\F849"; }
.fa-bell-ring { --fa: "\E62C"; }
.fa-bell-school { --fa: "\F5D5"; }
.fa-bell-school-slash { --fa: "\F5D6"; }
.fa-bell-slash { --fa: "\F1F6"; }
.fa-bells { --fa: "\F77F"; }
.fa-bench-tree { --fa: "\E2E7"; }
.fa-betamax { --fa: "\F8A4"; }
.fa-bezier-curve { --fa: "\F55B"; }
.fa-bible { --fa: "\F647"; }
.fa-bicycle { --fa: "\F206"; }
.fa-biking { --fa: "\F84A"; }
.fa-biking-mountain { --fa: "\F84B"; }
.fa-billboard { --fa: "\E5CD"; }
.fa-bin { --fa: "\E763"; }
.fa-bin-bottles { --fa: "\E5F5"; }
.fa-bin-bottles-recycle { --fa: "\E5F6"; }
.fa-bin-recycle { --fa: "\E5F7"; }
.fa-binary { --fa: "\E33B"; }
.fa-binary-circle-check { --fa: "\E33C"; }
.fa-binary-lock { --fa: "\E33D"; }
.fa-binary-slash { --fa: "\E33E"; }
.fa-binoculars { --fa: "\F1E5"; }
.fa-biohazard { --fa: "\F780"; }
.fa-bird { --fa: "\E469"; }
.fa-birthday-cake { --fa: "\F1FD"; }
.fa-bitcoin-sign { --fa: "\E0B4"; }
.fa-blackboard { --fa: "\F51B"; }
.fa-blanket { --fa: "\F498"; }
.fa-blanket-fire { --fa: "\E3DA"; }
.fa-blender { --fa: "\F517"; }
.fa-blender-phone { --fa: "\F6B6"; }
.fa-blind { --fa: "\F29D"; }
.fa-blinds { --fa: "\F8FB"; }
.fa-blinds-open { --fa: "\F8FC"; }
.fa-blinds-raised { --fa: "\F8FD"; }
.fa-block { --fa: "\E46A"; }
.fa-block-brick { --fa: "\E3DB"; }
.fa-block-brick-fire { --fa: "\E3DC"; }
.fa-block-question { --fa: "\E3DD"; }
.fa-block-quote { --fa: "\E0B5"; }
.fa-blog { --fa: "\F781"; }
.fa-blueberries { --fa: "\E2E8"; }
.fa-bluetooth { --fa: "\F293"; }
.fa-bold { --fa: "\F032"; }
.fa-bolt { --fa: "\F0E7"; }
.fa-bolt-auto { --fa: "\E0B6"; }
.fa-bolt-lightning { --fa: "\E0B7"; }
.fa-bolt-slash { --fa: "\E0B8"; }
.fa-bomb { --fa: "\F1E2"; }
.fa-bone { --fa: "\F5D7"; }
.fa-bone-break { --fa: "\F5D8"; }
.fa-bong { --fa: "\F55C"; }
.fa-book { --fa: "\F02D"; }
.fa-book-alt { --fa: "\F5D9"; }
.fa-book-arrow-right { --fa: "\E0B9"; }
.fa-book-arrow-up { --fa: "\E0BA"; }
.fa-book-atlas { --fa: "\F558"; }
.fa-book-bible { --fa: "\F647"; }
.fa-book-blank { --fa: "\F5D9"; }
.fa-book-bookmark { --fa: "\E0BB"; }
.fa-book-circle { --fa: "\E0FF"; }
.fa-book-circle-arrow-right { --fa: "\E0BC"; }
.fa-book-circle-arrow-up { --fa: "\E0BD"; }
.fa-book-copy { --fa: "\E0BE"; }
.fa-book-dead { --fa: "\F6B7"; }
.fa-book-font { --fa: "\E0BF"; }
.fa-book-heart { --fa: "\F499"; }
.fa-book-journal-whills { --fa: "\F66A"; }
.fa-book-law { --fa: "\E0C1"; }
.fa-book-medical { --fa: "\F7E6"; }
.fa-book-open { --fa: "\F518"; }
.fa-book-open-alt { --fa: "\E0C0"; }
.fa-book-open-cover { --fa: "\E0C0"; }
.fa-book-open-lines { --fa: "\E753"; }
.fa-book-open-reader { --fa: "\F5DA"; }
.fa-book-quran { --fa: "\F687"; }
.fa-book-reader { --fa: "\F5DA"; }
.fa-book-section { --fa: "\E0C1"; }
.fa-book-skull { --fa: "\F6B7"; }
.fa-book-sparkles { --fa: "\F6B8"; }
.fa-book-spells { --fa: "\F6B8"; }
.fa-book-spine { --fa: "\E754"; }
.fa-book-tanakh { --fa: "\F827"; }
.fa-book-user { --fa: "\F7E7"; }
.fa-bookmark { --fa: "\F02E"; }
.fa-bookmark-circle { --fa: "\E100"; }
.fa-bookmark-plus { --fa: "\E755"; }
.fa-bookmark-slash { --fa: "\E0C2"; }
.fa-books { --fa: "\F5DB"; }
.fa-books-medical { --fa: "\F7E8"; }
.fa-boombox { --fa: "\F8A5"; }
.fa-boot { --fa: "\F782"; }
.fa-boot-heeled { --fa: "\E33F"; }
.fa-booth-curtain { --fa: "\F734"; }
.fa-border-all { --fa: "\F84C"; }
.fa-border-bottom { --fa: "\F84D"; }
.fa-border-bottom-right { --fa: "\F854"; }
.fa-border-center-h { --fa: "\F89C"; }
.fa-border-center-v { --fa: "\F89D"; }
.fa-border-inner { --fa: "\F84E"; }
.fa-border-left { --fa: "\F84F"; }
.fa-border-none { --fa: "\F850"; }
.fa-border-outer { --fa: "\F851"; }
.fa-border-right { --fa: "\F852"; }
.fa-border-style { --fa: "\F853"; }
.fa-border-style-alt { --fa: "\F854"; }
.fa-border-top { --fa: "\F855"; }
.fa-border-top-left { --fa: "\F853"; }
.fa-bore-hole { --fa: "\E4C3"; }
.fa-bottle-baby { --fa: "\E673"; }
.fa-bottle-droplet { --fa: "\E4C4"; }
.fa-bottle-water { --fa: "\E4C5"; }
.fa-bow-arrow { --fa: "\F6B9"; }
.fa-bowl-chopsticks { --fa: "\E2E9"; }
.fa-bowl-chopsticks-noodles { --fa: "\E2EA"; }
.fa-bowl-food { --fa: "\E4C6"; }
.fa-bowl-hot { --fa: "\F823"; }
.fa-bowl-rice { --fa: "\E2EB"; }
.fa-bowl-salad { --fa: "\F81E"; }
.fa-bowl-scoop { --fa: "\E3DE"; }
.fa-bowl-scoops { --fa: "\E3DF"; }
.fa-bowl-shaved-ice { --fa: "\E3DE"; }
.fa-bowl-soft-serve { --fa: "\E46B"; }
.fa-bowl-spoon { --fa: "\E3E0"; }
.fa-bowling-ball { --fa: "\F436"; }
.fa-bowling-ball-pin { --fa: "\E0C3"; }
.fa-bowling-pins { --fa: "\F437"; }
.fa-box { --fa: "\F466"; }
.fa-box-alt { --fa: "\F49A"; }
.fa-box-archive { --fa: "\F187"; }
.fa-box-arrow-down { --fa: "\E794"; }
.fa-box-arrow-down-arrow-up { --fa: "\E795"; }
.fa-box-arrow-down-magnifying-glass { --fa: "\E796"; }
.fa-box-arrow-up { --fa: "\E827"; }
.fa-box-ballot { --fa: "\F735"; }
.fa-box-check { --fa: "\F467"; }
.fa-box-circle-check { --fa: "\E0C4"; }
.fa-box-dollar { --fa: "\F4A0"; }
.fa-box-fragile { --fa: "\F49B"; }
.fa-box-full { --fa: "\F49C"; }
.fa-box-heart { --fa: "\F49D"; }
.fa-box-isometric { --fa: "\E797"; }
.fa-box-isometric-tape { --fa: "\E798"; }
.fa-box-magnifying-glass { --fa: "\E828"; }
.fa-box-open { --fa: "\F49E"; }
.fa-box-open-full { --fa: "\F49C"; }
.fa-box-taped { --fa: "\F49A"; }
.fa-box-tissue { --fa: "\E05B"; }
.fa-box-up { --fa: "\F49F"; }
.fa-box-usd { --fa: "\F4A0"; }
.fa-boxes { --fa: "\F468"; }
.fa-boxes-alt { --fa: "\F468"; }
.fa-boxes-packing { --fa: "\E4C7"; }
.fa-boxes-stacked { --fa: "\F468"; }
.fa-boxing-glove { --fa: "\F438"; }
.fa-bra { --fa: "\E6CF"; }
.fa-bracket { --fa: "["; }
.fa-bracket-curly { --fa: "{"; }
.fa-bracket-curly-left { --fa: "{"; }
.fa-bracket-curly-right { --fa: "}"; }
.fa-bracket-left { --fa: "["; }
.fa-bracket-round { --fa: "("; }
.fa-bracket-round-right { --fa: ")"; }
.fa-bracket-square { --fa: "["; }
.fa-bracket-square-right { --fa: "]"; }
.fa-brackets { --fa: "\F7E9"; }
.fa-brackets-curly { --fa: "\F7EA"; }
.fa-brackets-round { --fa: "\E0C5"; }
.fa-brackets-square { --fa: "\F7E9"; }
.fa-braille { --fa: "\F2A1"; }
.fa-brain { --fa: "\F5DC"; }
.fa-brain-arrow-curved-right { --fa: "\F677"; }
.fa-brain-circuit { --fa: "\E0C6"; }
.fa-brake-warning { --fa: "\E0C7"; }
.fa-brazilian-real-sign { --fa: "\E46C"; }
.fa-bread-loaf { --fa: "\F7EB"; }
.fa-bread-slice { --fa: "\F7EC"; }
.fa-bread-slice-butter { --fa: "\E3E1"; }
.fa-bridge { --fa: "\E4C8"; }
.fa-bridge-circle-check { --fa: "\E4C9"; }
.fa-bridge-circle-exclamation { --fa: "\E4CA"; }
.fa-bridge-circle-xmark { --fa: "\E4CB"; }
.fa-bridge-lock { --fa: "\E4CC"; }
.fa-bridge-suspension { --fa: "\E4CD"; }
.fa-bridge-water { --fa: "\E4CE"; }
.fa-briefcase { --fa: "\F0B1"; }
.fa-briefcase-arrow-right { --fa: "\E2F2"; }
.fa-briefcase-blank { --fa: "\E0C8"; }
.fa-briefcase-clock { --fa: "\F64A"; }
.fa-briefcase-medical { --fa: "\F469"; }
.fa-briefs { --fa: "\E6D0"; }
.fa-brightness { --fa: "\E0C9"; }
.fa-brightness-low { --fa: "\E0CA"; }
.fa-bring-forward { --fa: "\F856"; }
.fa-bring-front { --fa: "\F857"; }
.fa-broadcast-tower { --fa: "\F519"; }
.fa-broccoli { --fa: "\E3E2"; }
.fa-broom { --fa: "\F51A"; }
.fa-broom-ball { --fa: "\F458"; }
.fa-broom-wide { --fa: "\E5D1"; }
.fa-browser { --fa: "\F37E"; }
.fa-browsers { --fa: "\E0CB"; }
.fa-brush { --fa: "\F55D"; }
.fa-bucket { --fa: "\E4CF"; }
.fa-bug { --fa: "\F188"; }
.fa-bug-slash { --fa: "\E490"; }
.fa-bugs { --fa: "\E4D0"; }
.fa-building { --fa: "\F1AD"; }
.fa-building-circle-arrow-right { --fa: "\E4D1"; }
.fa-building-circle-check { --fa: "\E4D2"; }
.fa-building-circle-exclamation { --fa: "\E4D3"; }
.fa-building-circle-xmark { --fa: "\E4D4"; }
.fa-building-columns { --fa: "\F19C"; }
.fa-building-flag { --fa: "\E4D5"; }
.fa-building-lock { --fa: "\E4D6"; }
.fa-building-magnifying-glass { --fa: "\E61C"; }
.fa-building-memo { --fa: "\E61E"; }
.fa-building-ngo { --fa: "\E4D7"; }
.fa-building-shield { --fa: "\E4D8"; }
.fa-building-un { --fa: "\E4D9"; }
.fa-building-user { --fa: "\E4DA"; }
.fa-building-wheat { --fa: "\E4DB"; }
.fa-buildings { --fa: "\E0CC"; }
.fa-bulldozer { --fa: "\E655"; }
.fa-bullhorn { --fa: "\F0A1"; }
.fa-bullseye { --fa: "\F140"; }
.fa-bullseye-arrow { --fa: "\F648"; }
.fa-bullseye-pointer { --fa: "\F649"; }
.fa-buoy { --fa: "\E5B5"; }
.fa-buoy-mooring { --fa: "\E5B6"; }
.fa-burger { --fa: "\F805"; }
.fa-burger-cheese { --fa: "\F7F1"; }
.fa-burger-fries { --fa: "\E0CD"; }
.fa-burger-glass { --fa: "\E0CE"; }
.fa-burger-lettuce { --fa: "\E3E3"; }
.fa-burger-soda { --fa: "\F858"; }
.fa-burn { --fa: "\F46A"; }
.fa-burrito { --fa: "\F7ED"; }
.fa-burst { --fa: "\E4DC"; }
.fa-bus { --fa: "\F207"; }
.fa-bus-alt { --fa: "\F55E"; }
.fa-bus-school { --fa: "\F5DD"; }
.fa-bus-side { --fa: "\E81D"; }
.fa-bus-simple { --fa: "\F55E"; }
.fa-bus-stop { --fa: "\E81E"; }
.fa-business-front { --fa: "\E45C"; }
.fa-business-time { --fa: "\F64A"; }
.fa-butter { --fa: "\E3E4"; }
.fa-butterfly { --fa: "\E811"; }
.fa-c { --fa: "C"; }
.fa-cab { --fa: "\F1BA"; }
.fa-cabin { --fa: "\E46D"; }
.fa-cabinet-filing { --fa: "\F64B"; }
.fa-cable-car { --fa: "\F7DA"; }
.fa-cactus { --fa: "\F8A7"; }
.fa-caduceus { --fa: "\E681"; }
.fa-cake { --fa: "\F1FD"; }
.fa-cake-candles { --fa: "\F1FD"; }
.fa-cake-slice { --fa: "\E3E5"; }
.fa-calculator { --fa: "\F1EC"; }
.fa-calculator-alt { --fa: "\F64C"; }
.fa-calculator-simple { --fa: "\F64C"; }
.fa-calendar { --fa: "\F133"; }
.fa-calendar-alt { --fa: "\F073"; }
.fa-calendar-arrow-down { --fa: "\E0D0"; }
.fa-calendar-arrow-up { --fa: "\E0D1"; }
.fa-calendar-check { --fa: "\F274"; }
.fa-calendar-circle { --fa: "\E102"; }
.fa-calendar-circle-exclamation { --fa: "\E46E"; }
.fa-calendar-circle-minus { --fa: "\E46F"; }
.fa-calendar-circle-plus { --fa: "\E470"; }
.fa-calendar-circle-user { --fa: "\E471"; }
.fa-calendar-clock { --fa: "\E0D2"; }
.fa-calendar-day { --fa: "\F783"; }
.fa-calendar-days { --fa: "\F073"; }
.fa-calendar-download { --fa: "\E0D0"; }
.fa-calendar-edit { --fa: "\F333"; }
.fa-calendar-exclamation { --fa: "\F334"; }
.fa-calendar-heart { --fa: "\E0D3"; }
.fa-calendar-image { --fa: "\E0D4"; }
.fa-calendar-lines { --fa: "\E0D5"; }
.fa-calendar-lines-pen { --fa: "\E472"; }
.fa-calendar-minus { --fa: "\F272"; }
.fa-calendar-note { --fa: "\E0D5"; }
.fa-calendar-pen { --fa: "\F333"; }
.fa-calendar-plus { --fa: "\F271"; }
.fa-calendar-range { --fa: "\E0D6"; }
.fa-calendar-star { --fa: "\F736"; }
.fa-calendar-time { --fa: "\E0D2"; }
.fa-calendar-times { --fa: "\F273"; }
.fa-calendar-upload { --fa: "\E0D1"; }
.fa-calendar-users { --fa: "\E5E2"; }
.fa-calendar-week { --fa: "\F784"; }
.fa-calendar-xmark { --fa: "\F273"; }
.fa-calendars { --fa: "\E0D7"; }
.fa-camcorder { --fa: "\F8A8"; }
.fa-camera { --fa: "\F030"; }
.fa-camera-alt { --fa: "\F030"; }
.fa-camera-cctv { --fa: "\F8AC"; }
.fa-camera-circle { --fa: "\E103"; }
.fa-camera-circle-ellipsis { --fa: "\E766"; }
.fa-camera-clock { --fa: "\E767"; }
.fa-camera-home { --fa: "\F8FE"; }
.fa-camera-movie { --fa: "\F8A9"; }
.fa-camera-polaroid { --fa: "\F8AA"; }
.fa-camera-retro { --fa: "\F083"; }
.fa-camera-rotate { --fa: "\E0D8"; }
.fa-camera-security { --fa: "\F8FE"; }
.fa-camera-shutter { --fa: "\E768"; }
.fa-camera-slash { --fa: "\E0D9"; }
.fa-camera-viewfinder { --fa: "\E0DA"; }
.fa-camera-web { --fa: "\F832"; }
.fa-camera-web-slash { --fa: "\F833"; }
.fa-campfire { --fa: "\F6BA"; }
.fa-campground { --fa: "\F6BB"; }
.fa-can-food { --fa: "\E3E6"; }
.fa-cancel { --fa: "\F05E"; }
.fa-candle-holder { --fa: "\F6BC"; }
.fa-candy { --fa: "\E3E7"; }
.fa-candy-bar { --fa: "\E3E8"; }
.fa-candy-cane { --fa: "\F786"; }
.fa-candy-corn { --fa: "\F6BD"; }
.fa-cannabis { --fa: "\F55F"; }
.fa-cannon { --fa: "\E642"; }
.fa-capsule { --fa: "\E75A"; }
.fa-capsules { --fa: "\F46B"; }
.fa-car { --fa: "\F1B9"; }
.fa-car-alt { --fa: "\F5DE"; }
.fa-car-battery { --fa: "\F5DF"; }
.fa-car-bolt { --fa: "\E341"; }
.fa-car-building { --fa: "\F859"; }
.fa-car-bump { --fa: "\F5E0"; }
.fa-car-burst { --fa: "\F5E1"; }
.fa-car-bus { --fa: "\F85A"; }
.fa-car-circle-bolt { --fa: "\E342"; }
.fa-car-crash { --fa: "\F5E1"; }
.fa-car-garage { --fa: "\F5E2"; }
.fa-car-key { --fa: "\E7C0"; }
.fa-car-mechanic { --fa: "\F5E3"; }
.fa-car-mirrors { --fa: "\E343"; }
.fa-car-on { --fa: "\E4DD"; }
.fa-car-people { --fa: "\E69C"; }
.fa-car-rear { --fa: "\F5DE"; }
.fa-car-side { --fa: "\F5E4"; }
.fa-car-side-bolt { --fa: "\E344"; }
.fa-car-siren { --fa: "\E7C1"; }
.fa-car-siren-on { --fa: "\E7C2"; }
.fa-car-tilt { --fa: "\F5E5"; }
.fa-car-tunnel { --fa: "\E4DE"; }
.fa-car-wash { --fa: "\F5E6"; }
.fa-car-wrench { --fa: "\F5E3"; }
.fa-caravan { --fa: "\F8FF"; }
.fa-caravan-alt { --fa: "\E000"; }
.fa-caravan-simple { --fa: "\E000"; }
.fa-card-club { --fa: "\E3E9"; }
.fa-card-diamond { --fa: "\E3EA"; }
.fa-card-heart { --fa: "\E3EB"; }
.fa-card-spade { --fa: "\E3EC"; }
.fa-cards { --fa: "\E3ED"; }
.fa-cards-blank { --fa: "\E4DF"; }
.fa-caret-circle-down { --fa: "\F32D"; }
.fa-caret-circle-left { --fa: "\F32E"; }
.fa-caret-circle-right { --fa: "\F330"; }
.fa-caret-circle-up { --fa: "\F331"; }
.fa-caret-down { --fa: "\F0D7"; }
.fa-caret-large-down { --fa: "\E82C"; }
.fa-caret-large-left { --fa: "\E82D"; }
.fa-caret-large-right { --fa: "\E82E"; }
.fa-caret-large-up { --fa: "\E82F"; }
.fa-caret-left { --fa: "\F0D9"; }
.fa-caret-right { --fa: "\F0DA"; }
.fa-caret-square-down { --fa: "\F150"; }
.fa-caret-square-left { --fa: "\F191"; }
.fa-caret-square-right { --fa: "\F152"; }
.fa-caret-square-up { --fa: "\F151"; }
.fa-caret-up { --fa: "\F0D8"; }
.fa-carpool { --fa: "\E69C"; }
.fa-carriage-baby { --fa: "\F77D"; }
.fa-carrot { --fa: "\F787"; }
.fa-cars { --fa: "\F85B"; }
.fa-cart-arrow-down { --fa: "\F218"; }
.fa-cart-arrow-up { --fa: "\E3EE"; }
.fa-cart-circle-arrow-down { --fa: "\E3EF"; }
.fa-cart-circle-arrow-up { --fa: "\E3F0"; }
.fa-cart-circle-check { --fa: "\E3F1"; }
.fa-cart-circle-exclamation { --fa: "\E3F2"; }
.fa-cart-circle-plus { --fa: "\E3F3"; }
.fa-cart-circle-xmark { --fa: "\E3F4"; }
.fa-cart-flatbed { --fa: "\F474"; }
.fa-cart-flatbed-boxes { --fa: "\F475"; }
.fa-cart-flatbed-empty { --fa: "\F476"; }
.fa-cart-flatbed-suitcase { --fa: "\F59D"; }
.fa-cart-minus { --fa: "\E0DB"; }
.fa-cart-plus { --fa: "\F217"; }
.fa-cart-shopping { --fa: "\F07A"; }
.fa-cart-shopping-fast { --fa: "\E0DC"; }
.fa-cart-xmark { --fa: "\E0DD"; }
.fa-cash-register { --fa: "\F788"; }
.fa-cassette-betamax { --fa: "\F8A4"; }
.fa-cassette-tape { --fa: "\F8AB"; }
.fa-cassette-vhs { --fa: "\F8EC"; }
.fa-castle { --fa: "\E0DE"; }
.fa-cat { --fa: "\F6BE"; }
.fa-cat-space { --fa: "\E001"; }
.fa-cauldron { --fa: "\F6BF"; }
.fa-cctv { --fa: "\F8AC"; }
.fa-cedi-sign { --fa: "\E0DF"; }
.fa-cent-sign { --fa: "\E3F5"; }
.fa-certificate { --fa: "\F0A3"; }
.fa-chain { --fa: "\F0C1"; }
.fa-chain-broken { --fa: "\F127"; }
.fa-chain-horizontal { --fa: "\E1CB"; }
.fa-chain-horizontal-slash { --fa: "\E1CC"; }
.fa-chain-slash { --fa: "\F127"; }
.fa-chair { --fa: "\F6C0"; }
.fa-chair-office { --fa: "\F6C1"; }
.fa-chalkboard { --fa: "\F51B"; }
.fa-chalkboard-teacher { --fa: "\F51C"; }
.fa-chalkboard-user { --fa: "\F51C"; }
.fa-champagne-glass { --fa: "\F79E"; }
.fa-champagne-glasses { --fa: "\F79F"; }
.fa-charging-station { --fa: "\F5E7"; }
.fa-chart-area { --fa: "\F1FE"; }
.fa-chart-bar { --fa: "\F080"; }
.fa-chart-bullet { --fa: "\E0E1"; }
.fa-chart-candlestick { --fa: "\E0E2"; }
.fa-chart-column { --fa: "\E0E3"; }
.fa-chart-diagram { --fa: "\E695"; }
.fa-chart-fft { --fa: "\E69E"; }
.fa-chart-gantt { --fa: "\E0E4"; }
.fa-chart-kanban { --fa: "\E64F"; }
.fa-chart-line { --fa: "\F201"; }
.fa-chart-line-down { --fa: "\F64D"; }
.fa-chart-line-up { --fa: "\E0E5"; }
.fa-chart-line-up-down { --fa: "\E5D7"; }
.fa-chart-mixed { --fa: "\F643"; }
.fa-chart-mixed-up-circle-currency { --fa: "\E5D8"; }
.fa-chart-mixed-up-circle-dollar { --fa: "\E5D9"; }
.fa-chart-network { --fa: "\F78A"; }
.fa-chart-pie { --fa: "\F200"; }
.fa-chart-pie-alt { --fa: "\F64E"; }
.fa-chart-pie-simple { --fa: "\F64E"; }
.fa-chart-pie-simple-circle-currency { --fa: "\E604"; }
.fa-chart-pie-simple-circle-dollar { --fa: "\E605"; }
.fa-chart-pyramid { --fa: "\E0E6"; }
.fa-chart-radar { --fa: "\E0E7"; }
.fa-chart-scatter { --fa: "\F7EE"; }
.fa-chart-scatter-3d { --fa: "\E0E8"; }
.fa-chart-scatter-bubble { --fa: "\E0E9"; }
.fa-chart-simple { --fa: "\E473"; }
.fa-chart-simple-horizontal { --fa: "\E474"; }
.fa-chart-sine { --fa: "\E69D"; }
.fa-chart-tree-map { --fa: "\E0EA"; }
.fa-chart-user { --fa: "\F6A3"; }
.fa-chart-waterfall { --fa: "\E0EB"; }
.fa-check { --fa: "\F00C"; }
.fa-check-circle { --fa: "\F058"; }
.fa-check-double { --fa: "\F560"; }
.fa-check-square { --fa: "\F14A"; }
.fa-check-to-slot { --fa: "\F772"; }
.fa-cheese { --fa: "\F7EF"; }
.fa-cheese-swiss { --fa: "\F7F0"; }
.fa-cheeseburger { --fa: "\F7F1"; }
.fa-chemex { --fa: "\E830"; }
.fa-cherries { --fa: "\E0EC"; }
.fa-chess { --fa: "\F439"; }
.fa-chess-bishop { --fa: "\F43A"; }
.fa-chess-bishop-alt { --fa: "\F43B"; }
.fa-chess-bishop-piece { --fa: "\F43B"; }
.fa-chess-board { --fa: "\F43C"; }
.fa-chess-clock { --fa: "\F43D"; }
.fa-chess-clock-alt { --fa: "\F43E"; }
.fa-chess-clock-flip { --fa: "\F43E"; }
.fa-chess-king { --fa: "\F43F"; }
.fa-chess-king-alt { --fa: "\F440"; }
.fa-chess-king-piece { --fa: "\F440"; }
.fa-chess-knight { --fa: "\F441"; }
.fa-chess-knight-alt { --fa: "\F442"; }
.fa-chess-knight-piece { --fa: "\F442"; }
.fa-chess-pawn { --fa: "\F443"; }
.fa-chess-pawn-alt { --fa: "\F444"; }
.fa-chess-pawn-piece { --fa: "\F444"; }
.fa-chess-queen { --fa: "\F445"; }
.fa-chess-queen-alt { --fa: "\F446"; }
.fa-chess-queen-piece { --fa: "\F446"; }
.fa-chess-rook { --fa: "\F447"; }
.fa-chess-rook-alt { --fa: "\F448"; }
.fa-chess-rook-piece { --fa: "\F448"; }
.fa-chestnut { --fa: "\E3F6"; }
.fa-chevron-circle-down { --fa: "\F13A"; }
.fa-chevron-circle-left { --fa: "\F137"; }
.fa-chevron-circle-right { --fa: "\F138"; }
.fa-chevron-circle-up { --fa: "\F139"; }
.fa-chevron-double-down { --fa: "\F322"; }
.fa-chevron-double-left { --fa: "\F323"; }
.fa-chevron-double-right { --fa: "\F324"; }
.fa-chevron-double-up { --fa: "\F325"; }
.fa-chevron-down { --fa: "\F078"; }
.fa-chevron-left { --fa: "\F053"; }
.fa-chevron-right { --fa: "\F054"; }
.fa-chevron-square-down { --fa: "\F329"; }
.fa-chevron-square-left { --fa: "\F32A"; }
.fa-chevron-square-right { --fa: "\F32B"; }
.fa-chevron-square-up { --fa: "\F32C"; }
.fa-chevron-up { --fa: "\F077"; }
.fa-chevrons-down { --fa: "\F322"; }
.fa-chevrons-left { --fa: "\F323"; }
.fa-chevrons-right { --fa: "\F324"; }
.fa-chevrons-up { --fa: "\F325"; }
.fa-chf-sign { --fa: "\E602"; }
.fa-child { --fa: "\F1AE"; }
.fa-child-combatant { --fa: "\E4E0"; }
.fa-child-dress { --fa: "\E59C"; }
.fa-child-reaching { --fa: "\E59D"; }
.fa-child-rifle { --fa: "\E4E0"; }
.fa-children { --fa: "\E4E1"; }
.fa-chimney { --fa: "\F78B"; }
.fa-chocolate-bar { --fa: "\E3E8"; }
.fa-chopsticks { --fa: "\E3F7"; }
.fa-church { --fa: "\F51D"; }
.fa-circle { --fa: "\F111"; }
.fa-circle-0 { --fa: "\E0ED"; }
.fa-circle-1 { --fa: "\E0EE"; }
.fa-circle-2 { --fa: "\E0EF"; }
.fa-circle-3 { --fa: "\E0F0"; }
.fa-circle-4 { --fa: "\E0F1"; }
.fa-circle-5 { --fa: "\E0F2"; }
.fa-circle-6 { --fa: "\E0F3"; }
.fa-circle-7 { --fa: "\E0F4"; }
.fa-circle-8 { --fa: "\E0F5"; }
.fa-circle-9 { --fa: "\E0F6"; }
.fa-circle-a { --fa: "\E0F7"; }
.fa-circle-ampersand { --fa: "\E0F8"; }
.fa-circle-arrow-down { --fa: "\F0AB"; }
.fa-circle-arrow-down-left { --fa: "\E0F9"; }
.fa-circle-arrow-down-right { --fa: "\E0FA"; }
.fa-circle-arrow-left { --fa: "\F0A8"; }
.fa-circle-arrow-right { --fa: "\F0A9"; }
.fa-circle-arrow-up { --fa: "\F0AA"; }
.fa-circle-arrow-up-left { --fa: "\E0FB"; }
.fa-circle-arrow-up-right { --fa: "\E0FC"; }
.fa-circle-austral { --fa: "\E71B"; }
.fa-circle-australian-dollar { --fa: "\E730"; }
.fa-circle-b { --fa: "\E0FD"; }
.fa-circle-baht { --fa: "\E72D"; }
.fa-circle-bangladeshi-taka { --fa: "\E701"; }
.fa-circle-bitcoin { --fa: "\E737"; }
.fa-circle-bolt { --fa: "\E0FE"; }
.fa-circle-book-open { --fa: "\E0FF"; }
.fa-circle-bookmark { --fa: "\E100"; }
.fa-circle-brazilian-real { --fa: "\E6EB"; }
.fa-circle-c { --fa: "\E101"; }
.fa-circle-calendar { --fa: "\E102"; }
.fa-circle-camera { --fa: "\E103"; }
.fa-circle-caret-down { --fa: "\F32D"; }
.fa-circle-caret-left { --fa: "\F32E"; }
.fa-circle-caret-right { --fa: "\F330"; }
.fa-circle-caret-up { --fa: "\F331"; }
.fa-circle-cedi { --fa: "\E742"; }
.fa-circle-cent { --fa: "\E72A"; }
.fa-circle-check { --fa: "\F058"; }
.fa-circle-chevron-down { --fa: "\F13A"; }
.fa-circle-chevron-left { --fa: "\F137"; }
.fa-circle-chevron-right { --fa: "\F138"; }
.fa-circle-chevron-up { --fa: "\F139"; }
.fa-circle-chf { --fa: "\E72C"; }
.fa-circle-colon { --fa: "\E6FC"; }
.fa-circle-cruzeiro { --fa: "\E722"; }
.fa-circle-currency { --fa: "\E6EE"; }
.fa-circle-d { --fa: "\E104"; }
.fa-circle-danish-krone { --fa: "\E746"; }
.fa-circle-dashed { --fa: "\E105"; }
.fa-circle-divide { --fa: "\E106"; }
.fa-circle-dollar { --fa: "\F2E8"; }
.fa-circle-dollar-to-slot { --fa: "\F4B9"; }
.fa-circle-dong { --fa: "\E723"; }
.fa-circle-dot { --fa: "\F192"; }
.fa-circle-down { --fa: "\F358"; }
.fa-circle-down-left { --fa: "\E107"; }
.fa-circle-down-right { --fa: "\E108"; }
.fa-circle-e { --fa: "\E109"; }
.fa-circle-ellipsis { --fa: "\E10A"; }
.fa-circle-ellipsis-vertical { --fa: "\E10B"; }
.fa-circle-envelope { --fa: "\E10C"; }
.fa-circle-equals { --fa: "\E6B1"; }
.fa-circle-euro { --fa: "\E5CE"; }
.fa-circle-eurozone { --fa: "\E745"; }
.fa-circle-exclamation { --fa: "\F06A"; }
.fa-circle-exclamation-check { --fa: "\E10D"; }
.fa-circle-f { --fa: "\E10E"; }
.fa-circle-florin { --fa: "\E6E4"; }
.fa-circle-franc { --fa: "\E721"; }
.fa-circle-g { --fa: "\E10F"; }
.fa-circle-gf { --fa: "\E67F"; }
.fa-circle-guarani { --fa: "\E73B"; }
.fa-circle-h { --fa: "\F47E"; }
.fa-circle-half { --fa: "\E110"; }
.fa-circle-half-horizontal { --fa: "\E80C"; }
.fa-circle-half-stroke { --fa: "\F042"; }
.fa-circle-half-stroke-horizontal { --fa: "\E80D"; }
.fa-circle-heart { --fa: "\F4C7"; }
.fa-circle-house { --fa: "\E6C8"; }
.fa-circle-hryvnia { --fa: "\E6EF"; }
.fa-circle-i { --fa: "\E111"; }
.fa-circle-indian-rupee { --fa: "\E734"; }
.fa-circle-info { --fa: "\F05A"; }
.fa-circle-j { --fa: "\E112"; }
.fa-circle-k { --fa: "\E113"; }
.fa-circle-kip { --fa: "\E6FD"; }
.fa-circle-l { --fa: "\E114"; }
.fa-circle-lari { --fa: "\E71D"; }
.fa-circle-left { --fa: "\F359"; }
.fa-circle-lira { --fa: "\E6F6"; }
.fa-circle-litecoin { --fa: "\E6F4"; }
.fa-circle-location-arrow { --fa: "\F602"; }
.fa-circle-m { --fa: "\E115"; }
.fa-circle-malaysian-ringgit { --fa: "\E6F9"; }
.fa-circle-manat { --fa: "\E6FB"; }
.fa-circle-microphone { --fa: "\E116"; }
.fa-circle-microphone-lines { --fa: "\E117"; }
.fa-circle-mill { --fa: "\E702"; }
.fa-circle-minus { --fa: "\F056"; }
.fa-circle-moon { --fa: "\E7E0"; }
.fa-circle-n { --fa: "\E118"; }
.fa-circle-naira { --fa: "\E749"; }
.fa-circle-nodes { --fa: "\E4E2"; }
.fa-circle-norwegian-krone { --fa: "\E738"; }
.fa-circle-notch { --fa: "\F1CE"; }
.fa-circle-o { --fa: "\E119"; }
.fa-circle-p { --fa: "\E11A"; }
.fa-circle-parking { --fa: "\F615"; }
.fa-circle-pause { --fa: "\F28B"; }
.fa-circle-peruvian-soles { --fa: "\E6F3"; }
.fa-circle-peseta { --fa: "\E741"; }
.fa-circle-peso { --fa: "\E6FF"; }
.fa-circle-phone { --fa: "\E11B"; }
.fa-circle-phone-flip { --fa: "\E11C"; }
.fa-circle-phone-hangup { --fa: "\E11D"; }
.fa-circle-play { --fa: "\F144"; }
.fa-circle-plus { --fa: "\F055"; }
.fa-circle-polish-zloty { --fa: "\E700"; }
.fa-circle-q { --fa: "\E11E"; }
.fa-circle-quarter { --fa: "\E11F"; }
.fa-circle-quarter-stroke { --fa: "\E5D3"; }
.fa-circle-quarters { --fa: "\E3F8"; }
.fa-circle-question { --fa: "\F059"; }
.fa-circle-r { --fa: "\E120"; }
.fa-circle-radiation { --fa: "\F7BA"; }
.fa-circle-renminbi { --fa: "\E6E9"; }
.fa-circle-right { --fa: "\F35A"; }
.fa-circle-ruble { --fa: "\E6E5"; }
.fa-circle-rupee { --fa: "\E714"; }
.fa-circle-rupiah { --fa: "\E706"; }
.fa-circle-s { --fa: "\E121"; }
.fa-circle-share-nodes { --fa: "\E6DB"; }
.fa-circle-shekel { --fa: "\E703"; }
.fa-circle-small { --fa: "\E122"; }
.fa-circle-sort { --fa: "\E030"; }
.fa-circle-sort-down { --fa: "\E031"; }
.fa-circle-sort-up { --fa: "\E032"; }
.fa-circle-star { --fa: "\E123"; }
.fa-circle-sterling { --fa: "\E5CF"; }
.fa-circle-stop { --fa: "\F28D"; }
.fa-circle-swedish-krona { --fa: "\E743"; }
.fa-circle-t { --fa: "\E124"; }
.fa-circle-tenge { --fa: "\E725"; }
.fa-circle-three-quarters { --fa: "\E125"; }
.fa-circle-three-quarters-stroke { --fa: "\E5D4"; }
.fa-circle-trash { --fa: "\E126"; }
.fa-circle-tugrik { --fa: "\E711"; }
.fa-circle-turkish-lira { --fa: "\E739"; }
.fa-circle-u { --fa: "\E127"; }
.fa-circle-up { --fa: "\F35B"; }
.fa-circle-up-left { --fa: "\E128"; }
.fa-circle-up-right { --fa: "\E129"; }
.fa-circle-user { --fa: "\F2BD"; }
.fa-circle-user-circle-check { --fa: "\E79F"; }
.fa-circle-user-circle-exclamation { --fa: "\E7A0"; }
.fa-circle-user-circle-minus { --fa: "\E7A1"; }
.fa-circle-user-circle-moon { --fa: "\E7A2"; }
.fa-circle-user-circle-plus { --fa: "\E7A3"; }
.fa-circle-user-circle-question { --fa: "\E7A4"; }
.fa-circle-user-circle-user { --fa: "\E7A5"; }
.fa-circle-user-circle-xmark { --fa: "\E7A6"; }
.fa-circle-user-clock { --fa: "\E7A7"; }
.fa-circle-v { --fa: "\E12A"; }
.fa-circle-video { --fa: "\E12B"; }
.fa-circle-w { --fa: "\E12C"; }
.fa-circle-waveform-lines { --fa: "\E12D"; }
.fa-circle-wifi { --fa: "\E67D"; }
.fa-circle-wifi-circle-wifi { --fa: "\E67E"; }
.fa-circle-wifi-group { --fa: "\E67E"; }
.fa-circle-won { --fa: "\E6EC"; }
.fa-circle-x { --fa: "\E12E"; }
.fa-circle-xmark { --fa: "\F057"; }
.fa-circle-y { --fa: "\E12F"; }
.fa-circle-yen { --fa: "\E5D0"; }
.fa-circle-z { --fa: "\E130"; }
.fa-circleapore-dollar { --fa: "\E71E"; }
.fa-circles-overlap { --fa: "\E600"; }
.fa-circles-overlap-3 { --fa: "\E6A1"; }
.fa-citrus { --fa: "\E2F4"; }
.fa-citrus-slice { --fa: "\E2F5"; }
.fa-city { --fa: "\F64F"; }
.fa-clapperboard { --fa: "\E131"; }
.fa-clapperboard-play { --fa: "\E132"; }
.fa-clarinet { --fa: "\F8AD"; }
.fa-claw-marks { --fa: "\F6C2"; }
.fa-clinic-medical { --fa: "\F7F2"; }
.fa-clipboard { --fa: "\F328"; }
.fa-clipboard-check { --fa: "\F46C"; }
.fa-clipboard-clock { --fa: "\E756"; }
.fa-clipboard-exclamation { --fa: "\E757"; }
.fa-clipboard-list { --fa: "\F46D"; }
.fa-clipboard-list-check { --fa: "\F737"; }
.fa-clipboard-medical { --fa: "\E133"; }
.fa-clipboard-prescription { --fa: "\F5E8"; }
.fa-clipboard-question { --fa: "\E4E3"; }
.fa-clipboard-user { --fa: "\F7F3"; }
.fa-clock { --fa: "\F017"; }
.fa-clock-desk { --fa: "\E134"; }
.fa-clock-eight { --fa: "\E345"; }
.fa-clock-eight-thirty { --fa: "\E346"; }
.fa-clock-eleven { --fa: "\E347"; }
.fa-clock-eleven-thirty { --fa: "\E348"; }
.fa-clock-five { --fa: "\E349"; }
.fa-clock-five-thirty { --fa: "\E34A"; }
.fa-clock-four { --fa: "\F017"; }
.fa-clock-four-thirty { --fa: "\E34B"; }
.fa-clock-nine { --fa: "\E34C"; }
.fa-clock-nine-thirty { --fa: "\E34D"; }
.fa-clock-one { --fa: "\E34E"; }
.fa-clock-one-thirty { --fa: "\E34F"; }
.fa-clock-rotate-left { --fa: "\F1DA"; }
.fa-clock-seven { --fa: "\E350"; }
.fa-clock-seven-thirty { --fa: "\E351"; }
.fa-clock-six { --fa: "\E352"; }
.fa-clock-six-thirty { --fa: "\E353"; }
.fa-clock-ten { --fa: "\E354"; }
.fa-clock-ten-thirty { --fa: "\E355"; }
.fa-clock-three { --fa: "\E356"; }
.fa-clock-three-thirty { --fa: "\E357"; }
.fa-clock-twelve { --fa: "\E358"; }
.fa-clock-twelve-thirty { --fa: "\E359"; }
.fa-clock-two { --fa: "\E35A"; }
.fa-clock-two-thirty { --fa: "\E35B"; }
.fa-clone { --fa: "\F24D"; }
.fa-clone-plus { --fa: "\E74C"; }
.fa-close { --fa: "\F00D"; }
.fa-closed-captioning { --fa: "\F20A"; }
.fa-closed-captioning-slash { --fa: "\E135"; }
.fa-clothes-hanger { --fa: "\E136"; }
.fa-cloud { --fa: "\F0C2"; }
.fa-cloud-arrow-down { --fa: "\F0ED"; }
.fa-cloud-arrow-up { --fa: "\F0EE"; }
.fa-cloud-binary { --fa: "\E601"; }
.fa-cloud-bolt { --fa: "\F76C"; }
.fa-cloud-bolt-moon { --fa: "\F76D"; }
.fa-cloud-bolt-sun { --fa: "\F76E"; }
.fa-cloud-check { --fa: "\E35C"; }
.fa-cloud-download { --fa: "\F0ED"; }
.fa-cloud-download-alt { --fa: "\F0ED"; }
.fa-cloud-drizzle { --fa: "\F738"; }
.fa-cloud-exclamation { --fa: "\E491"; }
.fa-cloud-fog { --fa: "\F74E"; }
.fa-cloud-hail { --fa: "\F739"; }
.fa-cloud-hail-mixed { --fa: "\F73A"; }
.fa-cloud-meatball { --fa: "\F73B"; }
.fa-cloud-minus { --fa: "\E35D"; }
.fa-cloud-moon { --fa: "\F6C3"; }
.fa-cloud-moon-rain { --fa: "\F73C"; }
.fa-cloud-music { --fa: "\F8AE"; }
.fa-cloud-plus { --fa: "\E35E"; }
.fa-cloud-question { --fa: "\E492"; }
.fa-cloud-rain { --fa: "\F73D"; }
.fa-cloud-rainbow { --fa: "\F73E"; }
.fa-cloud-showers { --fa: "\F73F"; }
.fa-cloud-showers-heavy { --fa: "\F740"; }
.fa-cloud-showers-water { --fa: "\E4E4"; }
.fa-cloud-slash { --fa: "\E137"; }
.fa-cloud-sleet { --fa: "\F741"; }
.fa-cloud-snow { --fa: "\F742"; }
.fa-cloud-sun { --fa: "\F6C4"; }
.fa-cloud-sun-rain { --fa: "\F743"; }
.fa-cloud-upload { --fa: "\F0EE"; }
.fa-cloud-upload-alt { --fa: "\F0EE"; }
.fa-cloud-word { --fa: "\E138"; }
.fa-cloud-xmark { --fa: "\E35F"; }
.fa-clouds { --fa: "\F744"; }
.fa-clouds-moon { --fa: "\F745"; }
.fa-clouds-sun { --fa: "\F746"; }
.fa-clover { --fa: "\E139"; }
.fa-club { --fa: "\F327"; }
.fa-cny { --fa: "\F157"; }
.fa-cocktail { --fa: "\F561"; }
.fa-coconut { --fa: "\E2F6"; }
.fa-code { --fa: "\F121"; }
.fa-code-branch { --fa: "\F126"; }
.fa-code-commit { --fa: "\F386"; }
.fa-code-compare { --fa: "\E13A"; }
.fa-code-fork { --fa: "\E13B"; }
.fa-code-merge { --fa: "\F387"; }
.fa-code-pull-request { --fa: "\E13C"; }
.fa-code-pull-request-closed { --fa: "\E3F9"; }
.fa-code-pull-request-draft { --fa: "\E3FA"; }
.fa-code-simple { --fa: "\E13D"; }
.fa-coffee { --fa: "\F0F4"; }
.fa-coffee-bean { --fa: "\E13E"; }
.fa-coffee-beans { --fa: "\E13F"; }
.fa-coffee-pot { --fa: "\E002"; }
.fa-coffee-togo { --fa: "\F6C5"; }
.fa-coffin { --fa: "\F6C6"; }
.fa-coffin-cross { --fa: "\E051"; }
.fa-cog { --fa: "\F013"; }
.fa-cogs { --fa: "\F085"; }
.fa-coin { --fa: "\F85C"; }
.fa-coin-blank { --fa: "\E3FB"; }
.fa-coin-front { --fa: "\E3FC"; }
.fa-coin-vertical { --fa: "\E3FD"; }
.fa-coins { --fa: "\F51E"; }
.fa-colon { --fa: ":"; }
.fa-colon-sign { --fa: "\E140"; }
.fa-columns { --fa: "\F0DB"; }
.fa-columns-3 { --fa: "\E361"; }
.fa-comet { --fa: "\E003"; }
.fa-comma { --fa: ","; }
.fa-command { --fa: "\E142"; }
.fa-comment { --fa: "\F075"; }
.fa-comment-alt { --fa: "\F27A"; }
.fa-comment-alt-arrow-down { --fa: "\E1DB"; }
.fa-comment-alt-arrow-up { --fa: "\E1DC"; }
.fa-comment-alt-captions { --fa: "\E1DE"; }
.fa-comment-alt-check { --fa: "\F4A2"; }
.fa-comment-alt-dollar { --fa: "\F650"; }
.fa-comment-alt-dots { --fa: "\F4A3"; }
.fa-comment-alt-edit { --fa: "\F4A4"; }
.fa-comment-alt-exclamation { --fa: "\F4A5"; }
.fa-comment-alt-image { --fa: "\E1E0"; }
.fa-comment-alt-lines { --fa: "\F4A6"; }
.fa-comment-alt-medical { --fa: "\F7F4"; }
.fa-comment-alt-minus { --fa: "\F4A7"; }
.fa-comment-alt-music { --fa: "\F8AF"; }
.fa-comment-alt-plus { --fa: "\F4A8"; }
.fa-comment-alt-quote { --fa: "\E1E4"; }
.fa-comment-alt-slash { --fa: "\F4A9"; }
.fa-comment-alt-smile { --fa: "\F4AA"; }
.fa-comment-alt-text { --fa: "\E1E6"; }
.fa-comment-alt-times { --fa: "\F4AB"; }
.fa-comment-arrow-down { --fa: "\E143"; }
.fa-comment-arrow-up { --fa: "\E144"; }
.fa-comment-arrow-up-right { --fa: "\E145"; }
.fa-comment-captions { --fa: "\E146"; }
.fa-comment-check { --fa: "\F4AC"; }
.fa-comment-code { --fa: "\E147"; }
.fa-comment-dollar { --fa: "\F651"; }
.fa-comment-dot { --fa: "\E6DC"; }
.fa-comment-dots { --fa: "\F4AD"; }
.fa-comment-edit { --fa: "\F4AE"; }
.fa-comment-exclamation { --fa: "\F4AF"; }
.fa-comment-heart { --fa: "\E5C8"; }
.fa-comment-image { --fa: "\E148"; }
.fa-comment-lines { --fa: "\F4B0"; }
.fa-comment-medical { --fa: "\F7F5"; }
.fa-comment-middle { --fa: "\E149"; }
.fa-comment-middle-alt { --fa: "\E1E1"; }
.fa-comment-middle-top { --fa: "\E14A"; }
.fa-comment-middle-top-alt { --fa: "\E1E2"; }
.fa-comment-minus { --fa: "\F4B1"; }
.fa-comment-music { --fa: "\F8B0"; }
.fa-comment-nodes { --fa: "\E696"; }
.fa-comment-pen { --fa: "\F4AE"; }
.fa-comment-plus { --fa: "\F4B2"; }
.fa-comment-question { --fa: "\E14B"; }
.fa-comment-quote { --fa: "\E14C"; }
.fa-comment-slash { --fa: "\F4B3"; }
.fa-comment-smile { --fa: "\F4B4"; }
.fa-comment-sms { --fa: "\F7CD"; }
.fa-comment-text { --fa: "\E14D"; }
.fa-comment-times { --fa: "\F4B5"; }
.fa-comment-waveform { --fa: "\E6DD"; }
.fa-comment-xmark { --fa: "\F4B5"; }
.fa-commenting { --fa: "\F4AD"; }
.fa-comments { --fa: "\F086"; }
.fa-comments-alt { --fa: "\F4B6"; }
.fa-comments-alt-dollar { --fa: "\F652"; }
.fa-comments-dollar { --fa: "\F653"; }
.fa-comments-question { --fa: "\E14E"; }
.fa-comments-question-check { --fa: "\E14F"; }
.fa-compact-disc { --fa: "\F51F"; }
.fa-compass { --fa: "\F14E"; }
.fa-compass-drafting { --fa: "\F568"; }
.fa-compass-slash { --fa: "\F5E9"; }
.fa-compress { --fa: "\F066"; }
.fa-compress-alt { --fa: "\F422"; }
.fa-compress-arrows { --fa: "\E0A5"; }
.fa-compress-arrows-alt { --fa: "\F78C"; }
.fa-compress-wide { --fa: "\F326"; }
.fa-computer { --fa: "\E4E5"; }
.fa-computer-classic { --fa: "\F8B1"; }
.fa-computer-mouse { --fa: "\F8CC"; }
.fa-computer-mouse-button-left { --fa: "\E7CD"; }
.fa-computer-mouse-button-right { --fa: "\E7CE"; }
.fa-computer-mouse-scrollwheel { --fa: "\F8CD"; }
.fa-computer-speaker { --fa: "\F8B2"; }
.fa-concierge-bell { --fa: "\F562"; }
.fa-construction { --fa: "\F85D"; }
.fa-contact-book { --fa: "\F2B9"; }
.fa-contact-card { --fa: "\F2BB"; }
.fa-container-storage { --fa: "\F4B7"; }
.fa-conveyor-belt { --fa: "\F46E"; }
.fa-conveyor-belt-alt { --fa: "\F46F"; }
.fa-conveyor-belt-arm { --fa: "\E5F8"; }
.fa-conveyor-belt-boxes { --fa: "\F46F"; }
.fa-conveyor-belt-empty { --fa: "\E150"; }
.fa-cookie { --fa: "\F563"; }
.fa-cookie-bite { --fa: "\F564"; }
.fa-copy { --fa: "\F0C5"; }
.fa-copyright { --fa: "\F1F9"; }
.fa-corn { --fa: "\F6C7"; }
.fa-corner { --fa: "\E3FE"; }
.fa-couch { --fa: "\F4B8"; }
.fa-couch-small { --fa: "\F4CC"; }
.fa-court-sport { --fa: "\E643"; }
.fa-cow { --fa: "\F6C8"; }
.fa-cowbell { --fa: "\F8B3"; }
.fa-cowbell-circle-plus { --fa: "\F8B4"; }
.fa-cowbell-more { --fa: "\F8B4"; }
.fa-crab { --fa: "\E3FF"; }
.fa-crate-apple { --fa: "\F6B1"; }
.fa-crate-empty { --fa: "\E151"; }
.fa-credit-card { --fa: "\F09D"; }
.fa-credit-card-alt { --fa: "\F09D"; }
.fa-credit-card-blank { --fa: "\F389"; }
.fa-credit-card-front { --fa: "\F38A"; }
.fa-creemee { --fa: "\E400"; }
.fa-cricket { --fa: "\F449"; }
.fa-cricket-bat-ball { --fa: "\F449"; }
.fa-croissant { --fa: "\F7F6"; }
.fa-crop { --fa: "\F125"; }
.fa-crop-alt { --fa: "\F565"; }
.fa-crop-simple { --fa: "\F565"; }
.fa-cross { --fa: "\F654"; }
.fa-crosshairs { --fa: "\F05B"; }
.fa-crosshairs-simple { --fa: "\E59F"; }
.fa-crow { --fa: "\F520"; }
.fa-crown { --fa: "\F521"; }
.fa-crutch { --fa: "\F7F7"; }
.fa-crutches { --fa: "\F7F8"; }
.fa-cruzeiro-sign { --fa: "\E152"; }
.fa-crystal-ball { --fa: "\E362"; }
.fa-cube { --fa: "\F1B2"; }
.fa-cubes { --fa: "\F1B3"; }
.fa-cubes-stacked { --fa: "\E4E6"; }
.fa-cucumber { --fa: "\E401"; }
.fa-cup-straw { --fa: "\E363"; }
.fa-cup-straw-swoosh { --fa: "\E364"; }
.fa-cup-togo { --fa: "\F6C5"; }
.fa-cupcake { --fa: "\E402"; }
.fa-curling { --fa: "\F44A"; }
.fa-curling-stone { --fa: "\F44A"; }
.fa-currency-sign { --fa: "\E72B"; }
.fa-custard { --fa: "\E403"; }
.fa-cut { --fa: "\F0C4"; }
.fa-cutlery { --fa: "\F2E7"; }
.fa-d { --fa: "D"; }
.fa-dagger { --fa: "\F6CB"; }
.fa-danish-krone-sign { --fa: "\E720"; }
.fa-dash { --fa: "\E404"; }
.fa-dashboard { --fa: "\F624"; }
.fa-database { --fa: "\F1C0"; }
.fa-deaf { --fa: "\F2A4"; }
.fa-deafness { --fa: "\F2A4"; }
.fa-debug { --fa: "\F7F9"; }
.fa-dedent { --fa: "\F03B"; }
.fa-deer { --fa: "\F78E"; }
.fa-deer-rudolph { --fa: "\F78F"; }
.fa-delete-left { --fa: "\F55A"; }
.fa-delete-right { --fa: "\E154"; }
.fa-democrat { --fa: "\F747"; }
.fa-desktop { --fa: "\F390"; }
.fa-desktop-alt { --fa: "\F390"; }
.fa-desktop-arrow-down { --fa: "\E155"; }
.fa-desktop-code { --fa: "\E165"; }
.fa-desktop-medical { --fa: "\E166"; }
.fa-desktop-slash { --fa: "\E2FA"; }
.fa-dewpoint { --fa: "\F748"; }
.fa-dharmachakra { --fa: "\F655"; }
.fa-diagnoses { --fa: "\F470"; }
.fa-diagram-cells { --fa: "\E475"; }
.fa-diagram-lean-canvas { --fa: "\E156"; }
.fa-diagram-nested { --fa: "\E157"; }
.fa-diagram-next { --fa: "\E476"; }
.fa-diagram-predecessor { --fa: "\E477"; }
.fa-diagram-previous { --fa: "\E478"; }
.fa-diagram-project { --fa: "\F542"; }
.fa-diagram-sankey { --fa: "\E158"; }
.fa-diagram-subtask { --fa: "\E479"; }
.fa-diagram-successor { --fa: "\E47A"; }
.fa-diagram-venn { --fa: "\E15A"; }
.fa-dial { --fa: "\E15B"; }
.fa-dial-high { --fa: "\E15C"; }
.fa-dial-low { --fa: "\E15D"; }
.fa-dial-max { --fa: "\E15E"; }
.fa-dial-med { --fa: "\E15F"; }
.fa-dial-med-high { --fa: "\E15B"; }
.fa-dial-med-low { --fa: "\E160"; }
.fa-dial-min { --fa: "\E161"; }
.fa-dial-off { --fa: "\E162"; }
.fa-dialpad { --fa: "\E7CC"; }
.fa-diamond { --fa: "\F219"; }
.fa-diamond-exclamation { --fa: "\E405"; }
.fa-diamond-half { --fa: "\E5B7"; }
.fa-diamond-half-stroke { --fa: "\E5B8"; }
.fa-diamond-turn-right { --fa: "\F5EB"; }
.fa-diamonds-4 { --fa: "\E68B"; }
.fa-dice { --fa: "\F522"; }
.fa-dice-d10 { --fa: "\F6CD"; }
.fa-dice-d12 { --fa: "\F6CE"; }
.fa-dice-d20 { --fa: "\F6CF"; }
.fa-dice-d4 { --fa: "\F6D0"; }
.fa-dice-d6 { --fa: "\F6D1"; }
.fa-dice-d8 { --fa: "\F6D2"; }
.fa-dice-five { --fa: "\F523"; }
.fa-dice-four { --fa: "\F524"; }
.fa-dice-one { --fa: "\F525"; }
.fa-dice-six { --fa: "\F526"; }
.fa-dice-three { --fa: "\F527"; }
.fa-dice-two { --fa: "\F528"; }
.fa-digging { --fa: "\F85E"; }
.fa-digital-tachograph { --fa: "\F566"; }
.fa-dinosaur { --fa: "\E5FE"; }
.fa-diploma { --fa: "\F5EA"; }
.fa-direction-left-right { --fa: "\E6BE"; }
.fa-direction-up-down { --fa: "\E6BF"; }
.fa-directions { --fa: "\F5EB"; }
.fa-disc-drive { --fa: "\F8B5"; }
.fa-disease { --fa: "\F7FA"; }
.fa-display { --fa: "\E163"; }
.fa-display-arrow-down { --fa: "\E164"; }
.fa-display-chart-up { --fa: "\E5E3"; }
.fa-display-chart-up-circle-currency { --fa: "\E5E5"; }
.fa-display-chart-up-circle-dollar { --fa: "\E5E6"; }
.fa-display-code { --fa: "\E165"; }
.fa-display-medical { --fa: "\E166"; }
.fa-display-slash { --fa: "\E2FA"; }
.fa-distribute-spacing-horizontal { --fa: "\E365"; }
.fa-distribute-spacing-vertical { --fa: "\E366"; }
.fa-ditto { --fa: "\""; }
.fa-divide { --fa: "\F529"; }
.fa-dizzy { --fa: "\F567"; }
.fa-dna { --fa: "\F471"; }
.fa-do-not-enter { --fa: "\F5EC"; }
.fa-dog { --fa: "\F6D3"; }
.fa-dog-leashed { --fa: "\F6D4"; }
.fa-dollar { --fa: "$"; }
.fa-dollar-circle { --fa: "\F2E8"; }
.fa-dollar-sign { --fa: "$"; }
.fa-dollar-square { --fa: "\F2E9"; }
.fa-dolly { --fa: "\F472"; }
.fa-dolly-box { --fa: "\F472"; }
.fa-dolly-empty { --fa: "\F473"; }
.fa-dolly-flatbed { --fa: "\F474"; }
.fa-dolly-flatbed-alt { --fa: "\F475"; }
.fa-dolly-flatbed-empty { --fa: "\F476"; }
.fa-dolphin { --fa: "\E168"; }
.fa-donate { --fa: "\F4B9"; }
.fa-dong-sign { --fa: "\E169"; }
.fa-donut { --fa: "\E406"; }
.fa-door-closed { --fa: "\F52A"; }
.fa-door-open { --fa: "\F52B"; }
.fa-dot { --fa: "\E7D1"; }
.fa-dot-circle { --fa: "\F192"; }
.fa-doughnut { --fa: "\E406"; }
.fa-dove { --fa: "\F4BA"; }
.fa-down { --fa: "\F354"; }
.fa-down-from-bracket { --fa: "\E66B"; }
.fa-down-from-dotted-line { --fa: "\E407"; }
.fa-down-from-line { --fa: "\F349"; }
.fa-down-left { --fa: "\E16A"; }
.fa-down-left-and-up-right-to-center { --fa: "\F422"; }
.fa-down-long { --fa: "\F309"; }
.fa-down-long-to-line { --fa: "\E6C0"; }
.fa-down-right { --fa: "\E16B"; }
.fa-down-to-bracket { --fa: "\E4E7"; }
.fa-down-to-dotted-line { --fa: "\E408"; }
.fa-down-to-line { --fa: "\F34A"; }
.fa-down-up { --fa: "\E6C1"; }
.fa-download { --fa: "\F019"; }
.fa-drafting-compass { --fa: "\F568"; }
.fa-dragon { --fa: "\F6D5"; }
.fa-draw-circle { --fa: "\F5ED"; }
.fa-draw-polygon { --fa: "\F5EE"; }
.fa-draw-square { --fa: "\F5EF"; }
.fa-dreidel { --fa: "\F792"; }
.fa-dress { --fa: "\E6D1"; }
.fa-drivers-license { --fa: "\F2C2"; }
.fa-drone { --fa: "\F85F"; }
.fa-drone-alt { --fa: "\F860"; }
.fa-drone-front { --fa: "\F860"; }
.fa-droplet { --fa: "\F043"; }
.fa-droplet-degree { --fa: "\F748"; }
.fa-droplet-percent { --fa: "\F750"; }
.fa-droplet-plus { --fa: "\E800"; }
.fa-droplet-slash { --fa: "\F5C7"; }
.fa-drum { --fa: "\F569"; }
.fa-drum-steelpan { --fa: "\F56A"; }
.fa-drumstick { --fa: "\F6D6"; }
.fa-drumstick-bite { --fa: "\F6D7"; }
.fa-dryer { --fa: "\F861"; }
.fa-dryer-alt { --fa: "\F862"; }
.fa-dryer-heat { --fa: "\F862"; }
.fa-duck { --fa: "\F6D8"; }
.fa-dumbbell { --fa: "\F44B"; }
.fa-dumpster { --fa: "\F793"; }
.fa-dumpster-fire { --fa: "\F794"; }
.fa-dungeon { --fa: "\F6D9"; }
.fa-e { --fa: "E"; }
.fa-ear { --fa: "\F5F0"; }
.fa-ear-circle-checkmark { --fa: "\E75B"; }
.fa-ear-deaf { --fa: "\F2A4"; }
.fa-ear-listen { --fa: "\F2A2"; }
.fa-ear-muffs { --fa: "\F795"; }
.fa-ear-triangle-exclamation { --fa: "\E75C"; }
.fa-ear-waveform { --fa: "\E75D"; }
.fa-earth { --fa: "\F57D"; }
.fa-earth-africa { --fa: "\F57C"; }
.fa-earth-america { --fa: "\F57D"; }
.fa-earth-americas { --fa: "\F57D"; }
.fa-earth-asia { --fa: "\F57E"; }
.fa-earth-europe { --fa: "\F7A2"; }
.fa-earth-oceania { --fa: "\E47B"; }
.fa-eclipse { --fa: "\F749"; }
.fa-eclipse-alt { --fa: "\F74A"; }
.fa-edit { --fa: "\F044"; }
.fa-egg { --fa: "\F7FB"; }
.fa-egg-fried { --fa: "\F7FC"; }
.fa-eggplant { --fa: "\E16C"; }
.fa-eject { --fa: "\F052"; }
.fa-elephant { --fa: "\F6DA"; }
.fa-elevator { --fa: "\E16D"; }
.fa-ellipsis { --fa: "\F141"; }
.fa-ellipsis-h { --fa: "\F141"; }
.fa-ellipsis-h-alt { --fa: "\F39B"; }
.fa-ellipsis-stroke { --fa: "\F39B"; }
.fa-ellipsis-stroke-vertical { --fa: "\F39C"; }
.fa-ellipsis-v { --fa: "\F142"; }
.fa-ellipsis-v-alt { --fa: "\F39C"; }
.fa-ellipsis-vertical { --fa: "\F142"; }
.fa-empty-set { --fa: "\F656"; }
.fa-engine { --fa: "\E16E"; }
.fa-engine-exclamation { --fa: "\F5F2"; }
.fa-engine-warning { --fa: "\F5F2"; }
.fa-envelope { --fa: "\F0E0"; }
.fa-envelope-badge { --fa: "\E16F"; }
.fa-envelope-certificate { --fa: "\E829"; }
.fa-envelope-circle { --fa: "\E10C"; }
.fa-envelope-circle-check { --fa: "\E4E8"; }
.fa-envelope-circle-user { --fa: "\E6DE"; }
.fa-envelope-dot { --fa: "\E16F"; }
.fa-envelope-open { --fa: "\F2B6"; }
.fa-envelope-open-dollar { --fa: "\F657"; }
.fa-envelope-open-text { --fa: "\F658"; }
.fa-envelope-ribbon { --fa: "\E829"; }
.fa-envelope-square { --fa: "\F199"; }
.fa-envelopes { --fa: "\E170"; }
.fa-envelopes-bulk { --fa: "\F674"; }
.fa-equals { --fa: "="; }
.fa-eraser { --fa: "\F12D"; }
.fa-escalator { --fa: "\E171"; }
.fa-ethernet { --fa: "\F796"; }
.fa-eur { --fa: "\F153"; }
.fa-euro { --fa: "\F153"; }
.fa-euro-sign { --fa: "\F153"; }
.fa-eurozone-sign { --fa: "\E740"; }
.fa-excavator { --fa: "\E656"; }
.fa-exchange { --fa: "\F0EC"; }
.fa-exchange-alt { --fa: "\F362"; }
.fa-exclamation { --fa: "!"; }
.fa-exclamation-circle { --fa: "\F06A"; }
.fa-exclamation-square { --fa: "\F321"; }
.fa-exclamation-triangle { --fa: "\F071"; }
.fa-expand { --fa: "\F065"; }
.fa-expand-alt { --fa: "\F424"; }
.fa-expand-arrows { --fa: "\F31D"; }
.fa-expand-arrows-alt { --fa: "\F31E"; }
.fa-expand-wide { --fa: "\F320"; }
.fa-exploding-head { --fa: "\E2FE"; }
.fa-explosion { --fa: "\E4E9"; }
.fa-external-link { --fa: "\F08E"; }
.fa-external-link-alt { --fa: "\F35D"; }
.fa-external-link-square { --fa: "\F14C"; }
.fa-external-link-square-alt { --fa: "\F360"; }
.fa-eye { --fa: "\F06E"; }
.fa-eye-dropper { --fa: "\F1FB"; }
.fa-eye-dropper-empty { --fa: "\F1FB"; }
.fa-eye-dropper-full { --fa: "\E172"; }
.fa-eye-dropper-half { --fa: "\E173"; }
.fa-eye-evil { --fa: "\F6DB"; }
.fa-eye-low-vision { --fa: "\F2A8"; }
.fa-eye-slash { --fa: "\F070"; }
.fa-eyedropper { --fa: "\F1FB"; }
.fa-eyes { --fa: "\E367"; }
.fa-f { --fa: "F"; }
.fa-face-angry { --fa: "\F556"; }
.fa-face-angry-horns { --fa: "\E368"; }
.fa-face-anguished { --fa: "\E369"; }
.fa-face-anxious-sweat { --fa: "\E36A"; }
.fa-face-astonished { --fa: "\E36B"; }
.fa-face-awesome { --fa: "\E409"; }
.fa-face-beam-hand-over-mouth { --fa: "\E47C"; }
.fa-face-clouds { --fa: "\E47D"; }
.fa-face-confounded { --fa: "\E36C"; }
.fa-face-confused { --fa: "\E36D"; }
.fa-face-cowboy-hat { --fa: "\E36E"; }
.fa-face-diagonal-mouth { --fa: "\E47E"; }
.fa-face-disappointed { --fa: "\E36F"; }
.fa-face-disguise { --fa: "\E370"; }
.fa-face-dizzy { --fa: "\F567"; }
.fa-face-dotted { --fa: "\E47F"; }
.fa-face-downcast-sweat { --fa: "\E371"; }
.fa-face-drooling { --fa: "\E372"; }
.fa-face-exhaling { --fa: "\E480"; }
.fa-face-explode { --fa: "\E2FE"; }
.fa-face-expressionless { --fa: "\E373"; }
.fa-face-eyes-xmarks { --fa: "\E374"; }
.fa-face-fearful { --fa: "\E375"; }
.fa-face-flushed { --fa: "\F579"; }
.fa-face-frown { --fa: "\F119"; }
.fa-face-frown-open { --fa: "\F57A"; }
.fa-face-frown-slight { --fa: "\E376"; }
.fa-face-glasses { --fa: "\E377"; }
.fa-face-grimace { --fa: "\F57F"; }
.fa-face-grin { --fa: "\F580"; }
.fa-face-grin-beam { --fa: "\F582"; }
.fa-face-grin-beam-sweat { --fa: "\F583"; }
.fa-face-grin-hearts { --fa: "\F584"; }
.fa-face-grin-squint { --fa: "\F585"; }
.fa-face-grin-squint-tears { --fa: "\F586"; }
.fa-face-grin-stars { --fa: "\F587"; }
.fa-face-grin-tears { --fa: "\F588"; }
.fa-face-grin-tongue { --fa: "\F589"; }
.fa-face-grin-tongue-squint { --fa: "\F58A"; }
.fa-face-grin-tongue-wink { --fa: "\F58B"; }
.fa-face-grin-wide { --fa: "\F581"; }
.fa-face-grin-wink { --fa: "\F58C"; }
.fa-face-hand-over-mouth { --fa: "\E378"; }
.fa-face-hand-peeking { --fa: "\E481"; }
.fa-face-hand-yawn { --fa: "\E379"; }
.fa-face-head-bandage { --fa: "\E37A"; }
.fa-face-holding-back-tears { --fa: "\E482"; }
.fa-face-hushed { --fa: "\E37B"; }
.fa-face-icicles { --fa: "\E37C"; }
.fa-face-kiss { --fa: "\F596"; }
.fa-face-kiss-beam { --fa: "\F597"; }
.fa-face-kiss-closed-eyes { --fa: "\E37D"; }
.fa-face-kiss-wink-heart { --fa: "\F598"; }
.fa-face-laugh { --fa: "\F599"; }
.fa-face-laugh-beam { --fa: "\F59A"; }
.fa-face-laugh-squint { --fa: "\F59B"; }
.fa-face-laugh-wink { --fa: "\F59C"; }
.fa-face-lying { --fa: "\E37E"; }
.fa-face-mask { --fa: "\E37F"; }
.fa-face-meh { --fa: "\F11A"; }
.fa-face-meh-blank { --fa: "\F5A4"; }
.fa-face-melting { --fa: "\E483"; }
.fa-face-monocle { --fa: "\E380"; }
.fa-face-nauseated { --fa: "\E381"; }
.fa-face-nose-steam { --fa: "\E382"; }
.fa-face-party { --fa: "\E383"; }
.fa-face-pensive { --fa: "\E384"; }
.fa-face-persevering { --fa: "\E385"; }
.fa-face-pleading { --fa: "\E386"; }
.fa-face-pouting { --fa: "\E387"; }
.fa-face-raised-eyebrow { --fa: "\E388"; }
.fa-face-relieved { --fa: "\E389"; }
.fa-face-rolling-eyes { --fa: "\F5A5"; }
.fa-face-sad-cry { --fa: "\F5B3"; }
.fa-face-sad-sweat { --fa: "\E38A"; }
.fa-face-sad-tear { --fa: "\F5B4"; }
.fa-face-saluting { --fa: "\E484"; }
.fa-face-scream { --fa: "\E38B"; }
.fa-face-shaking { --fa: "\E79C"; }
.fa-face-shaking-horizontal { --fa: "\E79D"; }
.fa-face-shaking-vertical { --fa: "\E79E"; }
.fa-face-shush { --fa: "\E38C"; }
.fa-face-sleeping { --fa: "\E38D"; }
.fa-face-sleepy { --fa: "\E38E"; }
.fa-face-smile { --fa: "\F118"; }
.fa-face-smile-beam { --fa: "\F5B8"; }
.fa-face-smile-halo { --fa: "\E38F"; }
.fa-face-smile-hearts { --fa: "\E390"; }
.fa-face-smile-horns { --fa: "\E391"; }
.fa-face-smile-plus { --fa: "\F5B9"; }
.fa-face-smile-relaxed { --fa: "\E392"; }
.fa-face-smile-tear { --fa: "\E393"; }
.fa-face-smile-tongue { --fa: "\E394"; }
.fa-face-smile-upside-down { --fa: "\E395"; }
.fa-face-smile-wink { --fa: "\F4DA"; }
.fa-face-smiling-hands { --fa: "\E396"; }
.fa-face-smirking { --fa: "\E397"; }
.fa-face-spiral-eyes { --fa: "\E485"; }
.fa-face-sunglasses { --fa: "\E398"; }
.fa-face-surprise { --fa: "\F5C2"; }
.fa-face-swear { --fa: "\E399"; }
.fa-face-thermometer { --fa: "\E39A"; }
.fa-face-thinking { --fa: "\E39B"; }
.fa-face-tired { --fa: "\F5C8"; }
.fa-face-tissue { --fa: "\E39C"; }
.fa-face-tongue-money { --fa: "\E39D"; }
.fa-face-tongue-sweat { --fa: "\E39E"; }
.fa-face-unamused { --fa: "\E39F"; }
.fa-face-viewfinder { --fa: "\E2FF"; }
.fa-face-vomit { --fa: "\E3A0"; }
.fa-face-weary { --fa: "\E3A1"; }
.fa-face-woozy { --fa: "\E3A2"; }
.fa-face-worried { --fa: "\E3A3"; }
.fa-face-zany { --fa: "\E3A4"; }
.fa-face-zipper { --fa: "\E3A5"; }
.fa-falafel { --fa: "\E40A"; }
.fa-family { --fa: "\E300"; }
.fa-family-dress { --fa: "\E301"; }
.fa-family-pants { --fa: "\E302"; }
.fa-fan { --fa: "\F863"; }
.fa-fan-table { --fa: "\E004"; }
.fa-farm { --fa: "\F864"; }
.fa-fast-backward { --fa: "\F049"; }
.fa-fast-forward { --fa: "\F050"; }
.fa-faucet { --fa: "\E005"; }
.fa-faucet-drip { --fa: "\E006"; }
.fa-fax { --fa: "\F1AC"; }
.fa-feather { --fa: "\F52D"; }
.fa-feather-alt { --fa: "\F56B"; }
.fa-feather-pointed { --fa: "\F56B"; }
.fa-feed { --fa: "\F09E"; }
.fa-female { --fa: "\F182"; }
.fa-fence { --fa: "\E303"; }
.fa-ferris-wheel { --fa: "\E174"; }
.fa-ferry { --fa: "\E4EA"; }
.fa-field-hockey { --fa: "\F44C"; }
.fa-field-hockey-stick-ball { --fa: "\F44C"; }
.fa-fighter-jet { --fa: "\F0FB"; }
.fa-file { --fa: "\F15B"; }
.fa-file-aiff { --fa: "\E7FB"; }
.fa-file-alt { --fa: "\F15C"; }
.fa-file-archive { --fa: "\F1C6"; }
.fa-file-arrow-down { --fa: "\F56D"; }
.fa-file-arrow-up { --fa: "\F574"; }
.fa-file-audio { --fa: "\F1C7"; }
.fa-file-award { --fa: "\F5F3"; }
.fa-file-ban { --fa: "\E758"; }
.fa-file-binary { --fa: "\E175"; }
.fa-file-brackets-curly { --fa: "\E804"; }
.fa-file-cad { --fa: "\E672"; }
.fa-file-caret-down { --fa: "\E429"; }
.fa-file-caret-up { --fa: "\E42A"; }
.fa-file-certificate { --fa: "\F5F3"; }
.fa-file-chart-column { --fa: "\F659"; }
.fa-file-chart-line { --fa: "\F659"; }
.fa-file-chart-pie { --fa: "\F65A"; }
.fa-file-check { --fa: "\F316"; }
.fa-file-circle-check { --fa: "\E5A0"; }
.fa-file-circle-exclamation { --fa: "\E4EB"; }
.fa-file-circle-info { --fa: "\E493"; }
.fa-file-circle-minus { --fa: "\E4ED"; }
.fa-file-circle-plus { --fa: "\E494"; }
.fa-file-circle-question { --fa: "\E4EF"; }
.fa-file-circle-xmark { --fa: "\E5A1"; }
.fa-file-clipboard { --fa: "\F0EA"; }
.fa-file-code { --fa: "\F1C9"; }
.fa-file-contract { --fa: "\F56C"; }
.fa-file-csv { --fa: "\F6DD"; }
.fa-file-dashed-line { --fa: "\F877"; }
.fa-file-doc { --fa: "\E5ED"; }
.fa-file-download { --fa: "\F56D"; }
.fa-file-edit { --fa: "\F31C"; }
.fa-file-eps { --fa: "\E644"; }
.fa-file-excel { --fa: "\F1C3"; }
.fa-file-exclamation { --fa: "\F31A"; }
.fa-file-export { --fa: "\F56E"; }
.fa-file-fragment { --fa: "\E697"; }
.fa-file-gif { --fa: "\E645"; }
.fa-file-half-dashed { --fa: "\E698"; }
.fa-file-heart { --fa: "\E176"; }
.fa-file-image { --fa: "\F1C5"; }
.fa-file-import { --fa: "\F56F"; }
.fa-file-invoice { --fa: "\F570"; }
.fa-file-invoice-dollar { --fa: "\F571"; }
.fa-file-jpg { --fa: "\E646"; }
.fa-file-lines { --fa: "\F15C"; }
.fa-file-lock { --fa: "\E3A6"; }
.fa-file-magnifying-glass { --fa: "\F865"; }
.fa-file-medical { --fa: "\F477"; }
.fa-file-medical-alt { --fa: "\F478"; }
.fa-file-midi { --fa: "\E805"; }
.fa-file-minus { --fa: "\F318"; }
.fa-file-mov { --fa: "\E647"; }
.fa-file-mp3 { --fa: "\E648"; }
.fa-file-mp4 { --fa: "\E649"; }
.fa-file-music { --fa: "\F8B6"; }
.fa-file-odf { --fa: "\E7FC"; }
.fa-file-pdf { --fa: "\F1C1"; }
.fa-file-pen { --fa: "\F31C"; }
.fa-file-plus { --fa: "\F319"; }
.fa-file-plus-minus { --fa: "\E177"; }
.fa-file-png { --fa: "\E666"; }
.fa-file-powerpoint { --fa: "\F1C4"; }
.fa-file-ppt { --fa: "\E64A"; }
.fa-file-prescription { --fa: "\F572"; }
.fa-file-search { --fa: "\F865"; }
.fa-file-shield { --fa: "\E4F0"; }
.fa-file-signature { --fa: "\F573"; }
.fa-file-slash { --fa: "\E3A7"; }
.fa-file-spreadsheet { --fa: "\F65B"; }
.fa-file-svg { --fa: "\E64B"; }
.fa-file-tex { --fa: "\E7FD"; }
.fa-file-text { --fa: "\F15C"; }
.fa-file-times { --fa: "\F317"; }
.fa-file-upload { --fa: "\F574"; }
.fa-file-user { --fa: "\F65C"; }
.fa-file-vector { --fa: "\E64C"; }
.fa-file-video { --fa: "\F1C8"; }
.fa-file-wav { --fa: "\E7FE"; }
.fa-file-waveform { --fa: "\F478"; }
.fa-file-word { --fa: "\F1C2"; }
.fa-file-xls { --fa: "\E64D"; }
.fa-file-xmark { --fa: "\F317"; }
.fa-file-xml { --fa: "\E654"; }
.fa-file-zip { --fa: "\E5EE"; }
.fa-file-zipper { --fa: "\F1C6"; }
.fa-files { --fa: "\E178"; }
.fa-files-medical { --fa: "\F7FD"; }
.fa-fill { --fa: "\F575"; }
.fa-fill-drip { --fa: "\F576"; }
.fa-film { --fa: "\F008"; }
.fa-film-alt { --fa: "\F008"; }
.fa-film-canister { --fa: "\F8B7"; }
.fa-film-cannister { --fa: "\F8B7"; }
.fa-film-music { --fa: "\E769"; }
.fa-film-simple { --fa: "\F008"; }
.fa-film-slash { --fa: "\E179"; }
.fa-film-stack { --fa: "\E76B"; }
.fa-films { --fa: "\E17A"; }
.fa-filter { --fa: "\F0B0"; }
.fa-filter-circle-dollar { --fa: "\F662"; }
.fa-filter-circle-xmark { --fa: "\E17B"; }
.fa-filter-list { --fa: "\E17C"; }
.fa-filter-slash { --fa: "\E17D"; }
.fa-filters { --fa: "\E17E"; }
.fa-fingerprint { --fa: "\F577"; }
.fa-fire { --fa: "\F06D"; }
.fa-fire-alt { --fa: "\F7E4"; }
.fa-fire-burner { --fa: "\E4F1"; }
.fa-fire-extinguisher { --fa: "\F134"; }
.fa-fire-flame { --fa: "\F6DF"; }
.fa-fire-flame-curved { --fa: "\F7E4"; }
.fa-fire-flame-simple { --fa: "\F46A"; }
.fa-fire-hydrant { --fa: "\E17F"; }
.fa-fire-smoke { --fa: "\F74B"; }
.fa-fireplace { --fa: "\F79A"; }
.fa-firewall { --fa: "\E3DC"; }
.fa-first-aid { --fa: "\F479"; }
.fa-fish { --fa: "\F578"; }
.fa-fish-bones { --fa: "\E304"; }
.fa-fish-cooked { --fa: "\F7FE"; }
.fa-fish-fins { --fa: "\E4F2"; }
.fa-fishing-rod { --fa: "\E3A8"; }
.fa-fist-raised { --fa: "\F6DE"; }
.fa-flag { --fa: "\F024"; }
.fa-flag-alt { --fa: "\F74C"; }
.fa-flag-checkered { --fa: "\F11E"; }
.fa-flag-pennant { --fa: "\F456"; }
.fa-flag-swallowtail { --fa: "\F74C"; }
.fa-flag-usa { --fa: "\F74D"; }
.fa-flame { --fa: "\F6DF"; }
.fa-flashlight { --fa: "\F8B8"; }
.fa-flask { --fa: "\F0C3"; }
.fa-flask-gear { --fa: "\E5F1"; }
.fa-flask-poison { --fa: "\F6E0"; }
.fa-flask-potion { --fa: "\F6E1"; }
.fa-flask-round-poison { --fa: "\F6E0"; }
.fa-flask-round-potion { --fa: "\F6E1"; }
.fa-flask-vial { --fa: "\E4F3"; }
.fa-flatbread { --fa: "\E40B"; }
.fa-flatbread-stuffed { --fa: "\E40C"; }
.fa-floppy-disk { --fa: "\F0C7"; }
.fa-floppy-disk-circle-arrow-right { --fa: "\E180"; }
.fa-floppy-disk-circle-xmark { --fa: "\E181"; }
.fa-floppy-disk-pen { --fa: "\E182"; }
.fa-floppy-disk-times { --fa: "\E181"; }
.fa-floppy-disks { --fa: "\E183"; }
.fa-florin-sign { --fa: "\E184"; }
.fa-flower { --fa: "\F7FF"; }
.fa-flower-daffodil { --fa: "\F800"; }
.fa-flower-tulip { --fa: "\F801"; }
.fa-flushed { --fa: "\F579"; }
.fa-flute { --fa: "\F8B9"; }
.fa-flux-capacitor { --fa: "\F8BA"; }
.fa-flying-disc { --fa: "\E3A9"; }
.fa-fog { --fa: "\F74E"; }
.fa-folder { --fa: "\F07B"; }
.fa-folder-arrow-down { --fa: "\E053"; }
.fa-folder-arrow-left { --fa: "\E7D2"; }
.fa-folder-arrow-right { --fa: "\E7D3"; }
.fa-folder-arrow-up { --fa: "\E054"; }
.fa-folder-blank { --fa: "\F07B"; }
.fa-folder-bookmark { --fa: "\E186"; }
.fa-folder-check { --fa: "\E64E"; }
.fa-folder-closed { --fa: "\E185"; }
.fa-folder-cog { --fa: "\E187"; }
.fa-folder-download { --fa: "\E053"; }
.fa-folder-gear { --fa: "\E187"; }
.fa-folder-grid { --fa: "\E188"; }
.fa-folder-heart { --fa: "\E189"; }
.fa-folder-image { --fa: "\E18A"; }
.fa-folder-magnifying-glass { --fa: "\E18B"; }
.fa-folder-medical { --fa: "\E18C"; }
.fa-folder-minus { --fa: "\F65D"; }
.fa-folder-music { --fa: "\E18D"; }
.fa-folder-open { --fa: "\F07C"; }
.fa-folder-plus { --fa: "\F65E"; }
.fa-folder-search { --fa: "\E18B"; }
.fa-folder-times { --fa: "\F65F"; }
.fa-folder-tree { --fa: "\F802"; }
.fa-folder-upload { --fa: "\E054"; }
.fa-folder-user { --fa: "\E18E"; }
.fa-folder-xmark { --fa: "\F65F"; }
.fa-folders { --fa: "\F660"; }
.fa-fondue-pot { --fa: "\E40D"; }
.fa-font { --fa: "\F031"; }
.fa-font-awesome { --fa: "\F2B4"; }
.fa-font-awesome-flag { --fa: "\F2B4"; }
.fa-font-awesome-logo-full { --fa: "\F2B4"; }
.fa-font-case { --fa: "\F866"; }
.fa-foot-wing { --fa: "\E834"; }
.fa-football { --fa: "\F44E"; }
.fa-football-ball { --fa: "\F44E"; }
.fa-football-helmet { --fa: "\F44F"; }
.fa-fork { --fa: "\F2E3"; }
.fa-fork-knife { --fa: "\F2E6"; }
.fa-forklift { --fa: "\F47A"; }
.fa-fort { --fa: "\E486"; }
.fa-forward { --fa: "\F04E"; }
.fa-forward-fast { --fa: "\F050"; }
.fa-forward-step { --fa: "\F051"; }
.fa-fragile { --fa: "\F4BB"; }
.fa-frame { --fa: "\E495"; }
.fa-franc-sign { --fa: "\E18F"; }
.fa-french-fries { --fa: "\F803"; }
.fa-frog { --fa: "\F52E"; }
.fa-frosty-head { --fa: "\F79B"; }
.fa-frown { --fa: "\F119"; }
.fa-frown-open { --fa: "\F57A"; }
.fa-function { --fa: "\F661"; }
.fa-funnel-dollar { --fa: "\F662"; }
.fa-futbol { --fa: "\F1E3"; }
.fa-futbol-ball { --fa: "\F1E3"; }
.fa-g { --fa: "G"; }
.fa-galaxy { --fa: "\E008"; }
.fa-gallery-thumbnails { --fa: "\E3AA"; }
.fa-game-board { --fa: "\F867"; }
.fa-game-board-alt { --fa: "\F868"; }
.fa-game-board-simple { --fa: "\F868"; }
.fa-game-console-handheld { --fa: "\F8BB"; }
.fa-game-console-handheld-crank { --fa: "\E5B9"; }
.fa-gamepad { --fa: "\F11B"; }
.fa-gamepad-alt { --fa: "\E5A2"; }
.fa-gamepad-modern { --fa: "\E5A2"; }
.fa-garage { --fa: "\E009"; }
.fa-garage-car { --fa: "\E00A"; }
.fa-garage-empty { --fa: "\E6C9"; }
.fa-garage-open { --fa: "\E00B"; }
.fa-garlic { --fa: "\E40E"; }
.fa-gas-pump { --fa: "\F52F"; }
.fa-gas-pump-left { --fa: "\E778"; }
.fa-gas-pump-right { --fa: "\E779"; }
.fa-gas-pump-slash { --fa: "\F5F4"; }
.fa-gauge { --fa: "\F624"; }
.fa-gauge-circle-bolt { --fa: "\E496"; }
.fa-gauge-circle-minus { --fa: "\E497"; }
.fa-gauge-circle-plus { --fa: "\E498"; }
.fa-gauge-high { --fa: "\F625"; }
.fa-gauge-low { --fa: "\F627"; }
.fa-gauge-max { --fa: "\F626"; }
.fa-gauge-med { --fa: "\F624"; }
.fa-gauge-min { --fa: "\F628"; }
.fa-gauge-simple { --fa: "\F629"; }
.fa-gauge-simple-high { --fa: "\F62A"; }
.fa-gauge-simple-low { --fa: "\F62C"; }
.fa-gauge-simple-max { --fa: "\F62B"; }
.fa-gauge-simple-med { --fa: "\F629"; }
.fa-gauge-simple-min { --fa: "\F62D"; }
.fa-gave-dandy { --fa: "\E409"; }
.fa-gavel { --fa: "\F0E3"; }
.fa-gbp { --fa: "\F154"; }
.fa-gear { --fa: "\F013"; }
.fa-gear-code { --fa: "\E5E8"; }
.fa-gear-complex { --fa: "\E5E9"; }
.fa-gear-complex-code { --fa: "\E5EB"; }
.fa-gears { --fa: "\F085"; }
.fa-gem { --fa: "\F3A5"; }
.fa-genderless { --fa: "\F22D"; }
.fa-ghost { --fa: "\F6E2"; }
.fa-gif { --fa: "\E190"; }
.fa-gift { --fa: "\F06B"; }
.fa-gift-card { --fa: "\F663"; }
.fa-gifts { --fa: "\F79C"; }
.fa-gingerbread-man { --fa: "\F79D"; }
.fa-glass { --fa: "\F804"; }
.fa-glass-champagne { --fa: "\F79E"; }
.fa-glass-cheers { --fa: "\F79F"; }
.fa-glass-citrus { --fa: "\F869"; }
.fa-glass-empty { --fa: "\E191"; }
.fa-glass-half { --fa: "\E192"; }
.fa-glass-half-empty { --fa: "\E192"; }
.fa-glass-half-full { --fa: "\E192"; }
.fa-glass-martini { --fa: "\F000"; }
.fa-glass-martini-alt { --fa: "\F57B"; }
.fa-glass-water { --fa: "\E4F4"; }
.fa-glass-water-droplet { --fa: "\E4F5"; }
.fa-glass-whiskey { --fa: "\F7A0"; }
.fa-glass-whiskey-rocks { --fa: "\F7A1"; }
.fa-glasses { --fa: "\F530"; }
.fa-glasses-alt { --fa: "\F5F5"; }
.fa-glasses-round { --fa: "\F5F5"; }
.fa-globe { --fa: "\F0AC"; }
.fa-globe-africa { --fa: "\F57C"; }
.fa-globe-americas { --fa: "\F57D"; }
.fa-globe-asia { --fa: "\F57E"; }
.fa-globe-europe { --fa: "\F7A2"; }
.fa-globe-oceania { --fa: "\E47B"; }
.fa-globe-pointer { --fa: "\E60E"; }
.fa-globe-snow { --fa: "\F7A3"; }
.fa-globe-stand { --fa: "\F5F6"; }
.fa-globe-wifi { --fa: "\E685"; }
.fa-glove-boxing { --fa: "\F438"; }
.fa-goal-net { --fa: "\E3AB"; }
.fa-golf-ball { --fa: "\F450"; }
.fa-golf-ball-tee { --fa: "\F450"; }
.fa-golf-club { --fa: "\F451"; }
.fa-golf-flag-hole { --fa: "\E3AC"; }
.fa-gopuram { --fa: "\F664"; }
.fa-graduation-cap { --fa: "\F19D"; }
.fa-gramophone { --fa: "\F8BD"; }
.fa-grapes { --fa: "\E306"; }
.fa-grate { --fa: "\E193"; }
.fa-grate-droplet { --fa: "\E194"; }
.fa-greater-than { --fa: ">"; }
.fa-greater-than-equal { --fa: "\F532"; }
.fa-grid { --fa: "\E195"; }
.fa-grid-2 { --fa: "\E196"; }
.fa-grid-2-minus { --fa: "\E6AA"; }
.fa-grid-2-plus { --fa: "\E197"; }
.fa-grid-3 { --fa: "\E195"; }
.fa-grid-4 { --fa: "\E198"; }
.fa-grid-5 { --fa: "\E199"; }
.fa-grid-dividers { --fa: "\E3AD"; }
.fa-grid-horizontal { --fa: "\F58D"; }
.fa-grid-round { --fa: "\E5DA"; }
.fa-grid-round-2 { --fa: "\E5DB"; }
.fa-grid-round-2-minus { --fa: "\E6AB"; }
.fa-grid-round-2-plus { --fa: "\E5DC"; }
.fa-grid-round-4 { --fa: "\E5DD"; }
.fa-grid-round-5 { --fa: "\E5DE"; }
.fa-grid-vertical { --fa: "\F58E"; }
.fa-grill { --fa: "\E5A3"; }
.fa-grill-fire { --fa: "\E5A4"; }
.fa-grill-hot { --fa: "\E5A5"; }
.fa-grimace { --fa: "\F57F"; }
.fa-grin { --fa: "\F580"; }
.fa-grin-alt { --fa: "\F581"; }
.fa-grin-beam { --fa: "\F582"; }
.fa-grin-beam-sweat { --fa: "\F583"; }
.fa-grin-hearts { --fa: "\F584"; }
.fa-grin-squint { --fa: "\F585"; }
.fa-grin-squint-tears { --fa: "\F586"; }
.fa-grin-stars { --fa: "\F587"; }
.fa-grin-tears { --fa: "\F588"; }
.fa-grin-tongue { --fa: "\F589"; }
.fa-grin-tongue-squint { --fa: "\F58A"; }
.fa-grin-tongue-wink { --fa: "\F58B"; }
.fa-grin-wink { --fa: "\F58C"; }
.fa-grip { --fa: "\F58D"; }
.fa-grip-dots { --fa: "\E410"; }
.fa-grip-dots-vertical { --fa: "\E411"; }
.fa-grip-horizontal { --fa: "\F58D"; }
.fa-grip-lines { --fa: "\F7A4"; }
.fa-grip-lines-vertical { --fa: "\F7A5"; }
.fa-grip-vertical { --fa: "\F58E"; }
.fa-group-arrows-rotate { --fa: "\E4F6"; }
.fa-guarani-sign { --fa: "\E19A"; }
.fa-guitar { --fa: "\F7A6"; }
.fa-guitar-electric { --fa: "\F8BE"; }
.fa-guitars { --fa: "\F8BF"; }
.fa-gun { --fa: "\E19B"; }
.fa-gun-slash { --fa: "\E19C"; }
.fa-gun-squirt { --fa: "\E19D"; }
.fa-h { --fa: "H"; }
.fa-h-square { --fa: "\F0FD"; }
.fa-h1 { --fa: "\F313"; }
.fa-h2 { --fa: "\F314"; }
.fa-h3 { --fa: "\F315"; }
.fa-h4 { --fa: "\F86A"; }
.fa-h5 { --fa: "\E412"; }
.fa-h6 { --fa: "\E413"; }
.fa-hamburger { --fa: "\F805"; }
.fa-hammer { --fa: "\F6E3"; }
.fa-hammer-brush { --fa: "\E620"; }
.fa-hammer-crash { --fa: "\E414"; }
.fa-hammer-war { --fa: "\F6E4"; }
.fa-hamsa { --fa: "\F665"; }
.fa-hand { --fa: "\F256"; }
.fa-hand-back-fist { --fa: "\F255"; }
.fa-hand-back-point-down { --fa: "\E19E"; }
.fa-hand-back-point-left { --fa: "\E19F"; }
.fa-hand-back-point-ribbon { --fa: "\E1A0"; }
.fa-hand-back-point-right { --fa: "\E1A1"; }
.fa-hand-back-point-up { --fa: "\E1A2"; }
.fa-hand-dots { --fa: "\F461"; }
.fa-hand-fingers-crossed { --fa: "\E1A3"; }
.fa-hand-fist { --fa: "\F6DE"; }
.fa-hand-heart { --fa: "\F4BC"; }
.fa-hand-holding { --fa: "\F4BD"; }
.fa-hand-holding-box { --fa: "\F47B"; }
.fa-hand-holding-circle-dollar { --fa: "\E621"; }
.fa-hand-holding-dollar { --fa: "\F4C0"; }
.fa-hand-holding-droplet { --fa: "\F4C1"; }
.fa-hand-holding-hand { --fa: "\E4F7"; }
.fa-hand-holding-heart { --fa: "\F4BE"; }
.fa-hand-holding-magic { --fa: "\F6E5"; }
.fa-hand-holding-medical { --fa: "\E05C"; }
.fa-hand-holding-seedling { --fa: "\F4BF"; }
.fa-hand-holding-skull { --fa: "\E1A4"; }
.fa-hand-holding-star { --fa: "\E801"; }
.fa-hand-holding-usd { --fa: "\F4C0"; }
.fa-hand-holding-water { --fa: "\F4C1"; }
.fa-hand-horns { --fa: "\E1A9"; }
.fa-hand-lizard { --fa: "\F258"; }
.fa-hand-love { --fa: "\E1A5"; }
.fa-hand-middle-finger { --fa: "\F806"; }
.fa-hand-paper { --fa: "\F256"; }
.fa-hand-peace { --fa: "\F25B"; }
.fa-hand-point-down { --fa: "\F0A7"; }
.fa-hand-point-left { --fa: "\F0A5"; }
.fa-hand-point-ribbon { --fa: "\E1A6"; }
.fa-hand-point-right { --fa: "\F0A4"; }
.fa-hand-point-up { --fa: "\F0A6"; }
.fa-hand-pointer { --fa: "\F25A"; }
.fa-hand-receiving { --fa: "\F47C"; }
.fa-hand-rock { --fa: "\F255"; }
.fa-hand-scissors { --fa: "\F257"; }
.fa-hand-shaka { --fa: "\E831"; }
.fa-hand-sparkles { --fa: "\E05D"; }
.fa-hand-spock { --fa: "\F259"; }
.fa-hand-wave { --fa: "\E1A7"; }
.fa-handcuffs { --fa: "\E4F8"; }
.fa-hands { --fa: "\F2A7"; }
.fa-hands-american-sign-language-interpreting { --fa: "\F2A3"; }
.fa-hands-asl-interpreting { --fa: "\F2A3"; }
.fa-hands-bound { --fa: "\E4F9"; }
.fa-hands-bubbles { --fa: "\E05E"; }
.fa-hands-clapping { --fa: "\E1A8"; }
.fa-hands-heart { --fa: "\F4C3"; }
.fa-hands-helping { --fa: "\F4C4"; }
.fa-hands-holding { --fa: "\F4C2"; }
.fa-hands-holding-child { --fa: "\E4FA"; }
.fa-hands-holding-circle { --fa: "\E4FB"; }
.fa-hands-holding-diamond { --fa: "\F47C"; }
.fa-hands-holding-dollar { --fa: "\F4C5"; }
.fa-hands-holding-heart { --fa: "\F4C3"; }
.fa-hands-praying { --fa: "\F684"; }
.fa-hands-usd { --fa: "\F4C5"; }
.fa-hands-wash { --fa: "\E05E"; }
.fa-handshake { --fa: "\F2B5"; }
.fa-handshake-alt { --fa: "\F2B5"; }
.fa-handshake-alt-slash { --fa: "\E060"; }
.fa-handshake-angle { --fa: "\F4C4"; }
.fa-handshake-simple { --fa: "\F2B5"; }
.fa-handshake-simple-slash { --fa: "\E060"; }
.fa-handshake-slash { --fa: "\E060"; }
.fa-hanukiah { --fa: "\F6E6"; }
.fa-hard-drive { --fa: "\F0A0"; }
.fa-hard-hat { --fa: "\F807"; }
.fa-hard-of-hearing { --fa: "\F2A4"; }
.fa-hashtag { --fa: "#"; }
.fa-hashtag-lock { --fa: "\E415"; }
.fa-hat-beach { --fa: "\E606"; }
.fa-hat-chef { --fa: "\F86B"; }
.fa-hat-cowboy { --fa: "\F8C0"; }
.fa-hat-cowboy-side { --fa: "\F8C1"; }
.fa-hat-hard { --fa: "\F807"; }
.fa-hat-santa { --fa: "\F7A7"; }
.fa-hat-winter { --fa: "\F7A8"; }
.fa-hat-witch { --fa: "\F6E7"; }
.fa-hat-wizard { --fa: "\F6E8"; }
.fa-haykal { --fa: "\F666"; }
.fa-hdd { --fa: "\F0A0"; }
.fa-head-side { --fa: "\F6E9"; }
.fa-head-side-brain { --fa: "\F808"; }
.fa-head-side-circuit { --fa: "\E75E"; }
.fa-head-side-cough { --fa: "\E061"; }
.fa-head-side-cough-slash { --fa: "\E062"; }
.fa-head-side-gear { --fa: "\E611"; }
.fa-head-side-goggles { --fa: "\F6EA"; }
.fa-head-side-headphones { --fa: "\F8C2"; }
.fa-head-side-heart { --fa: "\E1AA"; }
.fa-head-side-mask { --fa: "\E063"; }
.fa-head-side-medical { --fa: "\F809"; }
.fa-head-side-speak { --fa: "\E75F"; }
.fa-head-side-virus { --fa: "\E064"; }
.fa-head-vr { --fa: "\F6EA"; }
.fa-header { --fa: "\F1DC"; }
.fa-heading { --fa: "\F1DC"; }
.fa-headphones { --fa: "\F025"; }
.fa-headphones-alt { --fa: "\F025"; }
.fa-headphones-simple { --fa: "\F025"; }
.fa-headphones-slash { --fa: "\E77C"; }
.fa-headset { --fa: "\F590"; }
.fa-heart { --fa: "\F004"; }
.fa-heart-broken { --fa: "\F7A9"; }
.fa-heart-circle { --fa: "\F4C7"; }
.fa-heart-circle-bolt { --fa: "\E4FC"; }
.fa-heart-circle-check { --fa: "\E4FD"; }
.fa-heart-circle-exclamation { --fa: "\E4FE"; }
.fa-heart-circle-minus { --fa: "\E4FF"; }
.fa-heart-circle-plus { --fa: "\E500"; }
.fa-heart-circle-xmark { --fa: "\E501"; }
.fa-heart-crack { --fa: "\F7A9"; }
.fa-heart-half { --fa: "\E1AB"; }
.fa-heart-half-alt { --fa: "\E1AC"; }
.fa-heart-half-stroke { --fa: "\E1AC"; }
.fa-heart-music-camera-bolt { --fa: "\F86D"; }
.fa-heart-pulse { --fa: "\F21E"; }
.fa-heart-rate { --fa: "\F5F8"; }
.fa-heart-slash { --fa: "\E78E"; }
.fa-heart-square { --fa: "\F4C8"; }
.fa-heartbeat { --fa: "\F21E"; }
.fa-hearts { --fa: "\E78F"; }
.fa-heat { --fa: "\E00C"; }
.fa-helicopter { --fa: "\F533"; }
.fa-helicopter-symbol { --fa: "\E502"; }
.fa-helmet-battle { --fa: "\F6EB"; }
.fa-helmet-safety { --fa: "\F807"; }
.fa-helmet-un { --fa: "\E503"; }
.fa-heptagon { --fa: "\E820"; }
.fa-hexagon { --fa: "\F312"; }
.fa-hexagon-check { --fa: "\E416"; }
.fa-hexagon-divide { --fa: "\E1AD"; }
.fa-hexagon-equals { --fa: "\E6B2"; }
.fa-hexagon-exclamation { --fa: "\E417"; }
.fa-hexagon-image { --fa: "\E504"; }
.fa-hexagon-minus { --fa: "\F307"; }
.fa-hexagon-nodes { --fa: "\E699"; }
.fa-hexagon-nodes-bolt { --fa: "\E69A"; }
.fa-hexagon-plus { --fa: "\F300"; }
.fa-hexagon-vertical-nft { --fa: "\E505"; }
.fa-hexagon-vertical-nft-slanted { --fa: "\E505"; }
.fa-hexagon-xmark { --fa: "\F2EE"; }
.fa-high-definition { --fa: "\E1AE"; }
.fa-highlighter { --fa: "\F591"; }
.fa-highlighter-line { --fa: "\E1AF"; }
.fa-hiking { --fa: "\F6EC"; }
.fa-hill-avalanche { --fa: "\E507"; }
.fa-hill-rockslide { --fa: "\E508"; }
.fa-hippo { --fa: "\F6ED"; }
.fa-history { --fa: "\F1DA"; }
.fa-hockey-mask { --fa: "\F6EE"; }
.fa-hockey-puck { --fa: "\F453"; }
.fa-hockey-stick { --fa: "\E7E6"; }
.fa-hockey-stick-puck { --fa: "\E3AE"; }
.fa-hockey-sticks { --fa: "\F454"; }
.fa-holly-berry { --fa: "\F7AA"; }
.fa-home { --fa: "\F015"; }
.fa-home-alt { --fa: "\F015"; }
.fa-home-blank { --fa: "\E487"; }
.fa-home-heart { --fa: "\F4C9"; }
.fa-home-lg { --fa: "\E3AF"; }
.fa-home-lg-alt { --fa: "\F015"; }
.fa-home-user { --fa: "\E1B0"; }
.fa-honey-pot { --fa: "\E418"; }
.fa-hood-cloak { --fa: "\F6EF"; }
.fa-horizontal-rule { --fa: "\F86C"; }
.fa-horse { --fa: "\F6F0"; }
.fa-horse-head { --fa: "\F7AB"; }
.fa-horse-saddle { --fa: "\F8C3"; }
.fa-horseshoe { --fa: "\E81A"; }
.fa-hose { --fa: "\E419"; }
.fa-hose-reel { --fa: "\E41A"; }
.fa-hospital { --fa: "\F0F8"; }
.fa-hospital-alt { --fa: "\F0F8"; }
.fa-hospital-symbol { --fa: "\F47E"; }
.fa-hospital-user { --fa: "\F80D"; }
.fa-hospital-wide { --fa: "\F0F8"; }
.fa-hospitals { --fa: "\F80E"; }
.fa-hot-tub { --fa: "\F593"; }
.fa-hot-tub-person { --fa: "\F593"; }
.fa-hotdog { --fa: "\F80F"; }
.fa-hotel { --fa: "\F594"; }
.fa-hourglass { --fa: "\F254"; }
.fa-hourglass-1 { --fa: "\F251"; }
.fa-hourglass-2 { --fa: "\F252"; }
.fa-hourglass-3 { --fa: "\F253"; }
.fa-hourglass-clock { --fa: "\E41B"; }
.fa-hourglass-empty { --fa: "\F254"; }
.fa-hourglass-end { --fa: "\F253"; }
.fa-hourglass-half { --fa: "\F252"; }
.fa-hourglass-start { --fa: "\F251"; }
.fa-house { --fa: "\F015"; }
.fa-house-blank { --fa: "\E487"; }
.fa-house-building { --fa: "\E1B1"; }
.fa-house-chimney { --fa: "\E3AF"; }
.fa-house-chimney-blank { --fa: "\E3B0"; }
.fa-house-chimney-crack { --fa: "\F6F1"; }
.fa-house-chimney-heart { --fa: "\E1B2"; }
.fa-house-chimney-medical { --fa: "\F7F2"; }
.fa-house-chimney-user { --fa: "\E065"; }
.fa-house-chimney-window { --fa: "\E00D"; }
.fa-house-circle-check { --fa: "\E509"; }
.fa-house-circle-exclamation { --fa: "\E50A"; }
.fa-house-circle-xmark { --fa: "\E50B"; }
.fa-house-crack { --fa: "\E3B1"; }
.fa-house-damage { --fa: "\F6F1"; }
.fa-house-day { --fa: "\E00E"; }
.fa-house-fire { --fa: "\E50C"; }
.fa-house-flag { --fa: "\E50D"; }
.fa-house-flood { --fa: "\F74F"; }
.fa-house-flood-water { --fa: "\E50E"; }
.fa-house-flood-water-circle-arrow-right { --fa: "\E50F"; }
.fa-house-heart { --fa: "\F4C9"; }
.fa-house-laptop { --fa: "\E066"; }
.fa-house-leave { --fa: "\E00F"; }
.fa-house-lock { --fa: "\E510"; }
.fa-house-medical { --fa: "\E3B2"; }
.fa-house-medical-circle-check { --fa: "\E511"; }
.fa-house-medical-circle-exclamation { --fa: "\E512"; }
.fa-house-medical-circle-xmark { --fa: "\E513"; }
.fa-house-medical-flag { --fa: "\E514"; }
.fa-house-night { --fa: "\E010"; }
.fa-house-person-arrive { --fa: "\E011"; }
.fa-house-person-depart { --fa: "\E00F"; }
.fa-house-person-leave { --fa: "\E00F"; }
.fa-house-person-return { --fa: "\E011"; }
.fa-house-return { --fa: "\E011"; }
.fa-house-signal { --fa: "\E012"; }
.fa-house-tree { --fa: "\E1B3"; }
.fa-house-tsunami { --fa: "\E515"; }
.fa-house-turret { --fa: "\E1B4"; }
.fa-house-unlock { --fa: "\E6CA"; }
.fa-house-user { --fa: "\E1B0"; }
.fa-house-water { --fa: "\F74F"; }
.fa-house-window { --fa: "\E3B3"; }
.fa-hryvnia { --fa: "\F6F2"; }
.fa-hryvnia-sign { --fa: "\F6F2"; }
.fa-humidity { --fa: "\F750"; }
.fa-hundred-points { --fa: "\E41C"; }
.fa-hurricane { --fa: "\F751"; }
.fa-hydra { --fa: "\E686"; }
.fa-hyphen { --fa: "-"; }
.fa-i { --fa: "I"; }
.fa-i-cursor { --fa: "\F246"; }
.fa-ice-cream { --fa: "\F810"; }
.fa-ice-skate { --fa: "\F7AC"; }
.fa-icicles { --fa: "\F7AD"; }
.fa-icons { --fa: "\F86D"; }
.fa-icons-alt { --fa: "\F86E"; }
.fa-id-badge { --fa: "\F2C1"; }
.fa-id-card { --fa: "\F2C2"; }
.fa-id-card-alt { --fa: "\F47F"; }
.fa-id-card-clip { --fa: "\F47F"; }
.fa-igloo { --fa: "\F7AE"; }
.fa-ils { --fa: "\F20B"; }
.fa-image { --fa: "\F03E"; }
.fa-image-circle-arrow-down { --fa: "\E76C"; }
.fa-image-circle-check { --fa: "\E76D"; }
.fa-image-circle-plus { --fa: "\E76E"; }
.fa-image-circle-xmark { --fa: "\E76F"; }
.fa-image-landscape { --fa: "\E1B5"; }
.fa-image-music { --fa: "\E770"; }
.fa-image-polaroid { --fa: "\F8C4"; }
.fa-image-polaroid-user { --fa: "\E1B6"; }
.fa-image-portrait { --fa: "\F3E0"; }
.fa-image-slash { --fa: "\E1B7"; }
.fa-image-stack { --fa: "\E771"; }
.fa-image-user { --fa: "\E1B8"; }
.fa-images { --fa: "\F302"; }
.fa-images-user { --fa: "\E1B9"; }
.fa-inbox { --fa: "\F01C"; }
.fa-inbox-arrow-down { --fa: "\F310"; }
.fa-inbox-arrow-up { --fa: "\F311"; }
.fa-inbox-full { --fa: "\E1BA"; }
.fa-inbox-in { --fa: "\F310"; }
.fa-inbox-out { --fa: "\F311"; }
.fa-inboxes { --fa: "\E1BB"; }
.fa-indent { --fa: "\F03C"; }
.fa-indian-rupee { --fa: "\E1BC"; }
.fa-indian-rupee-sign { --fa: "\E1BC"; }
.fa-industry { --fa: "\F275"; }
.fa-industry-alt { --fa: "\F3B3"; }
.fa-industry-windows { --fa: "\F3B3"; }
.fa-infinity { --fa: "\F534"; }
.fa-info { --fa: "\F129"; }
.fa-info-circle { --fa: "\F05A"; }
.fa-info-square { --fa: "\F30F"; }
.fa-inhaler { --fa: "\F5F9"; }
.fa-input-numeric { --fa: "\E1BD"; }
.fa-input-pipe { --fa: "\E1BE"; }
.fa-input-text { --fa: "\E1BF"; }
.fa-inr { --fa: "\E1BC"; }
.fa-institution { --fa: "\F19C"; }
.fa-integral { --fa: "\F667"; }
.fa-interrobang { --fa: "\E5BA"; }
.fa-intersection { --fa: "\F668"; }
.fa-inventory { --fa: "\F480"; }
.fa-island-tree-palm { --fa: "\F811"; }
.fa-island-tropical { --fa: "\F811"; }
.fa-italic { --fa: "\F033"; }
.fa-j { --fa: "J"; }
.fa-jack-o-lantern { --fa: "\F30E"; }
.fa-jar { --fa: "\E516"; }
.fa-jar-wheat { --fa: "\E517"; }
.fa-jeans { --fa: "\E6D2"; }
.fa-jeans-straight { --fa: "\E6D3"; }
.fa-jedi { --fa: "\F669"; }
.fa-jet-fighter { --fa: "\F0FB"; }
.fa-jet-fighter-up { --fa: "\E518"; }
.fa-joint { --fa: "\F595"; }
.fa-journal-whills { --fa: "\F66A"; }
.fa-joystick { --fa: "\F8C5"; }
.fa-jpy { --fa: "\F157"; }
.fa-jug { --fa: "\F8C6"; }
.fa-jug-bottle { --fa: "\E5FB"; }
.fa-jug-detergent { --fa: "\E519"; }
.fa-k { --fa: "K"; }
.fa-kaaba { --fa: "\F66B"; }
.fa-kazoo { --fa: "\F8C7"; }
.fa-kerning { --fa: "\F86F"; }
.fa-kettlebell { --fa: "\E832"; }
.fa-key { --fa: "\F084"; }
.fa-key-skeleton { --fa: "\F6F3"; }
.fa-key-skeleton-left-right { --fa: "\E3B4"; }
.fa-keyboard { --fa: "\F11C"; }
.fa-keyboard-brightness { --fa: "\E1C0"; }
.fa-keyboard-brightness-low { --fa: "\E1C1"; }
.fa-keyboard-down { --fa: "\E1C2"; }
.fa-keyboard-left { --fa: "\E1C3"; }
.fa-keynote { --fa: "\F66C"; }
.fa-khanda { --fa: "\F66D"; }
.fa-kidneys { --fa: "\F5FB"; }
.fa-kip-sign { --fa: "\E1C4"; }
.fa-kiss { --fa: "\F596"; }
.fa-kiss-beam { --fa: "\F597"; }
.fa-kiss-wink-heart { --fa: "\F598"; }
.fa-kit-medical { --fa: "\F479"; }
.fa-kitchen-set { --fa: "\E51A"; }
.fa-kite { --fa: "\F6F4"; }
.fa-kiwi-bird { --fa: "\F535"; }
.fa-kiwi-fruit { --fa: "\E30C"; }
.fa-knife { --fa: "\F2E4"; }
.fa-knife-kitchen { --fa: "\F6F5"; }
.fa-krw { --fa: "\F159"; }
.fa-l { --fa: "L"; }
.fa-lacrosse-stick { --fa: "\E3B5"; }
.fa-lacrosse-stick-ball { --fa: "\E3B6"; }
.fa-ladder-water { --fa: "\F5C5"; }
.fa-lambda { --fa: "\F66E"; }
.fa-lamp { --fa: "\F4CA"; }
.fa-lamp-desk { --fa: "\E014"; }
.fa-lamp-floor { --fa: "\E015"; }
.fa-lamp-street { --fa: "\E1C5"; }
.fa-land-mine-on { --fa: "\E51B"; }
.fa-landmark { --fa: "\F66F"; }
.fa-landmark-alt { --fa: "\F752"; }
.fa-landmark-dome { --fa: "\F752"; }
.fa-landmark-flag { --fa: "\E51C"; }
.fa-landmark-magnifying-glass { --fa: "\E622"; }
.fa-landscape { --fa: "\E1B5"; }
.fa-language { --fa: "\F1AB"; }
.fa-laptop { --fa: "\F109"; }
.fa-laptop-arrow-down { --fa: "\E1C6"; }
.fa-laptop-binary { --fa: "\E5E7"; }
.fa-laptop-code { --fa: "\F5FC"; }
.fa-laptop-file { --fa: "\E51D"; }
.fa-laptop-house { --fa: "\E066"; }
.fa-laptop-medical { --fa: "\F812"; }
.fa-laptop-mobile { --fa: "\F87A"; }
.fa-laptop-slash { --fa: "\E1C7"; }
.fa-lari-sign { --fa: "\E1C8"; }
.fa-lasso { --fa: "\F8C8"; }
.fa-lasso-sparkles { --fa: "\E1C9"; }
.fa-laugh { --fa: "\F599"; }
.fa-laugh-beam { --fa: "\F59A"; }
.fa-laugh-squint { --fa: "\F59B"; }
.fa-laugh-wink { --fa: "\F59C"; }
.fa-layer-group { --fa: "\F5FD"; }
.fa-layer-group-minus { --fa: "\F5FE"; }
.fa-layer-group-plus { --fa: "\F5FF"; }
.fa-layer-minus { --fa: "\F5FE"; }
.fa-layer-plus { --fa: "\F5FF"; }
.fa-leaf { --fa: "\F06C"; }
.fa-leaf-heart { --fa: "\F4CB"; }
.fa-leaf-maple { --fa: "\F6F6"; }
.fa-leaf-oak { --fa: "\F6F7"; }
.fa-leafy-green { --fa: "\E41D"; }
.fa-left { --fa: "\F355"; }
.fa-left-from-bracket { --fa: "\E66C"; }
.fa-left-from-dotted-line { --fa: "\E6C2"; }
.fa-left-from-line { --fa: "\F348"; }
.fa-left-long { --fa: "\F30A"; }
.fa-left-long-to-line { --fa: "\E41E"; }
.fa-left-right { --fa: "\F337"; }
.fa-left-to-bracket { --fa: "\E66D"; }
.fa-left-to-dotted-line { --fa: "\E6C3"; }
.fa-left-to-line { --fa: "\F34B"; }
.fa-legal { --fa: "\F0E3"; }
.fa-lemon { --fa: "\F094"; }
.fa-less-than { --fa: "<"; }
.fa-less-than-equal { --fa: "\F537"; }
.fa-level-down { --fa: "\F149"; }
.fa-level-down-alt { --fa: "\F3BE"; }
.fa-level-up { --fa: "\F148"; }
.fa-level-up-alt { --fa: "\F3BF"; }
.fa-life-ring { --fa: "\F1CD"; }
.fa-light-ceiling { --fa: "\E016"; }
.fa-light-emergency { --fa: "\E41F"; }
.fa-light-emergency-on { --fa: "\E420"; }
.fa-light-switch { --fa: "\E017"; }
.fa-light-switch-off { --fa: "\E018"; }
.fa-light-switch-on { --fa: "\E019"; }
.fa-lightbulb { --fa: "\F0EB"; }
.fa-lightbulb-cfl { --fa: "\E5A6"; }
.fa-lightbulb-cfl-on { --fa: "\E5A7"; }
.fa-lightbulb-dollar { --fa: "\F670"; }
.fa-lightbulb-exclamation { --fa: "\F671"; }
.fa-lightbulb-exclamation-on { --fa: "\E1CA"; }
.fa-lightbulb-gear { --fa: "\E5FD"; }
.fa-lightbulb-message { --fa: "\E687"; }
.fa-lightbulb-on { --fa: "\F672"; }
.fa-lightbulb-slash { --fa: "\F673"; }
.fa-lighthouse { --fa: "\E612"; }
.fa-lights-holiday { --fa: "\F7B2"; }
.fa-line-chart { --fa: "\F201"; }
.fa-line-columns { --fa: "\F870"; }
.fa-line-height { --fa: "\F871"; }
.fa-lines-leaning { --fa: "\E51E"; }
.fa-link { --fa: "\F0C1"; }
.fa-link-horizontal { --fa: "\E1CB"; }
.fa-link-horizontal-slash { --fa: "\E1CC"; }
.fa-link-simple { --fa: "\E1CD"; }
.fa-link-simple-slash { --fa: "\E1CE"; }
.fa-link-slash { --fa: "\F127"; }
.fa-lips { --fa: "\F600"; }
.fa-lira-sign { --fa: "\F195"; }
.fa-list { --fa: "\F03A"; }
.fa-list-1-2 { --fa: "\F0CB"; }
.fa-list-alt { --fa: "\F022"; }
.fa-list-check { --fa: "\F0AE"; }
.fa-list-dots { --fa: "\F0CA"; }
.fa-list-dropdown { --fa: "\E1CF"; }
.fa-list-music { --fa: "\F8C9"; }
.fa-list-numeric { --fa: "\F0CB"; }
.fa-list-ol { --fa: "\F0CB"; }
.fa-list-radio { --fa: "\E1D0"; }
.fa-list-squares { --fa: "\F03A"; }
.fa-list-timeline { --fa: "\E1D1"; }
.fa-list-tree { --fa: "\E1D2"; }
.fa-list-ul { --fa: "\F0CA"; }
.fa-litecoin-sign { --fa: "\E1D3"; }
.fa-loader { --fa: "\E1D4"; }
.fa-lobster { --fa: "\E421"; }
.fa-location { --fa: "\F601"; }
.fa-location-arrow { --fa: "\F124"; }
.fa-location-arrow-slash { --fa: "\E77A"; }
.fa-location-arrow-up { --fa: "\E63A"; }
.fa-location-check { --fa: "\F606"; }
.fa-location-circle { --fa: "\F602"; }
.fa-location-crosshairs { --fa: "\F601"; }
.fa-location-crosshairs-slash { --fa: "\F603"; }
.fa-location-dot { --fa: "\F3C5"; }
.fa-location-dot-slash { --fa: "\F605"; }
.fa-location-exclamation { --fa: "\F608"; }
.fa-location-minus { --fa: "\F609"; }
.fa-location-pen { --fa: "\F607"; }
.fa-location-pin { --fa: "\F041"; }
.fa-location-pin-lock { --fa: "\E51F"; }
.fa-location-pin-slash { --fa: "\F60C"; }
.fa-location-plus { --fa: "\F60A"; }
.fa-location-question { --fa: "\F60B"; }
.fa-location-slash { --fa: "\F603"; }
.fa-location-smile { --fa: "\F60D"; }
.fa-location-xmark { --fa: "\F60E"; }
.fa-lock { --fa: "\F023"; }
.fa-lock-a { --fa: "\E422"; }
.fa-lock-alt { --fa: "\F30D"; }
.fa-lock-hashtag { --fa: "\E423"; }
.fa-lock-keyhole { --fa: "\F30D"; }
.fa-lock-keyhole-open { --fa: "\F3C2"; }
.fa-lock-open { --fa: "\F3C1"; }
.fa-lock-open-alt { --fa: "\F3C2"; }
.fa-locust { --fa: "\E520"; }
.fa-lollipop { --fa: "\E424"; }
.fa-lollypop { --fa: "\E424"; }
.fa-long-arrow-alt-down { --fa: "\F309"; }
.fa-long-arrow-alt-left { --fa: "\F30A"; }
.fa-long-arrow-alt-right { --fa: "\F30B"; }
.fa-long-arrow-alt-up { --fa: "\F30C"; }
.fa-long-arrow-down { --fa: "\F175"; }
.fa-long-arrow-left { --fa: "\F177"; }
.fa-long-arrow-right { --fa: "\F178"; }
.fa-long-arrow-up { --fa: "\F176"; }
.fa-loveseat { --fa: "\F4CC"; }
.fa-low-vision { --fa: "\F2A8"; }
.fa-luchador { --fa: "\F455"; }
.fa-luchador-mask { --fa: "\F455"; }
.fa-luggage-cart { --fa: "\F59D"; }
.fa-lungs { --fa: "\F604"; }
.fa-lungs-virus { --fa: "\E067"; }
.fa-lychee { --fa: "\E824"; }
.fa-m { --fa: "M"; }
.fa-mace { --fa: "\F6F8"; }
.fa-magic { --fa: "\F0D0"; }
.fa-magic-wand-sparkles { --fa: "\E2CA"; }
.fa-magnet { --fa: "\F076"; }
.fa-magnifying-glass { --fa: "\F002"; }
.fa-magnifying-glass-arrow-right { --fa: "\E521"; }
.fa-magnifying-glass-arrows-rotate { --fa: "\E65E"; }
.fa-magnifying-glass-chart { --fa: "\E522"; }
.fa-magnifying-glass-dollar { --fa: "\F688"; }
.fa-magnifying-glass-location { --fa: "\F689"; }
.fa-magnifying-glass-minus { --fa: "\F010"; }
.fa-magnifying-glass-music { --fa: "\E65F"; }
.fa-magnifying-glass-play { --fa: "\E660"; }
.fa-magnifying-glass-plus { --fa: "\F00E"; }
.fa-magnifying-glass-waveform { --fa: "\E661"; }
.fa-mail-bulk { --fa: "\F674"; }
.fa-mail-forward { --fa: "\F064"; }
.fa-mail-reply { --fa: "\F3E5"; }
.fa-mail-reply-all { --fa: "\F122"; }
.fa-mailbox { --fa: "\F813"; }
.fa-mailbox-flag-up { --fa: "\E5BB"; }
.fa-mailbox-open-empty { --fa: "\E821"; }
.fa-mailbox-open-letter { --fa: "\E823"; }
.fa-maki-roll { --fa: "\E48B"; }
.fa-makizushi { --fa: "\E48B"; }
.fa-malaysian-ringgit-sign { --fa: "\E6FA"; }
.fa-male { --fa: "\F183"; }
.fa-manat-sign { --fa: "\E1D5"; }
.fa-mandolin { --fa: "\F6F9"; }
.fa-mango { --fa: "\E30F"; }
.fa-manhole { --fa: "\E1D6"; }
.fa-map { --fa: "\F279"; }
.fa-map-location { --fa: "\F59F"; }
.fa-map-location-dot { --fa: "\F5A0"; }
.fa-map-marked { --fa: "\F59F"; }
.fa-map-marked-alt { --fa: "\F5A0"; }
.fa-map-marker { --fa: "\F041"; }
.fa-map-marker-alt { --fa: "\F3C5"; }
.fa-map-marker-alt-slash { --fa: "\F605"; }
.fa-map-marker-check { --fa: "\F606"; }
.fa-map-marker-edit { --fa: "\F607"; }
.fa-map-marker-exclamation { --fa: "\F608"; }
.fa-map-marker-minus { --fa: "\F609"; }
.fa-map-marker-plus { --fa: "\F60A"; }
.fa-map-marker-question { --fa: "\F60B"; }
.fa-map-marker-slash { --fa: "\F60C"; }
.fa-map-marker-smile { --fa: "\F60D"; }
.fa-map-marker-times { --fa: "\F60E"; }
.fa-map-marker-xmark { --fa: "\F60E"; }
.fa-map-pin { --fa: "\F276"; }
.fa-map-signs { --fa: "\F277"; }
.fa-marker { --fa: "\F5A1"; }
.fa-mars { --fa: "\F222"; }
.fa-mars-and-venus { --fa: "\F224"; }
.fa-mars-and-venus-burst { --fa: "\E523"; }
.fa-mars-double { --fa: "\F227"; }
.fa-mars-stroke { --fa: "\F229"; }
.fa-mars-stroke-h { --fa: "\F22B"; }
.fa-mars-stroke-right { --fa: "\F22B"; }
.fa-mars-stroke-up { --fa: "\F22A"; }
.fa-mars-stroke-v { --fa: "\F22A"; }
.fa-martini-glass { --fa: "\F57B"; }
.fa-martini-glass-citrus { --fa: "\F561"; }
.fa-martini-glass-empty { --fa: "\F000"; }
.fa-mask { --fa: "\F6FA"; }
.fa-mask-face { --fa: "\E1D7"; }
.fa-mask-luchador { --fa: "\F455"; }
.fa-mask-snorkel { --fa: "\E3B7"; }
.fa-mask-ventilator { --fa: "\E524"; }
.fa-masks-theater { --fa: "\F630"; }
.fa-mattress-pillow { --fa: "\E525"; }
.fa-maximize { --fa: "\F31E"; }
.fa-meat { --fa: "\F814"; }
.fa-medal { --fa: "\F5A2"; }
.fa-medkit { --fa: "\F0FA"; }
.fa-megaphone { --fa: "\F675"; }
.fa-meh { --fa: "\F11A"; }
.fa-meh-blank { --fa: "\F5A4"; }
.fa-meh-rolling-eyes { --fa: "\F5A5"; }
.fa-melon { --fa: "\E310"; }
.fa-melon-slice { --fa: "\E311"; }
.fa-memo { --fa: "\E1D8"; }
.fa-memo-circle-check { --fa: "\E1D9"; }
.fa-memo-circle-info { --fa: "\E49A"; }
.fa-memo-pad { --fa: "\E1DA"; }
.fa-memory { --fa: "\F538"; }
.fa-menorah { --fa: "\F676"; }
.fa-mercury { --fa: "\F223"; }
.fa-merge { --fa: "\E526"; }
.fa-message { --fa: "\F27A"; }
.fa-message-arrow-down { --fa: "\E1DB"; }
.fa-message-arrow-up { --fa: "\E1DC"; }
.fa-message-arrow-up-right { --fa: "\E1DD"; }
.fa-message-bot { --fa: "\E3B8"; }
.fa-message-captions { --fa: "\E1DE"; }
.fa-message-check { --fa: "\F4A2"; }
.fa-message-code { --fa: "\E1DF"; }
.fa-message-dollar { --fa: "\F650"; }
.fa-message-dot { --fa: "\E6DF"; }
.fa-message-dots { --fa: "\F4A3"; }
.fa-message-edit { --fa: "\F4A4"; }
.fa-message-exclamation { --fa: "\F4A5"; }
.fa-message-heart { --fa: "\E5C9"; }
.fa-message-image { --fa: "\E1E0"; }
.fa-message-lines { --fa: "\F4A6"; }
.fa-message-medical { --fa: "\F7F4"; }
.fa-message-middle { --fa: "\E1E1"; }
.fa-message-middle-top { --fa: "\E1E2"; }
.fa-message-minus { --fa: "\F4A7"; }
.fa-message-music { --fa: "\F8AF"; }
.fa-message-pen { --fa: "\F4A4"; }
.fa-message-plus { --fa: "\F4A8"; }
.fa-message-question { --fa: "\E1E3"; }
.fa-message-quote { --fa: "\E1E4"; }
.fa-message-slash { --fa: "\F4A9"; }
.fa-message-smile { --fa: "\F4AA"; }
.fa-message-sms { --fa: "\E1E5"; }
.fa-message-text { --fa: "\E1E6"; }
.fa-message-times { --fa: "\F4AB"; }
.fa-message-waveform { --fa: "\E6E0"; }
.fa-message-xmark { --fa: "\F4AB"; }
.fa-messages { --fa: "\F4B6"; }
.fa-messages-dollar { --fa: "\F652"; }
.fa-messages-question { --fa: "\E1E7"; }
.fa-messaging { --fa: "\F4A3"; }
.fa-meteor { --fa: "\F753"; }
.fa-meter { --fa: "\E1E8"; }
.fa-meter-bolt { --fa: "\E1E9"; }
.fa-meter-droplet { --fa: "\E1EA"; }
.fa-meter-fire { --fa: "\E1EB"; }
.fa-microchip { --fa: "\F2DB"; }
.fa-microchip-ai { --fa: "\E1EC"; }
.fa-microphone { --fa: "\F130"; }
.fa-microphone-alt { --fa: "\F3C9"; }
.fa-microphone-alt-slash { --fa: "\F539"; }
.fa-microphone-circle { --fa: "\E116"; }
.fa-microphone-circle-alt { --fa: "\E117"; }
.fa-microphone-circle-plus { --fa: "\E77D"; }
.fa-microphone-circle-xmark { --fa: "\E77E"; }
.fa-microphone-lines { --fa: "\F3C9"; }
.fa-microphone-lines-slash { --fa: "\F539"; }
.fa-microphone-signal-meter { --fa: "\E760"; }
.fa-microphone-slash { --fa: "\F131"; }
.fa-microphone-stand { --fa: "\F8CB"; }
.fa-microscope { --fa: "\F610"; }
.fa-microwave { --fa: "\E01B"; }
.fa-midi { --fa: "\E806"; }
.fa-mill-sign { --fa: "\E1ED"; }
.fa-mind-share { --fa: "\F677"; }
.fa-minimize { --fa: "\F78C"; }
.fa-minus { --fa: "\F068"; }
.fa-minus-circle { --fa: "\F056"; }
.fa-minus-hexagon { --fa: "\F307"; }
.fa-minus-large { --fa: "\E404"; }
.fa-minus-octagon { --fa: "\F308"; }
.fa-minus-square { --fa: "\F146"; }
.fa-mistletoe { --fa: "\F7B4"; }
.fa-mitten { --fa: "\F7B5"; }
.fa-mobile { --fa: "\F3CE"; }
.fa-mobile-alt { --fa: "\F3CD"; }
.fa-mobile-android { --fa: "\F3CE"; }
.fa-mobile-android-alt { --fa: "\F3CF"; }
.fa-mobile-arrow-down { --fa: "\E74B"; }
.fa-mobile-button { --fa: "\F10B"; }
.fa-mobile-iphone { --fa: "\E1EE"; }
.fa-mobile-notch { --fa: "\E1EE"; }
.fa-mobile-phone { --fa: "\F3CE"; }
.fa-mobile-retro { --fa: "\E527"; }
.fa-mobile-rotate { --fa: "\E813"; }
.fa-mobile-rotate-reverse { --fa: "\E814"; }
.fa-mobile-screen { --fa: "\F3CF"; }
.fa-mobile-screen-button { --fa: "\F3CD"; }
.fa-mobile-signal { --fa: "\E1EF"; }
.fa-mobile-signal-out { --fa: "\E1F0"; }
.fa-mobile-slash { --fa: "\E815"; }
.fa-mobile-vibrate { --fa: "\E816"; }
.fa-mobile-vibrate-slash { --fa: "\E817"; }
.fa-money-bill { --fa: "\F0D6"; }
.fa-money-bill-1 { --fa: "\F3D1"; }
.fa-money-bill-1-wave { --fa: "\F53B"; }
.fa-money-bill-alt { --fa: "\F3D1"; }
.fa-money-bill-simple { --fa: "\E1F1"; }
.fa-money-bill-simple-wave { --fa: "\E1F2"; }
.fa-money-bill-transfer { --fa: "\E528"; }
.fa-money-bill-trend-up { --fa: "\E529"; }
.fa-money-bill-wave { --fa: "\F53A"; }
.fa-money-bill-wave-alt { --fa: "\F53B"; }
.fa-money-bill-wheat { --fa: "\E52A"; }
.fa-money-bills { --fa: "\E1F3"; }
.fa-money-bills-alt { --fa: "\E1F4"; }
.fa-money-bills-simple { --fa: "\E1F4"; }
.fa-money-check { --fa: "\F53C"; }
.fa-money-check-alt { --fa: "\F53D"; }
.fa-money-check-dollar { --fa: "\F53D"; }
.fa-money-check-dollar-pen { --fa: "\F873"; }
.fa-money-check-edit { --fa: "\F872"; }
.fa-money-check-edit-alt { --fa: "\F873"; }
.fa-money-check-pen { --fa: "\F872"; }
.fa-money-from-bracket { --fa: "\E312"; }
.fa-money-simple-from-bracket { --fa: "\E313"; }
.fa-monitor-heart-rate { --fa: "\F611"; }
.fa-monitor-waveform { --fa: "\F611"; }
.fa-monkey { --fa: "\F6FB"; }
.fa-monument { --fa: "\F5A6"; }
.fa-moon { --fa: "\F186"; }
.fa-moon-cloud { --fa: "\F754"; }
.fa-moon-over-sun { --fa: "\F74A"; }
.fa-moon-star { --fa: "\E7C9"; }
.fa-moon-stars { --fa: "\F755"; }
.fa-moped { --fa: "\E3B9"; }
.fa-mortar-board { --fa: "\F19D"; }
.fa-mortar-pestle { --fa: "\F5A7"; }
.fa-mosque { --fa: "\F678"; }
.fa-mosquito { --fa: "\E52B"; }
.fa-mosquito-net { --fa: "\E52C"; }
.fa-motorcycle { --fa: "\F21C"; }
.fa-mound { --fa: "\E52D"; }
.fa-mountain { --fa: "\F6FC"; }
.fa-mountain-city { --fa: "\E52E"; }
.fa-mountain-sun { --fa: "\E52F"; }
.fa-mountains { --fa: "\F6FD"; }
.fa-mouse { --fa: "\F8CC"; }
.fa-mouse-alt { --fa: "\F8CD"; }
.fa-mouse-field { --fa: "\E5A8"; }
.fa-mouse-pointer { --fa: "\F245"; }
.fa-mp3-player { --fa: "\F8CE"; }
.fa-mug { --fa: "\F874"; }
.fa-mug-hot { --fa: "\F7B6"; }
.fa-mug-marshmallows { --fa: "\F7B7"; }
.fa-mug-saucer { --fa: "\F0F4"; }
.fa-mug-tea { --fa: "\F875"; }
.fa-mug-tea-saucer { --fa: "\E1F5"; }
.fa-multiply { --fa: "\F00D"; }
.fa-museum { --fa: "\F19C"; }
.fa-mushroom { --fa: "\E425"; }
.fa-music { --fa: "\F001"; }
.fa-music-alt { --fa: "\F8CF"; }
.fa-music-alt-slash { --fa: "\F8D0"; }
.fa-music-magnifying-glass { --fa: "\E662"; }
.fa-music-note { --fa: "\F8CF"; }
.fa-music-note-slash { --fa: "\F8D0"; }
.fa-music-slash { --fa: "\F8D1"; }
.fa-mustache { --fa: "\E5BC"; }
.fa-n { --fa: "N"; }
.fa-naira-sign { --fa: "\E1F6"; }
.fa-narwhal { --fa: "\F6FE"; }
.fa-navicon { --fa: "\F0C9"; }
.fa-nesting-dolls { --fa: "\E3BA"; }
.fa-network-wired { --fa: "\F6FF"; }
.fa-neuter { --fa: "\F22C"; }
.fa-newspaper { --fa: "\F1EA"; }
.fa-nfc { --fa: "\E1F7"; }
.fa-nfc-lock { --fa: "\E1F8"; }
.fa-nfc-magnifying-glass { --fa: "\E1F9"; }
.fa-nfc-pen { --fa: "\E1FA"; }
.fa-nfc-signal { --fa: "\E1FB"; }
.fa-nfc-slash { --fa: "\E1FC"; }
.fa-nfc-symbol { --fa: "\E531"; }
.fa-nfc-trash { --fa: "\E1FD"; }
.fa-nigiri { --fa: "\E48A"; }
.fa-non-binary { --fa: "\E807"; }
.fa-norwegian-krone-sign { --fa: "\E6E8"; }
.fa-nose { --fa: "\E5BD"; }
.fa-not-equal { --fa: "\F53E"; }
.fa-notdef { --fa: "\E1FE"; }
.fa-note { --fa: "\E1FF"; }
.fa-note-medical { --fa: "\E200"; }
.fa-note-sticky { --fa: "\F249"; }
.fa-notebook { --fa: "\E201"; }
.fa-notes { --fa: "\E202"; }
.fa-notes-medical { --fa: "\F481"; }
.fa-notes-sticky { --fa: "\E759"; }
.fa-o { --fa: "O"; }
.fa-object-exclude { --fa: "\E49C"; }
.fa-object-group { --fa: "\F247"; }
.fa-object-intersect { --fa: "\E49D"; }
.fa-object-subtract { --fa: "\E49E"; }
.fa-object-ungroup { --fa: "\F248"; }
.fa-object-union { --fa: "\E49F"; }
.fa-objects-align-bottom { --fa: "\E3BB"; }
.fa-objects-align-center-horizontal { --fa: "\E3BC"; }
.fa-objects-align-center-vertical { --fa: "\E3BD"; }
.fa-objects-align-left { --fa: "\E3BE"; }
.fa-objects-align-right { --fa: "\E3BF"; }
.fa-objects-align-top { --fa: "\E3C0"; }
.fa-objects-column { --fa: "\E3C1"; }
.fa-octagon { --fa: "\F306"; }
.fa-octagon-check { --fa: "\E426"; }
.fa-octagon-divide { --fa: "\E203"; }
.fa-octagon-equals { --fa: "\E6B3"; }
.fa-octagon-exclamation { --fa: "\E204"; }
.fa-octagon-minus { --fa: "\F308"; }
.fa-octagon-plus { --fa: "\F301"; }
.fa-octagon-xmark { --fa: "\F2F0"; }
.fa-octopus { --fa: "\E688"; }
.fa-oil-can { --fa: "\F613"; }
.fa-oil-can-drip { --fa: "\E205"; }
.fa-oil-temp { --fa: "\F614"; }
.fa-oil-temperature { --fa: "\F614"; }
.fa-oil-well { --fa: "\E532"; }
.fa-olive { --fa: "\E316"; }
.fa-olive-branch { --fa: "\E317"; }
.fa-om { --fa: "\F679"; }
.fa-omega { --fa: "\F67A"; }
.fa-onion { --fa: "\E427"; }
.fa-open-captioning { --fa: "\E77F"; }
.fa-option { --fa: "\E318"; }
.fa-ornament { --fa: "\F7B8"; }
.fa-otter { --fa: "\F700"; }
.fa-outdent { --fa: "\F03B"; }
.fa-outlet { --fa: "\E01C"; }
.fa-oven { --fa: "\E01D"; }
.fa-overline { --fa: "\F876"; }
.fa-p { --fa: "P"; }
.fa-page { --fa: "\E428"; }
.fa-page-break { --fa: "\F877"; }
.fa-page-caret-down { --fa: "\E429"; }
.fa-page-caret-up { --fa: "\E42A"; }
.fa-pager { --fa: "\F815"; }
.fa-paint-brush { --fa: "\F1FC"; }
.fa-paint-brush-alt { --fa: "\F5A9"; }
.fa-paint-brush-fine { --fa: "\F5A9"; }
.fa-paint-roller { --fa: "\F5AA"; }
.fa-paintbrush { --fa: "\F1FC"; }
.fa-paintbrush-alt { --fa: "\F5A9"; }
.fa-paintbrush-fine { --fa: "\F5A9"; }
.fa-paintbrush-fine-slash { --fa: "\E74D"; }
.fa-paintbrush-pencil { --fa: "\E206"; }
.fa-paintbrush-slash { --fa: "\E74E"; }
.fa-palette { --fa: "\F53F"; }
.fa-palette-boxes { --fa: "\F483"; }
.fa-pallet { --fa: "\F482"; }
.fa-pallet-alt { --fa: "\F483"; }
.fa-pallet-box { --fa: "\E208"; }
.fa-pallet-boxes { --fa: "\F483"; }
.fa-pan-food { --fa: "\E42B"; }
.fa-pan-frying { --fa: "\E42C"; }
.fa-pancakes { --fa: "\E42D"; }
.fa-panel-ews { --fa: "\E42E"; }
.fa-panel-fire { --fa: "\E42F"; }
.fa-panorama { --fa: "\E209"; }
.fa-panties { --fa: "\E6D4"; }
.fa-pants { --fa: "\E6D5"; }
.fa-pants-straight { --fa: "\E6D6"; }
.fa-paper-plane { --fa: "\F1D8"; }
.fa-paper-plane-alt { --fa: "\E20A"; }
.fa-paper-plane-top { --fa: "\E20A"; }
.fa-paperclip { --fa: "\F0C6"; }
.fa-paperclip-vertical { --fa: "\E3C2"; }
.fa-parachute-box { --fa: "\F4CD"; }
.fa-paragraph { --fa: "\F1DD"; }
.fa-paragraph-left { --fa: "\F878"; }
.fa-paragraph-rtl { --fa: "\F878"; }
.fa-parentheses { --fa: "\E0C5"; }
.fa-parenthesis { --fa: "("; }
.fa-parking { --fa: "\F540"; }
.fa-parking-circle { --fa: "\F615"; }
.fa-parking-circle-slash { --fa: "\F616"; }
.fa-parking-slash { --fa: "\F617"; }
.fa-party-back { --fa: "\E45C"; }
.fa-party-bell { --fa: "\E31A"; }
.fa-party-horn { --fa: "\E31B"; }
.fa-passport { --fa: "\F5AB"; }
.fa-pastafarianism { --fa: "\F67B"; }
.fa-paste { --fa: "\F0EA"; }
.fa-pause { --fa: "\F04C"; }
.fa-pause-circle { --fa: "\F28B"; }
.fa-paw { --fa: "\F1B0"; }
.fa-paw-alt { --fa: "\F701"; }
.fa-paw-claws { --fa: "\F702"; }
.fa-paw-simple { --fa: "\F701"; }
.fa-peace { --fa: "\F67C"; }
.fa-peach { --fa: "\E20B"; }
.fa-peanut { --fa: "\E430"; }
.fa-peanuts { --fa: "\E431"; }
.fa-peapod { --fa: "\E31C"; }
.fa-pear { --fa: "\E20C"; }
.fa-pedestal { --fa: "\E20D"; }
.fa-pegasus { --fa: "\F703"; }
.fa-pen { --fa: "\F304"; }
.fa-pen-alt { --fa: "\F305"; }
.fa-pen-alt-slash { --fa: "\E20F"; }
.fa-pen-circle { --fa: "\E20E"; }
.fa-pen-clip { --fa: "\F305"; }
.fa-pen-clip-slash { --fa: "\E20F"; }
.fa-pen-fancy { --fa: "\F5AC"; }
.fa-pen-fancy-slash { --fa: "\E210"; }
.fa-pen-field { --fa: "\E211"; }
.fa-pen-line { --fa: "\E212"; }
.fa-pen-nib { --fa: "\F5AD"; }
.fa-pen-nib-slash { --fa: "\E4A1"; }
.fa-pen-paintbrush { --fa: "\F618"; }
.fa-pen-ruler { --fa: "\F5AE"; }
.fa-pen-slash { --fa: "\E213"; }
.fa-pen-square { --fa: "\F14B"; }
.fa-pen-swirl { --fa: "\E214"; }
.fa-pen-to-square { --fa: "\F044"; }
.fa-pencil { --fa: "\F303"; }
.fa-pencil-alt { --fa: "\F303"; }
.fa-pencil-line { --fa: "\E74F"; }
.fa-pencil-mechanical { --fa: "\E5CA"; }
.fa-pencil-paintbrush { --fa: "\F618"; }
.fa-pencil-ruler { --fa: "\F5AE"; }
.fa-pencil-slash { --fa: "\E215"; }
.fa-pencil-square { --fa: "\F14B"; }
.fa-pennant { --fa: "\F456"; }
.fa-pentagon { --fa: "\E790"; }
.fa-people { --fa: "\E216"; }
.fa-people-arrows { --fa: "\E068"; }
.fa-people-arrows-left-right { --fa: "\E068"; }
.fa-people-carry { --fa: "\F4CE"; }
.fa-people-carry-box { --fa: "\F4CE"; }
.fa-people-dress { --fa: "\E217"; }
.fa-people-dress-simple { --fa: "\E218"; }
.fa-people-group { --fa: "\E533"; }
.fa-people-line { --fa: "\E534"; }
.fa-people-pants { --fa: "\E219"; }
.fa-people-pants-simple { --fa: "\E21A"; }
.fa-people-pulling { --fa: "\E535"; }
.fa-people-robbery { --fa: "\E536"; }
.fa-people-roof { --fa: "\E537"; }
.fa-people-simple { --fa: "\E21B"; }
.fa-pepper { --fa: "\E432"; }
.fa-pepper-hot { --fa: "\F816"; }
.fa-percent { --fa: "%"; }
.fa-percentage { --fa: "%"; }
.fa-period { --fa: "."; }
.fa-person { --fa: "\F183"; }
.fa-person-arms-raised { --fa: "\E783"; }
.fa-person-arrow-down-to-line { --fa: "\E538"; }
.fa-person-arrow-up-from-line { --fa: "\E539"; }
.fa-person-basketball { --fa: "\E784"; }
.fa-person-biking { --fa: "\F84A"; }
.fa-person-biking-mountain { --fa: "\F84B"; }
.fa-person-booth { --fa: "\F756"; }
.fa-person-breastfeeding { --fa: "\E53A"; }
.fa-person-burst { --fa: "\E53B"; }
.fa-person-cane { --fa: "\E53C"; }
.fa-person-carry { --fa: "\F4CF"; }
.fa-person-carry-box { --fa: "\F4CF"; }
.fa-person-carry-empty { --fa: "\E785"; }
.fa-person-chalkboard { --fa: "\E53D"; }
.fa-person-circle-check { --fa: "\E53E"; }
.fa-person-circle-exclamation { --fa: "\E53F"; }
.fa-person-circle-minus { --fa: "\E540"; }
.fa-person-circle-plus { --fa: "\E541"; }
.fa-person-circle-question { --fa: "\E542"; }
.fa-person-circle-xmark { --fa: "\E543"; }
.fa-person-digging { --fa: "\F85E"; }
.fa-person-dolly { --fa: "\F4D0"; }
.fa-person-dolly-empty { --fa: "\F4D1"; }
.fa-person-dots-from-line { --fa: "\F470"; }
.fa-person-dress { --fa: "\F182"; }
.fa-person-dress-burst { --fa: "\E544"; }
.fa-person-dress-fairy { --fa: "\E607"; }
.fa-person-dress-simple { --fa: "\E21C"; }
.fa-person-drowning { --fa: "\E545"; }
.fa-person-fairy { --fa: "\E608"; }
.fa-person-falling { --fa: "\E546"; }
.fa-person-falling-burst { --fa: "\E547"; }
.fa-person-from-portal { --fa: "\E023"; }
.fa-person-golfing { --fa: "\E786"; }
.fa-person-half-dress { --fa: "\E548"; }
.fa-person-harassing { --fa: "\E549"; }
.fa-person-hiking { --fa: "\F6EC"; }
.fa-person-limbs-wide { --fa: "\E787"; }
.fa-person-meditating { --fa: "\E7E1"; }
.fa-person-military-pointing { --fa: "\E54A"; }
.fa-person-military-rifle { --fa: "\E54B"; }
.fa-person-military-to-person { --fa: "\E54C"; }
.fa-person-pinball { --fa: "\E21D"; }
.fa-person-praying { --fa: "\F683"; }
.fa-person-pregnant { --fa: "\E31E"; }
.fa-person-rays { --fa: "\E54D"; }
.fa-person-rifle { --fa: "\E54E"; }
.fa-person-running { --fa: "\F70C"; }
.fa-person-running-fast { --fa: "\E5FF"; }
.fa-person-seat { --fa: "\E21E"; }
.fa-person-seat-reclined { --fa: "\E21F"; }
.fa-person-seat-window { --fa: "\E788"; }
.fa-person-shelter { --fa: "\E54F"; }
.fa-person-sign { --fa: "\F757"; }
.fa-person-simple { --fa: "\E220"; }
.fa-person-skating { --fa: "\F7C5"; }
.fa-person-ski-jumping { --fa: "\F7C7"; }
.fa-person-ski-lift { --fa: "\F7C8"; }
.fa-person-skiing { --fa: "\F7C9"; }
.fa-person-skiing-nordic { --fa: "\F7CA"; }
.fa-person-sledding { --fa: "\F7CB"; }
.fa-person-snowboarding { --fa: "\F7CE"; }
.fa-person-snowmobiling { --fa: "\F7D1"; }
.fa-person-soccer { --fa: "\E789"; }
.fa-person-swimming { --fa: "\F5C4"; }
.fa-person-swimming-pool { --fa: "\E78A"; }
.fa-person-swimming-water { --fa: "\E78B"; }
.fa-person-through-window { --fa: "\E5A9"; }
.fa-person-to-door { --fa: "\E433"; }
.fa-person-to-portal { --fa: "\E022"; }
.fa-person-walking { --fa: "\F554"; }
.fa-person-walking-arrow-loop-left { --fa: "\E551"; }
.fa-person-walking-arrow-right { --fa: "\E552"; }
.fa-person-walking-dashed-line-arrow-right { --fa: "\E553"; }
.fa-person-walking-luggage { --fa: "\E554"; }
.fa-person-walking-with-cane { --fa: "\F29D"; }
.fa-person-water-arms-raised { --fa: "\E78C"; }
.fa-person-waving { --fa: "\E78D"; }
.fa-peruvian-soles-sign { --fa: "\E705"; }
.fa-peseta-sign { --fa: "\E221"; }
.fa-peso-sign { --fa: "\E222"; }
.fa-phone { --fa: "\F095"; }
.fa-phone-alt { --fa: "\F879"; }
.fa-phone-arrow-down { --fa: "\E223"; }
.fa-phone-arrow-down-left { --fa: "\E223"; }
.fa-phone-arrow-right { --fa: "\E5BE"; }
.fa-phone-arrow-up { --fa: "\E224"; }
.fa-phone-arrow-up-right { --fa: "\E224"; }
.fa-phone-circle { --fa: "\E11B"; }
.fa-phone-circle-alt { --fa: "\E11C"; }
.fa-phone-circle-down { --fa: "\E11D"; }
.fa-phone-connection { --fa: "\E6E1"; }
.fa-phone-flip { --fa: "\F879"; }
.fa-phone-hangup { --fa: "\E225"; }
.fa-phone-incoming { --fa: "\E223"; }
.fa-phone-intercom { --fa: "\E434"; }
.fa-phone-laptop { --fa: "\F87A"; }
.fa-phone-missed { --fa: "\E226"; }
.fa-phone-office { --fa: "\F67D"; }
.fa-phone-outgoing { --fa: "\E224"; }
.fa-phone-plus { --fa: "\F4D2"; }
.fa-phone-rotary { --fa: "\F8D3"; }
.fa-phone-slash { --fa: "\F3DD"; }
.fa-phone-square { --fa: "\F098"; }
.fa-phone-square-alt { --fa: "\F87B"; }
.fa-phone-square-down { --fa: "\E27A"; }
.fa-phone-volume { --fa: "\F2A0"; }
.fa-phone-waveform { --fa: "\E6E2"; }
.fa-phone-xmark { --fa: "\E227"; }
.fa-photo-film { --fa: "\F87C"; }
.fa-photo-film-music { --fa: "\E228"; }
.fa-photo-video { --fa: "\F87C"; }
.fa-pi { --fa: "\F67E"; }
.fa-piano { --fa: "\F8D4"; }
.fa-piano-keyboard { --fa: "\F8D5"; }
.fa-pickaxe { --fa: "\E5BF"; }
.fa-pickleball { --fa: "\E435"; }
.fa-picture-in-picture { --fa: "\E80B"; }
.fa-pie { --fa: "\F705"; }
.fa-pie-chart { --fa: "\F200"; }
.fa-pig { --fa: "\F706"; }
.fa-piggy-bank { --fa: "\F4D3"; }
.fa-pills { --fa: "\F484"; }
.fa-pinata { --fa: "\E3C3"; }
.fa-pinball { --fa: "\E229"; }
.fa-pineapple { --fa: "\E31F"; }
.fa-ping-pong-paddle-ball { --fa: "\F45D"; }
.fa-pipe { --fa: "|"; }
.fa-pipe-circle-check { --fa: "\E436"; }
.fa-pipe-collar { --fa: "\E437"; }
.fa-pipe-section { --fa: "\E438"; }
.fa-pipe-smoking { --fa: "\E3C4"; }
.fa-pipe-valve { --fa: "\E439"; }
.fa-pizza { --fa: "\F817"; }
.fa-pizza-slice { --fa: "\F818"; }
.fa-place-of-worship { --fa: "\F67F"; }
.fa-plane { --fa: "\F072"; }
.fa-plane-alt { --fa: "\F3DE"; }
.fa-plane-arrival { --fa: "\F5AF"; }
.fa-plane-circle-check { --fa: "\E555"; }
.fa-plane-circle-exclamation { --fa: "\E556"; }
.fa-plane-circle-xmark { --fa: "\E557"; }
.fa-plane-departure { --fa: "\F5B0"; }
.fa-plane-engines { --fa: "\F3DE"; }
.fa-plane-flying { --fa: "\E7BB"; }
.fa-plane-landing-gear { --fa: "\E7BC"; }
.fa-plane-lock { --fa: "\E558"; }
.fa-plane-prop { --fa: "\E22B"; }
.fa-plane-slash { --fa: "\E069"; }
.fa-plane-tail { --fa: "\E22C"; }
.fa-plane-up { --fa: "\E22D"; }
.fa-plane-up-slash { --fa: "\E22E"; }
.fa-planet-moon { --fa: "\E01F"; }
.fa-planet-ringed { --fa: "\E020"; }
.fa-plant-wilt { --fa: "\E5AA"; }
.fa-plate-utensils { --fa: "\E43B"; }
.fa-plate-wheat { --fa: "\E55A"; }
.fa-play { --fa: "\F04B"; }
.fa-play-circle { --fa: "\F144"; }
.fa-play-flip { --fa: "\E780"; }
.fa-play-pause { --fa: "\E22F"; }
.fa-plug { --fa: "\F1E6"; }
.fa-plug-circle-bolt { --fa: "\E55B"; }
.fa-plug-circle-check { --fa: "\E55C"; }
.fa-plug-circle-exclamation { --fa: "\E55D"; }
.fa-plug-circle-minus { --fa: "\E55E"; }
.fa-plug-circle-plus { --fa: "\E55F"; }
.fa-plug-circle-xmark { --fa: "\E560"; }
.fa-plus { --fa: "+"; }
.fa-plus-circle { --fa: "\F055"; }
.fa-plus-hexagon { --fa: "\F300"; }
.fa-plus-large { --fa: "\E59E"; }
.fa-plus-minus { --fa: "\E43C"; }
.fa-plus-octagon { --fa: "\F301"; }
.fa-plus-square { --fa: "\F0FE"; }
.fa-podcast { --fa: "\F2CE"; }
.fa-podium { --fa: "\F680"; }
.fa-podium-star { --fa: "\F758"; }
.fa-police-box { --fa: "\E021"; }
.fa-polish-zloty-sign { --fa: "\E70B"; }
.fa-poll { --fa: "\F681"; }
.fa-poll-h { --fa: "\F682"; }
.fa-poll-people { --fa: "\F759"; }
.fa-pompebled { --fa: "\E43D"; }
.fa-poo { --fa: "\F2FE"; }
.fa-poo-bolt { --fa: "\F75A"; }
.fa-poo-storm { --fa: "\F75A"; }
.fa-pool-8-ball { --fa: "\E3C5"; }
.fa-poop { --fa: "\F619"; }
.fa-popcorn { --fa: "\F819"; }
.fa-popsicle { --fa: "\E43E"; }
.fa-portal-enter { --fa: "\E022"; }
.fa-portal-exit { --fa: "\E023"; }
.fa-portrait { --fa: "\F3E0"; }
.fa-postage-stamp { --fa: "\E6E3"; }
.fa-pot-food { --fa: "\E43F"; }
.fa-potato { --fa: "\E440"; }
.fa-pound-sign { --fa: "\F154"; }
.fa-power-off { --fa: "\F011"; }
.fa-pray { --fa: "\F683"; }
.fa-praying-hands { --fa: "\F684"; }
.fa-prescription { --fa: "\F5B1"; }
.fa-prescription-bottle { --fa: "\F485"; }
.fa-prescription-bottle-alt { --fa: "\F486"; }
.fa-prescription-bottle-medical { --fa: "\F486"; }
.fa-prescription-bottle-pill { --fa: "\E5C0"; }
.fa-presentation { --fa: "\F685"; }
.fa-presentation-screen { --fa: "\F685"; }
.fa-pretzel { --fa: "\E441"; }
.fa-print { --fa: "\F02F"; }
.fa-print-magnifying-glass { --fa: "\F81A"; }
.fa-print-search { --fa: "\F81A"; }
.fa-print-slash { --fa: "\F686"; }
.fa-pro { --fa: "\E235"; }
.fa-procedures { --fa: "\F487"; }
.fa-project-diagram { --fa: "\F542"; }
.fa-projector { --fa: "\F8D6"; }
.fa-pronoun { --fa: "\E6A1"; }
.fa-pump { --fa: "\E442"; }
.fa-pump-impeller { --fa: "\E835"; }
.fa-pump-medical { --fa: "\E06A"; }
.fa-pump-soap { --fa: "\E06B"; }
.fa-pumpkin { --fa: "\F707"; }
.fa-puzzle { --fa: "\E443"; }
.fa-puzzle-piece { --fa: "\F12E"; }
.fa-puzzle-piece-alt { --fa: "\E231"; }
.fa-puzzle-piece-simple { --fa: "\E231"; }
.fa-q { --fa: "Q"; }
.fa-qrcode { --fa: "\F029"; }
.fa-qrcode-read { --fa: "\E799"; }
.fa-question { --fa: "?"; }
.fa-question-circle { --fa: "\F059"; }
.fa-question-square { --fa: "\F2FD"; }
.fa-quidditch { --fa: "\F458"; }
.fa-quidditch-broom-ball { --fa: "\F458"; }
.fa-quote-left { --fa: "\F10D"; }
.fa-quote-left-alt { --fa: "\F10D"; }
.fa-quote-right { --fa: "\F10E"; }
.fa-quote-right-alt { --fa: "\F10E"; }
.fa-quotes { --fa: "\E234"; }
.fa-quran { --fa: "\F687"; }
.fa-r { --fa: "R"; }
.fa-rabbit { --fa: "\F708"; }
.fa-rabbit-fast { --fa: "\F709"; }
.fa-rabbit-running { --fa: "\F709"; }
.fa-raccoon { --fa: "\E613"; }
.fa-racquet { --fa: "\F45A"; }
.fa-radar { --fa: "\E024"; }
.fa-radiation { --fa: "\F7B9"; }
.fa-radiation-alt { --fa: "\F7BA"; }
.fa-radio { --fa: "\F8D7"; }
.fa-radio-alt { --fa: "\F8D8"; }
.fa-radio-tuner { --fa: "\F8D8"; }
.fa-rainbow { --fa: "\F75B"; }
.fa-rainbow-half { --fa: "\E7CA"; }
.fa-raindrops { --fa: "\F75C"; }
.fa-ram { --fa: "\F70A"; }
.fa-ramp-loading { --fa: "\F4D4"; }
.fa-random { --fa: "\F074"; }
.fa-ranking-star { --fa: "\E561"; }
.fa-raygun { --fa: "\E025"; }
.fa-receipt { --fa: "\F543"; }
.fa-record-vinyl { --fa: "\F8D9"; }
.fa-rectangle { --fa: "\F2FA"; }
.fa-rectangle-4k { --fa: "\E772"; }
.fa-rectangle-ad { --fa: "\F641"; }
.fa-rectangle-barcode { --fa: "\F463"; }
.fa-rectangle-beta { --fa: "\E808"; }
.fa-rectangle-code { --fa: "\E322"; }
.fa-rectangle-hd { --fa: "\E1AE"; }
.fa-rectangle-hdr { --fa: "\E773"; }
.fa-rectangle-high-dynamic-range { --fa: "\E773"; }
.fa-rectangle-history { --fa: "\E4A2"; }
.fa-rectangle-history-circle-plus { --fa: "\E4A3"; }
.fa-rectangle-history-circle-user { --fa: "\E4A4"; }
.fa-rectangle-landscape { --fa: "\F2FA"; }
.fa-rectangle-list { --fa: "\F022"; }
.fa-rectangle-minus { --fa: "\E6B4"; }
.fa-rectangle-plus { --fa: "\E6B5"; }
.fa-rectangle-portrait { --fa: "\F2FB"; }
.fa-rectangle-pro { --fa: "\E235"; }
.fa-rectangle-sd { --fa: "\E28A"; }
.fa-rectangle-tall { --fa: "\E791"; }
.fa-rectangle-terminal { --fa: "\E236"; }
.fa-rectangle-times { --fa: "\F410"; }
.fa-rectangle-vertical { --fa: "\F2FB"; }
.fa-rectangle-vertical-history { --fa: "\E237"; }
.fa-rectangle-video-on-demand { --fa: "\E774"; }
.fa-rectangle-wide { --fa: "\F2FC"; }
.fa-rectangle-xmark { --fa: "\F410"; }
.fa-rectangles-mixed { --fa: "\E323"; }
.fa-recycle { --fa: "\F1B8"; }
.fa-redo { --fa: "\F01E"; }
.fa-redo-alt { --fa: "\F2F9"; }
.fa-reel { --fa: "\E238"; }
.fa-reflect-both { --fa: "\E66F"; }
.fa-reflect-horizontal { --fa: "\E664"; }
.fa-reflect-vertical { --fa: "\E665"; }
.fa-refresh { --fa: "\F021"; }
.fa-refrigerator { --fa: "\E026"; }
.fa-registered { --fa: "\F25D"; }
.fa-remove { --fa: "\F00D"; }
.fa-remove-format { --fa: "\F87D"; }
.fa-renminbi-sign { --fa: "\E73C"; }
.fa-reorder { --fa: "\F550"; }
.fa-repeat { --fa: "\F363"; }
.fa-repeat-1 { --fa: "\F365"; }
.fa-repeat-1-alt { --fa: "\F366"; }
.fa-repeat-alt { --fa: "\F364"; }
.fa-reply { --fa: "\F3E5"; }
.fa-reply-all { --fa: "\F122"; }
.fa-reply-clock { --fa: "\E239"; }
.fa-reply-time { --fa: "\E239"; }
.fa-republican { --fa: "\F75E"; }
.fa-restroom { --fa: "\F7BD"; }
.fa-restroom-simple { --fa: "\E23A"; }
.fa-retweet { --fa: "\F079"; }
.fa-retweet-alt { --fa: "\F361"; }
.fa-rhombus { --fa: "\E23B"; }
.fa-ribbon { --fa: "\F4D6"; }
.fa-right { --fa: "\F356"; }
.fa-right-from-bracket { --fa: "\F2F5"; }
.fa-right-from-dotted-line { --fa: "\E6C4"; }
.fa-right-from-line { --fa: "\F347"; }
.fa-right-left { --fa: "\F362"; }
.fa-right-left-large { --fa: "\E5E1"; }
.fa-right-long { --fa: "\F30B"; }
.fa-right-long-to-line { --fa: "\E444"; }
.fa-right-to-bracket { --fa: "\F2F6"; }
.fa-right-to-dotted-line { --fa: "\E6C5"; }
.fa-right-to-line { --fa: "\F34C"; }
.fa-ring { --fa: "\F70B"; }
.fa-ring-diamond { --fa: "\E5AB"; }
.fa-rings-wedding { --fa: "\F81B"; }
.fa-rmb { --fa: "\F157"; }
.fa-road { --fa: "\F018"; }
.fa-road-barrier { --fa: "\E562"; }
.fa-road-bridge { --fa: "\E563"; }
.fa-road-circle-check { --fa: "\E564"; }
.fa-road-circle-exclamation { --fa: "\E565"; }
.fa-road-circle-xmark { --fa: "\E566"; }
.fa-road-lock { --fa: "\E567"; }
.fa-road-spikes { --fa: "\E568"; }
.fa-robot { --fa: "\F544"; }
.fa-robot-astromech { --fa: "\E2D2"; }
.fa-rocket { --fa: "\F135"; }
.fa-rocket-launch { --fa: "\E027"; }
.fa-rocket-vertical { --fa: "\E7BD"; }
.fa-rod-asclepius { --fa: "\E579"; }
.fa-rod-snake { --fa: "\E579"; }
.fa-roller-coaster { --fa: "\E324"; }
.fa-rotate { --fa: "\F2F1"; }
.fa-rotate-back { --fa: "\F2EA"; }
.fa-rotate-backward { --fa: "\F2EA"; }
.fa-rotate-exclamation { --fa: "\E23C"; }
.fa-rotate-forward { --fa: "\F2F9"; }
.fa-rotate-left { --fa: "\F2EA"; }
.fa-rotate-reverse { --fa: "\E631"; }
.fa-rotate-right { --fa: "\F2F9"; }
.fa-rouble { --fa: "\F158"; }
.fa-route { --fa: "\F4D7"; }
.fa-route-highway { --fa: "\F61A"; }
.fa-route-interstate { --fa: "\F61B"; }
.fa-router { --fa: "\F8DA"; }
.fa-rows { --fa: "\E292"; }
.fa-rss { --fa: "\F09E"; }
.fa-rss-square { --fa: "\F143"; }
.fa-rub { --fa: "\F158"; }
.fa-ruble { --fa: "\F158"; }
.fa-ruble-sign { --fa: "\F158"; }
.fa-rug { --fa: "\E569"; }
.fa-rugby-ball { --fa: "\E3C6"; }
.fa-ruler { --fa: "\F545"; }
.fa-ruler-combined { --fa: "\F546"; }
.fa-ruler-horizontal { --fa: "\F547"; }
.fa-ruler-triangle { --fa: "\F61C"; }
.fa-ruler-vertical { --fa: "\F548"; }
.fa-running { --fa: "\F70C"; }
.fa-rupee { --fa: "\F156"; }
.fa-rupee-sign { --fa: "\F156"; }
.fa-rupiah-sign { --fa: "\E23D"; }
.fa-rv { --fa: "\F7BE"; }
.fa-s { --fa: "S"; }
.fa-sack { --fa: "\F81C"; }
.fa-sack-dollar { --fa: "\F81D"; }
.fa-sack-xmark { --fa: "\E56A"; }
.fa-sad-cry { --fa: "\F5B3"; }
.fa-sad-tear { --fa: "\F5B4"; }
.fa-sailboat { --fa: "\E445"; }
.fa-salad { --fa: "\F81E"; }
.fa-salt-shaker { --fa: "\E446"; }
.fa-sandwich { --fa: "\F81F"; }
.fa-satellite { --fa: "\F7BF"; }
.fa-satellite-dish { --fa: "\F7C0"; }
.fa-sausage { --fa: "\F820"; }
.fa-save { --fa: "\F0C7"; }
.fa-save-circle-arrow-right { --fa: "\E180"; }
.fa-save-circle-xmark { --fa: "\E181"; }
.fa-save-times { --fa: "\E181"; }
.fa-sax-hot { --fa: "\F8DB"; }
.fa-saxophone { --fa: "\F8DC"; }
.fa-saxophone-fire { --fa: "\F8DB"; }
.fa-scale-balanced { --fa: "\F24E"; }
.fa-scale-unbalanced { --fa: "\F515"; }
.fa-scale-unbalanced-flip { --fa: "\F516"; }
.fa-scalpel { --fa: "\F61D"; }
.fa-scalpel-line-dashed { --fa: "\F61E"; }
.fa-scalpel-path { --fa: "\F61E"; }
.fa-scanner { --fa: "\F488"; }
.fa-scanner-gun { --fa: "\F488"; }
.fa-scanner-image { --fa: "\F8F3"; }
.fa-scanner-keyboard { --fa: "\F489"; }
.fa-scanner-touchscreen { --fa: "\F48A"; }
.fa-scarecrow { --fa: "\F70D"; }
.fa-scarf { --fa: "\F7C1"; }
.fa-school { --fa: "\F549"; }
.fa-school-circle-check { --fa: "\E56B"; }
.fa-school-circle-exclamation { --fa: "\E56C"; }
.fa-school-circle-xmark { --fa: "\E56D"; }
.fa-school-flag { --fa: "\E56E"; }
.fa-school-lock { --fa: "\E56F"; }
.fa-school-unlock { --fa: "\E6CB"; }
.fa-scissors { --fa: "\F0C4"; }
.fa-scooter { --fa: "\E7C3"; }
.fa-screen-users { --fa: "\F63D"; }
.fa-screencast { --fa: "\E23E"; }
.fa-screenshot { --fa: "\E0DA"; }
.fa-screwdriver { --fa: "\F54A"; }
.fa-screwdriver-wrench { --fa: "\F7D9"; }
.fa-scribble { --fa: "\E23F"; }
.fa-scroll { --fa: "\F70E"; }
.fa-scroll-old { --fa: "\F70F"; }
.fa-scroll-ribbon { --fa: "\F5EA"; }
.fa-scroll-torah { --fa: "\F6A0"; }
.fa-scrubber { --fa: "\F2F8"; }
.fa-scythe { --fa: "\F710"; }
.fa-sd-card { --fa: "\F7C2"; }
.fa-sd-cards { --fa: "\E240"; }
.fa-seal { --fa: "\E241"; }
.fa-seal-exclamation { --fa: "\E242"; }
.fa-seal-question { --fa: "\E243"; }
.fa-search { --fa: "\F002"; }
.fa-search-dollar { --fa: "\F688"; }
.fa-search-location { --fa: "\F689"; }
.fa-search-minus { --fa: "\F010"; }
.fa-search-plus { --fa: "\F00E"; }
.fa-seat { --fa: "\E764"; }
.fa-seat-airline { --fa: "\E244"; }
.fa-seat-airline-window { --fa: "\E7BE"; }
.fa-seats { --fa: "\E765"; }
.fa-section { --fa: "\E447"; }
.fa-seedling { --fa: "\F4D8"; }
.fa-semicolon { --fa: ";"; }
.fa-send { --fa: "\E20A"; }
.fa-send-back { --fa: "\F87E"; }
.fa-send-backward { --fa: "\F87F"; }
.fa-sensor { --fa: "\E028"; }
.fa-sensor-alert { --fa: "\E029"; }
.fa-sensor-cloud { --fa: "\E02C"; }
.fa-sensor-fire { --fa: "\E02A"; }
.fa-sensor-on { --fa: "\E02B"; }
.fa-sensor-smoke { --fa: "\E02C"; }
.fa-sensor-triangle-exclamation { --fa: "\E029"; }
.fa-septagon { --fa: "\E820"; }
.fa-server { --fa: "\F233"; }
.fa-shapes { --fa: "\F61F"; }
.fa-share { --fa: "\F064"; }
.fa-share-all { --fa: "\F367"; }
.fa-share-alt { --fa: "\F1E0"; }
.fa-share-alt-square { --fa: "\F1E1"; }
.fa-share-from-square { --fa: "\F14D"; }
.fa-share-nodes { --fa: "\F1E0"; }
.fa-share-square { --fa: "\F14D"; }
.fa-sheep { --fa: "\F711"; }
.fa-sheet-plastic { --fa: "\E571"; }
.fa-shekel { --fa: "\F20B"; }
.fa-shekel-sign { --fa: "\F20B"; }
.fa-shelves { --fa: "\F480"; }
.fa-shelves-empty { --fa: "\E246"; }
.fa-sheqel { --fa: "\F20B"; }
.fa-sheqel-sign { --fa: "\F20B"; }
.fa-shield { --fa: "\F132"; }
.fa-shield-alt { --fa: "\F3ED"; }
.fa-shield-blank { --fa: "\F132"; }
.fa-shield-cat { --fa: "\E572"; }
.fa-shield-check { --fa: "\F2F7"; }
.fa-shield-cross { --fa: "\F712"; }
.fa-shield-dog { --fa: "\E573"; }
.fa-shield-exclamation { --fa: "\E247"; }
.fa-shield-halved { --fa: "\F3ED"; }
.fa-shield-heart { --fa: "\E574"; }
.fa-shield-keyhole { --fa: "\E248"; }
.fa-shield-minus { --fa: "\E249"; }
.fa-shield-plus { --fa: "\E24A"; }
.fa-shield-quartered { --fa: "\E575"; }
.fa-shield-slash { --fa: "\E24B"; }
.fa-shield-times { --fa: "\E24C"; }
.fa-shield-user { --fa: "\E809"; }
.fa-shield-virus { --fa: "\E06C"; }
.fa-shield-xmark { --fa: "\E24C"; }
.fa-ship { --fa: "\F21A"; }
.fa-ship-large { --fa: "\E810"; }
.fa-shipping-fast { --fa: "\F48B"; }
.fa-shipping-timed { --fa: "\F48C"; }
.fa-shirt { --fa: "\F553"; }
.fa-shirt-jersey { --fa: "\E6D7"; }
.fa-shirt-long-sleeve { --fa: "\E3C7"; }
.fa-shirt-running { --fa: "\E3C8"; }
.fa-shirt-tank-top { --fa: "\E3C9"; }
.fa-shish-kebab { --fa: "\F821"; }
.fa-shoe { --fa: "\E6D8"; }
.fa-shoe-prints { --fa: "\F54B"; }
.fa-shop { --fa: "\F54F"; }
.fa-shop-24 { --fa: "\E79A"; }
.fa-shop-lock { --fa: "\E4A5"; }
.fa-shop-slash { --fa: "\E070"; }
.fa-shopping-bag { --fa: "\F290"; }
.fa-shopping-basket { --fa: "\F291"; }
.fa-shopping-basket-alt { --fa: "\E0AF"; }
.fa-shopping-cart { --fa: "\F07A"; }
.fa-shortcake { --fa: "\E3E5"; }
.fa-shorts { --fa: "\E6D9"; }
.fa-shovel { --fa: "\F713"; }
.fa-shovel-snow { --fa: "\F7C3"; }
.fa-shower { --fa: "\F2CC"; }
.fa-shower-alt { --fa: "\E24D"; }
.fa-shower-down { --fa: "\E24D"; }
.fa-shredder { --fa: "\F68A"; }
.fa-shrimp { --fa: "\E448"; }
.fa-shuffle { --fa: "\F074"; }
.fa-shutters { --fa: "\E449"; }
.fa-shuttle-space { --fa: "\F197"; }
.fa-shuttle-space-vertical { --fa: "\E7BF"; }
.fa-shuttle-van { --fa: "\F5B6"; }
.fa-shuttlecock { --fa: "\F45B"; }
.fa-sickle { --fa: "\F822"; }
.fa-sidebar { --fa: "\E24E"; }
.fa-sidebar-flip { --fa: "\E24F"; }
.fa-sigma { --fa: "\F68B"; }
.fa-sign { --fa: "\F4D9"; }
.fa-sign-hanging { --fa: "\F4D9"; }
.fa-sign-in { --fa: "\F090"; }
.fa-sign-in-alt { --fa: "\F2F6"; }
.fa-sign-language { --fa: "\F2A7"; }
.fa-sign-out { --fa: "\F08B"; }
.fa-sign-out-alt { --fa: "\F2F5"; }
.fa-sign-post { --fa: "\E624"; }
.fa-sign-posts { --fa: "\E625"; }
.fa-sign-posts-wrench { --fa: "\E626"; }
.fa-signal { --fa: "\F012"; }
.fa-signal-1 { --fa: "\F68C"; }
.fa-signal-2 { --fa: "\F68D"; }
.fa-signal-3 { --fa: "\F68E"; }
.fa-signal-4 { --fa: "\F68F"; }
.fa-signal-5 { --fa: "\F012"; }
.fa-signal-alt { --fa: "\F690"; }
.fa-signal-alt-1 { --fa: "\F691"; }
.fa-signal-alt-2 { --fa: "\F692"; }
.fa-signal-alt-3 { --fa: "\F693"; }
.fa-signal-alt-4 { --fa: "\F690"; }
.fa-signal-alt-slash { --fa: "\F694"; }
.fa-signal-bars { --fa: "\F690"; }
.fa-signal-bars-fair { --fa: "\F692"; }
.fa-signal-bars-good { --fa: "\F693"; }
.fa-signal-bars-slash { --fa: "\F694"; }
.fa-signal-bars-strong { --fa: "\F690"; }
.fa-signal-bars-weak { --fa: "\F691"; }
.fa-signal-fair { --fa: "\F68D"; }
.fa-signal-good { --fa: "\F68E"; }
.fa-signal-perfect { --fa: "\F012"; }
.fa-signal-slash { --fa: "\F695"; }
.fa-signal-stream { --fa: "\F8DD"; }
.fa-signal-stream-slash { --fa: "\E250"; }
.fa-signal-strong { --fa: "\F68F"; }
.fa-signal-weak { --fa: "\F68C"; }
.fa-signapore-dollar-sign { --fa: "\E72E"; }
.fa-signature { --fa: "\F5B7"; }
.fa-signature-lock { --fa: "\E3CA"; }
.fa-signature-slash { --fa: "\E3CB"; }
.fa-signing { --fa: "\F2A7"; }
.fa-signs-post { --fa: "\F277"; }
.fa-sim-card { --fa: "\F7C4"; }
.fa-sim-cards { --fa: "\E251"; }
.fa-single-quote-left { --fa: "\E81B"; }
.fa-single-quote-right { --fa: "\E81C"; }
.fa-sink { --fa: "\E06D"; }
.fa-siren { --fa: "\E02D"; }
.fa-siren-on { --fa: "\E02E"; }
.fa-sitemap { --fa: "\F0E8"; }
.fa-skating { --fa: "\F7C5"; }
.fa-skeleton { --fa: "\F620"; }
.fa-skeleton-ribs { --fa: "\E5CB"; }
.fa-ski-boot { --fa: "\E3CC"; }
.fa-ski-boot-ski { --fa: "\E3CD"; }
.fa-ski-jump { --fa: "\F7C7"; }
.fa-ski-lift { --fa: "\F7C8"; }
.fa-skiing { --fa: "\F7C9"; }
.fa-skiing-nordic { --fa: "\F7CA"; }
.fa-skull { --fa: "\F54C"; }
.fa-skull-cow { --fa: "\F8DE"; }
.fa-skull-crossbones { --fa: "\F714"; }
.fa-slash { --fa: "\F715"; }
.fa-slash-back { --fa: "\\"; }
.fa-slash-forward { --fa: "/"; }
.fa-sledding { --fa: "\F7CB"; }
.fa-sleigh { --fa: "\F7CC"; }
.fa-slider { --fa: "\E252"; }
.fa-slider-circle { --fa: "\E750"; }
.fa-sliders { --fa: "\F1DE"; }
.fa-sliders-h { --fa: "\F1DE"; }
.fa-sliders-h-square { --fa: "\F3F0"; }
.fa-sliders-simple { --fa: "\E253"; }
.fa-sliders-up { --fa: "\F3F1"; }
.fa-sliders-v { --fa: "\F3F1"; }
.fa-sliders-v-square { --fa: "\F3F2"; }
.fa-slot-machine { --fa: "\E3CE"; }
.fa-smile { --fa: "\F118"; }
.fa-smile-beam { --fa: "\F5B8"; }
.fa-smile-plus { --fa: "\F5B9"; }
.fa-smile-wink { --fa: "\F4DA"; }
.fa-smog { --fa: "\F75F"; }
.fa-smoke { --fa: "\F760"; }
.fa-smoking { --fa: "\F48D"; }
.fa-smoking-ban { --fa: "\F54D"; }
.fa-sms { --fa: "\F7CD"; }
.fa-snake { --fa: "\F716"; }
.fa-sneaker { --fa: "\E6DA"; }
.fa-sneaker-running { --fa: "\E819"; }
.fa-snooze { --fa: "\F880"; }
.fa-snow-blowing { --fa: "\F761"; }
.fa-snowboarding { --fa: "\F7CE"; }
.fa-snowflake { --fa: "\F2DC"; }
.fa-snowflake-droplets { --fa: "\E5C1"; }
.fa-snowflakes { --fa: "\F7CF"; }
.fa-snowman { --fa: "\F7D0"; }
.fa-snowman-head { --fa: "\F79B"; }
.fa-snowmobile { --fa: "\F7D1"; }
.fa-snowmobile-blank { --fa: "\E7C4"; }
.fa-snowplow { --fa: "\F7D2"; }
.fa-soap { --fa: "\E06E"; }
.fa-soccer-ball { --fa: "\F1E3"; }
.fa-socks { --fa: "\F696"; }
.fa-soft-serve { --fa: "\E400"; }
.fa-solar-panel { --fa: "\F5BA"; }
.fa-solar-system { --fa: "\E02F"; }
.fa-sort { --fa: "\F0DC"; }
.fa-sort-alpha-asc { --fa: "\F15D"; }
.fa-sort-alpha-desc { --fa: "\F881"; }
.fa-sort-alpha-down { --fa: "\F15D"; }
.fa-sort-alpha-down-alt { --fa: "\F881"; }
.fa-sort-alpha-up { --fa: "\F15E"; }
.fa-sort-alpha-up-alt { --fa: "\F882"; }
.fa-sort-alt { --fa: "\F883"; }
.fa-sort-amount-asc { --fa: "\F160"; }
.fa-sort-amount-desc { --fa: "\F884"; }
.fa-sort-amount-down { --fa: "\F160"; }
.fa-sort-amount-down-alt { --fa: "\F884"; }
.fa-sort-amount-up { --fa: "\F161"; }
.fa-sort-amount-up-alt { --fa: "\F885"; }
.fa-sort-asc { --fa: "\F0DE"; }
.fa-sort-circle { --fa: "\E030"; }
.fa-sort-circle-down { --fa: "\E031"; }
.fa-sort-circle-up { --fa: "\E032"; }
.fa-sort-desc { --fa: "\F0DD"; }
.fa-sort-down { --fa: "\F0DD"; }
.fa-sort-numeric-asc { --fa: "\F162"; }
.fa-sort-numeric-desc { --fa: "\F886"; }
.fa-sort-numeric-down { --fa: "\F162"; }
.fa-sort-numeric-down-alt { --fa: "\F886"; }
.fa-sort-numeric-up { --fa: "\F163"; }
.fa-sort-numeric-up-alt { --fa: "\F887"; }
.fa-sort-shapes-down { --fa: "\F888"; }
.fa-sort-shapes-down-alt { --fa: "\F889"; }
.fa-sort-shapes-up { --fa: "\F88A"; }
.fa-sort-shapes-up-alt { --fa: "\F88B"; }
.fa-sort-size-down { --fa: "\F88C"; }
.fa-sort-size-down-alt { --fa: "\F88D"; }
.fa-sort-size-up { --fa: "\F88E"; }
.fa-sort-size-up-alt { --fa: "\F88F"; }
.fa-sort-up { --fa: "\F0DE"; }
.fa-sort-up-down { --fa: "\E099"; }
.fa-soup { --fa: "\F823"; }
.fa-spa { --fa: "\F5BB"; }
.fa-space-shuttle { --fa: "\F197"; }
.fa-space-station-moon { --fa: "\E033"; }
.fa-space-station-moon-alt { --fa: "\E034"; }
.fa-space-station-moon-construction { --fa: "\E034"; }
.fa-spade { --fa: "\F2F4"; }
.fa-spaghetti-monster-flying { --fa: "\F67B"; }
.fa-sparkle { --fa: "\E5D6"; }
.fa-sparkles { --fa: "\F890"; }
.fa-speaker { --fa: "\F8DF"; }
.fa-speakers { --fa: "\F8E0"; }
.fa-spell-check { --fa: "\F891"; }
.fa-spider { --fa: "\F717"; }
.fa-spider-black-widow { --fa: "\F718"; }
.fa-spider-web { --fa: "\F719"; }
.fa-spine { --fa: "\E761"; }
.fa-spinner { --fa: "\F110"; }
.fa-spinner-scale { --fa: "\E62A"; }
.fa-spinner-third { --fa: "\F3F4"; }
.fa-spiral { --fa: "\E80A"; }
.fa-split { --fa: "\E254"; }
.fa-splotch { --fa: "\F5BC"; }
.fa-spoon { --fa: "\F2E5"; }
.fa-sportsball { --fa: "\E44B"; }
.fa-spray-can { --fa: "\F5BD"; }
.fa-spray-can-sparkles { --fa: "\F5D0"; }
.fa-sprinkler { --fa: "\E035"; }
.fa-sprinkler-ceiling { --fa: "\E44C"; }
.fa-sprout { --fa: "\F4D8"; }
.fa-square { --fa: "\F0C8"; }
.fa-square-0 { --fa: "\E255"; }
.fa-square-1 { --fa: "\E256"; }
.fa-square-2 { --fa: "\E257"; }
.fa-square-3 { --fa: "\E258"; }
.fa-square-4 { --fa: "\E259"; }
.fa-square-5 { --fa: "\E25A"; }
.fa-square-6 { --fa: "\E25B"; }
.fa-square-7 { --fa: "\E25C"; }
.fa-square-8 { --fa: "\E25D"; }
.fa-square-9 { --fa: "\E25E"; }
.fa-square-a { --fa: "\E25F"; }
.fa-square-a-lock { --fa: "\E44D"; }
.fa-square-ampersand { --fa: "\E260"; }
.fa-square-arrow-down { --fa: "\F339"; }
.fa-square-arrow-down-left { --fa: "\E261"; }
.fa-square-arrow-down-right { --fa: "\E262"; }
.fa-square-arrow-left { --fa: "\F33A"; }
.fa-square-arrow-right { --fa: "\F33B"; }
.fa-square-arrow-up { --fa: "\F33C"; }
.fa-square-arrow-up-left { --fa: "\E263"; }
.fa-square-arrow-up-right { --fa: "\F14C"; }
.fa-square-austral { --fa: "\E726"; }
.fa-square-australian-dollar { --fa: "\E718"; }
.fa-square-b { --fa: "\E264"; }
.fa-square-baht { --fa: "\E719"; }
.fa-square-bangladeshi-taka { --fa: "\E744"; }
.fa-square-binary { --fa: "\E69B"; }
.fa-square-bitcoin { --fa: "\E6F2"; }
.fa-square-bolt { --fa: "\E265"; }
.fa-square-brazilian-real { --fa: "\E6F1"; }
.fa-square-c { --fa: "\E266"; }
.fa-square-caret-down { --fa: "\F150"; }
.fa-square-caret-left { --fa: "\F191"; }
.fa-square-caret-right { --fa: "\F152"; }
.fa-square-caret-up { --fa: "\F151"; }
.fa-square-cedi { --fa: "\E729"; }
.fa-square-cent { --fa: "\E6F0"; }
.fa-square-check { --fa: "\F14A"; }
.fa-square-chevron-down { --fa: "\F329"; }
.fa-square-chevron-left { --fa: "\F32A"; }
.fa-square-chevron-right { --fa: "\F32B"; }
.fa-square-chevron-up { --fa: "\F32C"; }
.fa-square-chf { --fa: "\E6E6"; }
.fa-square-code { --fa: "\E267"; }
.fa-square-colon { --fa: "\E73A"; }
.fa-square-cruzeiro { --fa: "\E6ED"; }
.fa-square-currency { --fa: "\E70C"; }
.fa-square-d { --fa: "\E268"; }
.fa-square-danish-krone { --fa: "\E747"; }
.fa-square-dashed { --fa: "\E269"; }
.fa-square-dashed-circle-plus { --fa: "\E5C2"; }
.fa-square-divide { --fa: "\E26A"; }
.fa-square-dollar { --fa: "\F2E9"; }
.fa-square-dong { --fa: "\E70F"; }
.fa-square-down { --fa: "\F350"; }
.fa-square-down-left { --fa: "\E26B"; }
.fa-square-down-right { --fa: "\E26C"; }
.fa-square-e { --fa: "\E26D"; }
.fa-square-ellipsis { --fa: "\E26E"; }
.fa-square-ellipsis-vertical { --fa: "\E26F"; }
.fa-square-envelope { --fa: "\F199"; }
.fa-square-equals { --fa: "\E6B6"; }
.fa-square-euro { --fa: "\E732"; }
.fa-square-eurozone { --fa: "\E727"; }
.fa-square-exclamation { --fa: "\F321"; }
.fa-square-f { --fa: "\E270"; }
.fa-square-florin { --fa: "\E717"; }
.fa-square-fragile { --fa: "\F49B"; }
.fa-square-franc { --fa: "\E72F"; }
.fa-square-full { --fa: "\F45C"; }
.fa-square-g { --fa: "\E271"; }
.fa-square-guarani { --fa: "\E70E"; }
.fa-square-h { --fa: "\F0FD"; }
.fa-square-half { --fa: "\E792"; }
.fa-square-half-horizontal { --fa: "\E80E"; }
.fa-square-half-stroke { --fa: "\E793"; }
.fa-square-half-stroke-horizontal { --fa: "\E80F"; }
.fa-square-heart { --fa: "\F4C8"; }
.fa-square-hryvnia { --fa: "\E710"; }
.fa-square-i { --fa: "\E272"; }
.fa-square-indian-rupee { --fa: "\E6F5"; }
.fa-square-info { --fa: "\F30F"; }
.fa-square-j { --fa: "\E273"; }
.fa-square-k { --fa: "\E274"; }
.fa-square-kanban { --fa: "\E488"; }
.fa-square-kip { --fa: "\E70D"; }
.fa-square-l { --fa: "\E275"; }
.fa-square-lari { --fa: "\E73F"; }
.fa-square-left { --fa: "\F351"; }
.fa-square-lira { --fa: "\E6E7"; }
.fa-square-list { --fa: "\E489"; }
.fa-square-litecoin { --fa: "\E6F7"; }
.fa-square-m { --fa: "\E276"; }
.fa-square-malaysian-ringgit { --fa: "\E748"; }
.fa-square-manat { --fa: "\E704"; }
.fa-square-microphone { --fa: "\E781"; }
.fa-square-mill { --fa: "\E70A"; }
.fa-square-minus { --fa: "\F146"; }
.fa-square-n { --fa: "\E277"; }
.fa-square-naira { --fa: "\E708"; }
.fa-square-nfi { --fa: "\E576"; }
.fa-square-norwegian-krone { --fa: "\E707"; }
.fa-square-o { --fa: "\E278"; }
.fa-square-p { --fa: "\E279"; }
.fa-square-parking { --fa: "\F540"; }
.fa-square-parking-slash { --fa: "\F617"; }
.fa-square-pen { --fa: "\F14B"; }
.fa-square-person-confined { --fa: "\E577"; }
.fa-square-peruvian-soles { --fa: "\E716"; }
.fa-square-peseta { --fa: "\E6EA"; }
.fa-square-peso { --fa: "\E71A"; }
.fa-square-phone { --fa: "\F098"; }
.fa-square-phone-flip { --fa: "\F87B"; }
.fa-square-phone-hangup { --fa: "\E27A"; }
.fa-square-plus { --fa: "\F0FE"; }
.fa-square-polish-zloty { --fa: "\E736"; }
.fa-square-poll-horizontal { --fa: "\F682"; }
.fa-square-poll-vertical { --fa: "\F681"; }
.fa-square-q { --fa: "\E27B"; }
.fa-square-quarters { --fa: "\E44E"; }
.fa-square-question { --fa: "\F2FD"; }
.fa-square-quote { --fa: "\E329"; }
.fa-square-r { --fa: "\E27C"; }
.fa-square-renminbi { --fa: "\E73D"; }
.fa-square-right { --fa: "\F352"; }
.fa-square-ring { --fa: "\E44F"; }
.fa-square-root { --fa: "\F697"; }
.fa-square-root-alt { --fa: "\F698"; }
.fa-square-root-variable { --fa: "\F698"; }
.fa-square-rss { --fa: "\F143"; }
.fa-square-ruble { --fa: "\E6F8"; }
.fa-square-rupee { --fa: "\E715"; }
.fa-square-rupiah { --fa: "\E712"; }
.fa-square-s { --fa: "\E27D"; }
.fa-square-share-nodes { --fa: "\F1E1"; }
.fa-square-shekel { --fa: "\E735"; }
.fa-square-sliders { --fa: "\F3F0"; }
.fa-square-sliders-vertical { --fa: "\F3F2"; }
.fa-square-small { --fa: "\E27E"; }
.fa-square-star { --fa: "\E27F"; }
.fa-square-sterling { --fa: "\E713"; }
.fa-square-swedish-krona { --fa: "\E71C"; }
.fa-square-t { --fa: "\E280"; }
.fa-square-tenge { --fa: "\E731"; }
.fa-square-terminal { --fa: "\E32A"; }
.fa-square-this-way-up { --fa: "\F49F"; }
.fa-square-tugrik { --fa: "\E728"; }
.fa-square-turkish-lira { --fa: "\E71F"; }
.fa-square-u { --fa: "\E281"; }
.fa-square-up { --fa: "\F353"; }
.fa-square-up-left { --fa: "\E282"; }
.fa-square-up-right { --fa: "\F360"; }
.fa-square-user { --fa: "\E283"; }
.fa-square-v { --fa: "\E284"; }
.fa-square-virus { --fa: "\E578"; }
.fa-square-w { --fa: "\E285"; }
.fa-square-wine-glass-crack { --fa: "\F49B"; }
.fa-square-won { --fa: "\E709"; }
.fa-square-x { --fa: "\E286"; }
.fa-square-xmark { --fa: "\F2D3"; }
.fa-square-y { --fa: "\E287"; }
.fa-square-yen { --fa: "\E724"; }
.fa-square-z { --fa: "\E288"; }
.fa-squareapore-dollar { --fa: "\E733"; }
.fa-squid { --fa: "\E450"; }
.fa-squirrel { --fa: "\F71A"; }
.fa-stadium { --fa: "\E6CC"; }
.fa-staff { --fa: "\F71B"; }
.fa-staff-aesculapius { --fa: "\E579"; }
.fa-staff-snake { --fa: "\E579"; }
.fa-stair-car { --fa: "\E7C5"; }
.fa-stairs { --fa: "\E289"; }
.fa-stamp { --fa: "\F5BF"; }
.fa-standard-definition { --fa: "\E28A"; }
.fa-stapler { --fa: "\E5AF"; }
.fa-star { --fa: "\F005"; }
.fa-star-and-crescent { --fa: "\F699"; }
.fa-star-christmas { --fa: "\F7D4"; }
.fa-star-circle { --fa: "\E123"; }
.fa-star-exclamation { --fa: "\F2F3"; }
.fa-star-half { --fa: "\F089"; }
.fa-star-half-alt { --fa: "\F5C0"; }
.fa-star-half-stroke { --fa: "\F5C0"; }
.fa-star-of-david { --fa: "\F69A"; }
.fa-star-of-life { --fa: "\F621"; }
.fa-star-sharp { --fa: "\E28B"; }
.fa-star-sharp-half { --fa: "\E28C"; }
.fa-star-sharp-half-alt { --fa: "\E28D"; }
.fa-star-sharp-half-stroke { --fa: "\E28D"; }
.fa-star-shooting { --fa: "\E036"; }
.fa-starfighter { --fa: "\E037"; }
.fa-starfighter-alt { --fa: "\E038"; }
.fa-starfighter-alt-advanced { --fa: "\E28E"; }
.fa-starfighter-twin-ion-engine { --fa: "\E038"; }
.fa-starfighter-twin-ion-engine-advanced { --fa: "\E28E"; }
.fa-stars { --fa: "\F762"; }
.fa-starship { --fa: "\E039"; }
.fa-starship-freighter { --fa: "\E03A"; }
.fa-steak { --fa: "\F824"; }
.fa-steering-wheel { --fa: "\F622"; }
.fa-step-backward { --fa: "\F048"; }
.fa-step-forward { --fa: "\F051"; }
.fa-sterling-sign { --fa: "\F154"; }
.fa-stethoscope { --fa: "\F0F1"; }
.fa-sticky-note { --fa: "\F249"; }
.fa-stocking { --fa: "\F7D5"; }
.fa-stomach { --fa: "\F623"; }
.fa-stop { --fa: "\F04D"; }
.fa-stop-circle { --fa: "\F28D"; }
.fa-stopwatch { --fa: "\F2F2"; }
.fa-stopwatch-20 { --fa: "\E06F"; }
.fa-store { --fa: "\F54E"; }
.fa-store-24 { --fa: "\E79B"; }
.fa-store-alt { --fa: "\F54F"; }
.fa-store-alt-slash { --fa: "\E070"; }
.fa-store-lock { --fa: "\E4A6"; }
.fa-store-slash { --fa: "\E071"; }
.fa-strawberry { --fa: "\E32B"; }
.fa-stream { --fa: "\F550"; }
.fa-street-view { --fa: "\F21D"; }
.fa-stretcher { --fa: "\F825"; }
.fa-strikethrough { --fa: "\F0CC"; }
.fa-stroopwafel { --fa: "\F551"; }
.fa-subscript { --fa: "\F12C"; }
.fa-subtitles { --fa: "\E60F"; }
.fa-subtitles-slash { --fa: "\E610"; }
.fa-subtract { --fa: "\F068"; }
.fa-subway { --fa: "\F239"; }
.fa-subway-tunnel { --fa: "\E2A3"; }
.fa-suitcase { --fa: "\F0F2"; }
.fa-suitcase-medical { --fa: "\F0FA"; }
.fa-suitcase-rolling { --fa: "\F5C1"; }
.fa-sun { --fa: "\F185"; }
.fa-sun-alt { --fa: "\E28F"; }
.fa-sun-bright { --fa: "\E28F"; }
.fa-sun-cloud { --fa: "\F763"; }
.fa-sun-dust { --fa: "\F764"; }
.fa-sun-haze { --fa: "\F765"; }
.fa-sun-plant-wilt { --fa: "\E57A"; }
.fa-sunglasses { --fa: "\F892"; }
.fa-sunrise { --fa: "\F766"; }
.fa-sunset { --fa: "\F767"; }
.fa-superscript { --fa: "\F12B"; }
.fa-surprise { --fa: "\F5C2"; }
.fa-sushi { --fa: "\E48A"; }
.fa-sushi-roll { --fa: "\E48B"; }
.fa-swap { --fa: "\E609"; }
.fa-swap-arrows { --fa: "\E60A"; }
.fa-swatchbook { --fa: "\F5C3"; }
.fa-swedish-krona-sign { --fa: "\E73E"; }
.fa-swimmer { --fa: "\F5C4"; }
.fa-swimming-pool { --fa: "\F5C5"; }
.fa-sword { --fa: "\F71C"; }
.fa-sword-laser { --fa: "\E03B"; }
.fa-sword-laser-alt { --fa: "\E03C"; }
.fa-swords { --fa: "\F71D"; }
.fa-swords-laser { --fa: "\E03D"; }
.fa-symbols { --fa: "\F86E"; }
.fa-synagogue { --fa: "\F69B"; }
.fa-sync { --fa: "\F021"; }
.fa-sync-alt { --fa: "\F2F1"; }
.fa-syringe { --fa: "\F48E"; }
.fa-t { --fa: "T"; }
.fa-t-rex { --fa: "\E629"; }
.fa-t-shirt { --fa: "\F553"; }
.fa-table { --fa: "\F0CE"; }
.fa-table-cells { --fa: "\F00A"; }
.fa-table-cells-column-lock { --fa: "\E678"; }
.fa-table-cells-column-unlock { --fa: "\E690"; }
.fa-table-cells-columns { --fa: "\E6AC"; }
.fa-table-cells-header { --fa: "\E6AD"; }
.fa-table-cells-header-lock { --fa: "\E6AE"; }
.fa-table-cells-header-unlock { --fa: "\E6AF"; }
.fa-table-cells-large { --fa: "\F009"; }
.fa-table-cells-lock { --fa: "\E679"; }
.fa-table-cells-row-lock { --fa: "\E67A"; }
.fa-table-cells-row-unlock { --fa: "\E691"; }
.fa-table-cells-rows { --fa: "\E6B0"; }
.fa-table-cells-unlock { --fa: "\E692"; }
.fa-table-columns { --fa: "\F0DB"; }
.fa-table-layout { --fa: "\E290"; }
.fa-table-list { --fa: "\F00B"; }
.fa-table-picnic { --fa: "\E32D"; }
.fa-table-pivot { --fa: "\E291"; }
.fa-table-rows { --fa: "\E292"; }
.fa-table-tennis { --fa: "\F45D"; }
.fa-table-tennis-paddle-ball { --fa: "\F45D"; }
.fa-table-tree { --fa: "\E293"; }
.fa-tablet { --fa: "\F3FB"; }
.fa-tablet-alt { --fa: "\F3FA"; }
.fa-tablet-android { --fa: "\F3FB"; }
.fa-tablet-android-alt { --fa: "\F3FC"; }
.fa-tablet-button { --fa: "\F10A"; }
.fa-tablet-rugged { --fa: "\F48F"; }
.fa-tablet-screen { --fa: "\F3FC"; }
.fa-tablet-screen-button { --fa: "\F3FA"; }
.fa-tablets { --fa: "\F490"; }
.fa-tachograph-digital { --fa: "\F566"; }
.fa-tachometer { --fa: "\F62A"; }
.fa-tachometer-alt { --fa: "\F625"; }
.fa-tachometer-alt-average { --fa: "\F624"; }
.fa-tachometer-alt-fast { --fa: "\F625"; }
.fa-tachometer-alt-fastest { --fa: "\F626"; }
.fa-tachometer-alt-slow { --fa: "\F627"; }
.fa-tachometer-alt-slowest { --fa: "\F628"; }
.fa-tachometer-average { --fa: "\F629"; }
.fa-tachometer-fast { --fa: "\F62A"; }
.fa-tachometer-fastest { --fa: "\F62B"; }
.fa-tachometer-slow { --fa: "\F62C"; }
.fa-tachometer-slowest { --fa: "\F62D"; }
.fa-taco { --fa: "\F826"; }
.fa-tag { --fa: "\F02B"; }
.fa-tags { --fa: "\F02C"; }
.fa-tally { --fa: "\F69C"; }
.fa-tally-1 { --fa: "\E294"; }
.fa-tally-2 { --fa: "\E295"; }
.fa-tally-3 { --fa: "\E296"; }
.fa-tally-4 { --fa: "\E297"; }
.fa-tally-5 { --fa: "\F69C"; }
.fa-tamale { --fa: "\E451"; }
.fa-tanakh { --fa: "\F827"; }
.fa-tank-recovery { --fa: "\E825"; }
.fa-tank-water { --fa: "\E452"; }
.fa-tape { --fa: "\F4DB"; }
.fa-tarp { --fa: "\E57B"; }
.fa-tarp-droplet { --fa: "\E57C"; }
.fa-tasks { --fa: "\F0AE"; }
.fa-tasks-alt { --fa: "\F828"; }
.fa-taxi { --fa: "\F1BA"; }
.fa-taxi-bus { --fa: "\E298"; }
.fa-teddy-bear { --fa: "\E3CF"; }
.fa-teeth { --fa: "\F62E"; }
.fa-teeth-open { --fa: "\F62F"; }
.fa-telescope { --fa: "\E03E"; }
.fa-teletype { --fa: "\F1E4"; }
.fa-teletype-answer { --fa: "\E2B9"; }
.fa-television { --fa: "\F26C"; }
.fa-temperature-0 { --fa: "\F2CB"; }
.fa-temperature-1 { --fa: "\F2CA"; }
.fa-temperature-2 { --fa: "\F2C9"; }
.fa-temperature-3 { --fa: "\F2C8"; }
.fa-temperature-4 { --fa: "\F2C7"; }
.fa-temperature-arrow-down { --fa: "\E03F"; }
.fa-temperature-arrow-up { --fa: "\E040"; }
.fa-temperature-down { --fa: "\E03F"; }
.fa-temperature-empty { --fa: "\F2CB"; }
.fa-temperature-frigid { --fa: "\F768"; }
.fa-temperature-full { --fa: "\F2C7"; }
.fa-temperature-half { --fa: "\F2C9"; }
.fa-temperature-high { --fa: "\F769"; }
.fa-temperature-hot { --fa: "\F76A"; }
.fa-temperature-list { --fa: "\E299"; }
.fa-temperature-low { --fa: "\F76B"; }
.fa-temperature-quarter { --fa: "\F2CA"; }
.fa-temperature-slash { --fa: "\E7CB"; }
.fa-temperature-snow { --fa: "\F768"; }
.fa-temperature-sun { --fa: "\F76A"; }
.fa-temperature-three-quarters { --fa: "\F2C8"; }
.fa-temperature-up { --fa: "\E040"; }
.fa-tenge { --fa: "\F7D7"; }
.fa-tenge-sign { --fa: "\F7D7"; }
.fa-tennis-ball { --fa: "\F45E"; }
.fa-tent { --fa: "\E57D"; }
.fa-tent-arrow-down-to-line { --fa: "\E57E"; }
.fa-tent-arrow-left-right { --fa: "\E57F"; }
.fa-tent-arrow-turn-left { --fa: "\E580"; }
.fa-tent-arrows-down { --fa: "\E581"; }
.fa-tent-circus { --fa: "\E6CD"; }
.fa-tent-double-peak { --fa: "\E627"; }
.fa-tents { --fa: "\E582"; }
.fa-terminal { --fa: "\F120"; }
.fa-text { --fa: "\F893"; }
.fa-text-height { --fa: "\F034"; }
.fa-text-size { --fa: "\F894"; }
.fa-text-slash { --fa: "\F87D"; }
.fa-text-width { --fa: "\F035"; }
.fa-th { --fa: "\F00A"; }
.fa-th-large { --fa: "\F009"; }
.fa-th-list { --fa: "\F00B"; }
.fa-theater-masks { --fa: "\F630"; }
.fa-thermometer { --fa: "\F491"; }
.fa-thermometer-0 { --fa: "\F2CB"; }
.fa-thermometer-1 { --fa: "\F2CA"; }
.fa-thermometer-2 { --fa: "\F2C9"; }
.fa-thermometer-3 { --fa: "\F2C8"; }
.fa-thermometer-4 { --fa: "\F2C7"; }
.fa-thermometer-empty { --fa: "\F2CB"; }
.fa-thermometer-full { --fa: "\F2C7"; }
.fa-thermometer-half { --fa: "\F2C9"; }
.fa-thermometer-quarter { --fa: "\F2CA"; }
.fa-thermometer-three-quarters { --fa: "\F2C8"; }
.fa-theta { --fa: "\F69E"; }
.fa-thought-bubble { --fa: "\E32E"; }
.fa-thumb-tack { --fa: "\F08D"; }
.fa-thumb-tack-slash { --fa: "\E68F"; }
.fa-thumbs-down { --fa: "\F165"; }
.fa-thumbs-up { --fa: "\F164"; }
.fa-thumbtack { --fa: "\F08D"; }
.fa-thumbtack-angle { --fa: "\E751"; }
.fa-thumbtack-angle-slash { --fa: "\E752"; }
.fa-thumbtack-slash { --fa: "\E68F"; }
.fa-thunderstorm { --fa: "\F76C"; }
.fa-thunderstorm-moon { --fa: "\F76D"; }
.fa-thunderstorm-sun { --fa: "\F76E"; }
.fa-tick { --fa: "\E32F"; }
.fa-ticket { --fa: "\F145"; }
.fa-ticket-airline { --fa: "\E29A"; }
.fa-ticket-alt { --fa: "\F3FF"; }
.fa-ticket-perforated { --fa: "\E63E"; }
.fa-ticket-perforated-plane { --fa: "\E29A"; }
.fa-ticket-plane { --fa: "\E29A"; }
.fa-ticket-simple { --fa: "\F3FF"; }
.fa-tickets { --fa: "\E658"; }
.fa-tickets-airline { --fa: "\E29B"; }
.fa-tickets-perforated { --fa: "\E63F"; }
.fa-tickets-perforated-plane { --fa: "\E29B"; }
.fa-tickets-plane { --fa: "\E29B"; }
.fa-tickets-simple { --fa: "\E659"; }
.fa-tilde { --fa: "~"; }
.fa-timeline { --fa: "\E29C"; }
.fa-timeline-arrow { --fa: "\E29D"; }
.fa-timer { --fa: "\E29E"; }
.fa-times { --fa: "\F00D"; }
.fa-times-circle { --fa: "\F057"; }
.fa-times-hexagon { --fa: "\F2EE"; }
.fa-times-octagon { --fa: "\F2F0"; }
.fa-times-rectangle { --fa: "\F410"; }
.fa-times-square { --fa: "\F2D3"; }
.fa-times-to-slot { --fa: "\F771"; }
.fa-tint { --fa: "\F043"; }
.fa-tint-slash { --fa: "\F5C7"; }
.fa-tire { --fa: "\F631"; }
.fa-tire-flat { --fa: "\F632"; }
.fa-tire-pressure-warning { --fa: "\F633"; }
.fa-tire-rugged { --fa: "\F634"; }
.fa-tired { --fa: "\F5C8"; }
.fa-toggle-large-off { --fa: "\E5B0"; }
.fa-toggle-large-on { --fa: "\E5B1"; }
.fa-toggle-off { --fa: "\F204"; }
.fa-toggle-on { --fa: "\F205"; }
.fa-toilet { --fa: "\F7D8"; }
.fa-toilet-paper { --fa: "\F71E"; }
.fa-toilet-paper-alt { --fa: "\F71E"; }
.fa-toilet-paper-blank { --fa: "\F71E"; }
.fa-toilet-paper-blank-under { --fa: "\E2A0"; }
.fa-toilet-paper-check { --fa: "\E5B2"; }
.fa-toilet-paper-reverse { --fa: "\E2A0"; }
.fa-toilet-paper-reverse-alt { --fa: "\E2A0"; }
.fa-toilet-paper-reverse-slash { --fa: "\E2A1"; }
.fa-toilet-paper-slash { --fa: "\E072"; }
.fa-toilet-paper-under { --fa: "\E2A0"; }
.fa-toilet-paper-under-slash { --fa: "\E2A1"; }
.fa-toilet-paper-xmark { --fa: "\E5B3"; }
.fa-toilet-portable { --fa: "\E583"; }
.fa-toilets-portable { --fa: "\E584"; }
.fa-tomato { --fa: "\E330"; }
.fa-tombstone { --fa: "\F720"; }
.fa-tombstone-alt { --fa: "\F721"; }
.fa-tombstone-blank { --fa: "\F721"; }
.fa-toolbox { --fa: "\F552"; }
.fa-tools { --fa: "\F7D9"; }
.fa-tooth { --fa: "\F5C9"; }
.fa-toothbrush { --fa: "\F635"; }
.fa-torah { --fa: "\F6A0"; }
.fa-torii-gate { --fa: "\F6A1"; }
.fa-tornado { --fa: "\F76F"; }
.fa-tower-broadcast { --fa: "\F519"; }
.fa-tower-cell { --fa: "\E585"; }
.fa-tower-control { --fa: "\E2A2"; }
.fa-tower-observation { --fa: "\E586"; }
.fa-tractor { --fa: "\F722"; }
.fa-trademark { --fa: "\F25C"; }
.fa-traffic-cone { --fa: "\F636"; }
.fa-traffic-light { --fa: "\F637"; }
.fa-traffic-light-go { --fa: "\F638"; }
.fa-traffic-light-slow { --fa: "\F639"; }
.fa-traffic-light-stop { --fa: "\F63A"; }
.fa-trailer { --fa: "\E041"; }
.fa-train { --fa: "\F238"; }
.fa-train-stop { --fa: "\E81F"; }
.fa-train-subway { --fa: "\F239"; }
.fa-train-subway-tunnel { --fa: "\E2A3"; }
.fa-train-track { --fa: "\E453"; }
.fa-train-tram { --fa: "\E5B4"; }
.fa-train-tunnel { --fa: "\E454"; }
.fa-tram { --fa: "\F7DA"; }
.fa-transducer { --fa: "\E826"; }
.fa-transformer-bolt { --fa: "\E2A4"; }
.fa-transgender { --fa: "\F225"; }
.fa-transgender-alt { --fa: "\F225"; }
.fa-transmission { --fa: "\E802"; }
.fa-transporter { --fa: "\E042"; }
.fa-transporter-1 { --fa: "\E043"; }
.fa-transporter-2 { --fa: "\E044"; }
.fa-transporter-3 { --fa: "\E045"; }
.fa-transporter-4 { --fa: "\E2A5"; }
.fa-transporter-5 { --fa: "\E2A6"; }
.fa-transporter-6 { --fa: "\E2A7"; }
.fa-transporter-7 { --fa: "\E2A8"; }
.fa-transporter-empty { --fa: "\E046"; }
.fa-trash { --fa: "\F1F8"; }
.fa-trash-alt { --fa: "\F2ED"; }
.fa-trash-alt-slash { --fa: "\E2AD"; }
.fa-trash-arrow-turn-left { --fa: "\F895"; }
.fa-trash-arrow-up { --fa: "\F829"; }
.fa-trash-can { --fa: "\F2ED"; }
.fa-trash-can-arrow-turn-left { --fa: "\F896"; }
.fa-trash-can-arrow-up { --fa: "\F82A"; }
.fa-trash-can-check { --fa: "\E2A9"; }
.fa-trash-can-clock { --fa: "\E2AA"; }
.fa-trash-can-list { --fa: "\E2AB"; }
.fa-trash-can-plus { --fa: "\E2AC"; }
.fa-trash-can-slash { --fa: "\E2AD"; }
.fa-trash-can-undo { --fa: "\F896"; }
.fa-trash-can-xmark { --fa: "\E2AE"; }
.fa-trash-check { --fa: "\E2AF"; }
.fa-trash-circle { --fa: "\E126"; }
.fa-trash-clock { --fa: "\E2B0"; }
.fa-trash-list { --fa: "\E2B1"; }
.fa-trash-plus { --fa: "\E2B2"; }
.fa-trash-restore { --fa: "\F829"; }
.fa-trash-restore-alt { --fa: "\F82A"; }
.fa-trash-slash { --fa: "\E2B3"; }
.fa-trash-undo { --fa: "\F895"; }
.fa-trash-undo-alt { --fa: "\F896"; }
.fa-trash-xmark { --fa: "\E2B4"; }
.fa-treasure-chest { --fa: "\F723"; }
.fa-tree { --fa: "\F1BB"; }
.fa-tree-alt { --fa: "\F400"; }
.fa-tree-christmas { --fa: "\F7DB"; }
.fa-tree-city { --fa: "\E587"; }
.fa-tree-deciduous { --fa: "\F400"; }
.fa-tree-decorated { --fa: "\F7DC"; }
.fa-tree-large { --fa: "\F7DD"; }
.fa-tree-palm { --fa: "\F82B"; }
.fa-trees { --fa: "\F724"; }
.fa-trian-balbot { --fa: "\E45C"; }
.fa-triangle { --fa: "\F2EC"; }
.fa-triangle-circle-square { --fa: "\F61F"; }
.fa-triangle-exclamation { --fa: "\F071"; }
.fa-triangle-instrument { --fa: "\F8E2"; }
.fa-triangle-music { --fa: "\F8E2"; }
.fa-triangle-person-digging { --fa: "\F85D"; }
.fa-tricycle { --fa: "\E5C3"; }
.fa-tricycle-adult { --fa: "\E5C4"; }
.fa-trillium { --fa: "\E588"; }
.fa-triple-chevrons-down { --fa: "\E7F7"; }
.fa-triple-chevrons-left { --fa: "\E7F8"; }
.fa-triple-chevrons-right { --fa: "\E7F9"; }
.fa-triple-chevrons-up { --fa: "\E7FA"; }
.fa-trombone { --fa: "\E782"; }
.fa-trophy { --fa: "\F091"; }
.fa-trophy-alt { --fa: "\F2EB"; }
.fa-trophy-star { --fa: "\F2EB"; }
.fa-trowel { --fa: "\E589"; }
.fa-trowel-bricks { --fa: "\E58A"; }
.fa-truck { --fa: "\F0D1"; }
.fa-truck-arrow-right { --fa: "\E58B"; }
.fa-truck-bolt { --fa: "\E3D0"; }
.fa-truck-clock { --fa: "\F48C"; }
.fa-truck-container { --fa: "\F4DC"; }
.fa-truck-container-empty { --fa: "\E2B5"; }
.fa-truck-couch { --fa: "\F4DD"; }
.fa-truck-droplet { --fa: "\E58C"; }
.fa-truck-fast { --fa: "\F48B"; }
.fa-truck-field { --fa: "\E58D"; }
.fa-truck-field-un { --fa: "\E58E"; }
.fa-truck-fire { --fa: "\E65A"; }
.fa-truck-flatbed { --fa: "\E2B6"; }
.fa-truck-front { --fa: "\E2B7"; }
.fa-truck-ladder { --fa: "\E657"; }
.fa-truck-loading { --fa: "\F4DE"; }
.fa-truck-medical { --fa: "\F0F9"; }
.fa-truck-monster { --fa: "\F63B"; }
.fa-truck-moving { --fa: "\F4DF"; }
.fa-truck-pickup { --fa: "\F63C"; }
.fa-truck-plane { --fa: "\E58F"; }
.fa-truck-plow { --fa: "\F7DE"; }
.fa-truck-ramp { --fa: "\F4E0"; }
.fa-truck-ramp-box { --fa: "\F4DE"; }
.fa-truck-ramp-couch { --fa: "\F4DD"; }
.fa-truck-suv { --fa: "\E7C6"; }
.fa-truck-tow { --fa: "\E2B8"; }
.fa-truck-utensils { --fa: "\E628"; }
.fa-trumpet { --fa: "\F8E3"; }
.fa-try { --fa: "\E2BB"; }
.fa-tshirt { --fa: "\F553"; }
.fa-tty { --fa: "\F1E4"; }
.fa-tty-answer { --fa: "\E2B9"; }
.fa-tugrik-sign { --fa: "\E2BA"; }
.fa-turkey { --fa: "\F725"; }
.fa-turkish-lira { --fa: "\E2BB"; }
.fa-turkish-lira-sign { --fa: "\E2BB"; }
.fa-turn-down { --fa: "\F3BE"; }
.fa-turn-down-left { --fa: "\E331"; }
.fa-turn-down-right { --fa: "\E455"; }
.fa-turn-left { --fa: "\E636"; }
.fa-turn-left-down { --fa: "\E637"; }
.fa-turn-left-up { --fa: "\E638"; }
.fa-turn-right { --fa: "\E639"; }
.fa-turn-up { --fa: "\F3BF"; }
.fa-turntable { --fa: "\F8E4"; }
.fa-turtle { --fa: "\F726"; }
.fa-tv { --fa: "\F26C"; }
.fa-tv-alt { --fa: "\F26C"; }
.fa-tv-music { --fa: "\F8E6"; }
.fa-tv-retro { --fa: "\F401"; }
.fa-typewriter { --fa: "\F8E7"; }
.fa-u { --fa: "U"; }
.fa-u-turn { --fa: "\E7F1"; }
.fa-u-turn-down-left { --fa: "\E7EF"; }
.fa-u-turn-down-right { --fa: "\E7F0"; }
.fa-u-turn-left-down { --fa: "\E7F1"; }
.fa-u-turn-left-up { --fa: "\E7F2"; }
.fa-u-turn-right-down { --fa: "\E7F3"; }
.fa-u-turn-right-up { --fa: "\E7F4"; }
.fa-u-turn-up-left { --fa: "\E7F5"; }
.fa-u-turn-up-right { --fa: "\E7F6"; }
.fa-ufo { --fa: "\E047"; }
.fa-ufo-beam { --fa: "\E048"; }
.fa-umbrella { --fa: "\F0E9"; }
.fa-umbrella-alt { --fa: "\E2BC"; }
.fa-umbrella-beach { --fa: "\F5CA"; }
.fa-umbrella-simple { --fa: "\E2BC"; }
.fa-underline { --fa: "\F0CD"; }
.fa-undo { --fa: "\F0E2"; }
.fa-undo-alt { --fa: "\F2EA"; }
.fa-unicorn { --fa: "\F727"; }
.fa-unicycle { --fa: "\E7C7"; }
.fa-uniform-martial-arts { --fa: "\E3D1"; }
.fa-union { --fa: "\F6A2"; }
.fa-universal-access { --fa: "\F29A"; }
.fa-university { --fa: "\F19C"; }
.fa-unlink { --fa: "\F127"; }
.fa-unlock { --fa: "\F09C"; }
.fa-unlock-alt { --fa: "\F13E"; }
.fa-unlock-keyhole { --fa: "\F13E"; }
.fa-unsorted { --fa: "\F0DC"; }
.fa-up { --fa: "\F357"; }
.fa-up-down { --fa: "\F338"; }
.fa-up-down-left-right { --fa: "\F0B2"; }
.fa-up-from-bracket { --fa: "\E590"; }
.fa-up-from-dotted-line { --fa: "\E456"; }
.fa-up-from-line { --fa: "\F346"; }
.fa-up-left { --fa: "\E2BD"; }
.fa-up-long { --fa: "\F30C"; }
.fa-up-long-to-line { --fa: "\E6C6"; }
.fa-up-right { --fa: "\E2BE"; }
.fa-up-right-and-down-left-from-center { --fa: "\F424"; }
.fa-up-right-from-square { --fa: "\F35D"; }
.fa-up-to-bracket { --fa: "\E66E"; }
.fa-up-to-dotted-line { --fa: "\E457"; }
.fa-up-to-line { --fa: "\F34D"; }
.fa-upload { --fa: "\F093"; }
.fa-usb-drive { --fa: "\F8E9"; }
.fa-usd { --fa: "$"; }
.fa-usd-circle { --fa: "\F2E8"; }
.fa-usd-square { --fa: "\F2E9"; }
.fa-user { --fa: "\F007"; }
.fa-user-alien { --fa: "\E04A"; }
.fa-user-alt { --fa: "\F007"; }
.fa-user-alt-slash { --fa: "\F506"; }
.fa-user-astronaut { --fa: "\F4FB"; }
.fa-user-beard { --fa: "\E7A8"; }
.fa-user-beard-bolt { --fa: "\E689"; }
.fa-user-bounty-hunter { --fa: "\E2BF"; }
.fa-user-chart { --fa: "\F6A3"; }
.fa-user-check { --fa: "\F4FC"; }
.fa-user-chef { --fa: "\E3D2"; }
.fa-user-chef-hair-long { --fa: "\E7A9"; }
.fa-user-circle { --fa: "\F2BD"; }
.fa-user-circle-minus { --fa: "\E7AA"; }
.fa-user-circle-plus { --fa: "\E7AB"; }
.fa-user-clock { --fa: "\F4FD"; }
.fa-user-cog { --fa: "\F4FE"; }
.fa-user-construction { --fa: "\F82C"; }
.fa-user-cowboy { --fa: "\F8EA"; }
.fa-user-crown { --fa: "\F6A4"; }
.fa-user-dashed { --fa: "\E7AC"; }
.fa-user-doctor { --fa: "\F0F0"; }
.fa-user-doctor-hair { --fa: "\E458"; }
.fa-user-doctor-hair-long { --fa: "\E459"; }
.fa-user-doctor-hair-mullet { --fa: "\E7AD"; }
.fa-user-doctor-message { --fa: "\F82E"; }
.fa-user-edit { --fa: "\F4FF"; }
.fa-user-friends { --fa: "\F500"; }
.fa-user-gear { --fa: "\F4FE"; }
.fa-user-graduate { --fa: "\F501"; }
.fa-user-group { --fa: "\F500"; }
.fa-user-group-crown { --fa: "\F6A5"; }
.fa-user-group-simple { --fa: "\E603"; }
.fa-user-hair { --fa: "\E45A"; }
.fa-user-hair-buns { --fa: "\E3D3"; }
.fa-user-hair-long { --fa: "\E45B"; }
.fa-user-hair-mullet { --fa: "\E45C"; }
.fa-user-hard-hat { --fa: "\F82C"; }
.fa-user-hat-tie { --fa: "\E7AE"; }
.fa-user-hat-tie-magnifying-glass { --fa: "\E7AF"; }
.fa-user-headset { --fa: "\F82D"; }
.fa-user-helmet-safety { --fa: "\F82C"; }
.fa-user-hoodie { --fa: "\E68A"; }
.fa-user-injured { --fa: "\F728"; }
.fa-user-key { --fa: "\E7B0"; }
.fa-user-large { --fa: "\F007"; }
.fa-user-large-slash { --fa: "\F506"; }
.fa-user-lock { --fa: "\F502"; }
.fa-user-magnifying-glass { --fa: "\E5C5"; }
.fa-user-md { --fa: "\F0F0"; }
.fa-user-md-chat { --fa: "\F82E"; }
.fa-user-message { --fa: "\E7B1"; }
.fa-user-microphone { --fa: "\E7B2"; }
.fa-user-minus { --fa: "\F503"; }
.fa-user-music { --fa: "\F8EB"; }
.fa-user-ninja { --fa: "\F504"; }
.fa-user-nurse { --fa: "\F82F"; }
.fa-user-nurse-hair { --fa: "\E45D"; }
.fa-user-nurse-hair-long { --fa: "\E45E"; }
.fa-user-pen { --fa: "\F4FF"; }
.fa-user-pilot { --fa: "\E2C0"; }
.fa-user-pilot-hair-long { --fa: "\E7B3"; }
.fa-user-pilot-tie { --fa: "\E2C1"; }
.fa-user-pilot-tie-hair-long { --fa: "\E7B4"; }
.fa-user-plus { --fa: "\F234"; }
.fa-user-police { --fa: "\E333"; }
.fa-user-police-hair-long { --fa: "\E7B5"; }
.fa-user-police-tie { --fa: "\E334"; }
.fa-user-police-tie-hair-long { --fa: "\E7B6"; }
.fa-user-question { --fa: "\E7B7"; }
.fa-user-robot { --fa: "\E04B"; }
.fa-user-robot-xmarks { --fa: "\E4A7"; }
.fa-user-secret { --fa: "\F21B"; }
.fa-user-shakespeare { --fa: "\E2C2"; }
.fa-user-shield { --fa: "\F505"; }
.fa-user-sith { --fa: "\E7B8"; }
.fa-user-slash { --fa: "\F506"; }
.fa-user-tag { --fa: "\F507"; }
.fa-user-tie { --fa: "\F508"; }
.fa-user-tie-hair { --fa: "\E45F"; }
.fa-user-tie-hair-long { --fa: "\E460"; }
.fa-user-tie-hair-mullet { --fa: "\E7B9"; }
.fa-user-times { --fa: "\F235"; }
.fa-user-unlock { --fa: "\E058"; }
.fa-user-viewfinder { --fa: "\E775"; }
.fa-user-visor { --fa: "\E04C"; }
.fa-user-vneck { --fa: "\E461"; }
.fa-user-vneck-hair { --fa: "\E462"; }
.fa-user-vneck-hair-long { --fa: "\E463"; }
.fa-user-vneck-hair-mullet { --fa: "\E7BA"; }
.fa-user-xmark { --fa: "\F235"; }
.fa-users { --fa: "\F0C0"; }
.fa-users-between-lines { --fa: "\E591"; }
.fa-users-class { --fa: "\F63D"; }
.fa-users-cog { --fa: "\F509"; }
.fa-users-crown { --fa: "\F6A5"; }
.fa-users-gear { --fa: "\F509"; }
.fa-users-line { --fa: "\E592"; }
.fa-users-medical { --fa: "\F830"; }
.fa-users-rays { --fa: "\E593"; }
.fa-users-rectangle { --fa: "\E594"; }
.fa-users-slash { --fa: "\E073"; }
.fa-users-viewfinder { --fa: "\E595"; }
.fa-utensil-fork { --fa: "\F2E3"; }
.fa-utensil-knife { --fa: "\F2E4"; }
.fa-utensil-spoon { --fa: "\F2E5"; }
.fa-utensils { --fa: "\F2E7"; }
.fa-utensils-alt { --fa: "\F2E6"; }
.fa-utensils-slash { --fa: "\E464"; }
.fa-utility-pole { --fa: "\E2C3"; }
.fa-utility-pole-double { --fa: "\E2C4"; }
.fa-v { --fa: "V"; }
.fa-vacuum { --fa: "\E04D"; }
.fa-vacuum-robot { --fa: "\E04E"; }
.fa-value-absolute { --fa: "\F6A6"; }
.fa-van { --fa: "\E7C8"; }
.fa-van-shuttle { --fa: "\F5B6"; }
.fa-vault { --fa: "\E2C5"; }
.fa-vcard { --fa: "\F2BB"; }
.fa-vector-circle { --fa: "\F5ED"; }
.fa-vector-polygon { --fa: "\F5EE"; }
.fa-vector-square { --fa: "\F5EF"; }
.fa-vent-damper { --fa: "\E465"; }
.fa-venus { --fa: "\F221"; }
.fa-venus-double { --fa: "\F226"; }
.fa-venus-mars { --fa: "\F228"; }
.fa-vest { --fa: "\E085"; }
.fa-vest-patches { --fa: "\E086"; }
.fa-vhs { --fa: "\F8EC"; }
.fa-vial { --fa: "\F492"; }
.fa-vial-circle-check { --fa: "\E596"; }
.fa-vial-vertical { --fa: "\E762"; }
.fa-vial-virus { --fa: "\E597"; }
.fa-vials { --fa: "\F493"; }
.fa-video { --fa: "\F03D"; }
.fa-video-arrow-down-left { --fa: "\E2C8"; }
.fa-video-arrow-up-right { --fa: "\E2C9"; }
.fa-video-camera { --fa: "\F03D"; }
.fa-video-circle { --fa: "\E12B"; }
.fa-video-down-to-line { --fa: "\E776"; }
.fa-video-handheld { --fa: "\F8A8"; }
.fa-video-plus { --fa: "\F4E1"; }
.fa-video-question { --fa: "\E777"; }
.fa-video-slash { --fa: "\F4E2"; }
.fa-vihara { --fa: "\F6A7"; }
.fa-violin { --fa: "\F8ED"; }
.fa-virus { --fa: "\E074"; }
.fa-virus-covid { --fa: "\E4A8"; }
.fa-virus-covid-slash { --fa: "\E4A9"; }
.fa-virus-slash { --fa: "\E075"; }
.fa-viruses { --fa: "\E076"; }
.fa-voicemail { --fa: "\F897"; }
.fa-volcano { --fa: "\F770"; }
.fa-volleyball { --fa: "\F45F"; }
.fa-volleyball-ball { --fa: "\F45F"; }
.fa-volume { --fa: "\F6A8"; }
.fa-volume-control-phone { --fa: "\F2A0"; }
.fa-volume-down { --fa: "\F027"; }
.fa-volume-high { --fa: "\F028"; }
.fa-volume-low { --fa: "\F027"; }
.fa-volume-medium { --fa: "\F6A8"; }
.fa-volume-mute { --fa: "\F6A9"; }
.fa-volume-off { --fa: "\F026"; }
.fa-volume-slash { --fa: "\F2E2"; }
.fa-volume-times { --fa: "\F6A9"; }
.fa-volume-up { --fa: "\F028"; }
.fa-volume-xmark { --fa: "\F6A9"; }
.fa-vote-nay { --fa: "\F771"; }
.fa-vote-yea { --fa: "\F772"; }
.fa-vr-cardboard { --fa: "\F729"; }
.fa-w { --fa: "W"; }
.fa-waffle { --fa: "\E466"; }
.fa-wagon-covered { --fa: "\F8EE"; }
.fa-walker { --fa: "\F831"; }
.fa-walkie-talkie { --fa: "\F8EF"; }
.fa-walking { --fa: "\F554"; }
.fa-wall-brick { --fa: "\E3DB"; }
.fa-wallet { --fa: "\F555"; }
.fa-wand { --fa: "\F72A"; }
.fa-wand-magic { --fa: "\F0D0"; }
.fa-wand-magic-sparkles { --fa: "\E2CA"; }
.fa-wand-sparkles { --fa: "\F72B"; }
.fa-warehouse { --fa: "\F494"; }
.fa-warehouse-alt { --fa: "\F495"; }
.fa-warehouse-full { --fa: "\F495"; }
.fa-warning { --fa: "\F071"; }
.fa-washer { --fa: "\F898"; }
.fa-washing-machine { --fa: "\F898"; }
.fa-watch { --fa: "\F2E1"; }
.fa-watch-apple { --fa: "\E2CB"; }
.fa-watch-calculator { --fa: "\F8F0"; }
.fa-watch-fitness { --fa: "\F63E"; }
.fa-watch-smart { --fa: "\E2CC"; }
.fa-water { --fa: "\F773"; }
.fa-water-arrow-down { --fa: "\F774"; }
.fa-water-arrow-up { --fa: "\F775"; }
.fa-water-ladder { --fa: "\F5C5"; }
.fa-water-lower { --fa: "\F774"; }
.fa-water-rise { --fa: "\F775"; }
.fa-water-temp { --fa: "\E82A"; }
.fa-water-temperature { --fa: "\E82A"; }
.fa-watermelon-slice { --fa: "\E337"; }
.fa-wave { --fa: "\E65B"; }
.fa-wave-pulse { --fa: "\F5F8"; }
.fa-wave-sine { --fa: "\F899"; }
.fa-wave-square { --fa: "\F83E"; }
.fa-wave-triangle { --fa: "\F89A"; }
.fa-waveform { --fa: "\F8F1"; }
.fa-waveform-circle { --fa: "\E12D"; }
.fa-waveform-lines { --fa: "\F8F2"; }
.fa-waveform-path { --fa: "\F8F2"; }
.fa-waves-sine { --fa: "\E65D"; }
.fa-web-awesome { --fa: "\E682"; }
.fa-webcam { --fa: "\F832"; }
.fa-webcam-slash { --fa: "\F833"; }
.fa-webhook { --fa: "\E5D5"; }
.fa-weight { --fa: "\F496"; }
.fa-weight-hanging { --fa: "\F5CD"; }
.fa-weight-scale { --fa: "\F496"; }
.fa-whale { --fa: "\F72C"; }
.fa-wheat { --fa: "\F72D"; }
.fa-wheat-alt { --fa: "\E2CD"; }
.fa-wheat-awn { --fa: "\E2CD"; }
.fa-wheat-awn-circle-exclamation { --fa: "\E598"; }
.fa-wheat-awn-slash { --fa: "\E338"; }
.fa-wheat-slash { --fa: "\E339"; }
.fa-wheelchair { --fa: "\F193"; }
.fa-wheelchair-alt { --fa: "\E2CE"; }
.fa-wheelchair-move { --fa: "\E2CE"; }
.fa-whiskey-glass { --fa: "\F7A0"; }
.fa-whiskey-glass-ice { --fa: "\F7A1"; }
.fa-whistle { --fa: "\F460"; }
.fa-wifi { --fa: "\F1EB"; }
.fa-wifi-1 { --fa: "\F6AA"; }
.fa-wifi-2 { --fa: "\F6AB"; }
.fa-wifi-3 { --fa: "\F1EB"; }
.fa-wifi-exclamation { --fa: "\E2CF"; }
.fa-wifi-fair { --fa: "\F6AB"; }
.fa-wifi-slash { --fa: "\F6AC"; }
.fa-wifi-strong { --fa: "\F1EB"; }
.fa-wifi-weak { --fa: "\F6AA"; }
.fa-wind { --fa: "\F72E"; }
.fa-wind-circle-exclamation { --fa: "\F776"; }
.fa-wind-turbine { --fa: "\F89B"; }
.fa-wind-warning { --fa: "\F776"; }
.fa-window { --fa: "\F40E"; }
.fa-window-alt { --fa: "\F40F"; }
.fa-window-close { --fa: "\F410"; }
.fa-window-flip { --fa: "\F40F"; }
.fa-window-frame { --fa: "\E04F"; }
.fa-window-frame-open { --fa: "\E050"; }
.fa-window-maximize { --fa: "\F2D0"; }
.fa-window-minimize { --fa: "\F2D1"; }
.fa-window-restore { --fa: "\F2D2"; }
.fa-windsock { --fa: "\F777"; }
.fa-wine-bottle { --fa: "\F72F"; }
.fa-wine-glass { --fa: "\F4E3"; }
.fa-wine-glass-alt { --fa: "\F5CE"; }
.fa-wine-glass-crack { --fa: "\F4BB"; }
.fa-wine-glass-empty { --fa: "\F5CE"; }
.fa-wireless { --fa: "\E7DF"; }
.fa-won { --fa: "\F159"; }
.fa-won-sign { --fa: "\F159"; }
.fa-worm { --fa: "\E599"; }
.fa-wreath { --fa: "\F7E2"; }
.fa-wreath-laurel { --fa: "\E5D2"; }
.fa-wrench { --fa: "\F0AD"; }
.fa-wrench-simple { --fa: "\E2D1"; }
.fa-x { --fa: "X"; }
.fa-x-ray { --fa: "\F497"; }
.fa-xmark { --fa: "\F00D"; }
.fa-xmark-circle { --fa: "\F057"; }
.fa-xmark-hexagon { --fa: "\F2EE"; }
.fa-xmark-large { --fa: "\E59B"; }
.fa-xmark-octagon { --fa: "\F2F0"; }
.fa-xmark-square { --fa: "\F2D3"; }
.fa-xmark-to-slot { --fa: "\F771"; }
.fa-xmarks-lines { --fa: "\E59A"; }
.fa-y { --fa: "Y"; }
.fa-yen { --fa: "\F157"; }
.fa-yen-sign { --fa: "\F157"; }
.fa-yin-yang { --fa: "\F6AD"; }
.fa-z { --fa: "Z"; }
.fa-zap { --fa: "\F0E7"; }
.fa-zzz { --fa: "\F880"; }

/*!
 * Font Awesome Pro 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2025 Fonticons, Inc.
 */
:root, :host {
  --fa-family-brands: "Font Awesome 7 Brands";
  --fa-font-brands: normal 400 1em/1 var(--fa-family-brands);
}

@font-face {
  font-family: "Font Awesome 7 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/7f3cf17b85d9d8f4099c49b20106f5cf.woff2);
}
.fab,
.fa-brands,
.fa-classic.fa-brands {
  --fa-family: var(--fa-family-brands);
  --fa-style: 400;
}

.fa-firefox-browser {
  --fa: "\E007";
}

.fa-ideal {
  --fa: "\E013";
}

.fa-microblog {
  --fa: "\E01A";
}

.fa-square-pied-piper {
  --fa: "\E01E";
}

.fa-pied-piper-square {
  --fa: "\E01E";
}

.fa-unity {
  --fa: "\E049";
}

.fa-dailymotion {
  --fa: "\E052";
}

.fa-square-instagram {
  --fa: "\E055";
}

.fa-instagram-square {
  --fa: "\E055";
}

.fa-mixer {
  --fa: "\E056";
}

.fa-shopify {
  --fa: "\E057";
}

.fa-deezer {
  --fa: "\E077";
}

.fa-edge-legacy {
  --fa: "\E078";
}

.fa-google-pay {
  --fa: "\E079";
}

.fa-rust {
  --fa: "\E07A";
}

.fa-tiktok {
  --fa: "\E07B";
}

.fa-unsplash {
  --fa: "\E07C";
}

.fa-cloudflare {
  --fa: "\E07D";
}

.fa-guilded {
  --fa: "\E07E";
}

.fa-hive {
  --fa: "\E07F";
}

.fa-42-group {
  --fa: "\E080";
}

.fa-innosoft {
  --fa: "\E080";
}

.fa-instalod {
  --fa: "\E081";
}

.fa-octopus-deploy {
  --fa: "\E082";
}

.fa-perbyte {
  --fa: "\E083";
}

.fa-uncharted {
  --fa: "\E084";
}

.fa-watchman-monitoring {
  --fa: "\E087";
}

.fa-wodu {
  --fa: "\E088";
}

.fa-wirsindhandwerk {
  --fa: "\E2D0";
}

.fa-wsh {
  --fa: "\E2D0";
}

.fa-bots {
  --fa: "\E340";
}

.fa-cmplid {
  --fa: "\E360";
}

.fa-bilibili {
  --fa: "\E3D9";
}

.fa-golang {
  --fa: "\E40F";
}

.fa-pix {
  --fa: "\E43A";
}

.fa-sitrox {
  --fa: "\E44A";
}

.fa-hashnode {
  --fa: "\E499";
}

.fa-meta {
  --fa: "\E49B";
}

.fa-padlet {
  --fa: "\E4A0";
}

.fa-nfc-directional {
  --fa: "\E530";
}

.fa-nfc-symbol {
  --fa: "\E531";
}

.fa-screenpal {
  --fa: "\E570";
}

.fa-space-awesome {
  --fa: "\E5AC";
}

.fa-square-font-awesome {
  --fa: "\E5AD";
}

.fa-square-gitlab {
  --fa: "\E5AE";
}

.fa-gitlab-square {
  --fa: "\E5AE";
}

.fa-odysee {
  --fa: "\E5C6";
}

.fa-stubber {
  --fa: "\E5C7";
}

.fa-debian {
  --fa: "\E60B";
}

.fa-shoelace {
  --fa: "\E60C";
}

.fa-threads {
  --fa: "\E618";
}

.fa-square-threads {
  --fa: "\E619";
}

.fa-square-x-twitter {
  --fa: "\E61A";
}

.fa-x-twitter {
  --fa: "\E61B";
}

.fa-opensuse {
  --fa: "\E62B";
}

.fa-letterboxd {
  --fa: "\E62D";
}

.fa-square-letterboxd {
  --fa: "\E62E";
}

.fa-mintbit {
  --fa: "\E62F";
}

.fa-google-scholar {
  --fa: "\E63B";
}

.fa-brave {
  --fa: "\E63C";
}

.fa-brave-reverse {
  --fa: "\E63D";
}

.fa-pixiv {
  --fa: "\E640";
}

.fa-upwork {
  --fa: "\E641";
}

.fa-webflow {
  --fa: "\E65C";
}

.fa-signal-messenger {
  --fa: "\E663";
}

.fa-bluesky {
  --fa: "\E671";
}

.fa-jxl {
  --fa: "\E67B";
}

.fa-square-upwork {
  --fa: "\E67C";
}

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

.fa-square-web-awesome {
  --fa: "\E683";
}

.fa-square-web-awesome-stroke {
  --fa: "\E684";
}

.fa-dart-lang {
  --fa: "\E693";
}

.fa-flutter {
  --fa: "\E694";
}

.fa-files-pinwheel {
  --fa: "\E69F";
}

.fa-css {
  --fa: "\E6A2";
}

.fa-square-bluesky {
  --fa: "\E6A3";
}

.fa-openai {
  --fa: "\E7CF";
}

.fa-square-linkedin {
  --fa: "\E7D0";
}

.fa-cash-app {
  --fa: "\E7D4";
}

.fa-disqus {
  --fa: "\E7D5";
}

.fa-eleventy {
  --fa: "\E7D6";
}

.fa-11ty {
  --fa: "\E7D6";
}

.fa-kakao-talk {
  --fa: "\E7D7";
}

.fa-linktree {
  --fa: "\E7D8";
}

.fa-notion {
  --fa: "\E7D9";
}

.fa-pandora {
  --fa: "\E7DA";
}

.fa-pixelfed {
  --fa: "\E7DB";
}

.fa-tidal {
  --fa: "\E7DC";
}

.fa-vsco {
  --fa: "\E7DD";
}

.fa-w3c {
  --fa: "\E7DE";
}

.fa-lumon {
  --fa: "\E7E2";
}

.fa-lumon-drop {
  --fa: "\E7E3";
}

.fa-square-figma {
  --fa: "\E7E4";
}

.fa-tex {
  --fa: "\E7FF";
}

.fa-duolingo {
  --fa: "\E812";
}

.fa-supportnow {
  --fa: "\E833";
}

.fa-tor-browser {
  --fa: "\E838";
}

.fa-square-twitter {
  --fa: "\F081";
}

.fa-twitter-square {
  --fa: "\F081";
}

.fa-square-facebook {
  --fa: "\F082";
}

.fa-facebook-square {
  --fa: "\F082";
}

.fa-linkedin {
  --fa: "\F08C";
}

.fa-square-github {
  --fa: "\F092";
}

.fa-github-square {
  --fa: "\F092";
}

.fa-twitter {
  --fa: "\F099";
}

.fa-facebook {
  --fa: "\F09A";
}

.fa-github {
  --fa: "\F09B";
}

.fa-pinterest {
  --fa: "\F0D2";
}

.fa-square-pinterest {
  --fa: "\F0D3";
}

.fa-pinterest-square {
  --fa: "\F0D3";
}

.fa-square-google-plus {
  --fa: "\F0D4";
}

.fa-google-plus-square {
  --fa: "\F0D4";
}

.fa-google-plus-g {
  --fa: "\F0D5";
}

.fa-linkedin-in {
  --fa: "\F0E1";
}

.fa-github-alt {
  --fa: "\F113";
}

.fa-maxcdn {
  --fa: "\F136";
}

.fa-html5 {
  --fa: "\F13B";
}

.fa-css3 {
  --fa: "\F13C";
}

.fa-btc {
  --fa: "\F15A";
}

.fa-youtube {
  --fa: "\F167";
}

.fa-xing {
  --fa: "\F168";
}

.fa-square-xing {
  --fa: "\F169";
}

.fa-xing-square {
  --fa: "\F169";
}

.fa-dropbox {
  --fa: "\F16B";
}

.fa-stack-overflow {
  --fa: "\F16C";
}

.fa-instagram {
  --fa: "\F16D";
}

.fa-flickr {
  --fa: "\F16E";
}

.fa-adn {
  --fa: "\F170";
}

.fa-bitbucket {
  --fa: "\F171";
}

.fa-tumblr {
  --fa: "\F173";
}

.fa-square-tumblr {
  --fa: "\F174";
}

.fa-tumblr-square {
  --fa: "\F174";
}

.fa-apple {
  --fa: "\F179";
}

.fa-windows {
  --fa: "\F17A";
}

.fa-android {
  --fa: "\F17B";
}

.fa-linux {
  --fa: "\F17C";
}

.fa-dribbble {
  --fa: "\F17D";
}

.fa-skype {
  --fa: "\F17E";
}

.fa-foursquare {
  --fa: "\F180";
}

.fa-trello {
  --fa: "\F181";
}

.fa-gratipay {
  --fa: "\F184";
}

.fa-vk {
  --fa: "\F189";
}

.fa-weibo {
  --fa: "\F18A";
}

.fa-renren {
  --fa: "\F18B";
}

.fa-pagelines {
  --fa: "\F18C";
}

.fa-stack-exchange {
  --fa: "\F18D";
}

.fa-square-vimeo {
  --fa: "\F194";
}

.fa-vimeo-square {
  --fa: "\F194";
}

.fa-slack {
  --fa: "\F198";
}

.fa-slack-hash {
  --fa: "\F198";
}

.fa-wordpress {
  --fa: "\F19A";
}

.fa-openid {
  --fa: "\F19B";
}

.fa-yahoo {
  --fa: "\F19E";
}

.fa-google {
  --fa: "\F1A0";
}

.fa-reddit {
  --fa: "\F1A1";
}

.fa-square-reddit {
  --fa: "\F1A2";
}

.fa-reddit-square {
  --fa: "\F1A2";
}

.fa-stumbleupon-circle {
  --fa: "\F1A3";
}

.fa-stumbleupon {
  --fa: "\F1A4";
}

.fa-delicious {
  --fa: "\F1A5";
}

.fa-digg {
  --fa: "\F1A6";
}

.fa-pied-piper-pp {
  --fa: "\F1A7";
}

.fa-pied-piper-alt {
  --fa: "\F1A8";
}

.fa-drupal {
  --fa: "\F1A9";
}

.fa-joomla {
  --fa: "\F1AA";
}

.fa-behance {
  --fa: "\F1B4";
}

.fa-square-behance {
  --fa: "\F1B5";
}

.fa-behance-square {
  --fa: "\F1B5";
}

.fa-steam {
  --fa: "\F1B6";
}

.fa-square-steam {
  --fa: "\F1B7";
}

.fa-steam-square {
  --fa: "\F1B7";
}

.fa-spotify {
  --fa: "\F1BC";
}

.fa-deviantart {
  --fa: "\F1BD";
}

.fa-soundcloud {
  --fa: "\F1BE";
}

.fa-vine {
  --fa: "\F1CA";
}

.fa-codepen {
  --fa: "\F1CB";
}

.fa-jsfiddle {
  --fa: "\F1CC";
}

.fa-rebel {
  --fa: "\F1D0";
}

.fa-empire {
  --fa: "\F1D1";
}

.fa-square-git {
  --fa: "\F1D2";
}

.fa-git-square {
  --fa: "\F1D2";
}

.fa-git {
  --fa: "\F1D3";
}

.fa-hacker-news {
  --fa: "\F1D4";
}

.fa-tencent-weibo {
  --fa: "\F1D5";
}

.fa-qq {
  --fa: "\F1D6";
}

.fa-weixin {
  --fa: "\F1D7";
}

.fa-slideshare {
  --fa: "\F1E7";
}

.fa-twitch {
  --fa: "\F1E8";
}

.fa-yelp {
  --fa: "\F1E9";
}

.fa-paypal {
  --fa: "\F1ED";
}

.fa-google-wallet {
  --fa: "\F1EE";
}

.fa-cc-visa {
  --fa: "\F1F0";
}

.fa-cc-mastercard {
  --fa: "\F1F1";
}

.fa-cc-discover {
  --fa: "\F1F2";
}

.fa-cc-amex {
  --fa: "\F1F3";
}

.fa-cc-paypal {
  --fa: "\F1F4";
}

.fa-cc-stripe {
  --fa: "\F1F5";
}

.fa-lastfm {
  --fa: "\F202";
}

.fa-square-lastfm {
  --fa: "\F203";
}

.fa-lastfm-square {
  --fa: "\F203";
}

.fa-ioxhost {
  --fa: "\F208";
}

.fa-angellist {
  --fa: "\F209";
}

.fa-buysellads {
  --fa: "\F20D";
}

.fa-connectdevelop {
  --fa: "\F20E";
}

.fa-dashcube {
  --fa: "\F210";
}

.fa-forumbee {
  --fa: "\F211";
}

.fa-leanpub {
  --fa: "\F212";
}

.fa-sellsy {
  --fa: "\F213";
}

.fa-shirtsinbulk {
  --fa: "\F214";
}

.fa-simplybuilt {
  --fa: "\F215";
}

.fa-skyatlas {
  --fa: "\F216";
}

.fa-pinterest-p {
  --fa: "\F231";
}

.fa-whatsapp {
  --fa: "\F232";
}

.fa-viacoin {
  --fa: "\F237";
}

.fa-medium {
  --fa: "\F23A";
}

.fa-medium-m {
  --fa: "\F23A";
}

.fa-y-combinator {
  --fa: "\F23B";
}

.fa-optin-monster {
  --fa: "\F23C";
}

.fa-opencart {
  --fa: "\F23D";
}

.fa-expeditedssl {
  --fa: "\F23E";
}

.fa-cc-jcb {
  --fa: "\F24B";
}

.fa-cc-diners-club {
  --fa: "\F24C";
}

.fa-creative-commons {
  --fa: "\F25E";
}

.fa-gg {
  --fa: "\F260";
}

.fa-gg-circle {
  --fa: "\F261";
}

.fa-odnoklassniki {
  --fa: "\F263";
}

.fa-square-odnoklassniki {
  --fa: "\F264";
}

.fa-odnoklassniki-square {
  --fa: "\F264";
}

.fa-get-pocket {
  --fa: "\F265";
}

.fa-wikipedia-w {
  --fa: "\F266";
}

.fa-safari {
  --fa: "\F267";
}

.fa-chrome {
  --fa: "\F268";
}

.fa-firefox {
  --fa: "\F269";
}

.fa-opera {
  --fa: "\F26A";
}

.fa-internet-explorer {
  --fa: "\F26B";
}

.fa-contao {
  --fa: "\F26D";
}

.fa-500px {
  --fa: "\F26E";
}

.fa-amazon {
  --fa: "\F270";
}

.fa-houzz {
  --fa: "\F27C";
}

.fa-vimeo-v {
  --fa: "\F27D";
}

.fa-black-tie {
  --fa: "\F27E";
}

.fa-fonticons {
  --fa: "\F280";
}

.fa-reddit-alien {
  --fa: "\F281";
}

.fa-edge {
  --fa: "\F282";
}

.fa-codiepie {
  --fa: "\F284";
}

.fa-modx {
  --fa: "\F285";
}

.fa-fort-awesome {
  --fa: "\F286";
}

.fa-usb {
  --fa: "\F287";
}

.fa-product-hunt {
  --fa: "\F288";
}

.fa-mixcloud {
  --fa: "\F289";
}

.fa-scribd {
  --fa: "\F28A";
}

.fa-bluetooth {
  --fa: "\F293";
}

.fa-bluetooth-b {
  --fa: "\F294";
}

.fa-gitlab {
  --fa: "\F296";
}

.fa-wpbeginner {
  --fa: "\F297";
}

.fa-wpforms {
  --fa: "\F298";
}

.fa-envira {
  --fa: "\F299";
}

.fa-glide {
  --fa: "\F2A5";
}

.fa-glide-g {
  --fa: "\F2A6";
}

.fa-viadeo {
  --fa: "\F2A9";
}

.fa-square-viadeo {
  --fa: "\F2AA";
}

.fa-viadeo-square {
  --fa: "\F2AA";
}

.fa-snapchat {
  --fa: "\F2AB";
}

.fa-snapchat-ghost {
  --fa: "\F2AB";
}

.fa-square-snapchat {
  --fa: "\F2AD";
}

.fa-snapchat-square {
  --fa: "\F2AD";
}

.fa-pied-piper {
  --fa: "\F2AE";
}

.fa-first-order {
  --fa: "\F2B0";
}

.fa-yoast {
  --fa: "\F2B1";
}

.fa-themeisle {
  --fa: "\F2B2";
}

.fa-google-plus {
  --fa: "\F2B3";
}

.fa-font-awesome {
  --fa: "\F2B4";
}

.fa-font-awesome-flag {
  --fa: "\F2B4";
}

.fa-font-awesome-logo-full {
  --fa: "\F2B4";
}

.fa-linode {
  --fa: "\F2B8";
}

.fa-quora {
  --fa: "\F2C4";
}

.fa-free-code-camp {
  --fa: "\F2C5";
}

.fa-telegram {
  --fa: "\F2C6";
}

.fa-telegram-plane {
  --fa: "\F2C6";
}

.fa-bandcamp {
  --fa: "\F2D5";
}

.fa-grav {
  --fa: "\F2D6";
}

.fa-etsy {
  --fa: "\F2D7";
}

.fa-imdb {
  --fa: "\F2D8";
}

.fa-ravelry {
  --fa: "\F2D9";
}

.fa-sellcast {
  --fa: "\F2DA";
}

.fa-superpowers {
  --fa: "\F2DD";
}

.fa-wpexplorer {
  --fa: "\F2DE";
}

.fa-meetup {
  --fa: "\F2E0";
}

.fa-square-font-awesome-stroke {
  --fa: "\F35C";
}

.fa-font-awesome-alt {
  --fa: "\F35C";
}

.fa-accessible-icon {
  --fa: "\F368";
}

.fa-accusoft {
  --fa: "\F369";
}

.fa-adversal {
  --fa: "\F36A";
}

.fa-affiliatetheme {
  --fa: "\F36B";
}

.fa-algolia {
  --fa: "\F36C";
}

.fa-amilia {
  --fa: "\F36D";
}

.fa-angrycreative {
  --fa: "\F36E";
}

.fa-app-store {
  --fa: "\F36F";
}

.fa-app-store-ios {
  --fa: "\F370";
}

.fa-apper {
  --fa: "\F371";
}

.fa-asymmetrik {
  --fa: "\F372";
}

.fa-audible {
  --fa: "\F373";
}

.fa-avianex {
  --fa: "\F374";
}

.fa-aws {
  --fa: "\F375";
}

.fa-bimobject {
  --fa: "\F378";
}

.fa-bitcoin {
  --fa: "\F379";
}

.fa-bity {
  --fa: "\F37A";
}

.fa-blackberry {
  --fa: "\F37B";
}

.fa-blogger {
  --fa: "\F37C";
}

.fa-blogger-b {
  --fa: "\F37D";
}

.fa-buromobelexperte {
  --fa: "\F37F";
}

.fa-centercode {
  --fa: "\F380";
}

.fa-cloudscale {
  --fa: "\F383";
}

.fa-cloudsmith {
  --fa: "\F384";
}

.fa-cloudversify {
  --fa: "\F385";
}

.fa-cpanel {
  --fa: "\F388";
}

.fa-css3-alt {
  --fa: "\F38B";
}

.fa-cuttlefish {
  --fa: "\F38C";
}

.fa-d-and-d {
  --fa: "\F38D";
}

.fa-deploydog {
  --fa: "\F38E";
}

.fa-deskpro {
  --fa: "\F38F";
}

.fa-digital-ocean {
  --fa: "\F391";
}

.fa-discord {
  --fa: "\F392";
}

.fa-discourse {
  --fa: "\F393";
}

.fa-dochub {
  --fa: "\F394";
}

.fa-docker {
  --fa: "\F395";
}

.fa-draft2digital {
  --fa: "\F396";
}

.fa-square-dribbble {
  --fa: "\F397";
}

.fa-dribbble-square {
  --fa: "\F397";
}

.fa-dyalog {
  --fa: "\F399";
}

.fa-earlybirds {
  --fa: "\F39A";
}

.fa-erlang {
  --fa: "\F39D";
}

.fa-facebook-f {
  --fa: "\F39E";
}

.fa-facebook-messenger {
  --fa: "\F39F";
}

.fa-firstdraft {
  --fa: "\F3A1";
}

.fa-fonticons-fi {
  --fa: "\F3A2";
}

.fa-fort-awesome-alt {
  --fa: "\F3A3";
}

.fa-freebsd {
  --fa: "\F3A4";
}

.fa-gitkraken {
  --fa: "\F3A6";
}

.fa-gofore {
  --fa: "\F3A7";
}

.fa-goodreads {
  --fa: "\F3A8";
}

.fa-goodreads-g {
  --fa: "\F3A9";
}

.fa-google-drive {
  --fa: "\F3AA";
}

.fa-google-play {
  --fa: "\F3AB";
}

.fa-gripfire {
  --fa: "\F3AC";
}

.fa-grunt {
  --fa: "\F3AD";
}

.fa-gulp {
  --fa: "\F3AE";
}

.fa-square-hacker-news {
  --fa: "\F3AF";
}

.fa-hacker-news-square {
  --fa: "\F3AF";
}

.fa-hire-a-helper {
  --fa: "\F3B0";
}

.fa-hotjar {
  --fa: "\F3B1";
}

.fa-hubspot {
  --fa: "\F3B2";
}

.fa-itunes {
  --fa: "\F3B4";
}

.fa-itunes-note {
  --fa: "\F3B5";
}

.fa-jenkins {
  --fa: "\F3B6";
}

.fa-joget {
  --fa: "\F3B7";
}

.fa-js {
  --fa: "\F3B8";
}

.fa-square-js {
  --fa: "\F3B9";
}

.fa-js-square {
  --fa: "\F3B9";
}

.fa-keycdn {
  --fa: "\F3BA";
}

.fa-kickstarter {
  --fa: "\F3BB";
}

.fa-square-kickstarter {
  --fa: "\F3BB";
}

.fa-kickstarter-k {
  --fa: "\F3BC";
}

.fa-laravel {
  --fa: "\F3BD";
}

.fa-line {
  --fa: "\F3C0";
}

.fa-lyft {
  --fa: "\F3C3";
}

.fa-magento {
  --fa: "\F3C4";
}

.fa-medapps {
  --fa: "\F3C6";
}

.fa-medrt {
  --fa: "\F3C8";
}

.fa-microsoft {
  --fa: "\F3CA";
}

.fa-mix {
  --fa: "\F3CB";
}

.fa-mizuni {
  --fa: "\F3CC";
}

.fa-monero {
  --fa: "\F3D0";
}

.fa-napster {
  --fa: "\F3D2";
}

.fa-node-js {
  --fa: "\F3D3";
}

.fa-npm {
  --fa: "\F3D4";
}

.fa-ns8 {
  --fa: "\F3D5";
}

.fa-nutritionix {
  --fa: "\F3D6";
}

.fa-page4 {
  --fa: "\F3D7";
}

.fa-palfed {
  --fa: "\F3D8";
}

.fa-patreon {
  --fa: "\F3D9";
}

.fa-periscope {
  --fa: "\F3DA";
}

.fa-phabricator {
  --fa: "\F3DB";
}

.fa-phoenix-framework {
  --fa: "\F3DC";
}

.fa-playstation {
  --fa: "\F3DF";
}

.fa-pushed {
  --fa: "\F3E1";
}

.fa-python {
  --fa: "\F3E2";
}

.fa-red-river {
  --fa: "\F3E3";
}

.fa-wpressr {
  --fa: "\F3E4";
}

.fa-rendact {
  --fa: "\F3E4";
}

.fa-replyd {
  --fa: "\F3E6";
}

.fa-resolving {
  --fa: "\F3E7";
}

.fa-rocketchat {
  --fa: "\F3E8";
}

.fa-rockrms {
  --fa: "\F3E9";
}

.fa-schlix {
  --fa: "\F3EA";
}

.fa-searchengin {
  --fa: "\F3EB";
}

.fa-servicestack {
  --fa: "\F3EC";
}

.fa-sistrix {
  --fa: "\F3EE";
}

.fa-speakap {
  --fa: "\F3F3";
}

.fa-staylinked {
  --fa: "\F3F5";
}

.fa-steam-symbol {
  --fa: "\F3F6";
}

.fa-sticker-mule {
  --fa: "\F3F7";
}

.fa-studiovinari {
  --fa: "\F3F8";
}

.fa-supple {
  --fa: "\F3F9";
}

.fa-uber {
  --fa: "\F402";
}

.fa-uikit {
  --fa: "\F403";
}

.fa-uniregistry {
  --fa: "\F404";
}

.fa-untappd {
  --fa: "\F405";
}

.fa-ussunnah {
  --fa: "\F407";
}

.fa-vaadin {
  --fa: "\F408";
}

.fa-viber {
  --fa: "\F409";
}

.fa-vimeo {
  --fa: "\F40A";
}

.fa-vnv {
  --fa: "\F40B";
}

.fa-square-whatsapp {
  --fa: "\F40C";
}

.fa-whatsapp-square {
  --fa: "\F40C";
}

.fa-whmcs {
  --fa: "\F40D";
}

.fa-wordpress-simple {
  --fa: "\F411";
}

.fa-xbox {
  --fa: "\F412";
}

.fa-yandex {
  --fa: "\F413";
}

.fa-yandex-international {
  --fa: "\F414";
}

.fa-apple-pay {
  --fa: "\F415";
}

.fa-cc-apple-pay {
  --fa: "\F416";
}

.fa-fly {
  --fa: "\F417";
}

.fa-node {
  --fa: "\F419";
}

.fa-osi {
  --fa: "\F41A";
}

.fa-react {
  --fa: "\F41B";
}

.fa-autoprefixer {
  --fa: "\F41C";
}

.fa-less {
  --fa: "\F41D";
}

.fa-sass {
  --fa: "\F41E";
}

.fa-vuejs {
  --fa: "\F41F";
}

.fa-angular {
  --fa: "\F420";
}

.fa-aviato {
  --fa: "\F421";
}

.fa-ember {
  --fa: "\F423";
}

.fa-gitter {
  --fa: "\F426";
}

.fa-hooli {
  --fa: "\F427";
}

.fa-strava {
  --fa: "\F428";
}

.fa-stripe {
  --fa: "\F429";
}

.fa-stripe-s {
  --fa: "\F42A";
}

.fa-typo3 {
  --fa: "\F42B";
}

.fa-amazon-pay {
  --fa: "\F42C";
}

.fa-cc-amazon-pay {
  --fa: "\F42D";
}

.fa-ethereum {
  --fa: "\F42E";
}

.fa-korvue {
  --fa: "\F42F";
}

.fa-elementor {
  --fa: "\F430";
}

.fa-square-youtube {
  --fa: "\F431";
}

.fa-youtube-square {
  --fa: "\F431";
}

.fa-flipboard {
  --fa: "\F44D";
}

.fa-hips {
  --fa: "\F452";
}

.fa-php {
  --fa: "\F457";
}

.fa-quinscape {
  --fa: "\F459";
}

.fa-readme {
  --fa: "\F4D5";
}

.fa-java {
  --fa: "\F4E4";
}

.fa-pied-piper-hat {
  --fa: "\F4E5";
}

.fa-creative-commons-by {
  --fa: "\F4E7";
}

.fa-creative-commons-nc {
  --fa: "\F4E8";
}

.fa-creative-commons-nc-eu {
  --fa: "\F4E9";
}

.fa-creative-commons-nc-jp {
  --fa: "\F4EA";
}

.fa-creative-commons-nd {
  --fa: "\F4EB";
}

.fa-creative-commons-pd {
  --fa: "\F4EC";
}

.fa-creative-commons-pd-alt {
  --fa: "\F4ED";
}

.fa-creative-commons-remix {
  --fa: "\F4EE";
}

.fa-creative-commons-sa {
  --fa: "\F4EF";
}

.fa-creative-commons-sampling {
  --fa: "\F4F0";
}

.fa-creative-commons-sampling-plus {
  --fa: "\F4F1";
}

.fa-creative-commons-share {
  --fa: "\F4F2";
}

.fa-creative-commons-zero {
  --fa: "\F4F3";
}

.fa-ebay {
  --fa: "\F4F4";
}

.fa-keybase {
  --fa: "\F4F5";
}

.fa-mastodon {
  --fa: "\F4F6";
}

.fa-r-project {
  --fa: "\F4F7";
}

.fa-researchgate {
  --fa: "\F4F8";
}

.fa-teamspeak {
  --fa: "\F4F9";
}

.fa-first-order-alt {
  --fa: "\F50A";
}

.fa-fulcrum {
  --fa: "\F50B";
}

.fa-galactic-republic {
  --fa: "\F50C";
}

.fa-galactic-senate {
  --fa: "\F50D";
}

.fa-jedi-order {
  --fa: "\F50E";
}

.fa-mandalorian {
  --fa: "\F50F";
}

.fa-old-republic {
  --fa: "\F510";
}

.fa-phoenix-squadron {
  --fa: "\F511";
}

.fa-sith {
  --fa: "\F512";
}

.fa-trade-federation {
  --fa: "\F513";
}

.fa-wolf-pack-battalion {
  --fa: "\F514";
}

.fa-hornbill {
  --fa: "\F592";
}

.fa-mailchimp {
  --fa: "\F59E";
}

.fa-megaport {
  --fa: "\F5A3";
}

.fa-nimblr {
  --fa: "\F5A8";
}

.fa-rev {
  --fa: "\F5B2";
}

.fa-shopware {
  --fa: "\F5B5";
}

.fa-squarespace {
  --fa: "\F5BE";
}

.fa-themeco {
  --fa: "\F5C6";
}

.fa-weebly {
  --fa: "\F5CC";
}

.fa-wix {
  --fa: "\F5CF";
}

.fa-ello {
  --fa: "\F5F1";
}

.fa-hackerrank {
  --fa: "\F5F7";
}

.fa-kaggle {
  --fa: "\F5FA";
}

.fa-markdown {
  --fa: "\F60F";
}

.fa-neos {
  --fa: "\F612";
}

.fa-zhihu {
  --fa: "\F63F";
}

.fa-alipay {
  --fa: "\F642";
}

.fa-the-red-yeti {
  --fa: "\F69D";
}

.fa-critical-role {
  --fa: "\F6C9";
}

.fa-d-and-d-beyond {
  --fa: "\F6CA";
}

.fa-dev {
  --fa: "\F6CC";
}

.fa-fantasy-flight-games {
  --fa: "\F6DC";
}

.fa-wizards-of-the-coast {
  --fa: "\F730";
}

.fa-think-peaks {
  --fa: "\F731";
}

.fa-reacteurope {
  --fa: "\F75D";
}

.fa-artstation {
  --fa: "\F77A";
}

.fa-atlassian {
  --fa: "\F77B";
}

.fa-canadian-maple-leaf {
  --fa: "\F785";
}

.fa-centos {
  --fa: "\F789";
}

.fa-confluence {
  --fa: "\F78D";
}

.fa-dhl {
  --fa: "\F790";
}

.fa-diaspora {
  --fa: "\F791";
}

.fa-fedex {
  --fa: "\F797";
}

.fa-fedora {
  --fa: "\F798";
}

.fa-figma {
  --fa: "\F799";
}

.fa-intercom {
  --fa: "\F7AF";
}

.fa-invision {
  --fa: "\F7B0";
}

.fa-jira {
  --fa: "\F7B1";
}

.fa-mendeley {
  --fa: "\F7B3";
}

.fa-raspberry-pi {
  --fa: "\F7BB";
}

.fa-redhat {
  --fa: "\F7BC";
}

.fa-sketch {
  --fa: "\F7C6";
}

.fa-sourcetree {
  --fa: "\F7D3";
}

.fa-suse {
  --fa: "\F7D6";
}

.fa-ubuntu {
  --fa: "\F7DF";
}

.fa-ups {
  --fa: "\F7E0";
}

.fa-usps {
  --fa: "\F7E1";
}

.fa-yarn {
  --fa: "\F7E3";
}

.fa-airbnb {
  --fa: "\F834";
}

.fa-battle-net {
  --fa: "\F835";
}

.fa-bootstrap {
  --fa: "\F836";
}

.fa-buffer {
  --fa: "\F837";
}

.fa-chromecast {
  --fa: "\F838";
}

.fa-evernote {
  --fa: "\F839";
}

.fa-itch-io {
  --fa: "\F83A";
}

.fa-salesforce {
  --fa: "\F83B";
}

.fa-speaker-deck {
  --fa: "\F83C";
}

.fa-symfony {
  --fa: "\F83D";
}

.fa-waze {
  --fa: "\F83F";
}

.fa-yammer {
  --fa: "\F840";
}

.fa-git-alt {
  --fa: "\F841";
}

.fa-stackpath {
  --fa: "\F842";
}

.fa-cotton-bureau {
  --fa: "\F89E";
}

.fa-buy-n-large {
  --fa: "\F8A6";
}

.fa-mdb {
  --fa: "\F8CA";
}

.fa-orcid {
  --fa: "\F8D2";
}

.fa-swift {
  --fa: "\F8E1";
}

.fa-umbraco {
  --fa: "\F8E8";
}
/*!
 * Font Awesome Pro 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2025 Fonticons, Inc.
 */
:root, :host {
  --fa-family-classic: "Font Awesome 7 Pro";
  --fa-font-light: normal 300 1em/1 var(--fa-family-classic);
  /* deprecated: this older custom property will be removed next major release */
  --fa-style-family-classic: var(--fa-family-classic);
}

@font-face {
  font-family: "Font Awesome 7 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url(/fonts/9bef29f21d97ce45a1a3bae6c8d6d92b.woff2);
}
.fal {
  --fa-family: var(--fa-family-classic);
  --fa-style: 300;
}

.fa-classic {
  --fa-family: var(--fa-family-classic);
}

.fa-light {
  --fa-style: 300;
}
/*!
 * Font Awesome Pro 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2025 Fonticons, Inc.
 */
:root, :host {
  --fa-family-classic: "Font Awesome 7 Pro";
  --fa-font-regular: normal 400 1em/1 var(--fa-family-classic);
  /* deprecated: this older custom property will be removed next major release */
  --fa-style-family-classic: var(--fa-family-classic);
}

@font-face {
  font-family: "Font Awesome 7 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/599b2a863de3c4ac1ba7dfdff080e1c0.woff2);
}
.far {
  --fa-family: var(--fa-family-classic);
  --fa-style: 400;
}

.fa-classic {
  --fa-family: var(--fa-family-classic);
}

.fa-regular {
  --fa-style: 400;
}
/*!
 * Font Awesome Pro 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2025 Fonticons, Inc.
 */
:root, :host {
  --fa-family-classic: "Font Awesome 7 Pro";
  --fa-font-solid: normal 900 1em/1 var(--fa-family-classic);
  /* deprecated: this older custom property will be removed next major release */
  --fa-style-family-classic: var(--fa-family-classic);
}

@font-face {
  font-family: "Font Awesome 7 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/fonts/bdace5d468ccd7a7a3537fa4e939f144.woff2);
}
.fas {
  --fa-family: var(--fa-family-classic);
  --fa-style: 900;
}

.fa-classic {
  --fa-family: var(--fa-family-classic);
}

.fa-solid {
  --fa-style: 900;
}
/*!
 * Font Awesome Pro 7.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2025 Fonticons, Inc.
 */
:root, :host {
  --fa-family-classic: "Font Awesome 7 Pro";
  --fa-font-thin: normal 100 1em/1 var(--fa-family-classic);
  /* deprecated: this older custom property will be removed next major release */
  --fa-style-family-classic: var(--fa-family-classic);
}

@font-face {
  font-family: "Font Awesome 7 Pro";
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url(/fonts/7254a0a1852afc7e428d84834de2496f.woff2);
}
.fat {
  --fa-family: var(--fa-family-classic);
  --fa-style: 100;
}

.fa-classic {
  --fa-family: var(--fa-family-classic);
}

.fa-thin {
  --fa-style: 100;
}
.fak.fa-archived, .fa-kit.fa-archived { --fa: "\E008"; }
.fak.fa-archived-folder, .fa-kit.fa-archived-folder { --fa: "\E023"; }
.fak.fa-biometrics, .fa-kit.fa-biometrics { --fa: "\E017"; }
.fak.fa-check-wave, .fa-kit.fa-check-wave { --fa: "\E014"; }
.fak.fa-checked-box, .fa-kit.fa-checked-box { --fa: "\E01C"; }
.fak.fa-circle-check-curvy, .fa-kit.fa-circle-check-curvy { --fa: "\E01A"; }
.fak.fa-click, .fa-kit.fa-click { --fa: "\E00B"; }
.fak.fa-contracts, .fa-kit.fa-contracts { --fa: "\E003"; }
.fak.fa-court, .fa-kit.fa-court { --fa: "\E000"; }
.fak.fa-curvy-check, .fa-kit.fa-curvy-check { --fa: "\E002"; }
.fak.fa-custom-archive, .fa-kit.fa-custom-archive { --fa: "\E01B"; }
.fak.fa-delivery, .fa-kit.fa-delivery { --fa: "\E006"; }
.fak.fa-download, .fa-kit.fa-download { --fa: "\E024"; }
.fak.fa-excel, .fa-kit.fa-excel { --fa: "\E00F"; }
.fak.fa-excel-bold, .fa-kit.fa-excel-bold { --fa: "\E01F"; }
.fak.fa-face-scan, .fa-kit.fa-face-scan { --fa: "\E016"; }
.fak.fa-failed-symbol, .fa-kit.fa-failed-symbol { --fa: "\E013"; }
.fak.fa-hands, .fa-kit.fa-hands { --fa: "\E012"; }
.fak.fa-id, .fa-kit.fa-id { --fa: "\E010"; }
.fak.fa-microsoft-word, .fa-kit.fa-microsoft-word { --fa: "\E025"; }
.fak.fa-new-template, .fa-kit.fa-new-template { --fa: "\E001"; }
.fak.fa-new-template-bold, .fa-kit.fa-new-template-bold { --fa: "\E01E"; }
.fak.fa-nom-stamp, .fa-kit.fa-nom-stamp { --fa: "\E009"; }
.fak.fa-rppc, .fa-kit.fa-rppc { --fa: "\E019"; }
.fak.fa-sat, .fa-kit.fa-sat { --fa: "\E00C"; }
.fak.fa-secretaria-economia, .fa-kit.fa-secretaria-economia { --fa: "\E018"; }
.fak.fa-seguridad, .fa-kit.fa-seguridad { --fa: "\E00D"; }
.fak.fa-star, .fa-kit.fa-star { --fa: "\E011"; }
.fak.fa-sub-y-firmas, .fa-kit.fa-sub-y-firmas { --fa: "\E00E"; }
.fak.fa-tempalte-list-bold, .fa-kit.fa-tempalte-list-bold { --fa: "\E020"; }
.fak.fa-template-list, .fa-kit.fa-template-list { --fa: "\E007"; }
.fak.fa-unarchive, .fa-kit.fa-unarchive { --fa: "\E022"; }
.fak.fa-user-contacts, .fa-kit.fa-user-contacts { --fa: "\E005"; }
.fak.fa-videocall, .fa-kit.fa-videocall { --fa: "\E00A"; }

.fak, .fa-kit {
  --fa-family: 'Font Awesome Kit';
  --fa-style: 400;

  --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome Kit"));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: var(--fa-display, inline-block);
  font-family: var(--_fa-family);
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  font-weight: var(--fa-style, 400);
  line-height: 1;
  text-align: center;
  text-rendering: auto;
  width: var(--fa-width, 1.25em);
}

.fak::before, .fa-kit::before {
  content: var(--fa)/"";
}

@supports not (content: ''/'') {
  .fak::before, .fa-kit::before {
    content: var(--fa);
  }
}

@font-face {
  font-family: "Font Awesome Kit";
  font-style: normal;
  font-display: block;
  src: url(/fonts/59eae2c1b1946f7207d56d9b4159c9e3.woff2) format("woff2");
}

.asp_ga {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .asp_ga {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.asp_ga > div {
  width: 48.5%;
}

@media screen and (max-width: 767px) {
  .asp_ga > div {
    width: 100%;
  }
}

.asp_ga > div:first-child {
  margin-right: 3%;
}

@media screen and (max-width: 767px) {
  .asp_ga > div:first-child {
    margin-right: 0;
  }
}

.asp_asr {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.f8_ga {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 70%;
}

.f8_ga.f8_gc {
  margin-bottom: 25px;
}

.f8_gf {
  display: block;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 70%;
}

.f8_gh {
  -ms-flex: 1;
  flex: 1;
}

.f8_gj {
  margin: 0;
  width: 48.25%;
}

.f8_gj :-ms-input-placeholder {
  text-transform: uppercase;
}

.f8_gj ::placeholder {
  text-transform: uppercase;
}

.f8_gj > span:last-child {
  height: 35px;
  margin: 0 0 -19px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .f8_gj input {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .f8_gj {
    width: 100%;
  }
}

.f8_gl {
  margin-top: 0;
  width: 18%;
}

.f8_gl :-ms-input-placeholder {
  text-transform: uppercase;
}

.f8_gl ::placeholder {
  text-transform: uppercase;
}

.f8_gl > div {
  margin-top: 0;
}

.f8_gl > span:last-child {
  height: 35px;
  margin: 0 0 -19px;
  position: absolute;
  height: 35px;
}

@media screen and (max-width: 767px) {
  .f8_gl input {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .f8_gl {
    width: 100%;
  }
}

.f8_gn {
  margin-top: 0;
  width: 25.375%;
}

.f8_gn :-ms-input-placeholder {
  text-transform: uppercase;
}

.f8_gn ::placeholder {
  text-transform: uppercase;
}

.f8_gn.f8_gp {
  min-width: 200px;
}

.f8_gn > span:last-child {
  height: 35px;
  margin: 0 0 -19px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .f8_gn input {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .f8_gn {
    width: 100%;
  }
}

.f8_gr {
  margin-top: 20px;
  width: 42%;
}

.f8_gr :-ms-input-placeholder {
  text-transform: uppercase;
}

.f8_gr ::placeholder {
  text-transform: uppercase;
}

.f8_gr > span:last-child {
  height: 35px;
  margin: 0 0 -19px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .f8_gr input {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .f8_gr {
    width: 100%;
  }
}

.f8_gt {
  width: 70%;
}

.f8_gt :-ms-input-placeholder {
  text-transform: uppercase;
}

.f8_gt ::placeholder {
  text-transform: uppercase;
}

.f8_gt > div {
  margin-top: 0;
}

.f8_gt > span:last-child {
  height: 35px;
  margin: 0 0 -19px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .f8_gt input {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .f8_gt {
    width: 100%;
  }
}

.f8_gv {
  margin-top: 0;
  width: 70%;
}

.f8_gv :-ms-input-placeholder {
  text-transform: uppercase;
}

.f8_gv ::placeholder {
  text-transform: uppercase;
}

.f8_gv > span:last-child {
  height: 35px;
  margin: 0 0 -19px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .f8_gv input {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .f8_gv {
    width: 100%;
  }
}

.f8_gx {
  -ms-flex-align: last baseline;
  align-items: last baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.gz_g1 {
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  font-weight: 400;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1em;
  min-height: 50px;
  padding: 0 10px;
  width: 100%;
}

.gz_g1 a {
  color: #fff;
  text-decoration: underline;
}

.gz_g1 button {
  color: #fff;
}

.gz_g1 button:hover {
  color: #fff;
}

.gz_g1 i {
  font-size: 20px;
}

.gz_g1.gz_g3 {
  background-color: #0c3970;
}

.gz_g1.gz_ev {
  background-color: #0068aa;
}

.gz_g1.gz_cq {
  background-color: #0ac8b4;
}

.gz_g1.gz_g5 {
  background-color: #fe6c5a;
}

.fade-enter {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fade-enter-active {
  opacity: 1;
}

.fade-leave {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fade-leave-active {
  opacity: 0;
}

figure.hi_hk {
  background-color: #fff;
  border: 0;
  color: #fff;
  display: inline-block;
  height: 40px;
  letter-spacing: 2px;
  line-height: 40px;
  margin: 0;
  text-align: center;
  width: 40px;
}

figure.hi_hk img {
  height: 100%;
  max-width: 100%;
}

figure.hi_hk span {
  display: inline-block;
  margin: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 90%;
}

figure.hi_hk.hi_hm {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1);
}

figure.hi_hk.hi_ho {
  border-radius: 50%;
}

figure.hi_hk.hi_ho img {
  border-radius: 50%;
}

figure.hi_hk.hi_hq {
  border-radius: 10px;
}

figure.hi_hk.hi_hq img {
  border-radius: 10px;
}

figure.hi_hk.hi_hs {
  border-radius: 50%;
}

figure.hi_hk.hi_hs::before {
  background-color: #0c3970;
  border-radius: 50%;
  content: '';
  display: block;
  height: 120%;
  left: -10%;
  opacity: 0.15;
  position: absolute;
  top: -10%;
  width: 120%;
}

figure.hi_hk.hi_hs img {
  border-radius: 50%;
}

figure.hi_hk.hi_hu {
  font-size: 12px;
  height: 40px;
  line-height: 40px;
  width: 40px;
}

figure.hi_hk.hi_hw {
  font-size: 14px;
  height: 60px;
  line-height: 60px;
  width: 60px;
}

figure.hi_hk.hi_hy {
  font-size: 16px;
  height: 90px;
  line-height: 90px;
  width: 90px;
}

figure.hi_hk.hi_h0 {
  font-size: 16px;
  height: 120px;
  line-height: 120px;
  width: 120px;
}

figure.hi_h2 {
  background-color: #fff;
  border: 1px solid #0c3970;
  color: #fff;
  display: inline-block;
  height: 60px;
  letter-spacing: 2px;
  line-height: 40px;
  margin: 0;
  text-align: center;
  width: 60px;
}

figure.hi_h2.hi_hm {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1);
}

figure.hi_h2.hi_ho {
  border-radius: 50%;
}

figure.hi_h2.hi_hq {
  border-radius: 10px;
}

figure.hi_h2.hi_hu {
  font-size: 12px;
  height: 40px;
  line-height: 42.5px;
  width: 40px;
}

figure.hi_h2.hi_hu img {
  padding-left: 1px;
}

figure.hi_h2.hi_hw {
  font-size: 14px;
  height: 60px;
  line-height: 60px;
  width: 60px;
}

figure.hi_h2.hi_hy {
  font-size: 6px;
  height: 90px;
  line-height: 110px;
  width: 90px;
}

figure.hi_h2.hi_h0 {
  font-size: 16px;
  height: 120px;
  line-height: 120px;
  width: 120px;
}

figure.hi_h2.hi_hs {
  border-radius: 50%;
  border: none;
  background-color: #dee0de;
}

figure.hi_h2.hi_hs::before {
  background-color: #0c3970;
  border-radius: 50%;
  content: '';
  display: block;
  height: 120%;
  left: -10%;
  opacity: 0.15;
  position: absolute;
  top: -10%;
  width: 120%;
}

.hi_h4 {
  color: #0c3970;
}

.h6_h8 {
  background-color: inherit;
  border-radius: 50%;
  bottom: 0;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  cursor: default;
  font-size: 16px;
  height: 35px;
  line-height: 38px;
  margin: auto;
  position: absolute;
  right: -15px;
  text-align: center;
  top: 0;
  width: 35px;
}

.h6_ia {
  background-color: #676c67;
}

.h6_ic {
  background-color: #0c3970;
}

.h6_if {
  background-color: #0068aa;
}

.h6_ih {
  background-color: #58b560;
}

.h6_ij {
  background-color: #fe6c5a;
}

@keyframes il_ir {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

button {
  cursor: pointer;
}

.il_ip {
  background-color: #282828;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 300;
  height: 32px;
  letter-spacing: 1px;
  min-width: 100px;
  outline: 0;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transition: background-color 0.2s ease, color 0.2s ease, width 0.2s ease, box-shadow 0.1s ease;
  vertical-align: middle;
  white-space: nowrap;
}

.il_ip:hover, .il_ip:focus, .il_ip.il_in {
  background-color: #0f0f0f;
  text-decoration: none;
}

.il_ip.il_it {
  width: 100%;
}

.il_ip[disabled] {
  cursor: not-allowed;
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .il_ip {
    font-size: 12px;
    min-width: 100px;
  }
}

.il_ip .il_ir {
  animation: il_ir .8s infinite linear;
  border: 4px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: transparent;
  display: inline-block;
  height: 20px;
  opacity: .8;
  width: 20px;
}

a.il_ip {
  line-height: 30px;
}

.il_iv {
  border-radius: 50px;
}

.il_ix {
  border-color: #676c67;
  background-color: transparent;
  color: #676c67;
}

.il_ix:hover, .il_ix:focus, .il_ix.il_in {
  background-color: #676c67;
  color: #fff;
  text-decoration: none;
}

.il_ix:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_iz {
  border-color: transparent;
  background-color: #0ac8b4;
  color: #fff;
}

.il_iz:hover, .il_iz:focus, .il_iz.il_in {
  background-color: #05675d;
  color: #fff;
  text-decoration: none;
}

.il_iz:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_i1 {
  border-color: #0ac8b4;
  background-color: transparent;
  color: #0ac8b4;
}

.il_i1:hover, .il_i1:focus, .il_i1.il_in {
  background-color: #0ac8b4;
  color: #fff;
  text-decoration: none;
}

.il_i1:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_i1 .il_ir {
  animation: il_ir .8s infinite linear;
  border: 4px solid #0ac8b4;
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: transparent;
  display: inline-block;
  height: 20px;
  opacity: .8;
  width: 20px;
}

.il_i1:hover .il_ir {
  animation: il_ir .8s infinite linear;
  border: 4px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: transparent;
  display: inline-block;
  height: 20px;
  opacity: .8;
  width: 20px;
}

.il_i3 {
  border-color: transparent;
  background-color: #769cff;
  color: #fff;
}

.il_i3:hover, .il_i3:focus, .il_i3.il_in {
  background-color: #1052ff;
  color: #fff;
  text-decoration: none;
}

.il_i3:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_i5 {
  border-color: #769cff;
  background-color: transparent;
  color: #769cff;
}

.il_i5:hover, .il_i5:focus, .il_i5.il_in {
  background-color: #769cff;
  color: #fff;
  text-decoration: none;
}

.il_i5:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_i5 .il_ir {
  animation: il_ir .8s infinite linear;
  border: 4px solid #769cff;
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: transparent;
  display: inline-block;
  height: 20px;
  opacity: .8;
  width: 20px;
}

.il_i5:hover .il_ir {
  animation: il_ir .8s infinite linear;
  border: 4px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  border-top-color: transparent;
  display: inline-block;
  height: 20px;
  opacity: .8;
  width: 20px;
}

.il_i7 {
  border-color: transparent;
  background-color: #0c3970;
  color: #fff;
}

.il_i7:hover, .il_i7:focus, .il_i7.il_in {
  background-color: #020a14;
  color: #fff;
  text-decoration: none;
}

.il_i7:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_i9 {
  border-color: transparent;
  background-color: #0ac8b4;
  color: #fff;
}

.il_i9:hover, .il_i9:focus, .il_i9.il_in {
  background-color: #05675d;
  color: #fff;
  text-decoration: none;
}

.il_i9:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jb {
  border-color: transparent;
  background-color: #7a9ff8;
  color: #fff;
}

.il_jb:hover, .il_jb:focus, .il_jb.il_in {
  background-color: #1959f3;
  color: #fff;
  text-decoration: none;
}

.il_jb:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_je {
  border-color: #0c3970;
  background-color: transparent;
  color: #0c3970;
}

.il_je:hover, .il_je:focus, .il_je.il_in {
  background-color: #0c3970;
  color: #fff;
  text-decoration: none;
}

.il_je:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jg {
  border-color: #0c3970;
  background-color: #fff;
  color: #0c3970;
}

.il_jg:hover, .il_jg:focus, .il_jg.il_in {
  background-color: #0c3970;
  color: #fff;
  text-decoration: none;
}

.il_jg:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_ji {
  border-color: #0ac8b4;
  background-color: transparent;
  color: #000;
}

.il_ji:hover, .il_ji:focus, .il_ji.il_in {
  background-color: #0ac8b4;
  color: #fff;
  text-decoration: none;
}

.il_ji:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jk {
  border-color: transparent;
  background-color: #0068aa;
  color: #fff;
}

.il_jk:hover, .il_jk:focus, .il_jk.il_in {
  background-color: #0d6c94;
  color: #fff;
  text-decoration: none;
}

.il_jk:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jm {
  border-color: #0068aa;
  background-color: transparent;
  color: #0068aa;
}

.il_jm:hover, .il_jm:focus, .il_jm.il_in {
  background-color: #0068aa;
  color: #fff;
  text-decoration: none;
}

.il_jm:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jo {
  border-color: transparent;
  background-color: #58b560;
  color: #fff;
}

.il_jo:hover, .il_jo:focus, .il_jo.il_in {
  background-color: #337439;
  color: #fff;
  text-decoration: none;
}

.il_jo:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jq {
  border-color: #58b560;
  background-color: transparent;
  color: #58b560;
}

.il_jq:hover, .il_jq:focus, .il_jq.il_in {
  background-color: #58b560;
  color: #fff;
  text-decoration: none;
}

.il_jq:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_js {
  border-color: transparent;
  background-color: #fe6c5a;
  color: #fff;
}

.il_js:hover, .il_js:focus, .il_js.il_in {
  background-color: #f11c01;
  color: #fff;
  text-decoration: none;
}

.il_js:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_ju {
  border-color: #fe6c5a;
  background-color: transparent;
  color: #fe6c5a;
}

.il_ju:hover, .il_ju:focus, .il_ju.il_in {
  background-color: #fe6c5a;
  color: #fff;
  text-decoration: none;
}

.il_ju:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jw {
  border-color: transparent;
  background-color: #fbbe72;
  color: #fff;
}

.il_jw:hover, .il_jw:focus, .il_jw.il_in {
  background-color: #f8900f;
  color: #fff;
  text-decoration: none;
}

.il_jw:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_jy {
  border-color: #fbbe72;
  background-color: transparent;
  color: #fbbe72;
}

.il_jy:hover, .il_jy:focus, .il_jy.il_in {
  background-color: #fbbe72;
  color: #fff;
  text-decoration: none;
}

.il_jy:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_j0 {
  border-color: transparent;
  background-color: transparent;
  color: #282828;
  box-shadow: none;
  font-size: 12px;
  min-width: auto;
  padding: 0;
  text-transform: none;
}

.il_j0:hover, .il_j0:focus, .il_j0.il_in {
  background-color: rgba(0, 0, 0, 0);
  color: #282828;
  text-decoration: none;
}

.il_j0:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_j0:visited {
  color: #282828;
}

.il_j0:active {
  box-shadow: none;
}

.il_j2 {
  border-color: transparent;
  background-color: transparent;
  color: #0c3970;
  background-repeat: no-repeat;
  border: inherit;
  box-shadow: none;
  padding: inherit;
  text-align: inherit;
  white-space: inherit;
}

.il_j2:hover, .il_j2:focus, .il_j2.il_in {
  background-color: rgba(0, 0, 0, 0);
  color: #0c3970;
  text-decoration: none;
}

.il_j2:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.il_j2:active {
  box-shadow: none;
  transform: none;
}

.btn-link {
  border-color: transparent;
  background-color: transparent;
  color: #0c3970;
  background-repeat: no-repeat;
  border: inherit;
  box-shadow: none;
  overflow: hidden;
  padding: inherit;
}

.btn-link:hover, .btn-link:focus, .btn-link.il_in {
  background-color: rgba(0, 0, 0, 0);
  color: #0c3970;
  text-decoration: none;
}

.btn-link:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.btn-link:active {
  box-shadow: none;
  transform: none;
}

.link-btn {
  border-color: transparent;
  background-color: #0ac8b4;
  color: #fff;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 32px;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 100px;
  padding: 0 20px;
  text-align: center;
}

.link-btn:hover, .link-btn:focus, .link-btn.il_in {
  background-color: #05675d;
  color: #fff;
  text-decoration: none;
}

.link-btn:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.link-btn:visited {
  color: #fff;
}

.link-btn-invert {
  border-color: #0ac8b4;
  background-color: #fff;
  color: #0ac8b4;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid;
  color: #0ac8b4;
  cursor: pointer;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 32px;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 100px;
  padding: 0 20px;
  text-align: center;
}

.link-btn-invert:hover, .link-btn-invert:focus, .link-btn-invert.il_in {
  background-color: #0ac8b4;
  color: #fff;
  text-decoration: none;
}

.link-btn-invert:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.link-btn-invert:visited {
  color: #0ac8b4;
}

.link-btn-gray {
  border-color: transparent;
  background-color: #f3f3f3;
  color: #3b3f3b;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 32px;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 100px;
  padding: 0 20px;
  text-align: center;
}

.link-btn-gray:hover, .link-btn-gray:focus, .link-btn-gray.il_in {
  background-color: silver;
  color: #3b3f3b;
  text-decoration: none;
}

.link-btn-gray:active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.link-btn-gray:visited {
  color: #fff;
}

.j4_j6 {
  -ms-flex-align: center;
  align-items: center;
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding-bottom: 20px;
}

.j4_j6 a {
  -ms-flex-align: center;
  align-items: center;
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  font-family: "Inter Light", sans-serif;
  font-weight: 700;
}

.j4_j6 a.j4_y:visited, .j4_j6 a[href]:visited {
  color: #0c3970;
  font-weight: 700;
}

.j4_j6 a.j4_y:hover, .j4_j6 a[href]:hover {
  color: #0c3970;
  font-weight: 700;
}

.j4_j6 a i {
  color: #3b3f3b;
  display: inline-block;
  line-height: 0.9;
  margin: 0 4px;
  vertical-align: middle;
}

.j4_j6 img {
  display: block;
  height: 20px;
  margin: 0 2px;
  width: 20px;
}

.j8_ka input {
  opacity: 0;
}

.j8_ka span {
  color: #000;
  cursor: pointer;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  vertical-align: middle;
}

.j8_ka .j8_kc {
  color: #0ac8b4;
}

.j8_ka .j8_kf {
  border: 1px solid #0c3970;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 11px;
  opacity: .6;
  position: relative;
  transition: border-color .2s ease;
  vertical-align: middle;
  width: 20px;
}

.j8_ka .j8_kf.j8_kh {
  margin: 0 11px 0 0;
}

.j8_ka .j8_kf.j8_kj {
  border: 1px solid #0ac8b4;
}

.j8_ka .j8_kf.j8_kj::before {
  background-color: #0ac8b4;
}

.j8_ka .j8_kf.j8_kj:hover {
  border-color: #0ac8b4;
}

.j8_ka .j8_kf.j8_kl {
  border: 1px solid #0c3970;
}

.j8_ka .j8_kf.j8_kl::before {
  background-color: unset;
  background-image: url(/images/75bd819db5c6d0d295afa3c79ac509a3.svg);
}

.j8_ka .j8_kf.j8_kl:hover {
  border-color: #fe6c5a;
}

.j8_ka .j8_kf::before {
  background-color: #0c3970;
  background-image: url(/images/0534fe82ede45e7e332b99f72375f234.svg);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  content: '';
  display: block;
  height: 20px;
  opacity: 0;
  position: absolute;
  right: -1px;
  top: -1px;
  transform: scale(0);
  transition: opacity .2s ease, transform .3s ease, border-radius .3s ease;
  width: 20px;
}

.j8_ka .j8_kf:hover {
  opacity: 1;
  border-color: #0c3970;
}

.j8_ka.j8_fk .j8_kf {
  opacity: 1;
  border-color: #0c3970;
}

.j8_ka.j8_fk .j8_kf.j8_kj {
  border-color: #0ac8b4;
}

.j8_ka.j8_fk .j8_kf.j8_kl {
  border-color: #fe6c5a;
}

.j8_ka.j8_fk .j8_kf::before {
  transform: scale(1);
  opacity: 1;
  border-radius: 4px;
}

.j8_ka.j8_in .j8_kf {
  border-color: rgba(12, 57, 112, 0.7);
  box-shadow: 0 0 4px 2px rgba(12, 57, 112, 0.5);
}

.j8_ka.j8_in .j8_kf.j8_kj {
  border-color: rgba(10, 200, 180, 0.7);
  box-shadow: 0 0 4px 2px rgba(10, 200, 180, 0.5);
}

.j8_ka.j8_in .j8_kf.j8_kl {
  border-color: rgba(254, 108, 90, 0.7);
  box-shadow: 0 0 4px 2px rgba(254, 108, 90, 0.5);
}

.j8_ka.j8_kn .j8_kp {
  cursor: not-allowed;
  opacity: .6;
}

.j8_ka.j8_kn .j8_kp:hover {
  border-color: #0c3970;
}

.j8_ka.j8_kn .j8_kp:hover.j8_kj {
  border-color: #0ac8b4;
}

.j8_ka.j8_kn .j8_kp:hover.j8_kl {
  border-color: #fe6c5a;
}

.j8_ka.j8_kn .j8_kp.j8_fk {
  border-color: #0c3970;
}

.j8_ka.j8_kn .j8_kp.j8_fk.j8_kj {
  border-color: #0ac8b4;
}

.j8_ka.j8_kn .j8_kp.j8_fk.j8_kl {
  border-color: #fe6c5a;
}

.kr_kt {
  /* stylelint-disable */
  /* stylelint-enable */
  margin-bottom: 21px;
}

.kr_kt .react-datepicker__navigation-icon::before, .kr_kt .react-datepicker__year-read-view--down-arrow,
.kr_kt .react-datepicker__month-read-view--down-arrow,
.kr_kt .react-datepicker__month-year-read-view--down-arrow {
  border-color: #676c67;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle {
  margin-left: 0;
  position: absolute;
  width: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::after, .kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::after {
  box-sizing: content-box;
  position: absolute;
  border: 0 solid transparent;
  height: 0;
  width: 1px;
  content: "";
  z-index: -1;
  border-width: 0;
  left: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before {
  border-bottom-color: #cdcfd6;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
  top: 0;
  margin-top: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::after {
  border-top: none;
  border-bottom-color: #fff;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::after {
  top: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #cdcfd6;
}

.kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle {
  bottom: 0;
  margin-bottom: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::after {
  border-bottom: none;
  border-top-color: #fff;
}

.kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::after {
  bottom: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before {
  bottom: -1px;
  border-top-color: #cdcfd6;
}

.kr_kt .react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.kr_kt .react-datepicker {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  background-color: #fff;
  color: #282828;
  border: 1px solid #cdcfd6;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}

.kr_kt .react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}

.kr_kt .react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}

.kr_kt .react-datepicker--time-only .react-datepicker__time,
.kr_kt .react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.kr_kt .react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.kr_kt .react-datepicker-popper {
  z-index: 1;
}

.kr_kt .react-datepicker-popper[data-placement^="bottom"] {
  padding-top: 2px;
}

.kr_kt .react-datepicker-popper[data-placement="bottom-end"] .react-datepicker__triangle, .kr_kt .react-datepicker-popper[data-placement="top-end"] .react-datepicker__triangle {
  left: auto;
  right: 50px;
}

.kr_kt .react-datepicker-popper[data-placement^="top"] {
  padding-bottom: 2px;
}

.kr_kt .react-datepicker-popper[data-placement^="right"] {
  padding-left: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}

.kr_kt .react-datepicker-popper[data-placement^="left"] {
  padding-right: 0;
}

.kr_kt .react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.kr_kt .react-datepicker__header {
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #cdcfd6;
  border-top-left-radius: 5px;
  padding: 8px 0;
  position: relative;
}

.kr_kt .react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.kr_kt .react-datepicker__header--time {
  border-top-left-radius: 0;
}

.kr_kt .react-datepicker__header {
  border-top-right-radius: 5px;
}

.kr_kt .react-datepicker__year-dropdown-container--select,
.kr_kt .react-datepicker__month-dropdown-container--select,
.kr_kt .react-datepicker__month-year-dropdown-container--select,
.kr_kt .react-datepicker__year-dropdown-container--scroll,
.kr_kt .react-datepicker__month-dropdown-container--scroll,
.kr_kt .react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.kr_kt .react-datepicker__current-month,
.kr_kt .react-datepicker-time__header,
.kr_kt .react-datepicker-year-header {
  margin-top: 0;
  color: #282828;
  font-weight: bold;
  font-size: 14.16px;
}

.kr_kt .react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.kr_kt .react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}

.kr_kt .react-datepicker__navigation--previous {
  left: 2px;
}

.kr_kt .react-datepicker__navigation--next {
  right: 2px;
}

.kr_kt .react-datepicker__navigation--next--with-time {
  right: 85px;
}

.kr_kt .react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.kr_kt .react-datepicker__navigation--years-previous {
  top: 4px;
}

.kr_kt .react-datepicker__navigation--years-upcoming {
  top: -4px;
}

.kr_kt .react-datepicker__navigation:hover *::before {
  border-color: #424542;
}

.kr_kt .react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}

.kr_kt .react-datepicker__navigation-icon--next {
  left: -2px;
}

.kr_kt .react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}

.kr_kt .react-datepicker__navigation-icon--previous {
  right: -2px;
}

.kr_kt .react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.kr_kt .react-datepicker__month-container {
  float: left;
}

.kr_kt .react-datepicker__year {
  margin: 0;
  text-align: center;
}

.kr_kt .react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}

.kr_kt .react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.kr_kt .react-datepicker__month {
  margin: 0;
  text-align: center;
}

.kr_kt .react-datepicker__month .react-datepicker__month-text,
.kr_kt .react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.kr_kt .react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}

.kr_kt .react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}

.kr_kt .react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}

.kr_kt .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}

.kr_kt .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}

.kr_kt .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-inner-spin-button,
.kr_kt .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.kr_kt .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type="time"] {
  -moz-appearance: textfield;
}

.kr_kt .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.kr_kt .react-datepicker__time-container {
  float: right;
  border-left: 1px solid #cdcfd6;
  width: 85px;
}

.kr_kt .react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + (28px / 2));
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #fff;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #0c3970;
  color: white;
  font-weight: bold;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #0c3970;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #676c67;
}

.kr_kt .react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.kr_kt .react-datepicker__week-number {
  color: #676c67;
  display: inline-block;
  width: 28px;
  line-height: 28px;
  text-align: center;
  margin: 2px 4px;
}

.kr_kt .react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}

.kr_kt .react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
  border-radius: 5px;
  background-color: #fff;
}

.kr_kt .react-datepicker__day-names,
.kr_kt .react-datepicker__week {
  white-space: nowrap;
}

.kr_kt .react-datepicker__day-names {
  margin-bottom: -8px;
}

.kr_kt .react-datepicker__day-name,
.kr_kt .react-datepicker__day,
.kr_kt .react-datepicker__time-name {
  color: #282828;
  display: inline-block;
  width: 28px;
  line-height: 28px;
  text-align: center;
  margin: 2px 4px;
}

.kr_kt .react-datepicker__day,
.kr_kt .react-datepicker__month-text,
.kr_kt .react-datepicker__quarter-text,
.kr_kt .react-datepicker__year-text {
  cursor: pointer;
}

.kr_kt .react-datepicker__day:hover,
.kr_kt .react-datepicker__month-text:hover,
.kr_kt .react-datepicker__quarter-text:hover,
.kr_kt .react-datepicker__year-text:hover {
  border-radius: 5px;
  background-color: #fff;
}

.kr_kt .react-datepicker__day--today,
.kr_kt .react-datepicker__month-text--today,
.kr_kt .react-datepicker__quarter-text--today,
.kr_kt .react-datepicker__year-text--today {
  font-weight: bold;
}

.kr_kt .react-datepicker__day--highlighted,
.kr_kt .react-datepicker__month-text--highlighted,
.kr_kt .react-datepicker__quarter-text--highlighted,
.kr_kt .react-datepicker__year-text--highlighted {
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
}

.kr_kt .react-datepicker__day--highlighted:hover,
.kr_kt .react-datepicker__month-text--highlighted:hover,
.kr_kt .react-datepicker__quarter-text--highlighted:hover,
.kr_kt .react-datepicker__year-text--highlighted:hover {
  background-color: #f2f2f2;
}

.kr_kt .react-datepicker__day--highlighted-custom-1,
.kr_kt .react-datepicker__month-text--highlighted-custom-1,
.kr_kt .react-datepicker__quarter-text--highlighted-custom-1,
.kr_kt .react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}

.kr_kt .react-datepicker__day--highlighted-custom-2,
.kr_kt .react-datepicker__month-text--highlighted-custom-2,
.kr_kt .react-datepicker__quarter-text--highlighted-custom-2,
.kr_kt .react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}

.kr_kt .react-datepicker__day--holidays,
.kr_kt .react-datepicker__month-text--holidays,
.kr_kt .react-datepicker__quarter-text--holidays,
.kr_kt .react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 5px;
  background-color: #ff6803;
  color: #fff;
}

.kr_kt .react-datepicker__day--holidays .holiday-overlay,
.kr_kt .react-datepicker__month-text--holidays .holiday-overlay,
.kr_kt .react-datepicker__quarter-text--holidays .holiday-overlay,
.kr_kt .react-datepicker__year-text--holidays .holiday-overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

.kr_kt .react-datepicker__day--holidays:hover,
.kr_kt .react-datepicker__month-text--holidays:hover,
.kr_kt .react-datepicker__quarter-text--holidays:hover,
.kr_kt .react-datepicker__year-text--holidays:hover {
  background-color: #cf5300;
}

.kr_kt .react-datepicker__day--holidays:hover .holiday-overlay,
.kr_kt .react-datepicker__month-text--holidays:hover .holiday-overlay,
.kr_kt .react-datepicker__quarter-text--holidays:hover .holiday-overlay,
.kr_kt .react-datepicker__year-text--holidays:hover .holiday-overlay {
  visibility: visible;
  opacity: 1;
}

.kr_kt .react-datepicker__day--selected, .kr_kt .react-datepicker__day--in-selecting-range, .kr_kt .react-datepicker__day--in-range,
.kr_kt .react-datepicker__month-text--selected,
.kr_kt .react-datepicker__month-text--in-selecting-range,
.kr_kt .react-datepicker__month-text--in-range,
.kr_kt .react-datepicker__quarter-text--selected,
.kr_kt .react-datepicker__quarter-text--in-selecting-range,
.kr_kt .react-datepicker__quarter-text--in-range,
.kr_kt .react-datepicker__year-text--selected,
.kr_kt .react-datepicker__year-text--in-selecting-range,
.kr_kt .react-datepicker__year-text--in-range {
  border-radius: 5px;
  background-color: #0c3970;
  color: #fff;
}

.kr_kt .react-datepicker__day--selected:hover, .kr_kt .react-datepicker__day--in-selecting-range:hover, .kr_kt .react-datepicker__day--in-range:hover,
.kr_kt .react-datepicker__month-text--selected:hover,
.kr_kt .react-datepicker__month-text--in-selecting-range:hover,
.kr_kt .react-datepicker__month-text--in-range:hover,
.kr_kt .react-datepicker__quarter-text--selected:hover,
.kr_kt .react-datepicker__quarter-text--in-selecting-range:hover,
.kr_kt .react-datepicker__quarter-text--in-range:hover,
.kr_kt .react-datepicker__year-text--selected:hover,
.kr_kt .react-datepicker__year-text--in-selecting-range:hover,
.kr_kt .react-datepicker__year-text--in-range:hover {
  background-color: #0a2d59;
}

.kr_kt .react-datepicker__day--keyboard-selected,
.kr_kt .react-datepicker__month-text--keyboard-selected,
.kr_kt .react-datepicker__quarter-text--keyboard-selected,
.kr_kt .react-datepicker__year-text--keyboard-selected {
  border-radius: 5px;
  background-color: #72aaf0;
  color: black;
}

.kr_kt .react-datepicker__day--keyboard-selected:hover,
.kr_kt .react-datepicker__month-text--keyboard-selected:hover,
.kr_kt .react-datepicker__quarter-text--keyboard-selected:hover,
.kr_kt .react-datepicker__year-text--keyboard-selected:hover {
  background-color: #0a2d59;
}

.kr_kt .react-datepicker__day--in-selecting-range ,
.kr_kt .react-datepicker__month-text--in-selecting-range ,
.kr_kt .react-datepicker__quarter-text--in-selecting-range ,
.kr_kt .react-datepicker__year-text--in-selecting-range {
  background-color: rgba(12, 57, 112, 0.5);
}

.kr_bc1 .kr_kt .react-datepicker__day--in-range ,
.kr_bc3 .kr_kt .react-datepicker__day--in-range , .kr_bc1
.kr_kt .react-datepicker__month-text--in-range ,
.kr_bc3
.kr_kt .react-datepicker__month-text--in-range , .kr_bc1
.kr_kt .react-datepicker__quarter-text--in-range ,
.kr_bc3
.kr_kt .react-datepicker__quarter-text--in-range , .kr_bc1
.kr_kt .react-datepicker__year-text--in-range ,
.kr_bc3
.kr_kt .react-datepicker__year-text--in-range {
  background-color: #fff;
  color: #282828;
}

.kr_kt .react-datepicker__day--disabled,
.kr_kt .react-datepicker__month-text--disabled,
.kr_kt .react-datepicker__quarter-text--disabled,
.kr_kt .react-datepicker__year-text--disabled {
  cursor: default;
  color: #676c67;
}

.kr_kt .react-datepicker__day--disabled:hover,
.kr_kt .react-datepicker__month-text--disabled:hover,
.kr_kt .react-datepicker__quarter-text--disabled:hover,
.kr_kt .react-datepicker__year-text--disabled:hover {
  background-color: transparent;
}

.kr_kt .react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.kr_kt .react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.kr_kt .react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.kr_kt .react-datepicker__year-read-view,
.kr_kt .react-datepicker__month-read-view,
.kr_kt .react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.kr_kt .react-datepicker__year-read-view:hover,
.kr_kt .react-datepicker__month-read-view:hover,
.kr_kt .react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}

.kr_kt .react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.kr_kt .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.kr_kt .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.kr_kt .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.kr_kt .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.kr_kt .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #4e524e;
}

.kr_kt .react-datepicker__year-read-view--down-arrow,
.kr_kt .react-datepicker__month-read-view--down-arrow,
.kr_kt .react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.kr_kt .react-datepicker__year-dropdown,
.kr_kt .react-datepicker__month-dropdown,
.kr_kt .react-datepicker__month-year-dropdown {
  background-color: #fff;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #cdcfd6;
}

.kr_kt .react-datepicker__year-dropdown:hover,
.kr_kt .react-datepicker__month-dropdown:hover,
.kr_kt .react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}

.kr_kt .react-datepicker__year-dropdown--scrollable,
.kr_kt .react-datepicker__month-dropdown--scrollable,
.kr_kt .react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.kr_kt .react-datepicker__year-option,
.kr_kt .react-datepicker__month-option,
.kr_kt .react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.kr_kt .react-datepicker__year-option:first-of-type,
.kr_kt .react-datepicker__month-option:first-of-type,
.kr_kt .react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.kr_kt .react-datepicker__year-option:last-of-type,
.kr_kt .react-datepicker__month-option:last-of-type,
.kr_kt .react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.kr_kt .react-datepicker__year-option:hover,
.kr_kt .react-datepicker__month-option:hover,
.kr_kt .react-datepicker__month-year-option:hover {
  background-color: #676c67;
}

.kr_kt .react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.kr_kt .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.kr_kt .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #4e524e;
}

.kr_kt .react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.kr_kt .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.kr_kt .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #4e524e;
}

.kr_kt .react-datepicker__year-option--selected,
.kr_kt .react-datepicker__month-option--selected,
.kr_kt .react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.kr_kt .react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

.kr_kt .react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #0c3970;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "\D7";
}

.kr_kt .react-datepicker__today-button {
  background: #fff;
  border-top: 1px solid #cdcfd6;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.kr_kt .react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}

.kr_kt .react-datepicker__portal .react-datepicker__day-name,
.kr_kt .react-datepicker__portal .react-datepicker__day,
.kr_kt .react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}

@media (max-width: 400px), (max-height: 550px) {
  .kr_kt .react-datepicker__portal .react-datepicker__day-name,
  .kr_kt .react-datepicker__portal .react-datepicker__day,
  .kr_kt .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}

.kr_kt .react-datepicker__portal .react-datepicker__current-month,
.kr_kt .react-datepicker__portal .react-datepicker-time__header {
  font-size: 21.6px;
}

.kr_kt .react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.kr_kt .react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.kr_kt .react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

.kr_kt .react-datepicker-wrapper {
  display: block;
}

.kr_kt .react-datepicker-popper {
  z-index: 3;
}

.kr_kt .react-datepicker {
  padding: 10px 30px;
}

.kr_kt .react-datepicker__input-container {
  width: 100%;
}

.kr_kt .react-datepicker__input-container input {
  border: 1px solid #cdcfd6;
  border-radius: 5px;
  font-size: 12px;
  height: 45px;
  padding: 0 13px;
}

.kr_kt .react-datepicker__header {
  border-bottom: 0;
}

.kr_kt .react-datepicker__header select {
  cursor: pointer;
}

.kr_kt .react-datepicker__navigation {
  top: 15px;
}

.kr_kt .react-datepicker__current-month {
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.kr_kt .react-datepicker__month-dropdown-container--select {
  cursor: pointer;
  position: absolute;
  right: 50%;
}

.kr_kt .react-datepicker__year-dropdown-container--select {
  cursor: pointer;
  left: 50%;
  position: absolute;
}

.kr_kt .react-datepicker__header__dropdown {
  opacity: 0;
  position: absolute;
  top: 5px;
  width: 100%;
}

.kr_kt .react-datepicker__day-names {
  font-size: 10px;
  text-transform: uppercase;
}

.kr_kt .react-datepicker__day--selected, .kr_kt .react-datepicker__day--keyboard-selected {
  background-color: #0c3970;
  border-radius: 50%;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
}

.kr_kt .react-datepicker__day--selected:hover, .kr_kt .react-datepicker__day--keyboard-selected:hover {
  border-radius: 50%;
  color: #fff;
}

.kr_kt .react-datepicker__day--keyboard-selected {
  background-color: #676c67;
  color: #fff;
}

.kr_kt.kr_kn {
  pointer-events: none;
}

.kr_kt.kr_kh {
  margin: 0;
}

.kr_kt.kr_kv input {
  background-color: #f5f6fa;
  border: 0;
  font-size: 12px;
}

.kr_kt .kr_kx {
  background-color: #e8eae8;
  border: solid 2px rgba(103, 108, 103, 0.6);
  height: 100%;
  opacity: .7;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.kr_kt .kr_kz > div {
  margin: 0;
}

.o3_o5 .vertical {
  border-radius: 4px;
  bottom: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .3s ease;
  width: 8px;
}

.o3_o5 .horizontal {
  border-radius: 4px;
  bottom: 0;
  height: 8px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 3px;
  transition: opacity .3s ease;
}

.o3_o5 .thumb {
  background-color: #0c3970;
  border-radius: 4px;
}

.k1_k3 {
  display: block;
  font-family: "Inter Light", sans-serif;
  margin-bottom: 1em;
  white-space: nowrap;
}

.k1_k3 > label {
  display: block;
  font-family: inherit;
  font-size: 12px;
  padding-bottom: 6px;
}

.k1_k3.k1_k5 {
  margin-bottom: 0;
}

.k1_k3 .k1_k7 {
  color: #0c3970;
  position: absolute;
  right: 0;
}

.k1_k3 .k1_k9 {
  border-radius: 5px;
  line-height: 0;
  margin-bottom: 21px;
}

.k1_k3 .k1_k9 button {
  background-color: #fff;
  background-image: none;
  border: 1px solid #cdcfd6;
  border-radius: 5px;
  box-sizing: border-box;
  color: #282828;
  cursor: pointer;
  font-family: inherit;
  height: 45px;
  letter-spacing: 0.8px;
  min-width: 180px;
  outline: 0;
  padding: 0;
  text-align: left;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transition: color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.k1_k3 .k1_k9 button:hover, .k1_k3 .k1_k9 button:focus, .k1_k3 .k1_k9 button.k1_in {
  color: #282828;
  text-decoration: none;
}

.k1_k3 .k1_k9[disabled] {
  background-color: #edf7f8;
  opacity: 0.6;
}

.k1_k3 .k1_k9[disabled] button {
  cursor: not-allowed;
}

.k1_k3 .k1_k9 i {
  float: right;
  margin-right: 10px;
}

.k1_k3 .k1_k9.k1_lb button {
  background-color: #f5f6fa;
  border: 0;
  border-radius: 20px;
  color: #989898;
  font-family: "Inter Light", sans-serif;
  height: 32px;
  letter-spacing: 1px;
  min-width: unset;
}

.k1_k3 .k1_k9.k1_lb button i {
  color: #000;
}

.k1_k3 .k1_k9.k1_lb .k1_le {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
}

.k1_k3 .k1_k9.k1_lb .k1_ex li {
  border: 0;
}

.k1_k3 .k1_k9.k1_lb .k1_ex li a {
  border: 0;
  padding: 10px;
}

.k1_k3 .k1_k9.k1_k5 {
  margin-bottom: 0;
}

.k1_k3 .k1_k9 .k1_le {
  color: 5px;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 100;
  height: 12px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 20px;
  text-overflow: ellipsis;
}

.k1_k3 .k1_k9 .k1_lg {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #cdcfd6;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
}

.k1_k3 .k1_k9 .k1_lg .k1_li {
  border: 0;
  color: #282828;
  font-size: 12px;
  font-weight: 100;
  height: 45px;
  letter-spacing: 0.8px;
  margin-left: 10px;
  text-align: left;
  width: 85%;
}

.k1_k3 .k1_k9 .k1_ex {
  background-color: #fff;
  display: none;
  font-size: 12px;
  margin: 0 0 20px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.k1_k3 .k1_k9 .k1_ex ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.k1_k3 .k1_k9 .k1_ex li:last-child a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.k1_k3 .k1_k9 .k1_ex li a {
  color: #282828;
  cursor: pointer;
  display: block;
  letter-spacing: 0.8px;
  line-height: 18px;
  overflow: hidden;
  padding: 15px 20px;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: none;
}

.k1_k3 .k1_k9 .k1_ex li a.k1_fk {
  background-color: #cdcfd6;
  color: #fff;
}

.k1_k3 .k1_k9 .k1_ex li a.k1_lk {
  background-color: rgba(205, 207, 214, 0.85);
  color: #fff;
}

.k1_k3 .k1_k9 .k1_ex li a[disabled] {
  background-color: #edf7f8;
  cursor: not-allowed;
  opacity: 0.6;
}

.k1_k3 .k1_k9.k1_lm button {
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  color: #cdcfd6;
}

.k1_k3 .k1_k9.k1_lm button::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 11px;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.k1_k3 .k1_k9.k1_lm .k1_ex {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  display: block;
}

.k1_k3 .k1_k9.k1_lm.k1_lo button {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.k1_k3 .k1_k9.k1_lm.k1_lo .k1_ex {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  bottom: 25px;
}

.k1_k3 .k1_k9.k1_lm.k1_lo .k1_ex li:last-child {
  border-bottom: 0;
}

.k1_k3 .k1_k9.k1_lm.k1_lo .k1_ex li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.k1_k3 .k1_k9.k1_lm.k1_lo .k1_ex li:first-child a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.k1_k3 .k1_k9.k1_lq button {
  background-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  color: #cdcfd6;
}

.k1_k3 .k1_k9.k1_lq button::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.k1_k3 .k1_k9.k1_lq .k1_ex {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  display: block;
}

.k1_k3 .k1_k9.k1_lq.k1_lo button {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.k1_k3 .k1_k9.k1_lq.k1_lo .k1_ex {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  bottom: 25px;
}

.k1_k3 .k1_k9.k1_lq.k1_lo .k1_ex li:last-child {
  border-bottom: 0;
}

.k1_k3 .k1_k9.k1_lq.k1_lo .k1_ex li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.k1_k3 .k1_k9.k1_lq.k1_lo .k1_ex li:first-child a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.k1_k3 .k1_ls {
  color: #fe6c5a;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  position: relative;
  top: -14px;
}

.k1_k3 .k1_g5 .k1_br {
  border-color: #fe6c5a;
}

:-ms-input-placeholder {
  color: #282828;
  font-size: 12px;
}

::placeholder {
  color: #282828;
  font-size: 12px;
}

.lu_h2 {
  text-align: center;
}

.lu_h2 h1 {
  color: #676c67;
  font-size: 22px;
  font-weight: 500;
  margin-top: 0;
}

.lu_h2 .lu_m {
  background-color: #fff;
  border: 2px solid #d9f6f9;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
  margin: 40px auto 0;
  padding: 60px;
  width: 470px;
}

.lu_h2 .lu_lw {
  color: #282828;
}

.lu_h2 button {
  margin-top: 1em;
  padding: 0;
  width: 170px;
}

.cw_bv {
  color: #fe6c5a;
  display: block;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 13px auto;
}

.cw_bv a {
  text-decoration: underline;
}

.cw_bv i {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}

.cw_bv .cw_cy {
  display: inline-block;
  line-height: 1.71;
}

.cw_bv.cw_c0 {
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
}

.cw_bv .cw_c2 {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 35px;
  left: 30px;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 10px;
  vertical-align: middle;
  width: 35px;
}

.cw_bv .cw_c2 img {
  margin-top: 7px;
}

.cw_bv .cw_c4 {
  display: inline-block;
  position: absolute;
  right: 10px;
}

.cw_bv .cw_c4 button {
  border: 0;
  height: 30px;
  margin: 0;
  min-width: 30px;
  padding: 0;
  width: 30px;
}

.ly_l0 input[type='file'] {
  display: none;
}

.ly_l0 .ly_l2 {
  background-color: transparent;
  border: 1px solid #0c3970;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0;
  width: 100%;
}

.ly_l0 .ly_l4 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 36px;
  padding: 5px;
  width: 70%;
}

.ly_l0 .ly_l4 div {
  opacity: 0.5;
  overflow: hidden;
  padding: inherit;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ly_l0 .ly_l6 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: 0;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 36px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30%;
}

.l8_ma {
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.l8_ma > div {
  margin: 20px 0;
}

.mc_mf,
.mc_mh {
  text-align: center;
}

.mc_mf img,
.mc_mh img {
  border-radius: 50%;
  display: inline-block;
  height: 120px;
  margin: 26px 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 120px;
}

.mc_mh > img {
  border: 1px solid #0ac8b4;
}

.mj_ml {
  background-color: rgba(155, 155, 155, 0.5);
  border-radius: 14px;
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  overflow-x: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.mj_ml .mj_mn {
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 50px 0;
  width: 100%;
  z-index: 11;
}

.mj_ml .mj_mp {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 520px;
  min-height: 300px;
  width: 90%;
}

.mj_ml .mj_mp.mj_mr {
  border: 1px solid transparent;
  border-radius: 20px;
}

.mj_ml .mj_mp.mj_mt {
  max-width: 720px;
}

.mj_ml .mj_mv {
  box-sizing: border-box;
  color: #000;
  font-size: 18px;
  padding: 20px 29px 20px;
  position: relative;
  text-align: left;
  width: 100%;
}

.mj_ml .mj_mv.mj_mr {
  border: 1px solid transparent;
  border-radius: 20px;
}

.mj_ml .mj_mv h1 {
  font-family: "Agency", sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.mj_ml .mj_mv .mj_c4 {
  background-color: transparent;
  border: 0;
  display: inline-block;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 10px;
  width: 40px;
}

.mj_ml .mj_mx {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  padding: 3px 30px 20px;
  text-align: left;
}

.mj_ml .mj_mz {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 30px;
}

.mj_ml .mj_mz.mj_mr {
  border: 1px solid transparent;
  border-radius: 20px;
}

.mj_ml .mj_mz.mj_m1 {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mj_ml .mj_mz button {
  min-width: 120px;
}

.mj_ml.mj_m3 .mj_mx {
  margin-top: 20px;
}

.mj_ml.modal-enter .mj_m5 {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease-out;
}

.mj_ml.modal-enter-active .mj_m5 {
  opacity: 1;
  transform: scale(1);
}

.mj_ml.modal-leave .mj_m5 {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease-out;
}

.mj_ml.modal-leave-active .mj_m5 {
  opacity: 0;
  transform: scale(0.5);
}

.no-scroll {
  height: 100%;
  overflow: hidden;
}

.nk_nm .nk_g5,
.nk_nm .nk_cq {
  margin: 0;
}

.nk_nm .nk_g5 > span,
.nk_nm .nk_cq > span {
  padding-left: 6px;
}

.nk_nm .nk_m {
  margin: auto;
}

.no_nq {
  display: inline-block;
  padding: .5em 0;
}

.no_nq button {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  color: #282828;
  font-family: "Agency", sans-serif;
  height: 25px;
  line-height: 1em;
  margin: 0 5px 0 0;
  min-width: auto;
  padding: 0;
  text-transform: none;
  width: 25px;
}

.no_nq button.no_fk {
  background-color: #0068aa;
  color: #fff;
  cursor: not-allowed;
}

.no_nq button.no_fk:hover {
  background-color: #0068aa;
}

.no_nq button:hover {
  background-color: #0068aa;
  color: #fff;
}

.no_nq .no_ns i,
.no_nq .no_nu i {
  color: #3b3f3b;
  font-size: 15px;
  top: 2px;
}

.no_nq .no_ns.no_nw i, .no_nq .no_ns.no_ny i,
.no_nq .no_nu.no_nw i,
.no_nq .no_nu.no_ny i {
  color: #979797;
}

.no_nq .no_ns.no_nw:hover, .no_nq .no_ns.no_ny:hover,
.no_nq .no_nu.no_nw:hover,
.no_nq .no_nu.no_ny:hover {
  background-color: transparent;
  cursor: not-allowed;
}

.n0_n2 {
  height: 45px;
  margin-top: 12px;
  width: 105px;
}

.n0_n2 div > div {
  border: 0;
}

.n4_n2 {
  padding: 0 !important;
}

.n4_n2 .n4_n6 {
  -ms-flex-align: center;
  align-items: center;
  border: none;
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  gap: 3px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: normal;
  max-height: 20px;
  min-height: 20px;
  min-width: 113px;
  width: 100%;
}

.n4_n2 .n4_n6.n4_kj {
  background-color: #0ac8b4;
}

.n4_n2 .n4_n6.n4_kl {
  background-color: #fe6c5a;
}

.n4_n2 .n4_n6.n4_n8 {
  background-color: #fa6c5a;
}

.n4_n2 .n4_n6.n4_oa {
  background-color: #b61701;
}

.n4_n2 .n4_n6.n4_oc {
  background-color: #fbbc06;
}

.n4_n2 .n4_n6.n4_of {
  background-color: #ff432a;
}

.n4_n2 .n4_n6.n4_oh {
  background-color: #4c5da2;
}

.n4_n2 .n4_n6.n4_fb {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.n4_n2 .n4_n6 .n4_k7 {
  color: #fff;
}

.n4_n2 .n4_ex {
  background-color: #fff;
  font-size: 12px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.n4_n2 .n4_ex ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.n4_n2 .n4_ex li {
  border-left: 2px solid #0c3970;
  border-right: 2px solid #0c3970;
  cursor: pointer;
  padding: 4px;
}

.n4_n2 .n4_ex li button {
  all: unset;
  overflow: inherit;
  width: 90%;
}

.n4_n2 .n4_ex li:hover {
  background-color: #edf7f8;
}

.n4_n2 .n4_ex li:last-child {
  border-bottom: 2px solid #0c3970;
}

@media screen and (max-width: 1023px) {
  .oj_ol {
    padding: 0;
  }
}

.oj_ol header {
  background-color: #edf7f8;
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 1em;
  padding: 45px 70px 45px 60px;
}

.oj_ol header h2 {
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  margin: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.oj_ol header .oj_on {
  font-size: 26px;
  font-weight: 700;
  left: 20px;
  position: absolute;
  top: 45px;
  width: 26px;
}

.oj_ol header .oj_on i {
  position: absolute;
  top: 0px;
}

.oj_ol header .oj_on i:first-child {
  color: #0068aa;
  top: 2px;
}

.oj_ol header .oj_op {
  height: 50px;
  margin: 0;
  position: absolute;
  right: 20px;
  width: 180px;
}

.oj_ol header .oj_or {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 16px;
}

.oj_ol.oj_ev header {
  background-color: #f7fdfe;
}

@media screen and (max-width: 480px) {
  .oj_ol header {
    padding: 25px 20px 25px 39px;
  }
  .oj_ol header .oj_on {
    top: 25px;
    left: 5px;
  }
}

.oj_ot {
  font-size: 14px;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .oj_ot {
    padding: 25px 20px 25px 39px;
  }
}

.oj_ov {
  padding: 10px 0;
}

.oj_ov .oj_ox {
  color: rgba(59, 63, 59, 0.75);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
}

.oz_o1 + .oz_o1 {
  margin-top: 1em;
}

.oz_o1 label {
  -ms-flex-align: baseline;
  align-items: baseline;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
}

.oz_o1 input {
  opacity: 0;
}

.oz_o1 span {
  color: #000;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  vertical-align: middle;
}

.oz_o1.oz_fk > label > span {
  color: #00b29f;
}

.oz_o1.oz_in .oz_kp {
  border-color: rgba(0, 178, 159, 0.7);
  box-shadow: 0 0 4px 2px rgba(0, 178, 159, 0.5);
}

.oz_o1 .oz_kp {
  border: 1px solid #0c3970;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 10px 0 0;
  position: relative;
  transition: border-color 0.2s ease;
  vertical-align: middle;
  width: 20px;
}

.oz_o1 .oz_kp::before {
  background-color: #00b29f;
  border-radius: 50%;
  color: #00b29f;
  content: '';
  display: block;
  height: 12px;
  opacity: 0;
  position: absolute;
  right: 3px;
  top: 3px;
  transform: scale(0);
  transition: opacity .2s ease, transform .2s ease;
  width: 12px;
}

.oz_o1 .oz_kp:hover, .oz_o1 .oz_kp.oz_fk {
  border-color: #00b29f;
}

.oz_o1 .oz_kp.oz_fk::before {
  opacity: 1;
  transform: scale(1);
}

.oz_o1.oz_hy .oz_kp {
  height: 30px;
  width: 30px;
}

.oz_o1.oz_hy .oz_kp::before {
  height: 20px;
  right: 3px;
  top: 3px;
  width: 20px;
}

.oz_o1.oz_kn {
  opacity: 0.6;
}

.oz_o1.oz_kn label {
  cursor: not-allowed;
}

.oz_o1.oz_kn .oz_kp {
  cursor: not-allowed;
}

.oz_o1.oz_kn .oz_kp:hover {
  border-color: #0c3970;
}

.oz_o1.oz_kn .oz_kp.oz_fk {
  border-color: #00b29f;
}

.o7_o9 {
  background-color: #edf7f8;
  background-image: none;
  border-radius: 5px;
  border: solid 1px #676c67;
  color: #282828;
  display: inline-block;
  height: 45px;
  margin-bottom: 10px;
  min-width: 180px;
  outline: 0;
  padding: 0 20px;
  text-align: left;
  transition: background-color .2s ease, color .2s ease, border .2s ease, box-shadow .2s ease;
  vertical-align: middle;
  white-space: nowrap;
}

.o7_o9:hover, .o7_o9:focus, .o7_o9.o7_in {
  color: #282828;
  text-decoration: none;
}

.o7_o9.o7_it {
  width: 100%;
}

.o7_o9.o7_kn {
  cursor: not-allowed;
  opacity: .6;
  pointer-events: none;
}

.o7_o9.o7_kn select {
  cursor: not-allowed;
}

.o7_o9 .o7_pb label {
  display: block;
  text-transform: uppercase;
}

.o7_o9 select {
  -moz-appearance: menulist-button;
  appearance: menulist-button;
  cursor: pointer;
  height: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 3;
}

.o7_o9 i {
  position: absolute;
  right: 20px;
  top: 14px;
}

.o7_o9 .o7_pe {
  display: block;
  height: 100%;
  line-height: 3;
  margin: 0 25px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 0;
}

.o7_o9.o7_lq {
  background-color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  color: #0c3970;
}

.pg_ir {
  animation: pg_pi 2.4s linear infinite;
}

@keyframes pg_pi {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pg_pk {
  animation: pg_pm 2.4s ease-in-out infinite, pg_po 9.6s ease-in-out infinite;
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
}

.pg_pq {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 200px;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100%;
  padding: 20px 0 10px;
}

.pg_pq .pg_m {
  margin: 20px 0 10px;
}

@keyframes pg_po {
  0% {
    stroke: #ffe696;
  }
  25% {
    stroke: #cbb1f6;
  }
  50% {
    stroke: #0ac8b4;
  }
  75% {
    stroke: #00b29f;
  }
  100% {
    stroke: #0068aa;
  }
}

@keyframes pg_pm {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(360deg);
  }
}

.ps_pu {
  display: inline-block;
  position: relative;
}

.ps_pu span {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.ps_pu .ps_pw {
  display: inline-block;
  height: 14px;
  vertical-align: middle;
}

.ps_pu .ps_py {
  background-color: #676c67;
  border-radius: 14px;
  cursor: pointer;
  display: inline-block;
  height: 14px;
  margin: 0 0.5em;
  position: relative;
  width: 36px;
}

.ps_pu .ps_p0 {
  background-color: #282828;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  left: -1px;
  position: absolute;
  top: -3px;
  transition: left .3s ease, background-color .2s ease;
  vertical-align: middle;
  width: 20px;
}

.ps_pu.ps_fk .ps_p0 {
  background-color: #0068aa;
  left: 20px;
}

.ps_pu.ps_fk .ps_p2 {
  color: #0068aa;
}

.ps_pu.ps_in .ps_p0 {
  border-color: rgba(0, 104, 170, 0.7);
  box-shadow: 0 0 4px 2px rgba(0, 104, 170, 0.8);
}

.ps_pu.ps_kn {
  opacity: 0.6;
}

.ps_pu input {
  opacity: 0;
}

.p4_p6 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin: 20px 0 0;
  width: 100%;
}

.p4_p6.p4_p8 tbody tr {
  cursor: pointer;
}

.p4_p6.p4_p8 tbody tr:hover {
  z-index: 1;
}

.p4_qa {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  width: 100%;
}

.p4_qa td {
  display: -ms-flexbox;
  display: flex;
  padding: 30px 10px;
  padding-right: 10px;
  vertical-align: middle;
}

.p4_qa td:first-child {
  padding-left: 20px;
}

.p4_qa td:last-child {
  padding-right: 20px;
}

.p4_qa td > div {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p4_qa td.p4_qc {
  width: 80px;
}

.p4_qf,
.p4_qh {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  margin-top: 0;
  text-align: left;
  width: 100%;
}

.p4_qf tr,
.p4_qh tr {
  background-color: #f5f6fa;
  border: 0;
  border-radius: 10px;
  width: 100%;
}

.p4_qf td,
.p4_qh td {
  padding-bottom: 10px;
  padding-top: 10px;
  text-transform: uppercase;
}

.p4_qf {
  height: 45px;
}

.p4_qj {
  display: block;
}

.p4_qj tr {
  background-color: #fff;
  border-radius: 2px;
  height: 60px;
  min-height: 60px;
  transition: box-shadow 0.3s ease, background-color 0.4s ease;
  width: 100%;
}

.p4_qj tr.p4_ql {
  background-color: rgba(255, 36, 0, 0.3) !important;
}

.p4_qj tr.p4_qn {
  border-color: #ff432a !important;
}

.p4_qj td {
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  color: #3b3f3b;
}

.p4_qp {
  background-color: #fff;
  font-size: 14px;
  margin-top: 0;
}

.p4_qp button {
  background-color: transparent;
  border: 0;
  color: #3b3f3b;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  max-width: calc(100% - 10px);
  overflow: hidden;
  padding-left: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p4_qp button:hover {
  text-decoration: none;
}

.p4_qp .p4_qr {
  cursor: pointer;
}

.p4_qp .p4_qr .p4_qt,
.p4_qp .p4_qr .p4_qv {
  color: #0c3970;
  font-size: 12px;
  margin-left: 2px;
}

.p4_qp .p4_qr .p4_qt {
  vertical-align: top;
}

.p4_qp .p4_qr .p4_qv {
  vertical-align: text-top;
}

.p4_qp .p4_qr img {
  width: 8px;
  height: 12px;
}

.p4_qp .p4_qx {
  color: #0c3970;
}

.p4_qp .p4_qz {
  cursor: default;
}

.p4_q1 {
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
}

.q3_q7 {
  display: block;
}

.q3_q7 label {
  color: #3b3f3b;
  display: block;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  padding-bottom: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.q3_q7.q3_kn {
  opacity: 0.8;
  pointer-events: none;
}

.q3_q7 + .q3_q7 {
  margin-top: 20px;
}

.q3_q9 .q3_q5 i {
  color: #fe6c5a;
}

.q3_rb .q3_q5 i {
  color: #0c3970;
}

.q3_re .q3_q5 i {
  color: #0ac8b4;
}

.q3_rg {
  border-collapse: separate;
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
}

.q3_rg .q3_q5 {
  color: #979797;
  font-size: 16px;
  line-height: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.q3_rg .q3_q5:first-child {
  left: 14px;
}

.q3_rg .q3_q5:last-child {
  right: 14px;
}

.q3_rg.q3_ri .q3_rk {
  padding-right: 45px;
}

.q3_rg.q3_rm .q3_rk {
  padding-left: 45px;
}

.q3_rg.q3_ro .q3_rk {
  padding-right: 35px;
}

.q3_rg.q3_rq .q3_rk {
  padding-left: 35px;
}

.q3_rk {
  background-color: #fff;
  border: solid 1px #cdcfd6;
  border-radius: 5px;
  box-sizing: border-box;
  color: #282828;
  display: block;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  outline: 0;
  padding: 11px 13px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.q3_rk:focus, .q3_rk:active, .q3_rk.q3_fk {
  border-color: #0ac8b4;
}

.q3_rk[type='number']::-webkit-outer-spin-button, .q3_rk[type='number']::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.q3_rk:disabled {
  background-color: #e8eae8;
  border-color: #676c67;
}

.q3_rk:-ms-input-placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

.q3_rk::placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

.q3_rk.q3_kv {
  background-color: #f5f6fa;
}

.q3_rk.q3_kv:disabled {
  background-color: #f5f6fa;
  border: 0;
}

.q3_rk.q3_rs {
  height: 45px;
  z-index: 11;
}

.q3_ru {
  color: #fe6c5a;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  position: relative;
  top: 0;
}

.q3_g5 label {
  color: #fe6c5a;
}

.q3_g5 .q3_rk {
  border-color: #fe6c5a;
}

input::input-placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

input:-ms-input-placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

input::placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

.rw_r0 {
  display: block;
}

.rw_r0 label {
  color: #3b3f3b;
  display: block;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  padding-bottom: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.rw_r0.rw_kn {
  opacity: 0.8;
  pointer-events: none;
}

.rw_r0.rw_r2 {
  opacity: 0.8;
  pointer-events: none;
}

.rw_r0 + .rw_r0 {
  margin-top: 20px;
}

.rw_r0.rw_r4 {
  margin-top: 0;
}

.rw_r0.rw_kv {
  opacity: 1;
}

.rw_q9 .rw_ry i {
  color: #fe6c5a;
}

.rw_rb .rw_ry i {
  color: #0c3970;
}

.rw_re .rw_ry i {
  color: #0ac8b4;
}

.rw_r6 {
  border-collapse: separate;
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
}

.rw_r6 .rw_ry {
  color: #979797;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.rw_r6 .rw_ry:first-child {
  left: 14px;
}

.rw_r6 .rw_ry:last-child {
  right: 14px;
}

.rw_r6.rw_ri .rw_kz {
  padding-right: 45px;
}

.rw_r6.rw_rm .rw_kz {
  padding-left: 45px;
}

.rw_r6.rw_ro .rw_kz {
  padding-right: 35px;
}

.rw_r6.rw_rq .rw_kz {
  padding-left: 35px;
}

.rw_kz {
  background-color: #fff;
  border: solid 1px #cdcfd6;
  border-radius: 5px;
  box-sizing: border-box;
  color: #282828;
  display: block;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  outline: 0;
  padding: 11px 13px;
  transition: border-color 0.2s ease;
  width: 100%;
}

.rw_kz:focus, .rw_kz:active, .rw_kz.rw_fk {
  border-color: #0ac8b4;
}

.rw_kz[type='number']::-webkit-outer-spin-button, .rw_kz[type='number']::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.rw_kz:disabled {
  background-color: #e8eae8;
  border-color: #676c67;
}

.rw_kz.rw_kv:disabled {
  background-color: #f5f6fa;
  border: 0;
}

.rw_ls {
  color: #fe6c5a;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  position: relative;
  top: 0;
}

.rw_g5 label {
  color: #fe6c5a;
}

.rw_g5 .rw_kz {
  border-color: #fe6c5a;
}

.rw_g5 .rw_ry i {
  color: #fe6c5a;
}

input::input-placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

input:-ms-input-placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

input::placeholder {
  color: #989898;
  font-family: "Inter Light", sans-serif;
}

.time_picker_container {
  position: relative;
}

.time_picker_preview {
  height: 50px;
}

.time_picker_preview:not(.disabled):active, .time_picker_preview:not(.disabled).active {
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.08);
}

.time_picker_preview.disabled {
  cursor: not-allowed;
}

.preview_container {
  position: absolute;
  left: 50%;
  height: 50px;
  line-height: 50px;
  padding-left: 30px;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

.preview_container.without_icon {
  padding-right: 30px;
}

.preview_container svg {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 12px;
  left: 0;
}

.react_times_button {
  user-select: none;
  position: relative;
  cursor: pointer;
  color: #343434;
  border-radius: 2px;
  background-color: #fff;
  transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, .15);
  -moz-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, .15);
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, .15);
}

.react_times_button.pressDown {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
}

.react_times_button.pressDown .wrapper {
  transform: translateY(1px);
}

.react_times_button .wrapper {
  transform: translateY(0);
  height: 100%;
}

.modal_container {
  user-select: none;
  cursor: default;
  position: absolute;
  width: 100%;
  transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #fff;
  border-radius: 2px;
  top: 100%;
  left: 0;
  box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.2);

  opacity: 0;
  z-index: -1;
  visibility: hidden;
  backface-visibility: hidden;
  transform: scale(0.7) translateY(20px);
  -ms-transform: scale(0.7) translateY(20px);
  -moz-transform: scale(0.7) translateY(20px);
  -o-transform: scale(0.7) translateY(20px);
  -webkit-transform: scale(0.7) translateY(20px);
}

.outside_container.active .modal_container {
  opacity: 1;
  z-index: 2;
  visibility: visible;
  transform: scale(1) translateY(20px);
  -ms-transform: scale(1) translateY(20px);
  -moz-transform: scale(1) translateY(20px);
  -o-transform: scale(1) translateY(20px);
  -webkit-transform: scale(1) translateY(20px);
}
.time_picker_modal_container {
}

.time_picker_modal_header,
.time_picker_modal_footer,
.timezone_picker_modal_header {
  height: 75px;
  line-height: 75px;
  text-align: center;
  margin-bottom: 30px;
  background-color: #3498db;
  color: #FFFFFF;
  font-size: 2.5em;
  border-radius: 2px 2px 0 0;
}

.timezone_picker_modal_header {
  line-height: initial;
}

.time_picker_header_delivery {
  opacity: 0.5;
}
.time_picker_modal_header .time_picker_header {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.time_picker_modal_header .time_picker_header.active {
  cursor: default;
  opacity: 1;
}
.time_picker_modal_header .time_picker_header:hover {
  opacity: 1;
}
.time_picker_modal_header .time_picker_header.meridiem {
  font-size: 0.8em;
}

.time_picker_modal_footer {
  font-size: 1em;
  margin-bottom: 0;
}

.time_picker_modal_footer.clickable {
  cursor: pointer;
}

.picker_container {
  width: 260px;
  height: 260px;
  margin: 0 20px 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  position: relative;
}

.picker_pointer_container {
  opacity: 1;
  transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.picker_pointer_container.animation {
  opacity: 0;
  transform: scale3d(0.85, 0.85, 1);
  -o-transform: scale3d(0.85, 0.85, 1);
  -ms-transform: scale3d(0.85, 0.85, 1);
  -moz-transform: scale3d(0.85, 0.85, 1);
  -webkit-transform: scale3d(0.85, 0.85, 1);
}

.picker_center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3498db;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.picker_point {
  left: 50%;
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}
.picker_point.point_outter {
  top: 5px;
  color: #5d5d5d;
  transform-origin: center 125px;
  -o-transform-origin: center 125px;
  -ms-transform-origin: center 125px;
  -moz-transform-origin: center 125px;
  -webkit-transform-origin: center 125px;
}

.picker_point.point_inner {
  top: 40px;
  color: #a7a7a7;
  transform-origin: center 90px;
  -o-transform-origin: center 90px;
  -ms-transform-origin: center 90px;
  -moz-transform-origin: center 90px;
  -webkit-transform-origin: center 90px;
}

.picker_minute_point {
  left: 50%;
  cursor: pointer;
  position: absolute;
  top: 15px;
  color: #5d5d5d;
  transform-origin: center 115px;
  -o-transform-origin: center 115px;
  -ms-transform-origin: center 115px;
  -moz-transform-origin: center 115px;
  -webkit-transform-origin: center 115px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #3498db;
}

.picker_pointer {
  position: absolute;
  width: 4px;
  height: 110px;
  left: 50%;
  top: 20px;
  background-color: #3498db;
  transform-origin: center bottom;
}

.picker_pointer.animation {
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.picker_pointer .pointer_drag {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: -17.5px;
  left: -15.5px;
  background-color: #3498db;
  color: #fff;
  text-align: center;
  line-height: 35px;
}

.picker_pointer .pointer_drag.draggable {
  cursor: move;
}

.buttons_wrapper {
  float: right;
  margin-top: 5px;
}

.time_picker_button {
  padding: 5px 10px;
  background-color: transparent;
  display: inline-block;
  color: #949494;
  opacity: 0.6;
  transition: opacity 0.2s;
  box-shadow: none;
}

.time_picker_button:hover {
  opacity: 1;
}

.timezone_picker_modal_container {
  user-select: none;
  cursor: default;
  position: absolute;
  z-index: 3;
  background-color: #fff;
  border-radius: 2px;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12), 0 0 4px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12), 0 0 4px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12), 0 0 4px 0 rgba(0, 0, 0, 0.08);
}

.timezone_picker_modal_container-enter {
  right: -100%;
  opacity: 0.5;
}

.timezone_picker_modal_container-enter.timezone_picker_modal_container-enter-active {
  right: 0;
  opacity: 1;
  transition: right 100ms ease-out, opacity 100ms ease-out;
  -ms-transition: right 100ms ease-out, opacity 100ms ease-out;
  -moz-transition: right 100ms ease-out, opacity 100ms ease-out;
  -o-transition: right 100ms ease-out, opacity 100ms ease-out;
  -webkit-transition: right 100ms ease-out, opacity 100ms ease-out;
}

.timezone_picker_modal_container-exit {
  right: 0;
  opacity: 1;
}

.timezone_picker_modal_container-exit.timezone_picker_modal_container-exit-active {
  right: -100%;
  opacity: 0.5;
  transition: right 100ms ease-in, opacity 100ms ease-in;
  -ms-transition: right 100ms ease-in, opacity 100ms ease-in;
  -moz-transition: right 100ms ease-in, opacity 100ms ease-in;
  -o-transition: right 100ms ease-in, opacity 100ms ease-in;
  -webkit-transition: right 100ms ease-in, opacity 100ms ease-in;
}

.timezone_picker_modal_header {
  font-size: 1em;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.timezone_picker_header_title {
  flex: 1;
  text-align: left;
}

.timezone_picker_modal_header span.icon {
  height: 25px;
  width: 50px;
}

.timezone_picker_modal_header svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  cursor: pointer;
}

.timezone_picker_container {
  min-width: 260px;
  min-height: 300px;
  display: flex;
  margin: 0 20px 20px;
  position: relative;
}

.timezone_picker_search {
  padding: 0 10px;
  position: relative;
  width: 100%;
}

.timezone_picker_search input {
  box-sizing: border-box;
  margin-bottom: 1%;
  padding: 10px 10px;
  width: 100%;
  height: 100%;

  font-size: 0.9rem;
  line-height: 2;
  border: none;
  border-bottom: 1px solid #adb5bd;
  outline: none;
  border-radius: 2px;
  transition: border .2s;
}

.timezone_picker_search input::-webkit-input-placeholder,
.timezone_picker_search input::-moz-input-placeholder,
.timezone_picker_search input:-ms-input-placeholder,
.timezone_picker_search input:-moz-input-placeholder {
  color: #c6cace;
}

.timezone_picker_search .bootstrap-typeahead-input-main {
  color: #757575;
}

.timezone_picker_search input:focus {
  color: #4b4b4b;
  border-bottom: 1px solid #3498db;
}

/**
* The react-bootstrap-typeahead library sort of assumes bootstrap is already in use for styling
* so it refers to some bootstrap classes.  We don't need to use bootstrap just for a few classes so
* the relevant styles have been copied here
*/
.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.dark .time_picker_preview {
}

.dark .time_picker_preview .preview_container svg {
}

.dark .time_picker_preview.active {
}

.dark .time_picker_modal_container {
  background-color: #4a4a4a;
}

.dark .time_picker_modal_header,
.dark .time_picker_modal_footer {
  background-color: #343434;
}

.dark .time_picker_modal_header .time_picker_header.active,
.dark .time_picker_modal_header .time_picker_header:hover {
}

.dark .picker_container {
  background-color: #4a4a4a;
}

.dark .picker_container .picker_center,
.dark .picker_container .picker_pointer,
.dark .picker_container .picker_pointer .pointer_drag{
  background-color: #F4511E;
}

.dark .picker_minute_point,
.dark .picker_point.point_outter {
  color: #fff;
}

.dark .picker_point.point_inner {
  color: #D0D0D0;
}

.picker_center {
  background-color: #3f80be;
}

.picker_pointer {
  background-color: #3f80be;

  .pointer_drag {
    background-color: #3f80be;
  }
}

.preview_container {
  padding-left: 0;
  left: 35%;
}

.preview_container.without_icon {
  padding-right: 0;
}

.time_picker_modal_header {
  background-color: #3f80be;
}

.time_picker_modal_container {
  transform: scale(0.8);
  top: -20px;
  left: -30px;
}

.time_picker_preview {
  color: #3b3f3b;
  height: 45px;
  box-shadow: none;
  border: 1px solid #d4d4d6;
  margin-top: 7px;
}

.time_picker_preview:hover {
  box-shadow: none;
}


h1.sc_a0 {
  font-size: 48px;
  font-weight: 700;
}

h2.sc_a0 {
  font-size: 32px;
  font-weight: 700;
}

h3.sc_a0 {
  font-size: 24px;
  font-weight: 500;
}

h4.sc_a0 {
  font-size: 18px;
  font-weight: 500;
}

.sc_a0 {
  display: inline-block;
  font-family: "Agency", sans-serif;
  margin: 0;
  padding: 0;
}

.sc_a0.sc_sf {
  color: #3b3f3b;
}

.sc_a0.sc_g3 {
  color: #0c3970;
}

.sc_a0.sc_sh::after {
  background-color: #3b3f3b;
  content: '';
  display: block;
  height: 4px;
  margin: 10px 0 0 2px;
  width: 70px;
}

.sc_a0.sc_sh .sc_sj {
  display: inline-block;
}

.sc_a0.sc_sh.sc_g3::after {
  background-color: #0c3970;
}

.sc_a0 .sc_sl {
  display: inline-block;
  margin-right: 22px;
  max-width: 37px;
  vertical-align: middle;
}

.__react_component_tooltip {
  border-radius: 3px;
  display: inline-block;
  font-size: 12px;
  left: -999em;
  line-height: 1.4;
  opacity: 0;
  padding: 8px 12px;
  pointer-events: none;
  position: fixed;
  top: -999em;
  transition: opacity 0.2s ease-out;
  visibility: hidden;
  z-index: 999;
}

.__react_component_tooltip::before, .__react_component_tooltip::after {
  content: '';
  height: 0;
  position: absolute;
  width: 0;
}

.__react_component_tooltip.show {
  margin-left: 0;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.__react_component_tooltip.-dark {
  background-color: #222;
  color: #fff;
}

.__react_component_tooltip.-dark.place-top::after {
  border-top-color: #222;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.-dark.place-bottom::after {
  border-bottom-color: #222;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.-dark.place-left::after {
  border-left-color: #222;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.-dark.place-right::after {
  border-right-color: #222;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.-dark.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.-dark.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.-dark.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.-dark.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.-dark.border.place-right::before {
  border-right: 8px solid #fff;
}

.__react_component_tooltip.type-success {
  background-color: #8dc572;
  color: #fff;
}

.__react_component_tooltip.type-success.place-top::after {
  border-top-color: #8dc572;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.type-success.place-bottom::after {
  border-bottom-color: #8dc572;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.type-success.place-left::after {
  border-left-color: #8dc572;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.type-success.place-right::after {
  border-right-color: #8dc572;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.type-success.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.type-success.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.type-success.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.type-success.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.type-success.border.place-right::before {
  border-right: 8px solid #fff;
}

.__react_component_tooltip.type-warning {
  background-color: #fffcf2;
  color: #282828;
}

.__react_component_tooltip.type-warning.place-top::after {
  border-top-color: #fffcf2;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.type-warning.place-bottom::after {
  border-bottom-color: #fffcf2;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.type-warning.place-left::after {
  border-left-color: #fffcf2;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.type-warning.place-right::after {
  border-right-color: #fffcf2;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.type-warning.border {
  border: 2px solid #fee696 !important;
}

.__react_component_tooltip.type-warning.border.place-top::before {
  border-top: 8px solid #fee696;
}

.__react_component_tooltip.type-warning.border.place-bottom::before {
  border-bottom: 8px solid #fee696;
}

.__react_component_tooltip.type-warning.border.place-left::before {
  border-left: 8px solid #fee696;
}

.__react_component_tooltip.type-warning.border.place-right::before {
  border-right: 8px solid #fee696;
}

.__react_component_tooltip.type-error {
  background-color: #be6464;
  color: #fff;
}

.__react_component_tooltip.type-error.place-top::after {
  border-top-color: #be6464;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.type-error.place-bottom::after {
  border-bottom-color: #be6464;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.type-error.place-left::after {
  border-left-color: #be6464;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.type-error.place-right::after {
  border-right-color: #be6464;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.type-error.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.type-error.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.type-error.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.type-error.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.type-error.border.place-right::before {
  border-right: 8px solid #fff;
}

.__react_component_tooltip.type-info {
  background-color: #edf7f8;
  color: #282828;
}

.__react_component_tooltip.type-info.place-top::after {
  border-top-color: #edf7f8;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.type-info.place-bottom::after {
  border-bottom-color: #edf7f8;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.type-info.place-left::after {
  border-left-color: #edf7f8;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.type-info.place-right::after {
  border-right-color: #edf7f8;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.type-info.border {
  border: 2px solid #0068aa !important;
}

.__react_component_tooltip.type-info.border.place-top::before {
  border-top: 8px solid #0068aa;
}

.__react_component_tooltip.type-info.border.place-bottom::before {
  border-bottom: 8px solid #0068aa;
}

.__react_component_tooltip.type-info.border.place-left::before {
  border-left: 8px solid #0068aa;
}

.__react_component_tooltip.type-info.border.place-right::before {
  border-right: 8px solid #0068aa;
}

.__react_component_tooltip.type-light {
  background-color: #fff;
  color: #414040;
}

.__react_component_tooltip.type-light.place-top::after {
  border-top-color: #fff;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.type-light.place-bottom::after {
  border-bottom-color: #fff;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.type-light.place-left::after {
  border-left-color: #fff;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.type-light.place-right::after {
  border-right-color: #fff;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.type-light.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.type-light.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.type-light.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.type-light.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.type-light.border.place-right::before {
  border-right: 8px solid #fff;
}

.__react_component_tooltip.place-top {
  margin-top: -10px;
}

.__react_component_tooltip.place-top::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -8px;
  left: 50%;
  margin-left: -10px;
}

.__react_component_tooltip.place-top::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: -6px;
  left: 50%;
  margin-left: -8px;
}

.__react_component_tooltip.place-bottom {
  margin-top: 10px;
}

.__react_component_tooltip.place-bottom::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  left: 50%;
  margin-left: -10px;
  top: -8px;
}

.__react_component_tooltip.place-bottom::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  left: 50%;
  margin-left: -8px;
  top: -6px;
}

.__react_component_tooltip.place-left {
  margin-left: -10px;
}

.__react_component_tooltip.place-left::before {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  margin-top: -5px;
  right: -8px;
  top: 50%;
}

.__react_component_tooltip.place-left::after {
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  margin-top: -4px;
  right: -6px;
  top: 50%;
}

.__react_component_tooltip.place-right {
  margin-left: 10px;
}

.__react_component_tooltip.place-right::before {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  left: -8px;
  margin-top: -5px;
  top: 50%;
}

.__react_component_tooltip.place-right::after {
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  left: -6px;
  margin-top: -4px;
  top: 50%;
}

.__react_component_tooltip .multi-line {
  display: block;
  padding: 2px 0;
  text-align: center;
}

.__react_component_tooltip.highlight {
  background-color: #00b29f;
  border-radius: 0;
  color: #fff;
  font-weight: 100;
  max-width: 300px;
  padding: 18px;
  text-align: justify;
}

.__react_component_tooltip.highlight.place-top::after {
  border-top-color: #00b29f;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.highlight.place-bottom::after {
  border-bottom-color: #00b29f;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.highlight.place-left::after {
  border-left-color: #00b29f;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.highlight.place-right::after {
  border-right-color: #00b29f;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.highlight p.tooltip-content {
  margin-bottom: 0;
}

.__react_component_tooltip.highlight p b,
.__react_component_tooltip.highlight p strong {
  font-weight: bold;
}

.__react_component_tooltip.highlight.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.highlight.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.highlight.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.highlight.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.highlight.border.place-right::before {
  border-right: 8px solid #fff;
}

.__react_component_tooltip.type-upselling {
  background-color: #97c1c5;
  border-radius: 0;
  color: #fff;
  font-weight: 100;
  max-width: 300px;
  padding: 18px;
  text-align: justify;
}

.__react_component_tooltip.type-upselling.place-top::after {
  border-top-color: #97c1c5;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.type-upselling.place-bottom::after {
  border-bottom-color: #97c1c5;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.type-upselling.place-left::after {
  border-left-color: #97c1c5;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.type-upselling.place-right::after {
  border-right-color: #97c1c5;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.type-upselling p.tooltip-content {
  margin-bottom: 0;
}

.__react_component_tooltip.type-upselling p b,
.__react_component_tooltip.type-upselling p strong {
  font-weight: bold;
}

.__react_component_tooltip.type-upselling.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.type-upselling.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.type-upselling.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.type-upselling.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.type-upselling.border.place-right::before {
  border-right: 8px solid #fff;
}

.__react_component_tooltip.status-info {
  background-color: #aeb0b5;
  border-radius: 0;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-weight: 100;
  max-width: 300px;
  padding: 10px;
  text-align: justify;
}

.__react_component_tooltip.status-info.place-top::after {
  border-top-color: #aeb0b5;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.status-info.place-bottom::after {
  border-bottom-color: #aeb0b5;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.status-info.place-left::after {
  border-left-color: #aeb0b5;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.status-info.place-right::after {
  border-right-color: #aeb0b5;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.status-info p.tooltip-content {
  margin-bottom: 0;
}

.__react_component_tooltip.status-info p b,
.__react_component_tooltip.status-info p strong {
  font-weight: bold;
}

.__react_component_tooltip.status-info.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.status-info.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.status-info.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.status-info.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.status-info.border.place-right::before {
  border-right: 8px solid #fff;
}

.__react_component_tooltip.type-primary {
  background-color: #0c3970;
  border-radius: 0;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 100;
  max-width: 300px;
  padding: 10px;
  text-align: justify;
}

.__react_component_tooltip.type-primary.place-top::after {
  border-top-color: #0c3970;
  border-top-style: solid;
  border-top-width: 6px;
}

.__react_component_tooltip.type-primary.place-bottom::after {
  border-bottom-color: #0c3970;
  border-bottom-style: solid;
  border-bottom-width: 6px;
}

.__react_component_tooltip.type-primary.place-left::after {
  border-left-color: #0c3970;
  border-left-style: solid;
  border-left-width: 6px;
}

.__react_component_tooltip.type-primary.place-right::after {
  border-right-color: #0c3970;
  border-right-style: solid;
  border-right-width: 6px;
}

.__react_component_tooltip.type-primary p.tooltip-content {
  margin-bottom: 0;
}

.__react_component_tooltip.type-primary p b,
.__react_component_tooltip.type-primary p strong {
  font-weight: bold;
}

.__react_component_tooltip.type-primary.border {
  border: 2px solid #fff !important;
}

.__react_component_tooltip.type-primary.border.place-top::before {
  border-top: 8px solid #fff;
}

.__react_component_tooltip.type-primary.border.place-bottom::before {
  border-bottom: 8px solid #fff;
}

.__react_component_tooltip.type-primary.border.place-left::before {
  border-left: 8px solid #fff;
}

.__react_component_tooltip.type-primary.border.place-right::before {
  border-right: 8px solid #fff;
}

.sn_sp {
  display: inline-block;
}

.sn_sp .sn_sr {
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  line-height: 1.4;
  max-width: 200px;
  opacity: 0;
  overflow: unset;
  padding: 8px 12px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  transition: opacity 0.2s ease-out;
  visibility: hidden;
  white-space: normal;
  z-index: 10;
}

.sn_sp .sn_sr:after {
  border-style: solid;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.sn_sp .sn_sr.sn_fq:after {
  border-width: 0 12px 12px 12px;
  left: calc(50% - 12px);
  top: -12px;
}

.sn_sp .sn_sr.sn_fq.sn_sf:after {
  border-color: transparent transparent #0068aa transparent;
}

.sn_sp .sn_sr.sn_am {
  left: -100%;
}

.sn_sp .sn_sr.sn_am:after {
  border-width: 12px 0 12px 12px;
  right: -12px;
  top: calc(50% - 12px);
}

.sn_sp .sn_sr.sn_am.sn_sf:after {
  border-color: transparent transparent transparent #0068aa;
}

.sn_sp .sn_sr.sn_st {
  right: -100%;
}

.sn_sp .sn_sr.sn_st:after {
  border-width: 12px 12px 12px 0;
  left: -12px;
  top: calc(50% - 12px);
}

.sn_sp .sn_sr.sn_st.sn_sf:after {
  border-color: transparent #0068aa transparent transparent;
}

.sn_sp .sn_sr.sn_fo:after {
  border-width: 12px 12px 0 12px;
  bottom: -12px;
  left: calc(50% - 12px);
}

.sn_sp .sn_sr.sn_fo.sn_sf:after {
  border-color: #0068aa transparent transparent transparent;
}

.sn_sp .sn_sr.sn_sv {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.sn_sp .sn_sr.sn_sf {
  background-color: #0068aa;
}

.sn_sp .sn_sr i {
  font-size: 18px;
  margin: 0 10px 0 0;
}

.sn_sp:not(.sn_sx):hover .sn_sr {
  opacity: 1;
  visibility: visible;
}

.sz_s1 {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  color: #3b3f3b;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Agency", sans-serif !important;
  font-size: 12px;
  font-weight: normal !important;
  height: 30px;
  line-height: 24px !important;
  padding: 4px;
}

.sz_s1 i {
  margin: auto 3px !important;
}

.sz_s1.sz_s3 {
  background-color: #fdbbb3;
  border-color: #fa6c5a;
  border: 1px solid #fa6c5a;
}

.sz_s1.sz_s3 i {
  color: #fa6c5a;
}

.sz_s1.sz_s5 {
  background-color: #39f5e1;
  border-color: #0ac8b4;
  border: 1px solid #0ac8b4;
}

.sz_s1.sz_s5 i {
  color: #0ac8b4;
}

.sz_s1.sz_s7 {
  background-color: #39f5e1;
  border-color: #0ac8b4;
  border: 1px solid #0ac8b4;
}

.sz_s1.sz_s7 i {
  color: #0ac8b4;
}

.sz_s1.sz_s9 {
  background-color: #fff5ef;
  border-color: #fcba96;
  border: 1px solid #fcba96;
}

.sz_s1.sz_s9 i {
  color: #fcba96;
}

.sz_s1.sz_tb, .sz_s1.sz_te {
  background-color: #fffcf2;
  border-color: #ffe696;
  border: 1px solid #ffe696;
}

.sz_s1.sz_tb i, .sz_s1.sz_te i {
  color: #ffe696;
}

.sz_s1.sz_tg {
  background-color: #079fff;
  border-color: #0068aa;
  border: 1px solid #0068aa;
}

.sz_s1.sz_tg i {
  color: #0068aa;
}

.sz_s1.sz_ti {
  background-color: #fdbbb3;
  border-color: #fa6c5a;
  border: 1px solid #fa6c5a;
}

.sz_s1.sz_ti i {
  color: #fa6c5a;
}

.sz_s1.sz_tk {
  color: #fcba96;
}

.sz_s1.sz_tm, .sz_s1.sz_to {
  background-color: #079fff;
  border-color: #0068aa;
  border: 1px solid #0068aa;
}

.sz_s1.sz_tm i, .sz_s1.sz_to i {
  color: #0068aa;
}

.sz_s1.sz_tq, .sz_s1.sz_ts {
  color: #fa6c5a;
}

.sz_s1.sz_tu {
  background-color: #fff5ef;
  border-color: #fcba96;
  border: 1px solid #fcba96;
}

.sz_s1.sz_tu i {
  color: #fcba96;
}

.sz_s1.sz_tw {
  background-color: #fffcf2;
  border-color: #ffe696;
  border: 1px solid #ffe696;
}

.sz_s1.sz_tw i {
  color: #ffe696;
}

.sz_s1.sz_ty {
  background-color: #079fff;
  border-color: #0068aa;
  border: 1px solid #0068aa;
}

.sz_s1.sz_ty i {
  color: #0068aa;
}

.sz_s1.sz_t0 {
  background-color: #079fff;
  border-color: #0068aa;
  border: 1px solid #0068aa;
}

.sz_s1.sz_t0 i {
  color: #0068aa;
}

.t2_t4 {
  position: relative;
}

.t2_t4 .t2_t6 {
  background: transparent;
  border: 0;
  outline: none;
}

.t2_t4 .t2_t6 .t2_t8 {
  background-color: #fa3d3d;
  border-radius: 6px;
  color: #fff;
  font-size: 10px;
  min-width: 20px;
  padding: 2px 4px;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 10px;
}

.t2_t4 .t2_ua {
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  height: 310px;
  padding: 5px;
  position: absolute;
  right: -2px;
  top: 140%;
  width: 300px;
  z-index: 99;
}

.t2_t4 .t2_ua:before {
  border-color: transparent transparent #fff #fff;
  border: 1em solid #fff;
  box-shadow: -5px 4px 14px -6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  content: '';
  height: 0;
  margin-left: -0.5em;
  position: absolute;
  right: -20px;
  top: 0px;
  transform-origin: 0 0;
  transform: rotate(135deg);
  width: 0;
}

.t2_t4 .t2_ua .t2_uc {
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
  width: 100%;
}

.t2_t4 .t2_ua .t2_uc .t2_uf {
  border: 0;
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 50px;
  outline: none;
  padding: 4px 12px;
  text-align: left;
  width: 100%;
}

.t2_t4 .t2_ua .t2_uc .t2_uf.t2_uh {
  background-color: rgba(10, 200, 180, 0.32);
}

.t2_t4 .t2_ua .t2_uc .t2_uf:not(:first-child) {
  border-top: 1px solid rgba(151, 151, 151, 0.32);
}

.uj_ul {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  color: #fff;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Agency", sans-serif !important;
  font-size: 14px;
  font-weight: normal !important;
  height: 25px;
  line-height: 24px !important;
  padding: 4px 8px;
}

.uj_ul.uj_un {
  background-color: #0ac8b4;
}

.uj_ul.uj_up {
  background-color: #ff8879;
}

.ur_ut {
  padding: 4% 7%;
}

.ur_uv {
  text-align: center;
}

.ur_ux {
  margin: 40px 10px 20px 0px;
}

.ur_uz {
  border-radius: 10px;
  border: solid 12px #f6f8f9;
  font-size: 14px;
  height: 700px;
  margin: 30px auto;
  overflow-y: scroll;
  padding: 29px 37px;
}

.ur_uz .contract {
  font-size: 12px;
}

.ur_uz .headtext {
  text-align: center;
}

.ur_u5 p {
  text-align: justify;
}

.u7_u9 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px;
}

.u7_u9 .u7_vb {
  border-radius: 6px;
  box-shadow: 1px 5px 5px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  font-weight: 700;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.2;
  margin: 5px;
  width: 150px;
}

.u7_u9 .u7_vb span {
  font-size: 10px;
}

.ve_vi {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 165px;
}

.ve_vi > div {
  background-color: #0ac8b4;
  border-radius: 5px;
  margin: 2px;
}

.ve_vi > div:last-child {
  background-color: #aeb0b5 !important;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto !important;
}

.ve_vi > div.ve_vk {
  cursor: pointer;
}

.ve_vi.ve_rs > div {
  height: 11px;
  width: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_rs > div {
    height: 7px;
    width: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_rs > div {
    width: 10px;
  }
}

.ve_vi.ve_rs > div.ve_vm {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_rs > div.ve_vm {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_rs > div.ve_vm {
    height: 10px;
  }
}

.ve_vi.ve_hy > div {
  border-radius: 7px;
  height: 13px;
  width: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_hy > div {
    height: 10px;
    width: 17px;
  }
}

.ve_vi.ve_hy > div.ve_vm {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_hy > div.ve_vm {
    height: 17px;
  }
}

.ve_vi.ve_s9.ve_vo.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_s9.ve_vq.ve_rs div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_s9.ve_vo.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_s9.ve_vq.ve_rs div:nth-child(1).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_s9.ve_vo.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_s9.ve_vq.ve_rs div:nth-child(1).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_s9.ve_vo.ve_hy div:nth-child(1).ve_vg, .ve_vi.ve_s9.ve_vq.ve_hy div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_s9.ve_vo.ve_hy div:nth-child(1).ve_vg, .ve_vi.ve_s9.ve_vq.ve_hy div:nth-child(1).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_s9.ve_vo div:nth-child(1), .ve_vi.ve_s9.ve_vq div:nth-child(1) {
  background-color: #fa6c5a;
}

.ve_vi.ve_s9.ve_vo div:nth-child(1) ~ div, .ve_vi.ve_s9.ve_vq div:nth-child(1) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_s9.ve_vo div:nth-child(1) ~ div:last-child, .ve_vi.ve_s9.ve_vq div:nth-child(1) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_vs.ve_rs div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_vs.ve_rs div:nth-child(1).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_vs.ve_rs div:nth-child(1).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_vs.ve_hy div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_vs.ve_hy div:nth-child(1).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_vs div:nth-child(1) {
  background-color: #0068aa;
}

.ve_vi.ve_vs div:nth-child(1) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_vs div:nth-child(1) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_s3 div {
  background-color: #fa6c5a;
}

.ve_vi.ve_s7.ve_vq.ve_rs div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_s7.ve_vq.ve_rs div:nth-child(3).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_s7.ve_vq.ve_rs div:nth-child(3).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_s7.ve_vq.ve_hy div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_s7.ve_vq.ve_hy div:nth-child(3).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_s7.ve_vq div:nth-child(3) {
  background-color: #fa6c5a;
}

.ve_vi.ve_s7.ve_vq div:nth-child(3) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_s7.ve_vq div:nth-child(3) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_s7.ve_vo.ve_rs div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_s7.ve_vo.ve_rs div:nth-child(1).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_s7.ve_vo.ve_rs div:nth-child(1).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_s7.ve_vo.ve_hy div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_s7.ve_vo.ve_hy div:nth-child(1).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_s7.ve_vo div:nth-child(1) {
  background-color: #fe6c5a;
}

.ve_vi.ve_s7.ve_vo div:nth-child(1) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_s7.ve_vo div:nth-child(1) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_vu.ve_rs div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_vu.ve_rs div:nth-child(2).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_vu.ve_rs div:nth-child(2).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_vu.ve_hy div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_vu.ve_hy div:nth-child(2).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_vu div:nth-child(2) {
  background-color: #ffe696;
}

.ve_vi.ve_vu div:nth-child(2) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_vu div:nth-child(2) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_vw.ve_rs div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_vw.ve_rs div:nth-child(2).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_vw.ve_rs div:nth-child(2).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_vw.ve_hy div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_vw.ve_hy div:nth-child(2).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_vw div:nth-child(2) {
  background-color: #fa6c5a;
}

.ve_vi.ve_vw div:nth-child(2) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_vw div:nth-child(2) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_vy.ve_rs div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_vy.ve_rs div:nth-child(3).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_vy.ve_rs div:nth-child(3).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_vy.ve_hy div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_vy.ve_hy div:nth-child(3).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_vy div:nth-child(3) {
  background-color: #ffe696;
}

.ve_vi.ve_vy div:nth-child(3) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_vy div:nth-child(3) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_v0.ve_rs div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_v0.ve_rs div:nth-child(3).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_v0.ve_rs div:nth-child(3).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_v0.ve_hy div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_v0.ve_hy div:nth-child(3).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_v0 div:nth-child(3) {
  background-color: #0068aa;
}

.ve_vi.ve_v0 div:nth-child(3) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_v0 div:nth-child(3) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_v2.ve_rs div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_v2.ve_rs div:nth-child(4).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_v2.ve_rs div:nth-child(4).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_v2.ve_hy div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_v2.ve_hy div:nth-child(4).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_v2 div:nth-child(4) {
  background-color: #ffe696;
}

.ve_vi.ve_v2 div:nth-child(4) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_v2 div:nth-child(4) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_v4.ve_rs div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_v4.ve_rs div:nth-child(4).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_v4.ve_rs div:nth-child(4).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_v4.ve_hy div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_v4.ve_hy div:nth-child(4).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_v4 div:nth-child(4) {
  background-color: #fa6c5a;
}

.ve_vi.ve_v4 div:nth-child(4) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_v4 div:nth-child(4) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_v6.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_v8.ve_rs div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_v6.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_v8.ve_rs div:nth-child(1).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_v6.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_v8.ve_rs div:nth-child(1).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_v6.ve_hy div:nth-child(1).ve_vg, .ve_vi.ve_v8.ve_hy div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_v6.ve_hy div:nth-child(1).ve_vg, .ve_vi.ve_v8.ve_hy div:nth-child(1).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_v6 div:nth-child(1), .ve_vi.ve_v8 div:nth-child(1) {
  background-color: #fedcc7;
}

.ve_vi.ve_v6 div:nth-child(1) ~ div, .ve_vi.ve_v8 div:nth-child(1) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_v6 div:nth-child(1) ~ div:last-child, .ve_vi.ve_v8 div:nth-child(1) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_ti.ve_rs div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_ti.ve_rs div:nth-child(1).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_ti.ve_rs div:nth-child(1).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_ti.ve_hy div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_ti.ve_hy div:nth-child(1).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_ti div:nth-child(1) {
  background-color: #ff432a;
}

.ve_vi.ve_ti div:nth-child(1) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_ti div:nth-child(1) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tb.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_te.ve_rs div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tb.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_te.ve_rs div:nth-child(1).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tb.ve_rs div:nth-child(1).ve_vg, .ve_vi.ve_te.ve_rs div:nth-child(1).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tb.ve_hy div:nth-child(1).ve_vg, .ve_vi.ve_te.ve_hy div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tb.ve_hy div:nth-child(1).ve_vg, .ve_vi.ve_te.ve_hy div:nth-child(1).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tb div:nth-child(1), .ve_vi.ve_te div:nth-child(1) {
  background-color: #ffe696;
}

.ve_vi.ve_tb div:nth-child(1) ~ div, .ve_vi.ve_te div:nth-child(1) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tb div:nth-child(1) ~ div:last-child, .ve_vi.ve_te div:nth-child(1) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tg.ve_rs div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tg.ve_rs div:nth-child(2).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tg.ve_rs div:nth-child(2).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tg.ve_hy div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tg.ve_hy div:nth-child(2).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tg div:nth-child(2) {
  background-color: #0068aa;
}

.ve_vi.ve_tg div:nth-child(2) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tg div:nth-child(2) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tu.ve_rs div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tu.ve_rs div:nth-child(2).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tu.ve_rs div:nth-child(2).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tu.ve_hy div:nth-child(2).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tu.ve_hy div:nth-child(2).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tu div:nth-child(2) {
  background-color: #fcba96;
}

.ve_vi.ve_tu div:nth-child(2) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tu div:nth-child(2) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tk.ve_rs div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tk.ve_rs div:nth-child(3).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tk.ve_rs div:nth-child(3).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tk.ve_hy div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tk.ve_hy div:nth-child(3).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tk div:nth-child(3) {
  background-color: #fcba96;
}

.ve_vi.ve_tk div:nth-child(3) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tk div:nth-child(3) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tm.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_rs div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tm.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_rs div:nth-child(3).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tm.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_rs div:nth-child(3).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tm.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_hy div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tm.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_hy div:nth-child(3).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tm div:nth-child(3), .ve_vi.ve_to div:nth-child(3) {
  background-color: #0068aa;
}

.ve_vi.ve_tm div:nth-child(3) ~ div, .ve_vi.ve_to div:nth-child(3) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tm div:nth-child(3) ~ div:last-child, .ve_vi.ve_to div:nth-child(3) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tq.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_ts.ve_rs div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tq.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_ts.ve_rs div:nth-child(3).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tq.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_ts.ve_rs div:nth-child(3).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tq.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_ts.ve_hy div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tq.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_ts.ve_hy div:nth-child(3).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tq div:nth-child(3), .ve_vi.ve_ts div:nth-child(3) {
  background-color: #fa6c5a;
}

.ve_vi.ve_tq div:nth-child(3) ~ div, .ve_vi.ve_ts div:nth-child(3) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tq div:nth-child(3) ~ div:last-child, .ve_vi.ve_ts div:nth-child(3) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tm.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_wa.ve_rs div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tm.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_wa.ve_rs div:nth-child(3).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tm.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_rs div:nth-child(3).ve_vg, .ve_vi.ve_wa.ve_rs div:nth-child(3).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tm.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_wa.ve_hy div:nth-child(3).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tm.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_to.ve_hy div:nth-child(3).ve_vg, .ve_vi.ve_wa.ve_hy div:nth-child(3).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tm div:nth-child(3), .ve_vi.ve_to div:nth-child(3), .ve_vi.ve_wa div:nth-child(3) {
  background-color: #0068aa;
}

.ve_vi.ve_tm div:nth-child(3) ~ div, .ve_vi.ve_to div:nth-child(3) ~ div, .ve_vi.ve_wa div:nth-child(3) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tm div:nth-child(3) ~ div:last-child, .ve_vi.ve_to div:nth-child(3) ~ div:last-child, .ve_vi.ve_wa div:nth-child(3) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_wc.ve_rs div:nth-child(4).ve_vg, .ve_vi.ve_wf.ve_rs div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_wc.ve_rs div:nth-child(4).ve_vg, .ve_vi.ve_wf.ve_rs div:nth-child(4).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_wc.ve_rs div:nth-child(4).ve_vg, .ve_vi.ve_wf.ve_rs div:nth-child(4).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_wc.ve_hy div:nth-child(4).ve_vg, .ve_vi.ve_wf.ve_hy div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_wc.ve_hy div:nth-child(4).ve_vg, .ve_vi.ve_wf.ve_hy div:nth-child(4).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_wc div:nth-child(4), .ve_vi.ve_wf div:nth-child(4) {
  background-color: #ffe696;
}

.ve_vi.ve_wc div:nth-child(4) ~ div, .ve_vi.ve_wf div:nth-child(4) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_wc div:nth-child(4) ~ div:last-child, .ve_vi.ve_wf div:nth-child(4) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_wh.ve_rs div:nth-child(4).ve_vg, .ve_vi.ve_wj.ve_rs div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_wh.ve_rs div:nth-child(4).ve_vg, .ve_vi.ve_wj.ve_rs div:nth-child(4).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_wh.ve_rs div:nth-child(4).ve_vg, .ve_vi.ve_wj.ve_rs div:nth-child(4).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_wh.ve_hy div:nth-child(4).ve_vg, .ve_vi.ve_wj.ve_hy div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_wh.ve_hy div:nth-child(4).ve_vg, .ve_vi.ve_wj.ve_hy div:nth-child(4).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_wh div:nth-child(4), .ve_vi.ve_wj div:nth-child(4) {
  background-color: #0ac8b4;
}

.ve_vi.ve_wh div:nth-child(4) ~ div, .ve_vi.ve_wj div:nth-child(4) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_wh div:nth-child(4) ~ div:last-child, .ve_vi.ve_wj div:nth-child(4) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_wl.ve_rs div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_wl.ve_rs div:nth-child(4).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_wl.ve_rs div:nth-child(4).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_wl.ve_hy div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_wl.ve_hy div:nth-child(4).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_wl div:nth-child(4) {
  background-color: #0068aa;
}

.ve_vi.ve_wl div:nth-child(4) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_wl div:nth-child(4) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_tw.ve_vo.ve_rs div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_tw.ve_vo.ve_rs div:nth-child(4).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_tw.ve_vo.ve_rs div:nth-child(4).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_tw.ve_vo.ve_hy div:nth-child(4).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_tw.ve_vo.ve_hy div:nth-child(4).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_tw.ve_vo div:nth-child(4) {
  background-color: #ffe696;
}

.ve_vi.ve_tw.ve_vo div:nth-child(4) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_tw.ve_vo div:nth-child(4) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_ty.ve_vo.ve_rs div:nth-child(5).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_ty.ve_vo.ve_rs div:nth-child(5).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_ty.ve_vo.ve_rs div:nth-child(5).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_ty.ve_vo.ve_hy div:nth-child(5).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_ty.ve_vo.ve_hy div:nth-child(5).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_ty.ve_vo div:nth-child(5) {
  background-color: #0068aa;
}

.ve_vi.ve_ty.ve_vo div:nth-child(5) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_ty.ve_vo div:nth-child(5) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.ve_vi.ve_t0.ve_rs div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 21px;
}

@media screen and (max-width: 1023px) {
  .ve_vi.ve_t0.ve_rs div:nth-child(1).ve_vg {
    height: 15px;
  }
}

@media (max-width: 880px) {
  .ve_vi.ve_t0.ve_rs div:nth-child(1).ve_vg {
    height: 10px;
  }
}

.ve_vi.ve_t0.ve_hy div:nth-child(1).ve_vg {
  border-radius: 50%;
  height: 25px;
}

@media (max-width: 1100px) and (min-width: 880px) {
  .ve_vi.ve_t0.ve_hy div:nth-child(1).ve_vg {
    height: 17px;
  }
}

.ve_vi.ve_t0 div:nth-child(1) {
  background-color: #0068aa;
}

.ve_vi.ve_t0 div:nth-child(1) ~ div {
  background-color: #aeb0b5;
}

.ve_vi.ve_t0 div:nth-child(1) ~ div:last-child {
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: auto;
}

.wn_vi {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  gap: 5px;
  height: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .wn_vi {
    padding: 0 5px;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.wn_vi.wn_wp {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 30px;
  padding: 0 10px;
  width: 185px;
}

@media screen and (max-width: 767px) {
  .wn_vi.wn_wp {
    width: 100%;
  }
}

.wn_vi.wn_wr {
  background-color: #0068aa;
}

.wn_vi.wn_wt {
  background-color: #fe6c5a;
}

.wn_vi.wn_kj {
  background-color: #0ac8b4;
}

.wn_vi.wn_wv {
  background-color: #fbbc06;
}

.wn_vi.wn_kl {
  background-color: #ffba96;
}

.wn_vi.wn_of {
  background-color: #b61701;
}

.wn_br {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.wn_br.wn_wp i {
  font-size: 20px;
}

.wx_wz {
  border: 2px solid #8e8e8e;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 10px;
}

.wx_wz:before {
  border-bottom: 16px solid #8e8e8e;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  top: -16px;
  width: 0;
}

.wx_wz:after {
  border-bottom: 14px solid #fff;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  top: -14px;
  width: 0;
}

.wx_wz.wx_w1:before {
  left: calc(55% + 158px);
}

.wx_wz.wx_w1:after {
  left: calc(55% + 160px);
}

.wx_wz.wx_w3:before {
  left: calc(55% + 187px);
}

.wx_wz.wx_w3:after {
  left: calc(55% + 189px);
}

.wx_wz.wx_w5:before {
  left: calc(55% + 216px);
}

.wx_wz.wx_w5:after {
  left: calc(55% + 218px);
}

.wx_wz.wx_w7:before {
  left: calc(55% + 245px);
}

.wx_wz.wx_w7:after {
  left: calc(55% + 247px);
}

.wx_wz.wx_w9:before {
  left: calc(55% + 272px);
}

.wx_wz.wx_w9:after {
  left: calc(55% + 274px);
}

@media (max-width: 1100px) and (min-width: 880px) {
  .wx_wz.wx_w1:before {
    left: calc(55% + 149px);
  }
  .wx_wz.wx_w1:after {
    left: calc(55% + 151px);
  }
  .wx_wz.wx_w3:before {
    left: calc(55% + 170px);
  }
  .wx_wz.wx_w3:after {
    left: calc(55% + 172px);
  }
  .wx_wz.wx_w5:before {
    left: calc(55% + 191px);
  }
  .wx_wz.wx_w5:after {
    left: calc(55% + 193px);
  }
  .wx_wz.wx_w7:before {
    left: calc(55% + 212px);
  }
  .wx_wz.wx_w7:after {
    left: calc(55% + 214px);
  }
  .wx_wz.wx_w9:before {
    left: calc(55% + 233px);
  }
  .wx_wz.wx_w9:after {
    left: calc(55% + 235px);
  }
}

@media (max-width: 880px) {
  .wx_wz.wx_w1:before {
    left: calc(145px + 2px);
  }
  .wx_wz.wx_w1:after {
    left: calc(145px + 4px);
  }
  .wx_wz.wx_w3:before {
    left: calc(145px + 31px);
  }
  .wx_wz.wx_w3:after {
    left: calc(145px + 33px);
  }
  .wx_wz.wx_w5:before {
    left: calc(145px + 60px);
  }
  .wx_wz.wx_w5:after {
    left: calc(145px + 62px);
  }
  .wx_wz.wx_w7:before {
    left: calc(145px + 89px);
  }
  .wx_wz.wx_w7:after {
    left: calc(145px + 91px);
  }
  .wx_wz.wx_w9:before {
    left: calc(145px + 118px);
  }
  .wx_wz.wx_w9:after {
    left: calc(145px + 120px);
  }
}

@media (max-width: 400px) {
  .wx_wz.wx_w1:before {
    left: 2px;
  }
  .wx_wz.wx_w1:after {
    left: 4px;
  }
  .wx_wz.wx_w3:before {
    left: 31px;
  }
  .wx_wz.wx_w3:after {
    left: 33px;
  }
  .wx_wz.wx_w5:before {
    left: 60px;
  }
  .wx_wz.wx_w5:after {
    left: 62px;
  }
  .wx_wz.wx_w7:before {
    left: 89px;
  }
  .wx_wz.wx_w7:after {
    left: 91px;
  }
  .wx_wz.wx_w9:before {
    left: 118px;
  }
  .wx_wz.wx_w9:after {
    left: 120px;
  }
}

.wx_wz > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 35px;
  width: calc(100% - 50px);
}

.wx_wz p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
}

.wx_wz > i {
  font-size: 35px;
  height: 35px;
}

.wx_wz > i.wx_s9 {
  color: #fa6c5a;
}

.wx_wz > i.wx_vs {
  color: #0068aa;
}

.wx_wz > i.wx_s3 div {
  background-color: #fa6c5a;
}

.wx_wz > i.wx_s7, .wx_wz > i.wx_v8 {
  color: #fedcc7;
}

.wx_wz > i.wx_ti {
  color: #fa6c5a;
}

.wx_wz > i.wx_tb {
  color: #ffe696;
}

.wx_wz > i.wx_tg, .wx_wz > i.wx_te {
  color: #0068aa;
}

.wx_wz > i.wx_tu {
  color: #fcba96;
}

.wx_wz > i.wx_tk {
  color: #fcba96;
}

.wx_wz > i.wx_tm, .wx_wz > i.wx_to {
  color: #0068aa;
}

.wx_wz > i.wx_tq, .wx_wz > i.wx_ts {
  color: #fa6c5a;
}

.wx_wz > i.wx_tw {
  color: #ffe696;
}

.wx_wz > i.wx_ty, .wx_wz > i.wx_t0 {
  color: #0068aa;
}

.wx_wz > i.wx_s5 {
  color: #0ac8b4;
}

.xe_xg {
  border-bottom: solid 5px #f5f6fa;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0 0;
}

@media screen and (max-width: 767px) {
  .xe_xg {
    border-bottom: solid 5px transparent;
    margin: 15px 0 0;
  }
}

.xe_xg .xe_xi {
  background-color: #f5f6fa;
  border-radius: 5px;
  color: #282828;
  cursor: pointer;
  font-family: "Inter Light", sans-serif;
  margin-right: 5px;
  padding: 3px;
}

@media screen and (max-width: 767px) {
  .xe_xg .xe_xi {
    margin-bottom: 15px;
  }
}

.xe_xg .xe_xi.xe_xk,
.xe_xg .xe_xi:focus .xe_xg .xe_xi:hover {
  background-color: #fff;
  color: #0c3970;
}

.xe_xg .xe_xi .xe_xm {
  display: none;
  font-size: 40px;
  font-weight: 700;
  min-height: 46px;
}

.xe_xg .xe_xi .xe_pw {
  display: block;
  font-family: "Agency", sans-serif;
  font-size: 12px;
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .xe_xg .xe_xi .xe_pw {
    margin-left: 0;
  }
}

.xb_uz {
  border: solid 2px #f6f8f9;
  border-radius: 10px;
  font-size: 14px;
  height: 700px;
  margin: 0 0 30px;
  overflow-y: scroll;
  padding: 29px 37px;
}

.xo_xq {
  background-color: #7d7d7d;
  border-radius: 8px;
  box-shadow: 3px 4px 7px 0 #eeeeee;
  height: auto;
  padding: 10px;
  width: 250px;
}

.xo_xq .xo_vb {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #fff;
  font-family: Nunito;
  font-size: 16px;
  line-height: normal;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-top: 5px;
  text-align: justify;
}

.xo_xq .xo_vb .xo_xs {
  float: right;
  margin-right: 10px;
}

.xo_xq .xo_vb:last-child {
  border-bottom: 0;
  padding-left: none;
}

.xo_xq .xo_vb:first-child {
  padding-top: none;
}

.xo_xq .xo_vb:hover {
  background-color: #1e81f4;
  cursor: pointer;
}

.xo_xq .xo_xu {
  background-color: #aba9a9;
  border-radius: 8px;
  height: auto;
  padding: 6px;
  width: 200px;
  z-index: 9;
}

.xo_xq .xo_xu .xo_xw {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: Nunito;
  font-size: 14px;
  line-height: normal;
  padding-bottom: 3px;
  padding-left: 3px;
  padding-top: 3px;
  text-align: justify;
}

.xo_xq .xo_xu .xo_xw:last-child {
  border-bottom: 0;
  padding-left: none;
}

.xo_xq .xo_xu .xo_xw:first-child {
  padding-top: none;
}

.xo_xq .xo_xu .xo_xw:hover {
  background-color: #1e81f4;
  cursor: pointer;
}

.xy_x0 {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1);
}

.xy_x0 .xy_x2 {
  cursor: text;
  font-family: Calibri, Arial, sans-serif;
  font-size: 14px;
  height: calc(100vh - 65px - 20px);
  line-height: 1.5;
  overflow: auto;
  padding: 2em;
}

@media screen and (max-width: 1023px) {
  .xy_x0 .xy_x2 {
    padding: 2em;
  }
}

@media screen and (max-width: 767px) {
  .xy_x0 .xy_x2 {
    padding: 1em;
  }
}

.xy_x0 .xy_x2 .public-DraftEditorPlaceholder-root {
  color: #aeb0b5;
  pointer-events: none;
  position: absolute;
}

.xy_x0 .xy_x2 .public-DraftStyleDefault-block {
  margin-bottom: 15px;
}

.xy_x0 .xy_x2 .public-DraftEditorPlaceholder-root,
.xy_x0 .xy_x2 .public-DraftEditor-content {
  margin: 0 -15px -15px;
  padding: 15px;
}

.xy_x0 .xy_x2 .text-left {
  text-align: left;
}

.xy_x0 .xy_x2 .text-center {
  text-align: center;
}

.xy_x0 .xy_x2 .text-right {
  text-align: right;
}

.xy_x0 .xy_x2 .text-justify {
  text-align: justify;
}

.xy_x0 .xy_x2 .sign-block {
  width: 100%;
}

.xy_x0 .xy_x2 .sign-block tr td {
  padding-bottom: 20px;
  text-align: center;
  width: 33%;
}

.xy_x0 .xy_x2 .sign-block tr:first-child td:nth-child(2) {
  border-bottom: 1px solid #aeb0b5;
  padding: 40px 0;
}

.xy_x0 .xy_x2 .sign-block .entity {
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 1px 7px;
}

.xy_x0 .xy_x2 .sign-block .entity.about_document_legal {
  background-color: #051934;
}

.xy_x0 .xy_x2 .sign-block .entity.about_document_natural {
  background-color: #fa6c5a;
}

.xy_x0 .xy_x2 .xy_yr .public-DraftEditorPlaceholder-root {
  display: none;
}

.xy_x0 .xy_x2.xy_yt {
  background-color: #fff;
}

.xy_yv {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Helvetica', sans-serif;
  font-size: 16px;
  padding: 10px 5px;
  position: sticky;
  top: 65px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .xy_yv {
    z-index: 7;
  }
}

button[disabled] {
  cursor: not-allowed;
}

.xy_yx {
  background-color: #fbfbfb;
  border: 1px solid transparent;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  cursor: default;
  margin: 10px 0;
  padding: 10px;
}

.xy_yx .xy_yz {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  min-height: 30px;
}

.xy_yx .xy_yz .xy_y1 {
  color: #0c3970;
  font-size: 16px;
  font-weight: 700;
}

.xy_yx .xy_yz .xy_y3 {
  background-color: #aba9a9;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 5px 0;
  position: absolute;
  right: 15px;
  width: 85px;
  z-index: 1;
}

.xy_yx .xy_yz .xy_y3 .xy_vb {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: Nunito;
  padding: 5px;
  text-align: center;
  z-index: 1;
}

.xy_yx .xy_yz .xy_y3 .xy_vb:last-child {
  border-bottom: 0;
  padding-left: none;
}

.xy_yx .xy_yz .xy_y3 .xy_vb:hover {
  background-color: #1e81f4;
  cursor: pointer;
}

.xy_yx .xy_yz .xy_y5 {
  cursor: pointer;
  font-size: 20px;
  margin-left: auto;
  transform: rotate(90deg);
}

.xy_yx .xy_yz h4 {
  color: #0c3970;
}

.xy_yx .xy_y7 textarea {
  min-height: 200px;
}

.xy_yx .xy_y9 {
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  margin-top: 5px;
}

.xy_yx .xy_y9 span {
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.xy_yx .xy_y9 span.xy_zb {
  cursor: default;
}

.xy_yx .xy_y9 span.xy_zb.xy_ze {
  color: #0ac8b4;
}

.xy_yx .xy_y9 span.xy_zb.xy_zg {
  color: #fa6c5a;
}

.xy_yx .xy_y9 span.xy_st {
  margin-left: auto;
}

.xy_yx .xy_y9 span.xy_st i {
  margin-left: 5px;
}

.xy_yx .xy_y9 span.xy_am {
  margin-right: auto;
}

.xy_yx .xy_y9 span.xy_am i {
  margin-right: 5px;
}

.xy_yx .xy_y9 span i {
  font-size: 14px;
  margin-right: 3px;
  padding-top: 5px;
}

.xy_zi {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.xy_zi button {
  margin: 15px auto;
}

.xy_zi button:not(:first-child) {
  margin-top: 0;
}

.xy_zk {
  margin-left: auto;
}

.xy_zm {
  background-color: #fff;
  border: none;
  color: #999;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  margin-right: 2px;
  padding: 2px 0;
  width: 25px;
}

.xy_zm.xy_zo {
  color: #0c3970;
}

.xy_zq {
  display: block;
  margin: 30px auto;
  max-width: 250px;
  width: 205px;
}

.xy_zs {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .xy_zs {
    display: block;
  }
}

.xy_zs .xy_zw {
  background-color: #edf7f8;
  border: none;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1);
  display: none;
  height: 32px;
  left: 0;
  position: fixed;
  top: 127px;
  transform: translateX(0);
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;
  width: 32px;
  z-index: 100;
}

.xy_zs .xy_zw img {
  height: 60%;
  transform: rotate(0);
  transition: transform .2s ease-in-out .2s;
  width: 80%;
}

.xy_zs .xy_zw:focus {
  outline: none;
}

.xy_zs .xy_zw.xy_fb {
  box-shadow: none;
  transform: translateX(278px);
}

.xy_zs .xy_zw.xy_fb img {
  transform: rotate(-180deg);
}

@media screen and (max-width: 767px) {
  .xy_zs .xy_zw {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    top: 97px;
  }
}

.xy_zs .xy_f4 {
  background: transparent;
  display: none;
  pointer-events: none;
  position: absolute;
  transition: background .2s ease-in-out;
}

.xy_zs .xy_f4.xy_fb {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  left: 0;
  pointer-events: auto;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .xy_zs .xy_f4 {
    display: block;
  }
}

.xy_zs .xy_zy {
  background-color: #fff;
  border: solid 2px #0068aa;
  box-shadow: 0 8px 13px -3px rgba(0, 0, 0, 0.05);
  height: calc(100vh - 60px);
  min-width: 220px;
  width: 350px;
  z-index: 9;
}

@media screen and (max-width: 1023px) {
  .xy_zs .xy_zy {
    font-size: 14px;
    overflow: hidden;
    width: 280px;
  }
}

@media screen and (max-width: 767px) {
  .xy_zs .xy_zy {
    left: 0;
    min-width: unset;
    position: fixed;
    top: 97px;
    transition: width .2s ease-in-out;
    width: 0;
  }
  .xy_zs .xy_zy.xy_fb {
    width: 280px;
  }
}

.xy_zs .xy_zy .xy_a0 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0068aa;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0 15px;
  width: 100%;
}

.xy_zs .xy_zy .xy_a0 i {
  margin-right: 10px;
}

.xy_zs .xy_zy ul {
  margin: 0;
  max-height: calc(100% - 60px);
  overflow-y: auto;
  padding: 5px 15px;
}

.xy_zs .xy_zy ul.xy_z0 {
  position: sticky;
  top: 65px;
}

.xy_zs .xy_zy ul .xy_z2 {
  border-radius: 15px;
  box-shadow: 2px 3px 6px -1px rgba(0, 0, 0, 0.05);
  color: #fff;
  display: block;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  margin: 10px 0;
  overflow: hidden;
  padding: 5px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .xy_zs .xy_zy ul .xy_z2 {
    border-left-width: 2px;
    margin: 5px 0;
    padding-left: 16px;
    width: inherit;
  }
}

.xy_zs .xy_zy ul .xy_z2.xy_z4 {
  background-color: #ff8879;
}

.xy_zs .xy_zy ul .xy_z2.xy_z6 {
  background-color: #ce6558;
}

.xy_zs .xy_zy ul .xy_z2.xy_z8 {
  background-color: #08998b;
}

.xy_zs .xy_zy ul .xy_z2.xy_0a {
  background-color: #7abbc9;
}

.xy_zs .xy_zy ul .xy_z2.xy_aab {
  background-color: #fe6c5a;
}

.xy_zs .xy_zy ul .xy_z2.xy_aae {
  background-color: #cbb1f6;
}

.xy_zs .xy_zy ul .xy_z2.xy_aag {
  background-color: #ff96b6;
}

.xy_zs .xy_zy ul .xy_z2.xy_aai {
  background-color: #0ac8b4;
}

.xy_zs .xy_zy ul .xy_z2.xy_aak {
  background-color: #576e8b;
}

.xy_zs .xy_zy ul .xy_z2.xy_aam {
  background-color: #979797;
}

.xy_zs .xy_zy ul .xy_z2.xy_aao {
  background-color: #5c5b5b;
}

.xy_zs .xy_zy ul .xy_z2.xy_aaq {
  background-color: #08998b;
}

.xy_zs .xy_zy ul .xy_z2.xy_aas {
  background-color: #4c5da2;
}

.xy_zs .xy_zy ul .xy_z2.xy_yn {
  background-color: #051934;
}

.xy_zs .xy_zy ul .xy_z2.xy_yp {
  background-color: #fa6c5a;
}

.xy_zs .xy_zy ul .xy_z2.xy_aau {
  background-color: #0c3970;
}

.xy_zs .xy_zy ul .xy_aaw {
  font-family: "Inter Light", sans-serif;
  list-style: none;
  margin: 20px 0;
  padding: 10px 20px;
  transition: box-shadow 0.2s ease-in-out;
  width: 100%;
}

.xy_zs .xy_zy ul .xy_aaw input {
  border: 1px solid #edf7f8;
  font-size: 12px;
  height: 30px;
  padding: 5px 8px;
}

.xy_zs .xy_zy ul .xy_aaw.xy_aay input {
  animation: xy_zu 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border: 2px solid #fe6c5a;
  transform: translate3d(0, 0, 0);
}

.xy_zs .xy_zy ul .xy_aaw .xy_aa0 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}

.xy_zs .xy_zy ul .xy_aaw .xy_aa0 .xy_aa2 {
  font-size: 12px;
  height: 22px;
  min-width: unset;
  padding: 0 7px;
  width: auto;
}

.xy_zs .xy_zy ul .xy_aaw .xy_aa0 .xy_aa2:first-child {
  margin-right: 3px;
}

.xy_zs .xy_k {
  margin-left: 25px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .xy_zs .xy_k {
    margin: 0;
  }
}

@keyframes xy_zu {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(1px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-1px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(1px, 0, 0);
  }
}

.aa4_aa6 {
  margin: 0 auto;
  width: 100%;
}

.aa4_aa6 .aa4_aa8 {
  background: #eceff3;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  height: 43px;
  margin-top: 15px;
  padding-left: 0;
}

.aa4_aa6 .aa4_aba {
  -ms-flex-line-pack: center;
  align-content: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  float: left;
  height: calc(43px + .5px);
  list-style-type: none;
}

.aa4_aa6 .aa4_aba.aa4_fk {
  background-color: #0c3970;
  border-radius: 5px;
  transform: scale(0.96) translateY(-25%);
}

.aa4_aa6 .aa4_aba.aa4_fk a {
  color: #fff;
}

.aa4_aa6 .aa4_aba.aa4_fk ~ li a {
  color: #979797;
  font-weight: 400;
}

.aa4_aa6 .aa4_aba a {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00b29f;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  font-weight: 700;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .aa4_aa6 .aa4_aba a {
    font-size: 12px;
  }
}

.aa4_aa6 .aa4_abc {
  clear: both;
  height: auto;
  position: relative;
}

.aa4_aa6 article {
  padding: 10px;
  width: 100%;
}

.aa4_aa6 .aa4_abf {
  z-index: 1;
}

.abh_abj {
  color: #0c3970;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.abh_abj .abh_abl {
  width: 16px;
}

.abh_abj .abh_abl i {
  position: absolute;
}

.abh_abj .abh_abl i:first-child {
  overflow: hidden;
  width: 8px;
}

.abn_abp .abn_abr {
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #cdcfd6;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 40px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  letter-spacing: 1px;
  padding: 5px;
  text-align: center;
}

.abn_abp .abn_abr .abn_abt {
  color: #0c3970;
  font-size: 12px;
  font-weight: 600;
  white-space: normal;
}

.abn_abp .abn_abr .abn_abv {
  color: #AFB2AF;
  font-size: 12px;
  text-align: left;
  white-space: normal;
  width: 85%;
}

.abn_abp .abn_abr .abn_abx {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: 0;
  border-radius: 30px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 20px;
  font-weight: 600;
  height: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
}

.abn_abp .abn_abr .abn_abx i {
  font-size: 13px;
  padding-left: 1px;
  width: 13px;
}

.abz_ab1 {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .abz_ab1 {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

.abz_ab1.abz_ab3 > div {
  margin: 20px 0;
  width: 350px;
}

@media screen and (max-width: 767px) {
  .abz_ab1.abz_ab3 > div {
    margin: 0;
    padding: 10px 0;
    width: 100%;
  }
}

.abz_ab1.abz_kh > div {
  margin: 0;
  width: 250px;
}

@media screen and (max-width: 767px) {
  .abz_ab1.abz_kh > div {
    margin: 0;
    padding: 10px 0;
    width: 100%;
  }
}

.abz_ab1 > div {
  margin: 20px 0;
  width: 250px;
}

@media screen and (max-width: 767px) {
  .abz_ab1 > div {
    margin: 0;
    padding: 10px 0;
    width: 100%;
  }
}

.abz_ab1 .abz_ab5 {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  height: 20px;
  min-width: unset;
  padding: 0;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 20px;
  z-index: 10;
}

.abz_ab1 .abz_ab5 i {
  color: #0c3970;
  font-size: 20px;
}

.abz_ab1 .abz_ab7 {
  margin-bottom: 0;
}

.abz_ab1 .abz_ab7 button {
  border: 0;
  box-shadow: none;
  color: #0c3970;
  display: block;
  font-size: 12px;
  height: auto;
  padding: 0;
  text-align: left;
}

.abz_ab1 .abz_ab7 button:hover {
  background-color: transparent;
}

.abz_ab1 .abz_ab7.abz_vm .abz_abp .abz_abr {
  border: 4px dashed #0c3970;
}

.abz_ab1 .abz_ab7.abz_vm .abz_abp .abz_abr .abz_abt {
  font-weight: 700;
}

.abz_ab1 .abz_ab7.abz_vm .abz_abp .abz_abr .abz_abv {
  color: #0c3970;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.abz_ab1 .abz_ab7.abz_ab9 .abz_abp .abz_abr {
  border: 2px dashed #AFB2AF;
  pointer-events: none;
}

.abz_ab1 .abz_ab7.abz_ab9 .abz_abp .abz_abr .abz_abt {
  color: #AFB2AF;
}

.acb_ace {
  display: -ms-flexbox;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px 0 20px 20px;
}

.acb_ace .acb_acg {
  border-left: 2px solid #c8c8c8;
  left: 11px;
  width: 0;
}

.acb_ace .acb_aci {
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
  width: 80%;
}

.acb_ace .acb_aci .acb_ga {
  -ms-flex-align: center;
  align-items: center;
  border-left: 2px solid #c8c8c8;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  width: 100%;
}

.acb_ace .acb_aci .acb_ga:nth-last-child(1) {
  border: 0;
}

.acb_ace .acb_aci .acb_ga:nth-last-child(1) .acb_ack {
  margin-left: -6.5px;
}

.acb_ace .acb_aci .acb_ga .acb_ack {
  background-color: #aeb0b5;
  border-radius: 50%;
  height: 16px;
  margin: 0 8px 30px -9px;
  width: 16px;
}

.acb_ace .acb_aci .acb_ga .acb_ev {
  -ms-flex: 1;
  flex: 1;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.acb_ace .acb_aci .acb_ga .acb_ev .acb_aai {
  font-weight: 700;
  margin: 5px 0;
}

.acb_ace .acb_aci .acb_ga .acb_ev .acb_acm {
  margin: 0 0 5px;
}

.aco_acq {
  background-color: #fff;
  bottom: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  height: 86vh;
  margin-right: 30px;
  overflow-x: auto;
  position: fixed;
  right: 0;
  top: 90px;
  width: 20vw;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .aco_acq {
    margin-right: 0;
    width: 85%;
  }
}

.aco_acq .aco_mv {
  background-color: #0ac8b4;
  height: 40px;
  position: relative;
  width: 100%;
}

.aco_acq .aco_mv .aco_c4 {
  background-color: transparent;
  border: 0;
  color: #fff;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 30%;
  width: 40px;
}

.aco_acq .aco_mx {
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  text-align: left;
}

.aco_acq .aco_mx .aco_acs {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.aco_acq .aco_mx .aco_acs .aco_a0 {
  background-color: #fff;
  border: 1.5px solid #0c3970;
  color: #0c3970;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 7px 5px;
  text-align: center;
  width: 50%;
}

.aco_acq .aco_mx .aco_acs .aco_a0.aco_am {
  border-radius: 5px 0 0 5px;
}

.aco_acq .aco_mx .aco_acs .aco_a0.aco_bl {
  border-left: none;
  border-right: none;
}

.aco_acq .aco_mx .aco_acs .aco_a0.aco_st {
  border-radius: 0 5px 5px 0;
}

.aco_acq .aco_mx .aco_acs .aco_a0.aco_vm {
  background-color: #0c3970;
  color: #fff;
  font-size: 12px;
}

.aco_acq .aco_mx .aco_ace > div {
  padding: 0 10px 0 20px;
  width: 120%;
}

.aco_acq .aco_mx .aco_acu {
  padding: 10px;
}

.aco_acq .aco_mx .aco_acu .aco_acw {
  background-color: #edf2f5;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 20px;
  padding: 10px;
}

.aco_acq .aco_mx .aco_acu .aco_acw .aco_a0 {
  font-weight: 600;
  margin-bottom: 5px;
}

.aco_acq .aco_mx .aco_acu .aco_acw .aco_a0.aco_wt {
  color: #fa6c5a;
}

.acy_ev {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  width: 100%;
}

.acy_ev .acy_ac0 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .acy_ev .acy_ac0 {
    width: 100%;
  }
}

.acy_ev .acy_ac0 .acy_ac2 {
  width: 100%;
}

.acy_ev .acy_ac0 .acy_ac2 textarea {
  padding: 3px;
  height: 90px;
  font-size: 12px;
  resize: none;
}

.acy_ev .acy_ac0 .acy_ac4 {
  margin-top: 10px;
  border-radius: 15px;
  padding: 0;
  width: 75px;
  min-width: unset;
  height: 22px;
  font-size: 12px;
}

.acy_ga {
  padding: 10px;
  font-size: 12px;
  background-color: #edf2f5;
  border-radius: 5px;
  margin-bottom: 20px;
}

.acy_ga div:first-child {
  font-weight: 600;
  margin-bottom: 5px;
}

.ac6_ml > div > div {
  border-radius: 20px;
  max-width: 550px !important;
  overflow: hidden;
}

.ac6_ml > div > div .ac6_ac8 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

@media screen and (max-width: 767px) {
  .ac6_ml > div > div .ac6_ac8 {
    -ms-flex-align: unset;
    align-items: unset;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.ac6_ml > div > div .ac6_ac8 .ac6_aea {
  margin-top: 0;
}

.ac6_ml > div > div .ac6_aec {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 50px 0;
}

.ac6_ml > div > div footer {
  width: 100%;
}

.ac6_ml > div > div footer .ac6_aef {
  border-radius: 30px;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .ac6_ml > div > div footer .ac6_aef {
    width: 100%;
  }
}

.aeh_n2 {
  min-width: 170px;
  padding: 0;
}

.aeh_n2 .aeh_n6 {
  -ms-flex-align: center;
  align-items: center;
  border: none;
  border-radius: 15px;
  box-shadow: none;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  gap: 3px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: normal;
  max-height: 30px;
  min-height: 20px;
  min-width: 75px;
  width: 100%;
}

.aeh_n2 .aeh_n6.aeh_kj {
  background-color: #0ac8b4;
}

.aeh_n2 .aeh_n6.aeh_kl {
  background-color: #fe6c5a;
}

.aeh_n2 .aeh_n6.aeh_n8 {
  background-color: #b61701;
}

.aeh_n2 .aeh_n6.aeh_wv {
  background-color: #ffe696;
}

.aeh_n2 .aeh_n6.aeh_fb {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.aeh_n2 .aeh_n6 .aeh_k7 {
  color: #fff;
}

.aeh_n2 .aeh_ex {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  font-size: 12px;
  overflow: hidden;
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 2;
}

.aeh_n2 .aeh_ex ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aeh_n2 .aeh_ex li {
  cursor: pointer;
  padding: 4px;
}

.aeh_n2 .aeh_ex li button {
  all: unset;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
}

.aeh_n2 .aeh_ex li:hover {
  background-color: #cdcfd6;
}

.aej_n2 {
  padding: 0;
  width: 70%;
}

.aej_n2 .aej_n6 {
  -ms-flex-align: center;
  align-items: center;
  border: none;
  border-radius: 15px;
  box-shadow: none;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  gap: 3px;
  height: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: normal;
  width: 100%;
}

.aej_n2 .aej_n6.aej_kj {
  background-color: #0ac8b4;
}

.aej_n2 .aej_n6.aej_kl {
  background-color: #fe6c5a;
}

.aej_n2 .aej_n6.aej_wv {
  background-color: #ffe696;
}

.aej_n2 .aej_n6.aej_wr {
  background-color: #0068aa;
}

.aej_n2 .aej_n6.aej_fb {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.aej_n2 .aej_n6 .aej_k7 {
  color: #fff;
}

.aej_n2 .aej_ex {
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  font-size: 12px;
  overflow: hidden;
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 2;
}

.aej_n2 .aej_ex ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aej_n2 .aej_ex li {
  cursor: pointer;
  padding: 4px;
}

.aej_n2 .aej_ex li button {
  all: unset;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
}

.aej_n2 .aej_ex li:hover {
  background-color: #cdcfd6;
}

.ael_aen .ael_aw {
  text-align: center;
  width: 100%;
}

.ael_aen div[role='contentinfo'] {
  max-width: 520px;
  min-height: 300px;
}

.ael_aen footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ael_aen footer div {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ael_aen footer button {
  box-shadow: none;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .ael_aen footer button {
    width: 100%;
  }
}

.ael_aen footer button:first-child.ael_aep {
  color: #fff;
}

.aer_aet header h1,
.aer_aet header p {
  text-align: left;
}

.aer_aet .aer_aev {
  margin: 0 auto;
  width: 60%;
}

.aer_aet .aer_mx p {
  margin-bottom: 20px;
  margin-top: 0;
}

.aer_aet .aer_mx .aer_cy {
  text-align: center;
}

.aer_aet div[role='contentinfo'] {
  max-width: 480px;
}

.aer_aet div[role='contentinfo'] footer {
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 5px;
}

.aer_aet div[role='contentinfo'] footer button {
  color: #fff;
  margin: 0;
  max-width: 170px;
}

.aex_aez {
  height: 100%;
  min-height: 100%;
}

.aex_aez .aex_ae1 {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
}

.aex_aez .aex_ae1 button {
  margin: 0;
}

.aex_aez .aex_ae1 button:first-child {
  color: #0ac8b4;
  margin-left: auto;
  margin-right: 26px;
}

.aex_aez .aex_ae1 button[type=submit] {
  min-width: 200px;
}

.aex_aez .aex_ae3 {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.aex_aez .aex_ae3 .aex_ae5 {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 880px) {
  .aex_aez .aex_ae3 .aex_ae5 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7:first-child {
  width: 54%;
}

@media (max-width: 880px) {
  .aex_aez .aex_ae3 .aex_ae5 .aex_ae7:first-child {
    width: 100%;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7:last-child {
  width: 44%;
}

@media (max-width: 880px) {
  .aex_aez .aex_ae3 .aex_ae5 .aex_ae7:last-child {
    width: 100%;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 400px) {
  .aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev > div {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin-bottom: 15px;
  padding: 3px 5px;
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_ae9 {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 24px;
  margin-right: 15px;
  min-width: 66px;
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_ae9.aex_br {
  cursor: pointer;
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_ae9 i {
  font-size: 16px;
  height: 16px;
  margin-right: 5px;
}

@media (max-width: 400px) {
  .aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_ae9 {
    margin: 0 0 5px;
    max-width: unset;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb {
  background-color: #f5f6fa;
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb .aex_afe {
  border-radius: 10px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 12px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb .aex_afe {
    font-size: 12px;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb .aex_afe.aex_fk {
  background-color: #0ac8b4;
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb .aex_afe.aex_s9 {
  background-color: #0c3970;
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb .aex_afe.aex_afg {
  background-color: #fa6c5a;
}

@media (max-width: 400px) {
  .aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb {
    margin: 0 0 15px;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb:not(.aex_afi) {
  width: 70%;
}

@media (max-width: 400px) {
  .aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb.aex_afi {
    width: 100%;
  }
}

.aex_aez .aex_ae3 .aex_ae5 .aex_ae7 .aex_ev .aex_afb.aex_afk {
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_ae3 .aex_ae5 {
    font-size: 12px;
  }
}

.aex_aez .aex_afm {
  background-color: #fff;
  border-radius: 10px;
}

.aex_aez .aex_afm .aex_afo {
  font-family: "Inter Light", sans-serif;
  margin-top: 15px;
  min-height: 400px;
  padding: 20px;
}

.aex_aez .aex_afm .aex_afo .aex_ga {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ga {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.aex_aez .aex_afm .aex_afo .aex_ga > div:not(:first-child) {
  margin-left: 4%;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ga > div:not(:first-child) {
    margin-left: 0;
  }
}

.aex_aez .aex_afm .aex_afo .aex_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.aex_aez .aex_afm .aex_afo .aex_ev span {
  font-weight: 700;
  width: 90px;
}

.aex_aez .aex_afm .aex_afo .aex_ev .aex_afb {
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  font-weight: 400;
  margin-left: 5px;
  min-height: 25px;
  padding: 3px 5px;
  width: calc(100% - 95px);
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ev .aex_afb {
    margin-left: 0;
    width: 100%;
  }
}

.aex_aez .aex_afm .aex_afo .aex_ev .aex_afb.aex_rs {
  width: 18%;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ev .aex_afb.aex_rs {
    width: 100%;
  }
}

.aex_aez .aex_afm .aex_afo .aex_ev .aex_afb.aex_rs:not(:nth-child(2)) {
  margin-left: 2%;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ev .aex_afb.aex_rs:not(:nth-child(2)) {
    margin-left: 0;
  }
}

.aex_aez .aex_afm .aex_afo .aex_ev.aex_hy {
  width: 90%;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ev.aex_hy {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
}

.aex_aez .aex_afm .aex_afo .aex_ev.aex_hu {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ev.aex_hu {
    width: 100%;
  }
}

.aex_aez .aex_afm .aex_afo .aex_ev.aex_rs {
  width: 19%;
}

@media screen and (max-width: 767px) {
  .aex_aez .aex_afm .aex_afo .aex_ev.aex_rs {
    width: 100%;
  }
}

.aex_aez .aex_l0 {
  margin-bottom: 26px;
}

.aex_aez .aex_afq {
  background-color: #0068aa;
  height: 2px;
  margin-bottom: 36px;
  margin-top: 26px;
  opacity: .15;
}

.aex_aez .aex_afs {
  margin-top: 30px;
}

.aex_aez .aex_afu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0;
}

.aex_aez .aex_afu > div:nth-child(2) {
  margin-right: auto;
  margin-left: 2%;
}

.aex_aez .aex_afw > div {
  display: inline-block;
  margin: 0;
  margin-top: 20px;
  width: 48%;
}

.aex_aez .aex_afw > div:nth-child(odd) {
  margin-right: 4%;
}

@media screen and (min-width: 768px) {
  .aex_aez .aex_afs > div,
  .aex_aez .aex_afs button {
    display: inline-block;
    width: 48%;
  }
  .aex_aez .aex_afs button {
    margin-bottom: 26px;
  }
  .aex_aez .aex_afs > div:nth-child(odd),
  .aex_aez .aex_afs button:nth-child(odd) {
    margin-right: 4%;
  }
  .aex_aez .aex_afu {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .aex_aez .aex_afu > div {
    margin-top: 0;
    width: 32%;
  }
}

.aex_aez .aex_afy > div {
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .aex_aez .aex_afy {
    display: inline-block;
    width: 48%;
  }
  .aex_aez .aex_af0 {
    display: inline-block;
    margin-right: 4%;
    text-align: center;
    width: 48%;
  }
  .aex_aez .aex_af0 button {
    width: 200px;
  }
  .aex_aez .aex_afs > div:not(:first-child) {
    margin-right: 2%;
    width: 32%;
  }
  .aex_aez .aex_afs > div:nth-child(4) {
    margin-right: 0;
  }
  .aex_aez .aex_afs button {
    width: 32%;
  }
}

.atu_atw {
  font-size: 16px;
  padding: 0 20px;
}

.atu_atw b {
  font-family: Kollektif;
  font-size: 18px;
}

.atu_atw ol {
  font-size: 18px;
  padding-left: 80px;
}

.atu_atw ol li {
  font-family: Kollektif;
  font-weight: bold;
  margin-bottom: 18px;
}

.atu_atw .atu_aty {
  float: right;
}

.ast_ml div[role='contentinfo'] {
  max-width: 670px;
}

.ast_ml > div > div .ast_asv {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  max-height: 350px;
  padding: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ast_ml > div > div .ast_asv {
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    gap: 20px;
    max-height: unset;
  }
}

.ast_ml > div > div .ast_asv li {
  list-style-type: none;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .ast_ml > div > div .ast_asv li {
    width: 100%;
  }
}

.at0_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.at0_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.at0_xi .at0_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.at0_xi .at0_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.at0_xi .at0_ga span,
.at0_xi .at0_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.at0_xi .at0_ga span:first-child,
.at0_xi .at0_ga time:first-child {
  margin-right: 10%;
}

.at0_xi .at0_ga span:last-child,
.at0_xi .at0_ga time:last-child {
  width: 67%;
  text-align: left;
}

.at0_xi .at0_ga i {
  margin-left: 5px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .at0_xi .at0_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.at0_xi .at0_ga:not(:last-child) {
  margin-bottom: 3px;
}

.at0_xi .at0_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.at0_xi .at0_ga:last-child span {
  margin-right: 6%;
}

.at0_xi .at0_at2 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.at0_xi .at0_at2 .at0_at4,
.at0_xi .at0_at2 .at0_aev {
  border-radius: 7px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.at0_xi .at0_at2 .at0_at4 {
  background-color: #fa6c5a;
}

.at0_xi .at0_at2 .at0_aev {
  background-color: #0c3970;
}

.at0_xi .at0_at2 span,
.at0_xi .at0_at2 time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  margin-right: 11%;
}

.at0_xi .at0_at2 span:last-child,
.at0_xi .at0_at2 time:last-child {
  width: 67%;
}

.at0_xi .at0_at2:not(:last-child) {
  margin-bottom: 3px;
}

.aga_agc .aga_agh {
  background-color: #f5f6fa;
  min-height: calc(87vh);
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_agh {
    padding: 20px;
  }
}

.aga_agc .aga_agh .aga_agj {
  font-size: 12px !important;
}

.aga_agc .aga_agh .aga_agl {
  background-color: transparent;
  border-radius: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_agh .aga_agl {
    display: -ms-grid;
    display: grid;
  }
}

.aga_agc .aga_agh .aga_agl .aga_agn {
  width: 100%;
}

@media (max-device-width: 812px) {
  .aga_agc .aga_agh .aga_agl .aga_agn {
    width: auto;
  }
}

.aga_agc .aga_agh .aga_agl .aga_agp {
  display: -ms-flexbox;
  display: flex;
  width: 26%;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_agh .aga_agl .aga_agp {
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}

.aga_agc .aga_agh .aga_agl .aga_agp .aga_agr {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_agh .aga_agl .aga_agp .aga_agr {
    margin-right: 10px;
    margin-top: 0;
  }
}

.aga_agc .aga_agh .aga_agl .aga_agp .aga_agr label {
  color: #78797a;
  font-size: 14px;
}

.aga_agc .aga_agh .aga_agl .aga_agt {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_agh .aga_agl .aga_agt {
    display: none;
  }
}

.aga_agc .aga_agh .aga_agl .aga_agt .aga_agr {
  padding-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_agh .aga_agl .aga_agt .aga_agr {
    margin-right: 10px;
    margin-top: 0;
  }
}

.aga_agc .aga_agh .aga_agl .aga_agt .aga_agr label {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.aga_agc .aga_agh .aga_agl.aga_st {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.aga_agc .aga_agh .aga_agv {
  background-color: #fff;
  border-radius: 8px;
}

.aga_agc .aga_agh .aga_ga {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}

.aga_agc .aga_agh .aga_ga.aga_kl {
  background-color: #fa6c5a;
}

.aga_agc .aga_agh .aga_ga.aga_wr {
  background-color: #0c3970;
}

.aga_agc .aga_agh .aga_ga.aga_agx {
  background-color: #0068aa;
}

.aga_agc .aga_agh .aga_ga.aga_agz {
  background-color: #7a9ff8;
}

.aga_agc.aga_ag1.aga_ag3 .flag {
  width: 50px;
}

.aga_agc.aga_ag1.aga_ag3 .flag .icon-flag {
  font-size: 16px;
  transition: color .1s ease-in-out;
}

.aga_agc.aga_ag1.aga_ag3 .flag .icon-flag.paused {
  color: #0c3970;
}

.aga_agc.aga_ag1.aga_ag3 .flag .icon-flag:hover {
  color: #0ac8b4 !important;
}

.aga_agc.aga_ag1.aga_ag3 .history {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ag3 .history span:first-child {
  display: none;
}

.aga_agc.aga_ag1.aga_ag3 .history button {
  background-color: #edf7f8;
  border: none;
  color: #0c3970;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px;
}

.aga_agc.aga_ag1.aga_ag3 .cancel {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ag3 .cancel span:first-child {
  display: none;
}

.aga_agc.aga_ag1.aga_ag3 .id {
  width: 7%;
}

.aga_agc.aga_ag1.aga_ag3 .status {
  width: 14%;
}

.aga_agc.aga_ag1.aga_ag3 .responsable {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ag3 .rights {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ag3 .sign {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ag3 .tag {
  width: 17%;
}

.aga_agc.aga_ag1.aga_ag3 .tag > div {
  overflow: visible;
}

.aga_agc.aga_ag1.aga_ag3 .registration {
  width: 5%;
}

.aga_agc.aga_ag1.aga_ag3 .max_sign_inv_date {
  width: 5%;
}

.aga_agc.aga_ag1.aga_ag3 .responsable-name {
  background-color: #0ac8b4;
  border-radius: 11px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  padding: 3px 4px;
  text-align: center;
  text-overflow: ellipsis;
}

.aga_agc.aga_ag1.aga_ag3 .responsable-name.purple {
  background-color: #4c5da2;
}

.aga_agc.aga_ag1.aga_ag3 .responsable-name.green {
  background-color: #0ac8b4;
}

.aga_agc.aga_ag1.aga_ag3 .responsable-name.disabled {
  background-color: #576e8b;
}

.aga_agc.aga_ag1.aga_ag3 .rights-payment {
  border-radius: 11px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 3px 0;
  text-align: center;
}

.aga_agc.aga_ag1.aga_ag3 .rights-payment.salmon {
  background-color: #f08b7b;
}

.aga_agc.aga_ag1.aga_ag3 .rights-payment.green {
  background-color: #0ac8b4;
}

.aga_agc.aga_ag1.aga_ag3 .rights-payment.red {
  background-color: #b61701;
}

.aga_agc.aga_ag1.aga_ag3 .name {
  width: 16%;
}

.aga_agc.aga_ag1.aga_ag3 .request_date,
.aga_agc.aga_ag1.aga_ag3 .estimated_delivery_date {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ag3 .comment {
  width: 14%;
}

.aga_agc.aga_ag1.aga_ag3 .comment .display-comment {
  background-color: #0c3970;
  border-radius: 11px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 3px 4px;
  text-align: center;
}

.aga_agc.aga_ag1.aga_ag3 .comment .display-comment.disabled {
  background-color: #576e8b;
}

.aga_agc.aga_ag1.aga_ag3 .type {
  width: 7%;
}

.aga_agc.aga_ag1.aga_ag3 .type div {
  border-radius: 11px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 3px 4px;
  text-align: center;
}

.aga_agc.aga_ag1.aga_ag3 .type.sapi div {
  background-color: #143d6c;
}

.aga_agc.aga_ag1.aga_ag3 .type.sacv div {
  background-color: #0ac8b4;
}

.aga_agc.aga_ag1.aga_ag3 .type.sdrl div {
  background-color: #ff8879;
}

.aga_agc.aga_ag1.aga_ag3 .state {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ag3.aga_s9 .history, .aga_agc.aga_ag1.aga_ag3.aga_ag9 .history {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ag3.aga_s9 .cancel, .aga_agc.aga_ag1.aga_ag3.aga_ag9 .cancel {
  width: 12%;
}

.aga_agc.aga_ag1.aga_ag3.aga_s9 .status, .aga_agc.aga_ag1.aga_ag3.aga_ag9 .status {
  width: 17%;
}

.aga_agc.aga_ag1.aga_ag3.aga_s9 .responsable, .aga_agc.aga_ag1.aga_ag3.aga_ag9 .responsable {
  width: 12%;
}

.aga_agc.aga_ag1.aga_ag3.aga_s9 .comment, .aga_agc.aga_ag1.aga_ag3.aga_ag9 .comment {
  width: 16%;
}

.aga_agc.aga_ag1.aga_ag3.aga_s9 .type, .aga_agc.aga_ag1.aga_ag3.aga_ag9 .type {
  width: 9%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .history {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .cancel {
  width: 12%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .status {
  width: 17%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .responsable {
  width: 12%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .comment {
  width: 16%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .type {
  width: 9%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .rights {
  width: 9%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .sign {
  width: 9%;
}

.aga_agc.aga_ag1.aga_ag3.aga_aij .registration {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ain .id, .aga_agc.aga_ag1.aga_aip .id {
  width: 7%;
}

.aga_agc.aga_ag1.aga_ain .name, .aga_agc.aga_ag1.aga_aip .name {
  width: 16%;
}

.aga_agc.aga_ag1.aga_ain .status, .aga_agc.aga_ag1.aga_aip .status {
  width: 14%;
}

.aga_agc.aga_ag1.aga_ain .state, .aga_agc.aga_ag1.aga_aip .state {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ain .responsable, .aga_agc.aga_ag1.aga_aip .responsable {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ain .sign, .aga_agc.aga_ag1.aga_aip .sign {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ain .responsable-name, .aga_agc.aga_ag1.aga_aip .responsable-name {
  border-radius: 11px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  padding: 3px 4px;
  text-align: center;
  text-overflow: ellipsis;
}

.aga_agc.aga_ag1.aga_ain .responsable-name.purple, .aga_agc.aga_ag1.aga_aip .responsable-name.purple {
  background-color: #4c5da2;
}

.aga_agc.aga_ag1.aga_ain .responsable-name.green, .aga_agc.aga_ag1.aga_aip .responsable-name.green {
  background-color: #0ac8b4;
}

.aga_agc.aga_ag1.aga_ain .responsable-name.disabled, .aga_agc.aga_ag1.aga_aip .responsable-name.disabled {
  background-color: #576e8b;
}

.aga_agc.aga_ag1.aga_ain .rights, .aga_agc.aga_ag1.aga_aip .rights {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ain .rights-payment, .aga_agc.aga_ag1.aga_aip .rights-payment {
  border-radius: 11px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 3px 0;
  text-align: center;
}

.aga_agc.aga_ag1.aga_ain .rights-payment.salmon, .aga_agc.aga_ag1.aga_aip .rights-payment.salmon {
  background-color: #f08b7b;
}

.aga_agc.aga_ag1.aga_ain .rights-payment.green, .aga_agc.aga_ag1.aga_aip .rights-payment.green {
  background-color: #0ac8b4;
}

.aga_agc.aga_ag1.aga_ain .rights-payment.red, .aga_agc.aga_ag1.aga_aip .rights-payment.red {
  background-color: #b61701;
}

.aga_agc.aga_ag1.aga_ain .tag, .aga_agc.aga_ag1.aga_aip .tag {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ain .tag > div, .aga_agc.aga_ag1.aga_aip .tag > div {
  overflow: visible;
}

.aga_agc.aga_ag1.aga_ain .registration, .aga_agc.aga_ag1.aga_aip .registration {
  width: 5%;
}

.aga_agc.aga_ag1.aga_ain .max_sign_inv_date, .aga_agc.aga_ag1.aga_aip .max_sign_inv_date {
  width: 5%;
}

.aga_agc.aga_ag1.aga_ain .history, .aga_agc.aga_ag1.aga_aip .history {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ain .history span:first-child, .aga_agc.aga_ag1.aga_aip .history span:first-child {
  display: none;
}

.aga_agc.aga_ag1.aga_ain .history button, .aga_agc.aga_ag1.aga_aip .history button {
  background-color: #edf7f8;
  border: 0;
  color: #0c3970;
  font-size: 12px;
  font-weight: 600;
  padding: 4px;
}

.aga_agc.aga_ag1.aga_ain .cancel, .aga_agc.aga_ag1.aga_aip .cancel {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ain .cancel span:first-child, .aga_agc.aga_ag1.aga_aip .cancel span:first-child {
  display: none;
}

.aga_agc.aga_ag1.aga_ain .request_date,
.aga_agc.aga_ag1.aga_ain .estimated_delivery_date, .aga_agc.aga_ag1.aga_aip .request_date,
.aga_agc.aga_ag1.aga_aip .estimated_delivery_date {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ain .type, .aga_agc.aga_ag1.aga_aip .type {
  width: 7%;
}

.aga_agc.aga_ag1.aga_ain .type div, .aga_agc.aga_ag1.aga_aip .type div {
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.aga_agc.aga_ag1.aga_ain .type.sapi div, .aga_agc.aga_ag1.aga_aip .type.sapi div {
  background-color: #143d6c;
}

.aga_agc.aga_ag1.aga_ain .type.sacv div, .aga_agc.aga_ag1.aga_aip .type.sacv div {
  background-color: #0ac8b4;
}

.aga_agc.aga_ag1.aga_ain .type.sdrl div, .aga_agc.aga_ag1.aga_aip .type.sdrl div {
  background-color: #ff8879;
}

.aga_agc.aga_ag1.aga_ain .source, .aga_agc.aga_ag1.aga_aip .source {
  width: 8%;
}

.aga_agc.aga_ag1.aga_ain .source div, .aga_agc.aga_ag1.aga_aip .source div {
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
  text-transform: capitalize;
}

.aga_agc.aga_ag1.aga_ain .source.easylex div, .aga_agc.aga_ag1.aga_aip .source.easylex div {
  background-color: #ff8879;
}

.aga_agc.aga_ag1.aga_ain .source.zapopan div, .aga_agc.aga_ag1.aga_aip .source.zapopan div {
  background-color: #0d3970;
}

.aga_agc.aga_ag1.aga_ain.aga_aij .status, .aga_agc.aga_ag1.aga_aip.aga_aij .status {
  width: 16%;
}

.aga_agc.aga_ag1.aga_ain.aga_aij .sign, .aga_agc.aga_ag1.aga_aip.aga_aij .sign {
  width: 11%;
}

.aga_agc.aga_ag1.aga_ain.aga_aij .rights, .aga_agc.aga_ag1.aga_aip.aga_aij .rights {
  width: 11%;
}

.aga_agc.aga_ag1.aga_ain.aga_aij .registration, .aga_agc.aga_ag1.aga_aip.aga_aij .registration {
  width: 10%;
}

.aga_agc.aga_ag1.aga_ain.aga_aij .responsable, .aga_agc.aga_ag1.aga_aip.aga_aij .responsable {
  width: 11%;
}

.aga_agc.aga_ag1.aga_ain.aga_s9 .status, .aga_agc.aga_ag1.aga_aip.aga_s9 .status {
  width: 16%;
}

.aga_agc.aga_ag1.aga_ain.aga_s9 .sign, .aga_agc.aga_ag1.aga_aip.aga_s9 .sign {
  width: 11%;
}

.aga_agc.aga_ag1.aga_ain.aga_s9 .rights, .aga_agc.aga_ag1.aga_aip.aga_s9 .rights {
  width: 11%;
}

.aga_agc.aga_ag1.aga_ain.aga_s9 .estimated_delivery_date, .aga_agc.aga_ag1.aga_aip.aga_s9 .estimated_delivery_date {
  width: 14%;
}

.aga_agc.aga_ag1.aga_ain.aga_s9 .type, .aga_agc.aga_ag1.aga_aip.aga_s9 .type {
  width: 10%;
}

.aga_agc.aga_aix.aga_ag3 .updated_at, .aga_agc.aga_aix.aga_ain .updated_at, .aga_agc.aga_aix.aga_aip .updated_at {
  width: 15%;
}

.aga_agc.aga_aix.aga_ag3 .id, .aga_agc.aga_aix.aga_ain .id, .aga_agc.aga_aix.aga_aip .id {
  width: 10%;
}

.aga_agc.aga_aix.aga_ag3 .name, .aga_agc.aga_aix.aga_ain .name, .aga_agc.aga_aix.aga_aip .name {
  width: 30%;
}

.aga_agc.aga_aix.aga_ag3 .phase, .aga_agc.aga_aix.aga_ain .phase, .aga_agc.aga_aix.aga_aip .phase {
  width: 15%;
}

.aga_agc.aga_aix.aga_ag3 .phase div div, .aga_agc.aga_aix.aga_ain .phase div div, .aga_agc.aga_aix.aga_aip .phase div div {
  border-radius: 13px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Kollektif', sans-serif;
  font-size: 14px;
  height: unset;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .aga_agc.aga_aix.aga_ag3 .phase div div, .aga_agc.aga_aix.aga_ain .phase div div, .aga_agc.aga_aix.aga_aip .phase div div {
    font-size: 12px;
  }
}

.aga_agc.aga_aix.aga_ag3 .status, .aga_agc.aga_aix.aga_ain .status, .aga_agc.aga_aix.aga_aip .status {
  width: 20%;
}

.aga_agc.aga_aix.aga_ag3 .comment, .aga_agc.aga_aix.aga_ain .comment, .aga_agc.aga_aix.aga_aip .comment {
  -ms-flex-align: center;
  align-items: center;
  width: 15%;
}

.aga_agc.aga_aix.aga_ag3 .comment .display-comment, .aga_agc.aga_aix.aga_ain .comment .display-comment, .aga_agc.aga_aix.aga_aip .comment .display-comment {
  background-color: #0c3970;
  border-radius: 11px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 3px 4px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .aga_agc.aga_aix.aga_ag3 .comment .display-comment, .aga_agc.aga_aix.aga_ain .comment .display-comment, .aga_agc.aga_aix.aga_aip .comment .display-comment {
    font-size: 12px;
  }
}

.aga_agc.aga_aix.aga_ag3 .comment .display-comment.disabled, .aga_agc.aga_aix.aga_ain .comment .display-comment.disabled, .aga_agc.aga_aix.aga_aip .comment .display-comment.disabled {
  background-color: #576e8b;
}

.aga_agc.aga_aix.aga_ag3 .insurance_expiration_date,
.aga_agc.aga_aix.aga_ag3 .insurance_status,
.aga_agc.aga_aix.aga_ag3 .insurance_paid_at, .aga_agc.aga_aix.aga_ain .insurance_expiration_date,
.aga_agc.aga_aix.aga_ain .insurance_status,
.aga_agc.aga_aix.aga_ain .insurance_paid_at, .aga_agc.aga_aix.aga_aip .insurance_expiration_date,
.aga_agc.aga_aix.aga_aip .insurance_status,
.aga_agc.aga_aix.aga_aip .insurance_paid_at {
  width: 20%;
}

.aga_agc.aga_ai9.aga_ag3 .last_name,
.aga_agc.aga_ai9.aga_ag3 .inviter_last_name,
.aga_agc.aga_ai9.aga_ag3 .actions, .aga_agc.aga_ai9.aga_ain .last_name,
.aga_agc.aga_ai9.aga_ain .inviter_last_name,
.aga_agc.aga_ai9.aga_ain .actions, .aga_agc.aga_ai9.aga_aip .last_name,
.aga_agc.aga_ai9.aga_aip .inviter_last_name,
.aga_agc.aga_ai9.aga_aip .actions {
  -ms-flex-align: center;
  align-items: center;
  width: 20%;
}

.aga_agc.aga_ai9.aga_ag3 .created_at, .aga_agc.aga_ai9.aga_ain .created_at, .aga_agc.aga_ai9.aga_aip .created_at {
  -ms-flex-align: center;
  align-items: center;
  width: 15%;
}

.aga_agc.aga_ai9.aga_ag3 .email, .aga_agc.aga_ai9.aga_ain .email, .aga_agc.aga_ai9.aga_aip .email {
  -ms-flex-align: center;
  align-items: center;
  width: 25%;
}

.aga_agc.aga_ai9.aga_ag3 .responsible_name, .aga_agc.aga_ai9.aga_ain .responsible_name, .aga_agc.aga_ai9.aga_aip .responsible_name {
  -ms-flex-align: center;
  align-items: center;
  width: 20%;
}

.aga_agc.aga_ai9.aga_ag3 .responsible_email,
.aga_agc.aga_ai9.aga_ag3 .address, .aga_agc.aga_ai9.aga_ain .responsible_email,
.aga_agc.aga_ai9.aga_ain .address, .aga_agc.aga_ai9.aga_aip .responsible_email,
.aga_agc.aga_ai9.aga_aip .address {
  -ms-flex-align: center;
  align-items: center;
  width: 15%;
}

.aga_agc.aga_ai9.aga_ag3 .broker_number, .aga_agc.aga_ai9.aga_ain .broker_number, .aga_agc.aga_ai9.aga_aip .broker_number {
  -ms-flex-align: center;
  align-items: center;
  width: 10%;
}

.aga_agc.aga_ai9.aga_ag3 .phone, .aga_agc.aga_ai9.aga_ain .phone, .aga_agc.aga_ai9.aga_aip .phone {
  -ms-flex-align: center;
  align-items: center;
  width: 16%;
}

.aga_agc.aga_ai9.aga_ag3 .type,
.aga_agc.aga_ai9.aga_ag3 .status, .aga_agc.aga_ai9.aga_ain .type,
.aga_agc.aga_ai9.aga_ain .status, .aga_agc.aga_ai9.aga_aip .type,
.aga_agc.aga_ai9.aga_aip .status {
  -ms-flex-align: center;
  align-items: center;
  width: 12%;
}

.aga_agc.aga_ajs.aga_ag3 .code, .aga_agc.aga_ajs.aga_ain .code, .aga_agc.aga_ajs.aga_aip .code {
  width: 15%;
}

.aga_agc.aga_ajs.aga_ag3 .code div, .aga_agc.aga_ajs.aga_ain .code div, .aga_agc.aga_ajs.aga_aip .code div {
  background-color: #0c3970;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.aga_agc.aga_ajs.aga_ag3 .amount, .aga_agc.aga_ajs.aga_ain .amount, .aga_agc.aga_ajs.aga_aip .amount {
  text-align: right;
  width: 10%;
}

.aga_agc.aga_ajs.aga_ag3 .resourcesTypes, .aga_agc.aga_ajs.aga_ain .resourcesTypes, .aga_agc.aga_ajs.aga_aip .resourcesTypes {
  width: 15%;
}

.aga_agc.aga_ajs.aga_ag3 .status, .aga_agc.aga_ajs.aga_ain .status, .aga_agc.aga_ajs.aga_aip .status {
  width: 10%;
}

.aga_agc.aga_ajs.aga_ag3 .description, .aga_agc.aga_ajs.aga_ain .description, .aga_agc.aga_ajs.aga_aip .description {
  width: 28%;
}

.aga_agc.aga_ajs.aga_ag3 .actions, .aga_agc.aga_ajs.aga_ain .actions, .aga_agc.aga_ajs.aga_aip .actions {
  width: 22%;
}

.aga_agc.aga_ajs.aga_ag3 .actions div, .aga_agc.aga_ajs.aga_ain .actions div, .aga_agc.aga_ajs.aga_aip .actions div {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}

.aga_agc.aga_aj0.aga_ag3 .use_count,
.aga_agc.aga_aj0.aga_ag3 .code,
.aga_agc.aga_aj0.aga_ag3 .status,
.aga_agc.aga_aj0.aga_ag3 .price,
.aga_agc.aga_aj0.aga_ag3 .trial_period_days,
.aga_agc.aga_aj0.aga_ag3 .subscription_type,
.aga_agc.aga_aj0.aga_ag3 .actions, .aga_agc.aga_aj0.aga_ain .use_count,
.aga_agc.aga_aj0.aga_ain .code,
.aga_agc.aga_aj0.aga_ain .status,
.aga_agc.aga_aj0.aga_ain .price,
.aga_agc.aga_aj0.aga_ain .trial_period_days,
.aga_agc.aga_aj0.aga_ain .subscription_type,
.aga_agc.aga_aj0.aga_ain .actions, .aga_agc.aga_aj0.aga_aip .use_count,
.aga_agc.aga_aj0.aga_aip .code,
.aga_agc.aga_aj0.aga_aip .status,
.aga_agc.aga_aj0.aga_aip .price,
.aga_agc.aga_aj0.aga_aip .trial_period_days,
.aga_agc.aga_aj0.aga_aip .subscription_type,
.aga_agc.aga_aj0.aga_aip .actions {
  width: calc(100% / 7);
}

.aga_agc.aga_aj0.aga_ag3 .code div, .aga_agc.aga_aj0.aga_ain .code div, .aga_agc.aga_aj0.aga_aip .code div {
  background-color: #0c3970;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.aga_agc.aga_aka.aga_ag3 .name,
.aga_agc.aga_aka.aga_ag3 .email,
.aga_agc.aga_aka.aga_ag3 .company_name,
.aga_agc.aga_aka.aga_ag3 .bussiness_activity, .aga_agc.aga_aka.aga_ain .name,
.aga_agc.aga_aka.aga_ain .email,
.aga_agc.aga_aka.aga_ain .company_name,
.aga_agc.aga_aka.aga_ain .bussiness_activity, .aga_agc.aga_aka.aga_aip .name,
.aga_agc.aga_aka.aga_aip .email,
.aga_agc.aga_aka.aga_aip .company_name,
.aga_agc.aga_aka.aga_aip .bussiness_activity {
  -ms-flex-align: center;
  align-items: center;
  width: 18%;
}

.aga_agc.aga_aka.aga_ag3 .phone,
.aga_agc.aga_aka.aga_ag3 .actions, .aga_agc.aga_aka.aga_ain .phone,
.aga_agc.aga_aka.aga_ain .actions, .aga_agc.aga_aka.aga_aip .phone,
.aga_agc.aga_aka.aga_aip .actions {
  -ms-flex-align: center;
  align-items: center;
  width: 14%;
}

.aga_agc.aga_aka.aga_ag3 .actions, .aga_agc.aga_aka.aga_ain .actions, .aga_agc.aga_aka.aga_aip .actions {
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 10px;
}

.aga_agc.aga_aka.aga_ag3 .actions div, .aga_agc.aga_aka.aga_ain .actions div, .aga_agc.aga_aka.aga_aip .actions div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: unset;
}

.aga_agc.aga_akh.aga_ag3 .generalRate,
.aga_agc.aga_akh.aga_ag3 .fullName,
.aga_agc.aga_akh.aga_ag3 .email,
.aga_agc.aga_akh.aga_ag3 .review,
.aga_agc.aga_akh.aga_ag3 .actions, .aga_agc.aga_akh.aga_ain .generalRate,
.aga_agc.aga_akh.aga_ain .fullName,
.aga_agc.aga_akh.aga_ain .email,
.aga_agc.aga_akh.aga_ain .review,
.aga_agc.aga_akh.aga_ain .actions, .aga_agc.aga_akh.aga_aip .generalRate,
.aga_agc.aga_akh.aga_aip .fullName,
.aga_agc.aga_akh.aga_aip .email,
.aga_agc.aga_akh.aga_aip .review,
.aga_agc.aga_akh.aga_aip .actions {
  width: calc(100% / 5);
}

.aga_agc.aga_akh.aga_ag3 .actions, .aga_agc.aga_akh.aga_ain .actions, .aga_agc.aga_akh.aga_aip .actions {
  width: 12%;
}

.aga_agc.aga_akh.aga_ag3 .actions div, .aga_agc.aga_akh.aga_ain .actions div, .aga_agc.aga_akh.aga_aip .actions div {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}

.aga_agc.aga_akp.aga_ag3 .created_at,
.aga_agc.aga_akp.aga_ag3 .name,
.aga_agc.aga_akp.aga_ag3 .actions, .aga_agc.aga_akp.aga_ain .created_at,
.aga_agc.aga_akp.aga_ain .name,
.aga_agc.aga_akp.aga_ain .actions, .aga_agc.aga_akp.aga_aip .created_at,
.aga_agc.aga_akp.aga_aip .name,
.aga_agc.aga_akp.aga_aip .actions {
  width: 15%;
}

.aga_agc.aga_akp.aga_ag3 .description, .aga_agc.aga_akp.aga_ain .description, .aga_agc.aga_akp.aga_aip .description {
  width: 55%;
}

.aga_agc.aga_akp.aga_ag3 .actions div, .aga_agc.aga_akp.aga_ain .actions div, .aga_agc.aga_akp.aga_aip .actions div {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}

.aga_agc.aga_akr.aga_ag3 .date, .aga_agc.aga_akr.aga_ain .date, .aga_agc.aga_akr.aga_aip .date {
  width: 10%;
}

.aga_agc.aga_akr.aga_ag3 .id, .aga_agc.aga_akr.aga_ain .id, .aga_agc.aga_akr.aga_aip .id {
  width: 20%;
}

.aga_agc.aga_akr.aga_ag3 .status, .aga_agc.aga_akr.aga_ain .status, .aga_agc.aga_akr.aga_aip .status {
  width: 10%;
}

.aga_agc.aga_akr.aga_ag3 .comment, .aga_agc.aga_akr.aga_ain .comment, .aga_agc.aga_akr.aga_aip .comment {
  width: 15%;
}

.aga_agc.aga_akr.aga_ag3 .comment div, .aga_agc.aga_akr.aga_ain .comment div, .aga_agc.aga_akr.aga_aip .comment div {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.aga_agc.aga_akr.aga_ag3 .history, .aga_agc.aga_akr.aga_ain .history, .aga_agc.aga_akr.aga_aip .history {
  width: 30%;
}

.aga_agc.aga_akr.aga_ag3 .history div, .aga_agc.aga_akr.aga_ain .history div, .aga_agc.aga_akr.aga_aip .history div {
  overflow: visible;
}

.aga_agc.aga_akr.aga_ag3 .sign, .aga_agc.aga_akr.aga_ain .sign, .aga_agc.aga_akr.aga_aip .sign {
  width: 15%;
}

.aga_agc .aga_akt {
  color: #0068aa;
  font-family: "Agency", sans-serif;
  font-size: 22px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akt {
    width: 100%;
  }
}

.aga_agc .aga_ae3 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_ae3 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aga_agc .aga_akv {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akv {
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}

.aga_agc .aga_akv.aga_akx {
  margin: 0 0 15px;
}

.aga_agc .aga_akz {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz {
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 20px;
    width: 100%;
  }
}

.aga_agc .aga_akz .aga_ak1 {
  background-color: #0c3970;
  border-radius: 20px;
  box-shadow: none;
  font-family: "Inter Light", sans-serif;
  letter-spacing: 0;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz .aga_ak1 {
    margin-bottom: 10px;
    width: 100%;
  }
}

.aga_agc .aga_akz .aga_ak3 {
  background-color: #4c5da2;
  border-radius: 20px;
  box-shadow: none;
  font-family: "Inter Light", sans-serif;
  letter-spacing: 0;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz .aga_ak3 {
    margin-bottom: 10px;
    width: 100%;
  }
}

.aga_agc .aga_akz .aga_ak5 {
  background-color: #fe6c5a;
  border-radius: 20px;
  box-shadow: none;
  font-family: "Inter Light", sans-serif;
  letter-spacing: 0;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz .aga_ak5 {
    margin-bottom: 10px;
    width: 100%;
  }
}

.aga_agc .aga_akz .aga_ak7 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0ac8b4;
  border-radius: 20px;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  gap: 5px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz .aga_ak7 {
    margin-bottom: 10px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz .aga_ak9 {
    width: 100%;
  }
}

.aga_agc .aga_akz .aga_alb {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_akz .aga_alb {
    margin-right: 0;
    width: 100%;
  }
}

.aga_agc .aga_akz .aga_alb > div {
  margin: 0;
}

.aga_agc .aga_akz .aga_alb span {
  background-color: transparent;
}

.aga_agc .aga_akz .aga_alb span i {
  color: #282828;
}

.aga_agc .aga_akz .aga_alb input {
  background: #f5f6fa;
  border: none;
  border-radius: 50px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 32px;
}

.aga_agc .aga_akz .aga_alb input:-ms-input-placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.aga_agc .aga_akz .aga_alb input::placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.aga_agc .aga_p6 {
  background-color: #fff;
  border-collapse: collapse;
  border-radius: 8px;
  margin-top: 0;
  table-layout: fixed;
  width: calc(100% - 20px);
}

.aga_agc .aga_p6 button {
  font-size: 12px;
}

.aga_agc .aga_p6.aga_ag3 {
  width: 100%;
}

.aga_agc .aga_p6 tbody {
  height: 100%;
  padding: 10px 20px;
}

.aga_agc .aga_p6 thead {
  border-bottom: none;
  height: 45px;
  margin-top: 20px;
}

.aga_agc .aga_p6 thead tr {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 0;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 20px;
}

.aga_agc .aga_p6 thead tr td {
  box-shadow: none;
  font-family: "Agency", sans-serif;
  padding-bottom: 0;
}

.aga_agc .aga_p6 thead tr td button {
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .aga_agc .aga_p6 thead tr td {
    padding: 10px;
  }
}

.aga_agc .aga_p6 tr {
  background-color: #fff;
  border-color: #edf2f5;
  border-radius: 5px;
  border-style: solid;
  height: 60px;
  margin-bottom: 10px;
}

.aga_agc .aga_p6 tr td {
  font-family: "Inter Light", sans-serif;
}

.aga_agc .aga_p6 tr td div span {
  font-size: 12px !important;
}

.aga_agc .aga_p6 tr td div div > span {
  padding: 3px;
  font-size: 12px !important;
}

.aga_agc .aga_p6 tr td div span {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.aga_agc .aga_p6 tr td span {
  font-weight: 400;
}

.aga_agc .aga_p6 tr td span > span {
  font-weight: 400;
}

@media screen and (max-width: 1023px) {
  .aga_agc .aga_p6 tr td {
    font-size: 12px;
  }
}

.aga_agc .aga_nq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.aga_agc .aga_ale {
  border-bottom: 2px solid #d9f6f9;
  padding-bottom: 10px;
  position: relative;
}

.aga_agc .aga_ale a {
  color: #3b3f3b;
  font-size: 18px;
}

.aga_agc .aga_ale a:first-child {
  margin-right: 40px;
}

.aga_agc .aga_ale a.active {
  color: #282828;
}

.aga_agc .aga_ale a.active::after {
  background-color: #0ac8b4;
  bottom: calc(-100% + 4px);
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
}

.aga_agc .aga_k9 {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_k9 {
    top: 0;
  }
}

.aga_agc .aga_alg {
  text-align: center;
}

.aga_agc .aga_ali {
  display: inline-block;
  min-width: 140px;
  text-align: center;
}

.aga_agc .aga_ali span {
  animation: aga_agf 2s linear infinite;
  border-bottom: 4px solid #0ac8b4;
  border-left: 4px solid #0ac8b4;
  border-radius: 50%;
  border-top: 4px solid #0ac8b4;
  border: 4px solid #edf7f8;
  display: inline-block;
  height: 22px;
  margin: 45px;
  width: 22px;
}

.aga_agc .aga_ali i {
  color: #0ac8b4;
  font-size: 20px;
  margin: 45px;
}

.aga_agc .aga_alk {
  box-shadow: 0 1px 6px -2px #979797;
  font-size: 12px;
  height: 25px;
  margin-right: 25px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .aga_agc .aga_alk {
    margin-right: 15px;
  }
}

.aga_agc .aga_alm {
  border-radius: 11px;
  font-size: 12px;
  height: unset;
  min-width: unset;
  padding: 0 5px;
}

.aga_agc .aga_alk,
.aga_agc .aga_alm {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.aga_agc .aga_alk i,
.aga_agc .aga_alm i {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin: 0 3px;
}

.aga_agc .aga_alk.aga_kh,
.aga_agc .aga_alm.aga_kh {
  margin: 0;
}

.aga_agc .aga_alo {
  -ms-flex-align: center;
  align-items: center;
  border: none;
  border-radius: 22px;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 3px;
  max-width: 32px;
  min-width: 32px;
}

.aga_agc .aga_alo i {
  color: #fff;
}

.aga_agc .aga_alo[disabled] {
  cursor: not-allowed;
  opacity: .6;
}

.aga_agc .aga_alo.aga_alq {
  background-color: #0c3970;
}

.aga_agc .aga_alo.aga_als {
  background-color: #0ac8b4;
}

.aga_agc .aga_alo.aga_alu i {
  width: 21px;
}

.aga_agc .aga_alo.aga_alw {
  color: #fff !important;
  font-size: 10px;
}

.aga_agc .aga_aly {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(137, 137, 137, 0.5);
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
  position: absolute !important;
  top: 50px;
  width: 95%;
  z-index: 1;
}

.aga_agc .aga_aly ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 7px;
  list-style-type: none;
  padding: 0;
}

.aga_agc .aga_aly ul li {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.aga_agc .aga_aly ul .aga_ahy {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 16px;
  line-height: 1.44;
  text-align: start !important;
}

.aga_agc .aga_fk,
.aga_agc .aga_al0 {
  border-radius: 7px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.aga_agc .aga_fk {
  background-color: #0ac8b4;
}

.aga_agc .aga_al0 {
  background-color: #fa6c5a;
}

#aga_al2 {
  overflow-x: auto;
}

.aga_al4 {
  background-color: #0c3970;
}

.aga_al6 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.aga_al6 .aga_al8 {
  font-size: 18px;
  height: 18px;
  width: 18px;
}

.at6_at8 .at6_mx {
  text-align: center;
}

.at6_at8 div[role='contentinfo'] {
  max-width: 460px;
}

.aua_ng {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.aua_ng .aua_auc {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 5px;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: unset;
  padding: 5px;
  width: 125px;
}

@media screen and (max-width: 767px) {
  .aua_ng .aua_auc {
    margin-bottom: 10px;
    width: 100%;
  }
}

.aua_ng .aua_auc i {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.aua_ng .aua_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
  width: 100%;
}

@media (max-width: 400px) {
  .aua_ng .aua_ev {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aua_ng .aua_ev .aua_auf {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  width: 100%;
}

.aua_ng .aua_ev .aua_auf i {
  color: #0c3970;
  cursor: pointer;
  width: 20px;
}

.aua_ng .aua_ev .aua_auf .aua_l4 {
  width: 100%;
}

.aua_ng .aua_ev .aua_auf .aua_auh {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
}

.aua_ng .aua_ev .aua_auf .aua_auh i {
  width: auto;
}

.aua_ng .aua_ev .aua_auf .aua_auj {
  background-color: unset;
  border: 0;
}

.aua_ng .aua_ev .aua_auf .aua_auj i {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fe6c5a;
  border-radius: 50%;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 10px;
  width: 20px;
}

.aua_ng .aua_ev .aua_auf > div {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
  padding: 3px 5px;
}

.aua_ng .aua_ev .aua_auf > div:first-child {
  margin-top: 20px;
}

.aua_ng .aua_aul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
}

.bew_l0 {
  font-family: Kollektif;
}

.bew_l0 input[type='file'] {
  display: none;
}

.bew_l0 .bew_l2 {
  background-color: transparent;
  border: 2px solid #0c3970;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0;
  width: 100%;
}

.bew_l0 .bew_l4 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 36px;
  padding: 5px;
  width: 70%;
}

.bew_l0 .bew_l4 div {
  opacity: 0.5;
  overflow: hidden;
  padding: inherit;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bew_l0 .bew_l6 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: 0;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 36px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30%;
}

.aun_aup [role='contentinfo'] {
  max-width: 100px;
}

.aun_aup [role='contentinfo'] header,
.aun_aup [role='contentinfo'] .aun_mx {
  text-align: left;
}

.aun_aup [role='contentinfo'] header .aun_aur,
.aun_aup [role='contentinfo'] .aun_mx .aun_aur {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 30px 30px 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .aun_aup [role='contentinfo'] header .aun_aur,
  .aun_aup [role='contentinfo'] .aun_mx .aun_aur {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aun_aup [role='contentinfo'] header .aun_aur .aun_r0,
.aun_aup [role='contentinfo'] .aun_mx .aun_aur .aun_r0 {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .aun_aup [role='contentinfo'] header .aun_aur .aun_r0,
  .aun_aup [role='contentinfo'] .aun_mx .aun_aur .aun_r0 {
    width: 100%;
  }
}

.aun_aup [role='contentinfo'] header .aun_aur .aun_aut,
.aun_aup [role='contentinfo'] .aun_mx .aun_aur .aun_aut {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: left;
  justify-content: left;
  margin: 5px 0 0 15px;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .aun_aup [role='contentinfo'] header .aun_aur .aun_aut,
  .aun_aup [role='contentinfo'] .aun_mx .aun_aur .aun_aut {
    width: 100%;
  }
}

.aun_aup [role='contentinfo'] header .aun_aur .aun_aut button,
.aun_aup [role='contentinfo'] .aun_mx .aun_aur .aun_aut button {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.aun_aup [role='contentinfo'] header .aun_aur .aun_aut button span,
.aun_aup [role='contentinfo'] .aun_mx .aun_aur .aun_aut button span {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.aun_aup [role='contentinfo'] header .aun_aur .aun_pw,
.aun_aup [role='contentinfo'] .aun_mx .aun_aur .aun_pw {
  color: #3b3f3b;
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 6px;
  white-space: nowrap;
  width: 100%;
}

.aun_aup [role='contentinfo'] header .aun_aur:nth-child(odd),
.aun_aup [role='contentinfo'] .aun_mx .aun_aur:nth-child(odd) {
  background-color: #edf7f8;
}

.aun_aup [role='contentinfo'] header .aun_l4,
.aun_aup [role='contentinfo'] .aun_mx .aun_l4 {
  display: block;
  min-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aun_aup [role='contentinfo'] header .aun_l4 i,
.aun_aup [role='contentinfo'] .aun_mx .aun_l4 i {
  font-size: 1.4em;
}

.aun_aup [role='contentinfo'] header .aun_auv,
.aun_aup [role='contentinfo'] .aun_mx .aun_auv {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aun_aup [role='contentinfo'] header .aun_aux,
.aun_aup [role='contentinfo'] .aun_mx .aun_aux {
  display: block;
  min-height: 40px;
  white-space: nowrap;
}

.aun_aup [role='contentinfo'] header .aun_aux i,
.aun_aup [role='contentinfo'] .aun_mx .aun_aux i {
  font-size: 1.4em;
}

.aun_aup [role='contentinfo'] header .aun_auz,
.aun_aup [role='contentinfo'] .aun_mx .aun_auz {
  margin: 0 5px;
}

.aun_aup [role='contentinfo'] header .aun_au1,
.aun_aup [role='contentinfo'] header .aun_au3,
.aun_aup [role='contentinfo'] .aun_mx .aun_au1,
.aun_aup [role='contentinfo'] .aun_mx .aun_au3 {
  -ms-flex-align: center;
  align-items: center;
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .aun_aup [role='contentinfo'] header .aun_au1,
  .aun_aup [role='contentinfo'] header .aun_au3,
  .aun_aup [role='contentinfo'] .aun_mx .aun_au1,
  .aun_aup [role='contentinfo'] .aun_mx .aun_au3 {
    padding-left: 27px;
  }
}

.aun_aup [role='contentinfo'] header .aun_am9.aun_au5 > *,
.aun_aup [role='contentinfo'] .aun_mx .aun_am9.aun_au5 > * {
  max-width: 25%;
  width: unset;
}

.aun_aup [role='contentinfo'] header .aun_au7,
.aun_aup [role='contentinfo'] .aun_mx .aun_au7 {
  color: #fff;
  text-decoration: underline;
}

.aun_aup [role='contentinfo'] header .aun_ab7 button,
.aun_aup [role='contentinfo'] .aun_mx .aun_ab7 button {
  border: 0;
  box-shadow: none;
  color: #00b29f;
  display: block;
  font-size: 14px;
  margin-top: 15px;
  padding: 0;
  text-align: left;
}

.aun_aup [role='contentinfo'] header .aun_ab7 button:hover, .aun_aup [role='contentinfo'] header .aun_ab7 button:focus, .aun_aup [role='contentinfo'] header .aun_ab7 button:active,
.aun_aup [role='contentinfo'] .aun_mx .aun_ab7 button:hover,
.aun_aup [role='contentinfo'] .aun_mx .aun_ab7 button:focus,
.aun_aup [role='contentinfo'] .aun_mx .aun_ab7 button:active {
  background-color: transparent;
}

.aun_aup [role='contentinfo'] header .aun_ab7 button:active,
.aun_aup [role='contentinfo'] .aun_mx .aun_ab7 button:active {
  transform: translateY(0);
}

.aun_aup [role='contentinfo'] header .aun_ab7 i,
.aun_aup [role='contentinfo'] .aun_mx .aun_ab7 i {
  font-size: 1.4em;
  margin-top: 5px;
}

.aun_aup [role='contentinfo'] header .aun_au9,
.aun_aup [role='contentinfo'] .aun_mx .aun_au9 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.aun_aup [role='contentinfo'] header .aun_au9 i,
.aun_aup [role='contentinfo'] .aun_mx .aun_au9 i {
  top: 2px;
}

.aun_aup [role='contentinfo'] header .aun_avb,
.aun_aup [role='contentinfo'] .aun_mx .aun_avb {
  color: #0c3970;
}

.aun_aup.aun_hy [role='contentinfo'] {
  max-width: 800px;
}

.aun_aup .aun_mz {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 30px;
  width: 100%;
}

.ave_avg header h1,
.ave_avg header p {
  text-align: left;
}

.ave_avg .ave_aev {
  margin: 0 auto;
}

.ave_avg .ave_mx {
  padding: 0;
}

.ave_avg .ave_mx p {
  margin-bottom: 15px;
  margin-top: 0;
}

.ave_avg .ave_avi {
  border: 2px solid #0c3970;
}

.ave_avg .ave_avi input {
  border: 0;
}

.ave_avg .ave_avi ul {
  border-top: 1px solid #0c3970;
  height: 230px;
  list-style: none;
  margin: 0;
  overflow-y: scroll;
  padding: 0;
}

.ave_avg .ave_avi li {
  display: block;
  margin: 0;
}

.ave_avg .ave_avi li figure {
  -ms-flex-align: center;
  align-items: center;
  background-color: #979797;
  border-radius: 50%;
  color: #fff;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: bold;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 1em 0 0;
  text-transform: uppercase;
  width: 25px;
}

.ave_avg .ave_avi li figure.ave_ag3 {
  background-color: #0c3970;
}

.ave_avg .ave_avi li figure.ave_aip {
  background-color: #00b29f;
}

.ave_avg .ave_avi li figure.ave_ain {
  background-color: #ffe696;
}

.ave_avg .ave_avi li button {
  background: transparent;
  border: 0;
  color: #282828;
  display: block;
  padding: 10px 15px;
  text-align: left;
  text-transform: capitalize;
  width: 100%;
}

.ave_avg .ave_avi li button:hover {
  background-color: rgba(12, 57, 112, 0.2);
}

.ave_avg .ave_avi li button.ave_fk {
  background-color: rgba(12, 57, 112, 0.5);
}

.ave_avg .ave_e5 {
  font-size: 18px;
  font-weight: 600;
  margin: 1em 0;
}

.ave_avg .ave_aw {
  text-align: center;
}

.ave_avg div[role='contentinfo'] {
  max-width: 500px;
}

.ave_avg div[role='contentinfo'] footer {
  padding-top: 0;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ave_avg div[role='contentinfo'] footer button {
  margin: 0;
  max-width: 170px;
}

.avk_avm {
  background-color: #fff;
  border: solid 2px #0c3970;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.12);
  max-width: 400px;
  padding: 24px;
  position: absolute;
  z-index: 90;
}

.avk_avm > span {
  display: block;
  margin-bottom: 1em;
}

.avk_avm .avk_ajg {
  margin-top: 14px;
  text-align: right;
}

.avk_avm .avk_ajg button {
  font-size: 12px;
  height: 28px;
}

.avk_avm .avk_ajg .avk_avo {
  color: #00b29f;
  margin-right: 10px;
}

.avq_avs header h1,
.avq_avs header p {
  text-align: left;
}

.avq_avs .avq_mx {
  padding: 0;
}

.avq_avs .avq_mx .avq_avu {
  margin: 10px 0;
  width: 24%;
}

@media screen and (max-width: 1023px) {
  .avq_avs .avq_mx .avq_avu {
    width: 100%;
  }
}

.avq_avs .avq_mx .avq_avw {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .avq_avs .avq_mx .avq_avw {
    display: unset;
  }
}

.avq_avs div[role='contentinfo'] {
  max-width: 500px;
}

.avq_avs div[role='contentinfo'] footer {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.avq_avs div[role='contentinfo'] footer button {
  margin: 0;
  max-width: 170px;
}

.avq_avs .avq_p6 {
  background-color: transparent;
  border-collapse: collapse;
  margin: 10px;
  table-layout: fixed;
  width: calc(100% - 20px);
}

.avq_avs .avq_p6 button {
  font-size: 12px;
}

.avq_avs .avq_p6 thead {
  border-bottom: none;
  width: calc(100% - 15px);
}

.avq_avs .avq_p6 thead tr {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
}

.avq_avs .avq_p6 thead tr td {
  box-shadow: none;
  font-family: "Agency", sans-serif;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 0;
  text-align: center;
  width: 25%;
}

.avq_avs .avq_p6 tbody {
  height: 350px;
  overflow-y: scroll;
}

.avq_avs .avq_p6 tbody td {
  text-align: center;
  width: 25%;
}

.avq_avs .avq_p6 tr {
  background-color: #fff;
  border-color: #edf2f5;
  border-radius: 5px;
  border-style: solid;
  height: 60px;
  margin: 10px 0;
}

.avq_avs .avq_p6 tr td {
  position: relative;
}

.avq_avs .avq_p6 tr td div {
  position: unset;
}

.avq_avs .avq_p6 tr td div span {
  font-size: 12px !important;
}

.avq_avs .avq_p6 tr td div div > span {
  padding: 3px;
  font-size: 12px !important;
}

.avq_avs .avq_p6 tr td div span {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .avq_avs .avq_p6 tr td {
    font-size: 12px;
  }
}

.avy_ng {
  width: 100%;
}

.avy_ng .avy_auc {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: unset;
  margin: 20px auto;
  min-width: unset;
  padding: 5px;
}

.avy_ng .avy_auc i > {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 4px;
}

.avy_ng .avy_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
  width: 100%;
}

@media (max-width: 400px) {
  .avy_ng .avy_ev {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.avy_ng .avy_ev .avy_auf {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  width: 50%;
}

.avy_ng .avy_ev .avy_auf i {
  color: #0c3970;
  cursor: pointer;
  width: 20px;
}

@media (max-width: 400px) {
  .avy_ng .avy_ev .avy_auf {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.avy_ng .avy_ev .avy_auf > div {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
  padding: 3px 5px;
}

.avy_ng .avy_aul {
  padding: 0 20px;
}

.av0_av2 {
  background-color: #fff;
  border-radius: 8px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 25px;
}

.av0_av2 .av0_av4 {
  font-weight: 700;
  padding-left: 30px;
}

.av0_av2 .av0_a0 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.av0_av2 .av0_uz {
  margin: 0 0 30px;
}

.av0_av2 .av0_av6 {
  color: #ffe696;
  font-size: 35px;
  height: 35px;
}

.av0_av2 .av0_av8 {
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  padding: 0 25px;
  text-transform: uppercase;
}

.av0_av2 .av0_awa {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 50px 0;
  padding: 0 25px;
}

.av0_av2 .av0_awa button {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.av0_av2 .av0_awa button:first-child {
  max-width: 280px;
}

.av0_av2:last-child {
  margin-top: 0;
}

.awc_awf [role='contentinfo'] {
  max-width: 500px;
}

.awc_awf [role='contentinfo'] header,
.awc_awf [role='contentinfo'] .awc_mx {
  text-align: left;
}

.awc_awf footer {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.awc_awf footer button {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 0.5em;
}

.awc_awf footer button:first-child {
  margin-left: 35%;
  color: #00b29f;
}

.awc_awf .awc_awj > div {
  display: inline-block;
}

.awc_awf .awc_awl {
  margin-top: 30px;
}

.awc_awf .awc_awl > div {
  display: inline-block;
  margin-right: 30px;
  width: 190px;
}

.awc_awf .awc_awn > div {
  display: inline-block;
  margin-right: 30px;
  width: 190px;
}

.awc_awf .awc_a6 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.awc_awf .awc_a6 > div {
  margin-top: 0;
}

.awc_awf .awc_a8 {
  border-bottom: 1px solid rgba(0, 104, 170, 0.5);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.awc_awf .awc_a8 > div {
  width: 32%;
}

.awc_awf .awc_ba > div:first-child {
  width: 140px;
}

.awc_awf .awc_ba > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.awc_awf .awc_bc > div:first-child {
  width: 50%;
}

.awc_awf .awc_bc > div:not(:first-child) {
  margin-left: 2%;
  width: 23%;
}

.awc_awf .awc_bf > div:first-child {
  width: 50%;
}

.awc_awf .awc_bf > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.awc_awf .awc_aw {
  text-align: center;
}

.awc_awf.awc_hy [role='contentinfo'] {
  max-width: 800px;
}

.awc_awf.awc_awp [role='contentinfo'] {
  max-width: 600px;
}

.awc_awf.awc_rs [role='contentinfo'] {
  max-width: 300px;
}

.awc_awf .awc_mz {
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  width: 100%;
}

.awr_awt {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  min-height: 65vh;
  padding: 0 25px 20px;
}

@media screen and (max-width: 1023px) {
  .awr_awt {
    height: unset;
    min-height: 60vh;
  }
}

.awr_awt.awr_awv {
  height: unset;
}

.awr_awt .awr_awx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100% - 20px);
}

.awr_awt .awr_api {
  font-family: "Agency", sans-serif;
  padding-bottom: 6px;
}

.awr_awt .awr_awz {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 10px;
}

.awr_awt .awr_aw1 {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw1 {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.awr_awt .awr_aw1.awr_asr {
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
}

.awr_awt .awr_aw3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.awr_awt .awr_aw5 {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.awr_awt .awr_aw7 {
  width: 100%;
}

.awr_awt .awr_aw7 .awr_aw9 label {
  font-size: 12px;
  width: 150px;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw7 .awr_aw9 label {
    width: 100%;
  }
}

.awr_awt .awr_aw7 .awr_aw9 > div {
  width: calc(100% - 160px);
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw7 .awr_aw9 > div {
    width: 100%;
  }
}

.awr_awt .awr_aw7 .awr_aw9 > div input {
  border-radius: 5px;
  height: 40px;
  width: 25%;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw7 .awr_aw9 > div input {
    width: 100%;
  }
}

.awr_awt .awr_aw7 .awr_axb {
  margin-top: 15px;
}

.awr_awt .awr_aw7 .awr_axb > div:nth-child(2) {
  width: calc(100% - 160px);
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw7 .awr_axb > div:nth-child(2) {
    width: 100%;
  }
}

.awr_awt .awr_aw7 .awr_axb input {
  border: solid 1px #cdcfd6;
  border-radius: 5px;
  height: 40px;
  padding: 11px 13px;
  width: 25%;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw7 .awr_axb input {
    width: 100%;
  }
}

.awr_awt .awr_aw7 .awr_axb.awr_axe {
  margin-bottom: 40px;
}

.awr_awt .awr_aw7 .awr_axb.awr_axe button {
  width: 100%;
}

.awr_awt .awr_aw7 .awr_axb.awr_axe > div:nth-child(2) > div > div {
  margin: 0;
  width: 25%;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw7 .awr_axb.awr_axe > div:nth-child(2) > div > div {
    width: 100%;
  }
}

.awr_awt .awr_aw7 .awr_axb .awr_axg {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin-bottom: 6px;
  width: 150px;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aw7 .awr_axb .awr_axg {
    width: 100%;
  }
}

.awr_awt .awr_axi {
  padding: 20px 5px;
}

.awr_awt .awr_axi b {
  font-family: "Agency", sans-serif;
  font-size: 12px;
}

.awr_awt .awr_axi.awr_axk {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_axi.awr_axk {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.awr_awt .awr_axi.awr_axk.awr_axm {
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  width: 30%;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_axi.awr_axk.awr_axm {
    gap: 10px;
    width: 100%;
  }
}

.awr_awt .awr_axi.awr_axk.awr_axo {
  gap: 20px;
  -ms-flex-pack: start;
  justify-content: start;
  padding: 0;
}

.awr_awt .awr_axi.awr_axk.awr_axq {
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-pack: start;
  justify-content: start;
  padding: 0;
}

.awr_awt .awr_axi.awr_axk.awr_axs {
  margin-bottom: 20px;
}

.awr_awt .awr_axi.awr_axk.awr_akx {
  margin: 20px 0;
}

.awr_awt .awr_axi.awr_axk.awr_axu {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.awr_awt .awr_axi .awr_aak {
  width: 53.5%;
}

.awr_awt .awr_axi .awr_axw {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -ms-flex-pack: end;
  justify-content: end;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_axi .awr_axw {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.awr_awt .awr_axi .awr_axy {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_axi .awr_axy {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.awr_awt .awr_axi .awr_axy button {
  min-width: 100px;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_axi .awr_axy button {
    width: 100%;
  }
}

.awr_awt .awr_ax0 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.awr_awt .awr_ax0.awr_asr {
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
}

.awr_awt .awr_ax0 .awr_br {
  -ms-flex-align: center;
  align-items: center;
  border: 0;
  border-radius: 22px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 3px;
  max-width: 25px;
  min-width: 25px;
}

.awr_awt .awr_ax0 .awr_br i {
  color: #fff;
}

.awr_awt .awr_ax0 .awr_br[disabled] {
  cursor: not-allowed;
  opacity: .6;
}

.awr_awt .awr_ax0 .awr_br.awr_alq {
  background-color: #0c3970;
}

.awr_awt .awr_ax0 .awr_br.awr_als {
  background-color: #0ac8b4;
}

.awr_awt .awr_ax0 .awr_br.awr_alw {
  font-size: 10px;
}

.awr_awt .awr_ax2 {
  margin-top: -20px;
  width: 80%;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_ax2 {
    margin-top: unset;
    width: 100%;
  }
}

.awr_awt .awr_ax4 {
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.awr_awt .awr_ax4 label {
  font-family: "Agency", sans-serif;
}

.awr_awt .awr_ax4 .awr_ax6 {
  margin-top: unset;
  width: 20%;
}

@media screen and (max-width: 767px) {
  .awr_awt .awr_ax4 .awr_ax6 {
    margin-top: 20px;
    width: 100%;
  }
}

.awr_awt .awr_ax4 .awr_ax8 {
  margin-right: 20px;
  width: 20%;
}

@media screen and (max-width: 767px) {
  .awr_awt .awr_ax4 .awr_ax8 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .awr_awt .awr_ax4 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.awr_awt .awr_aya {
  margin-right: 10px;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_aya {
    margin-right: 0;
    width: 100%;
  }
}

.awr_awt .awr_awa {
  margin: auto auto 50px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_awa {
    margin: 30px 0;
  }
}

.awr_awt .awr_awa button {
  border-radius: 0;
  min-width: 205px;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_awa button {
    width: 100%;
  }
}

.awr_awt .awr_awa .awr_ayc {
  width: 205px;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_awa .awr_ayc {
    margin: 0 0 50px;
    width: 100%;
  }
}

.awr_awt .awr_ayf {
  margin: 20px 0 10px;
  margin-bottom: 40px;
  text-align: left;
}

.awr_awt .awr_ayh {
  margin: 20px 0;
}

@media screen and (max-width: 1023px) {
  .awr_awt .awr_ayh {
    width: 100%;
  }
}

.awr_awt .awr_ayj > div {
  margin: 0;
}

.awr_ayl {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .awr_ayl {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.awr_ayn {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  right: 5%;
  top: 42%;
  width: 20%;
}

.awr_ayp {
  background-color: #fff;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  padding: 20px 5px;
  width: 66%;
}

@media screen and (max-width: 1023px) {
  .awr_ayp {
    width: 100%;
  }
}

.awr_ayp.awr_ayr {
  width: 60%;
}

@media screen and (max-width: 1023px) {
  .awr_ayp.awr_ayr {
    width: 100%;
  }
}

.awr_ayp .awr_ayt {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0 5px;
}

@media screen and (max-width: 1023px) {
  .awr_ayp .awr_ayt {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
  }
}

.awr_ayp .awr_ayv {
  box-shadow: none;
  padding: 0 10px;
}

.awr_ayp .awr_ayv i {
  height: 15px;
  width: 15px;
}

.awr_ayp .awr_ayx {
  background-color: #fff;
  color: #282828;
}

.awr_ayp .awr_ayx:not(:last-child) {
  margin-bottom: 15px;
}

.awr_ayp .awr_ayx.awr_ayz {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin-left: 45px;
}

.awr_ayp .awr_ayx.awr_ahk {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 5px;
}

@media screen and (max-width: 1023px) {
  .awr_ayp .awr_ayx.awr_ahk {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.awr_ayp .awr_ayx.awr_ahk span {
  max-width: unset;
  padding: 0 5px;
}

@media screen and (max-width: 1023px) {
  .awr_ayp .awr_ayx .awr_ay1 {
    width: 100%;
  }
}

.awr_ayp .awr_ayx .awr_ay3 {
  font-size: 12px;
  width: 35%;
}

@media screen and (max-width: 1023px) {
  .awr_ayp .awr_ayx .awr_ay3 {
    width: 100%;
  }
}

.awr_ayp .awr_ayx .awr_ay5 {
  color: #0ac8b4;
}

.awr_ayp .awr_ayx .awr_aij {
  color: #fe6c5a;
}

@media screen and (max-width: 767px) {
  .awr_ayp .awr_ayx {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }
}

.awr_ayp .awr_ayx .awr_ayt {
  color: #282828;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 0 5px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .awr_ayp .awr_ayx .awr_ayt {
    font-size: 12px;
  }
}

.awr_ayp .awr_ayx p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15;
  margin-right: 5px;
  padding: 0 5px;
}

@media screen and (max-width: 1023px) {
  .awr_ayp .awr_ayx p {
    font-size: 12px;
  }
}

.awr_ayp .awr_ayx:last-child p:last-child {
  margin-bottom: 0;
}

.awr_ayp .awr_ayx .awr_ev {
  font-weight: 400;
}

.awr_ayp .awr_ayx .awr_ev.awr_ahy {
  font-family: "Agency", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 30%;
}

@media screen and (max-width: 1023px) {
  .awr_ayp .awr_ayx .awr_ev.awr_ahy {
    width: 100%;
  }
}

.awr_ayp .awr_ayx .awr_ev.awr_ahy.awr_ayr {
  width: 28%;
}

.awr_ayp .awr_ayx .awr_ev.awr_afk {
  box-shadow: unset;
}

.awr_ayp .awr_ayx .awr_ev.awr_ay7 {
  width: 100%;
}

.awr_ayp .awr_ayx .awr_ev i {
  font-size: 18px;
  height: 18px;
}

.awr_ayp .awr_br {
  -ms-flex-align: center;
  align-items: center;
  border: 0;
  border-radius: 22px;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 3px;
  max-width: 20px;
  min-width: 20px;
}

.awr_ayp .awr_br i {
  color: #fff;
}

.awr_ayp .awr_br[disabled] {
  cursor: not-allowed;
  opacity: .6;
}

.awr_ayp .awr_br.awr_alq {
  background-color: #0c3970;
}

.awr_au9 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5px 0;
}

.awr_au9 i {
  top: 2px;
}

.ay9_ae3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.ay9_ae3 time,
.ay9_ae3 span {
  font-weight: 700;
}

.ay9_ae3 span {
  font-family: "Inter Light", sans-serif;
  margin-right: 10px;
}

.ay9_ae3 .ay9_arg {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  margin-bottom: 50px;
}

.ay9_ae3 .ay9_arg .ay9_on {
  -ms-flex-align: center;
  align-items: center;
  background-color: #edf7f8;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
  width: 25px;
}

.ay9_ae3 .ay9_arg .ay9_on img {
  transform: rotate(180deg);
}

.ay9_ae3 .ay9_arg:focus {
  outline: none;
}

.ay9_ae3 .ay9_acs {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.ay9_ae3 .ay9_acs .ay9_a0 {
  background-color: #fff;
  border: 1.5px solid #0c3970;
  color: #0c3970;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
  padding: 7px 5px;
  text-align: center;
  width: 50%;
}

.ay9_ae3 .ay9_acs .ay9_a0.ay9_am {
  border-radius: 5px 0 0 5px;
}

.ay9_ae3 .ay9_acs .ay9_a0.ay9_bl {
  border-left: none;
  border-right: none;
}

.ay9_ae3 .ay9_acs .ay9_a0.ay9_azb {
  border-radius: 0 5px 5px 0;
}

.ay9_ae3 .ay9_acs .ay9_a0.ay9_vm {
  background-color: #0c3970;
  color: #fff;
  font-size: 12px;
}

.ay9_ae3 .ay9_aze {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 80vh;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_aze {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    min-height: 55vh;
  }
}

.ay9_ae3 .ay9_aze .ay9_azg {
  background-color: #fff;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px;
  width: calc(70% - 10px);
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_aze .ay9_azg {
    width: 100%;
  }
}

.ay9_ae3 .ay9_aze .ay9_azg span {
  font-size: 12px;
}

.ay9_ae3 .ay9_aze .ay9_azg .ay9_m {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_aze .ay9_azg .ay9_m {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.ay9_ae3 .ay9_aze .ay9_auc {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 5px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 8px;
  min-width: unset;
  padding: 5px 10px;
  width: 125px;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_aze .ay9_auc {
    margin-bottom: 10px;
    width: 100%;
  }
}

.ay9_ae3 .ay9_aze .ay9_azi {
  background-color: #fff;
  border-radius: 10px;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_aze .ay9_azi {
    width: 100%;
  }
}

.ay9_ae3 .ay9_azk,
.ay9_ae3 .ay9_azm,
.ay9_ae3 .ay9_azo,
.ay9_ae3 .ay9_azq,
.ay9_ae3 .ay9_azs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ay9_ae3 .ay9_azk > div,
.ay9_ae3 .ay9_azm > div,
.ay9_ae3 .ay9_azo > div,
.ay9_ae3 .ay9_azq > div,
.ay9_ae3 .ay9_azs > div {
  margin-bottom: 15px;
}

.ay9_ae3 .ay9_azk > div span,
.ay9_ae3 .ay9_azm > div span,
.ay9_ae3 .ay9_azo > div span,
.ay9_ae3 .ay9_azq > div span,
.ay9_ae3 .ay9_azs > div span {
  width: 75%;
}

.ay9_ae3 .ay9_azk .ay9_auf,
.ay9_ae3 .ay9_azm .ay9_auf,
.ay9_ae3 .ay9_azo .ay9_auf,
.ay9_ae3 .ay9_azq .ay9_auf,
.ay9_ae3 .ay9_azs .ay9_auf {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.ay9_ae3 .ay9_azk .ay9_alq,
.ay9_ae3 .ay9_azm .ay9_alq,
.ay9_ae3 .ay9_azo .ay9_alq,
.ay9_ae3 .ay9_azq .ay9_alq,
.ay9_ae3 .ay9_azs .ay9_alq {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 4px;
  color: #0c3970;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
}

.ay9_ae3 .ay9_azk .ay9_alq i,
.ay9_ae3 .ay9_azm .ay9_alq i,
.ay9_ae3 .ay9_azo .ay9_alq i,
.ay9_ae3 .ay9_azq .ay9_alq i,
.ay9_ae3 .ay9_azs .ay9_alq i {
  width: auto;
}

.ay9_ae3 .ay9_azu {
  background-color: #fff;
  border-radius: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 81vh;
  padding: 16px;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu {
    height: unset;
    min-height: 50vh;
  }
}

.ay9_ae3 .ay9_azu .ay9_azw {
  background-color: #f7f7f7;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 20px;
  width: 100%;
}

.ay9_ae3 .ay9_azu .ay9_azw.ay9_sh {
  border: 1px solid #fe6c5a;
}

.ay9_ae3 .ay9_azu .ay9_azw strong {
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
}

.ay9_ae3 .ay9_azu .ay9_azw p {
  margin: 10px 0;
}

.ay9_ae3 .ay9_azu .ay9_azw .ay9_azy {
  border-radius: 20px;
  box-shadow: none;
  display: block;
  margin: 20px auto 0;
  width: 12%;
}

.ay9_ae3 .ay9_azu .ay9_azw .ay9_az0 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.ay9_ae3 .ay9_azu .ay9_azw .ay9_az0 .ay9_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
}

.ay9_ae3 .ay9_azu .ay9_azw .ay9_az0 .ay9_ev p {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid #979797;
  border-radius: 5px;
  padding: 10px;
}

.ay9_ae3 .ay9_azu .ay9_ac0 {
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ac0 {
    width: 100%;
  }
}

.ay9_ae3 .ay9_azu .ay9_ac0 .ay9_ac2 {
  width: 100%;
}

.ay9_ae3 .ay9_azu .ay9_ac0 .ay9_ac2 textarea {
  font-size: 12px;
  height: 90px;
  padding: 3px;
  resize: none;
}

.ay9_ae3 .ay9_azu .ay9_ac0 .ay9_ac4 {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  height: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
  min-width: unset;
  width: 150px;
}

.ay9_ae3 .ay9_azu .ay9_ac0 .ay9_az2 {
  border-radius: 15px;
  height: 20px;
  min-width: unset;
  padding: 0;
  width: 20px;
}

.ay9_ae3 .ay9_azu .ay9_ae7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 15px;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 {
    gap: 0;
    width: 100%;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7.ay9_m1 {
  -ms-flex-align: end;
  align-items: flex-end;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_az4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  width: 60%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_az4 {
    margin-bottom: 15px;
    width: 100%;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  width: 100%;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev:not(.ay9_ah4) {
  height: 30px;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev:not(.ay9_ah4) {
    height: unset;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev span:first-child {
  font-family: "Agency", sans-serif;
  width: 51%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev span:first-child {
    margin: 0;
    width: 100%;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_az6 span:first-child {
  font-family: "Agency", sans-serif;
  width: 33%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_az6 span:first-child {
    margin: 0;
    width: 100%;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_br {
  height: 30px;
  width: 98%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_br {
    height: unset;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_az8 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: unset;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_a0a {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_asr {
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_a0c {
  gap: 10px;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_y {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 310px;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_a0f > div {
  padding: 0;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ah8 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0ac8b4;
  border-radius: 15px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  width: 70%;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ah8.ay9_wr {
  background-color: #0068aa;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ah8.ay9_kl {
  background-color: #fe6c5a;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ah8.ay9_kj {
  background-color: #0ac8b4;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_a0h {
  margin-top: 10px;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_auf {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_auf {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_auf i {
  color: #0c3970;
  cursor: pointer;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_auf > div {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin-bottom: 15px;
  padding: 3px 5px;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ae9 {
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: bold;
  height: 30px;
  -ms-flex-pack: left;
  justify-content: left;
  margin-right: 15px;
  max-width: 150px;
  text-align: left;
  width: 100%;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ae9.ay9_br {
  background-color: #0068aa;
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ae9.ay9_a0j {
  background-color: #0ac8b4;
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ae9 i {
  font-size: 16px;
  height: 16px;
  margin-right: 5px;
}

@media (max-width: 400px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_ae9 {
    margin: 0 0 5px;
    max-width: unset;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_afb {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  min-height: 30px;
  width: 100%;
}

@media (max-width: 400px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_afb {
    margin: 0 0 15px;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_afb:not(.ay9_afi) {
  width: 100%;
}

@media (max-width: 400px) {
  .ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_afb.ay9_afi {
    width: 100%;
  }
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_afb.ay9_k5 {
  border-radius: 6px;
  font-weight: normal;
  padding: 5px;
  width: 100%;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_afb.ay9_a0l {
  padding: 5px;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_afb:not(.ay9_afk) {
  border: solid 1px #d5d0d0;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_n6 {
  border: none;
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Agency", sans-serif;
  font-size: 10px;
  gap: 3px;
  height: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: normal;
  min-width: 75px;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_n6.ay9_kj {
  background-color: #0ac8b4;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_n6.ay9_kl {
  background-color: #fe6c5a;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev .ay9_n6.ay9_n8 {
  background-color: #b61701;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_afe {
  width: 60%;
}

.ay9_ae3 .ay9_azu .ay9_ae7 .ay9_ev.ay9_ah4 {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_azu {
    font-size: 12px;
  }
}

.ay9_ae3 .ay9_a0n {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0n {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.ay9_ae3 .ay9_a0p {
  border-radius: 10px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 12px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0p {
    font-size: 12px;
  }
}

.ay9_ae3 .ay9_a0p.ay9_aia {
  background-color: #143d6c;
}

.ay9_ae3 .ay9_a0p.ay9_aic {
  background-color: #0ac8b4;
}

.ay9_ae3 .ay9_a0p.ay9_aif {
  background-color: #ff8879;
}

.ay9_ae3 .ay9_a0r {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 10px 10px 0;
  width: 60%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0r {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
}

.ay9_ae3 .ay9_a0r .ay9_ab7 {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0r .ay9_ab7 {
    margin-bottom: 10px;
    width: 100%;
  }
}

.ay9_ae3 .ay9_a0r .ay9_ab7.ay9_kn {
  opacity: 0.5;
}

.ay9_ae3 .ay9_a0r .ay9_ab7.ay9_kn button {
  cursor: not-allowed;
}

.ay9_ae3 .ay9_a0r .ay9_ab7 button {
  background-color: #fff;
  border: 1px solid;
  border-radius: 5px;
  box-shadow: none;
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 40px;
  width: 100%;
}

.ay9_ae3 .ay9_a0r .ay9_ab7 button.ay9_kn {
  border-color: #282828;
  cursor: not-allowed;
}

.ay9_ae3 .ay9_a0r .ay9_ab7 button > div {
  background-color: transparent;
  padding: unset;
  width: unset;
}

.ay9_ae3 .ay9_a0r .ay9_ab7 button div:last-child {
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .ay9_ae3 .ay9_a0r .ay9_ab7 button {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0r .ay9_ab7 button {
    font-size: 10px;
  }
}

.ay9_ae3 .ay9_a0r .ay9_ab7 i {
  font-size: 1.4em;
}

.ay9_ae3 .ay9_a0r .ay9_l4 {
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  border: 2px solid #0ac8b4;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  height: 40px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  letter-spacing: normal;
  padding: 5px;
  width: 70%;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0r .ay9_l4 {
    font-size: 10px;
    white-space: normal;
    width: 100%;
  }
}

.ay9_ae3 .ay9_a0r .ay9_a0t {
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 5px;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0r .ay9_a0t {
    display: unset;
    white-space: normal;
    width: 100%;
  }
}

.ay9_ae3 .ay9_a0r .ay9_a0t button {
  border-color: #fff;
}

.ay9_ae3 .ay9_a0r .ay9_a0v {
  border-radius: 20px;
  box-shadow: unset;
  font-size: 12px;
  min-width: unset;
  padding: unset;
  width: 125px;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0r .ay9_a0v {
    margin-bottom: 10px;
    width: 100%;
  }
}

.ay9_ae3 .ay9_a0r .ay9_a0x {
  height: 25px;
}

@media screen and (max-width: 767px) {
  .ay9_ae3 .ay9_a0r .ay9_a0x {
    height: 20px;
  }
}

.ay9_ae3 .ay9_a0r .ay9_c4 {
  height: 35px;
}

.ay9_ae3 .ay9_a0z {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 0;
  font-size: 12px;
  height: 30px;
  margin-top: 50px;
  width: 150px;
}

.a01_a03 div[role='contentinfo'] {
  max-width: 600px;
}

.a01_a03 header h1,
.a01_a03 header p {
  text-align: left;
}

.a01_a03 .a01_aev {
  margin: 0 auto;
}

.a01_a03 .a01_mx {
  padding: 0;
  width: 100%;
}

.a01_a03 .a01_mx .a01_avu {
  margin: 10px 0;
  width: 33%;
}

@media screen and (max-width: 1023px) {
  .a01_a03 .a01_mx .a01_avu {
    width: 100%;
  }
}

.a01_a03 .a01_mx .a01_as1 {
  -ms-flex-align: normal;
  align-items: normal;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 1023px) {
  .a01_a03 .a01_mx .a01_as1 {
    display: unset;
  }
}

.a01_a03 .a01_mx .a01_as1.a01_aai > div:last-child {
  width: 33%;
}

@media screen and (max-width: 767px) {
  .a01_a03 .a01_mx .a01_as1.a01_aai > div:last-child {
    width: 100%;
  }
}

.a01_a03 .a01_mx .a01_as1.a01_aai > div:last-child input {
  border-radius: 5px;
  height: 45px;
  padding: 11px 13px;
  top: 9px;
  width: 100%;
}

.a01_a03 .a01_aw {
  text-align: center;
}

.a05_a07 [role='contentinfo'] {
  max-width: 73em;
}

.a05_a07 [role='contentinfo'] header,
.a05_a07 [role='contentinfo'] .a05_mx {
  text-align: left;
}

.a05_a07 footer {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.a05_a07 footer button {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 0.5em;
}

.a05_a07 footer button:first-child {
  color: #00b29f;
  margin-left: 35%;
}

.a05_a07 p {
  margin-bottom: 3em;
}

.a05_a07 .a05_awj > div {
  display: inline-block;
}

.a05_a07 .a05_awl {
  margin-top: 30px;
}

.a05_a07 .a05_awl > div {
  display: inline-block;
  margin-right: 30px;
  width: 190px;
}

.a05_a07 .a05_a09 {
  margin-top: -50px;
}

.a05_a07 .a05_a09 .a05_a1b {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: -35px;
  padding: 0 8px;
}

@media screen and (max-width: 767px) {
  .a05_a07 .a05_a09 .a05_a1b {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a05_a07 .a05_a09 .a05_a1e {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0068aa;
  border-radius: 50%;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
}

.a05_a07 .a05_a09 .a05_arm {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% - 40px);
}

.a05_a07 .a05_a09 .a05_arm .a05_a1g {
  display: -ms-flexbox;
  display: flex;
}

.a05_a07 .a05_a09 .a05_arm .a05_a1g > b {
  top: 45px;
  font-size: 12px;
}

.a05_a07 .a05_a09 .a05_arm .a05_a1g > div {
  top: 30px;
  margin-left: 10px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .a05_a07 .a05_a09 .a05_arm {
    width: 100%;
  }
}

.a05_a07 .a05_a09 .a05_arm > div {
  margin: 2px;
}

.a05_a07 .a05_a09 .a05_arm > div:not(.a05_a1e) {
  height: 97px;
}

.a05_a07 .a05_a09 .a05_arm > div button span {
  font-size: 12px !important;
  padding: 0 10px !important;
}

.a05_a07 .a05_a09 .a05_arm > div input,
.a05_a07 .a05_a09 .a05_arm > div label {
  font-size: 12px !important;
}

.a05_a07 .a05_a09 .a05_arm > div input {
  height: 45px;
  padding: 0 10px !important;
}

.a05_a07 .a05_a09 .a05_arm > div:nth-child(1) {
  width: 11%;
}

.a05_a07 .a05_a09 .a05_arm > div:nth-child(1) button {
  min-width: unset;
}

.a05_a07 .a05_a09 .a05_arm > div:nth-child(2), .a05_a07 .a05_a09 .a05_arm > div:nth-child(3) {
  width: 20%;
}

.a05_a07 .a05_a09 .a05_arm > div:nth-child(2) button, .a05_a07 .a05_a09 .a05_arm > div:nth-child(3) button {
  min-width: unset;
}

.a05_a07 .a05_a09 .a05_arm > div:nth-child(4), .a05_a07 .a05_a09 .a05_arm > div:nth-child(5) {
  width: 18%;
}

@media screen and (max-width: 767px) {
  .a05_a07 .a05_a09 .a05_arm > div:nth-child(1) {
    width: 18%;
  }
  .a05_a07 .a05_a09 .a05_arm > div:nth-child(1) button {
    min-width: unset;
  }
  .a05_a07 .a05_a09 .a05_arm > div:nth-child(2), .a05_a07 .a05_a09 .a05_arm > div:nth-child(3) {
    width: 38%;
  }
  .a05_a07 .a05_a09 .a05_arm > div:nth-child(2) button, .a05_a07 .a05_a09 .a05_arm > div:nth-child(3) button {
    min-width: unset;
  }
  .a05_a07 .a05_a09 .a05_arm > div:nth-child(4), .a05_a07 .a05_a09 .a05_arm > div:nth-child(5) {
    width: 48%;
  }
}

.a05_a07 .a05_a09 .a05_arm > div input {
  padding: 8.5px;
}

.a05_a07 .a05_a6 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.a05_a07 .a05_a6 > div {
  margin-top: 0;
}

.a05_a07 .a05_a8 {
  border-bottom: 1px solid rgba(0, 104, 170, 0.5);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.a05_a07 .a05_a8 > div {
  width: 32%;
}

.a05_a07 .a05_ba {
  margin-bottom: 10px;
}

.a05_a07 .a05_ba > div:first-child {
  width: 140px;
}

.a05_a07 .a05_ba > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.a05_a07 .a05_bc {
  margin-bottom: 10px;
}

.a05_a07 .a05_bc > div:first-child {
  width: 50%;
}

.a05_a07 .a05_bc > div:not(:first-child) {
  margin-left: 2%;
  width: 23%;
}

.a05_a07 .a05_bf > div:first-child {
  width: 50%;
}

.a05_a07 .a05_bf > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.a05_a07 .a05_aw {
  text-align: center;
}

.a05_a07.a05_hy [role='contentinfo'] {
  max-width: 800px;
}

.a05_a07.a05_awp [role='contentinfo'] {
  max-width: 600px;
}

.a05_a07.a05_rs [role='contentinfo'] {
  max-width: 300px;
}

form div .a05_a1i {
  margin-bottom: 30px;
}

.a1k_a1m {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  color: #282828;
  -ms-flex: 1;
  flex: 1;
  min-height: 70vh;
  padding: 0 25px;
}

.a1k_a1m .a1k_ni {
  font-size: 16px;
}

.a1k_a1m .a1k_ni:first-child {
  margin-bottom: 25px;
}

.a1k_a1m .a1k_av6 {
  color: #0068aa;
  font-size: 35px;
  height: 35px;
}

.a1k_a1m .a1k_pw {
  color: inherit;
  font-family: "Agency", sans-serif;
  font-size: 12px;
}

.a1k_a1m .a1k_acm {
  text-align: right;
}

.a1k_a1m .a1k_acm button {
  width: 170px;
}

.a1k_a1m .a1k_aut {
  -ms-flex: 1;
  flex: 1;
}

.a1k_a1m .a1k_a1o {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 30px;
  padding: 10px;
  width: 17%;
}

@media screen and (max-width: 767px) {
  .a1k_a1m .a1k_a1o {
    width: 100%;
  }
}

.a1k_a1m .a1k_a1q {
  margin-bottom: 10px;
}

.a1k_a1m .a1k_l0 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.a1k_a1m .a1k_l0 .a1k_a1s {
  margin-right: 10px;
  width: 75%;
}

.a1k_a1m .a1k_l0 .a1k_zq {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 12px;
  width: 205px;
}

.a1k_a1m .a1k_a1u {
  margin-bottom: 20px;
  margin-top: 40px;
}

.a1k_a1m .a1k_a1u span {
  display: inline-block;
  font-family: "Inter Light", sans-serif;
  font-size: 16px;
  margin-right: 20px;
  width: 120px;
}

.a1k_a1m .a1k_a1u button {
  box-shadow: none;
  height: 40px;
}

.a1k_a1m .a1k_amp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 5%;
  width: 300px;
}

.a1k_a1m .a1k_amp p {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.a1k_aut {
  padding-top: 20px;
}

.a1k_aut .a1k_pw {
  font-family: "Agency", sans-serif;
  margin-bottom: 10px;
}

.a1k_aut .a1k_ayn {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.a1k_aut .a1k_alq {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: 0;
  border-radius: 22px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  height: 28px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 3px;
  max-width: 28px;
  min-width: 28px;
}

.a1k_aut .a1k_alq i {
  color: #fff;
}

.a1k_aut .a1k_alq.a1k_kj {
  background-color: #0ac8b4;
}

.a1k_aut .a1k_alq.a1k_alw {
  font-size: 10px;
}

.a1w_aet header h1,
.a1w_aet header p {
  text-align: left;
}

.a1w_aet .a1w_aev {
  margin: 0 auto;
  width: 60%;
}

.a1w_aet .a1w_mx p {
  margin-bottom: 20px;
  margin-top: 0;
}

.a1w_aet .a1w_mx .a1w_cy {
  text-align: center;
}

.a1w_aet div[role='contentinfo'] {
  max-width: 480px;
}

.a1w_aet div[role='contentinfo'] footer {
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 5px;
}

.a1w_aet div[role='contentinfo'] footer button {
  color: #fff;
  margin: 0;
  max-width: 170px;
}

.a1y_amh {
  background-color: rgba(12, 57, 112, 0.08);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 90px;
  -ms-flex-pack: center;
  justify-content: center;
  left: -60px;
  margin-bottom: 24px;
  width: calc(100% + 140px);
}

.a1y_amh .a1y_ane {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  position: relative;
}

.a1y_amh .a1y_ane li {
  -ms-flex-align: center;
  align-items: center;
  color: #676c67;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  height: 100%;
  -ms-flex-pack: center;
  justify-content: center;
}

.a1y_amh .a1y_ane li:nth-child(2), .a1y_amh .a1y_ane li:nth-child(3) {
  width: 170px;
}

.a1y_amh .a1y_ane li.a1y_a10, .a1y_amh .a1y_ane li.a1y_a12, .a1y_amh .a1y_ane li.a1y_re {
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.05);
  color: #fff;
  cursor: pointer;
  height: 90px;
  left: -28px;
  padding: 0 16px;
  position: relative;
  top: -15px;
  width: 215px;
}

.a1y_amh .a1y_ane li.a1y_a12 {
  background: #0c3970;
}

.a1y_amh .a1y_ane li.a1y_a12 span {
  border: 3px solid #fff;
  color: #fff;
}

.a1y_amh .a1y_ane li.a1y_re {
  background: #00b29f;
}

.a1y_amh .a1y_ane li.a1y_re i {
  margin-right: 10px;
}

.a1y_amh .a1y_ane li.a1y_a14 {
  cursor: pointer;
  color: #0c3970;
}

.a1y_amh .a1y_ane li.a1y_a14 i {
  margin-right: 10px;
}

.a1y_amh .a1y_ane li.a1y_a14 span {
  border-color: #0c3970;
}

.a1y_amh .a1y_ane li span {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  border: 3px solid #676c67;
  color: inherit;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
  min-width: 25px;
  width: 25px;
}

.a1y_amh .a1y_ane li.a1y_ail {
  color: #00b29f;
  cursor: pointer;
}

.a1y_amh .a1y_ane li.a1y_ail i {
  margin-right: 10px;
}

.bek_afm .bek_a30 {
  background-color: #fff;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  padding: 0 5px 20px;
}

.bek_afm .bek_a30 .bek_a32 {
  color: #000;
  font-family: "Agency", sans-serif;
  font-size: 12px;
}

.bek_afm .bek_a30 .bek_a38 {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .bek_afm .bek_a30 .bek_a38 {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }
}

.bek_afm .bek_a30 .bek_a38:not(:last-child) {
  margin-bottom: 35px;
}

.bek_afm .bek_a30 .bek_a38 span {
  font-size: 12px;
  padding: 5px;
  width: 8%;
}

@media screen and (max-width: 767px) {
  .bek_afm .bek_a30 .bek_a38 span {
    width: 100%;
  }
  .bek_afm .bek_a30 .bek_a38 span:not(:last-child) {
    margin-bottom: 8px;
  }
}

.bek_afm .bek_a30 .bek_a38 .bek_ev {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 5px;
  min-height: 30px;
  padding: 0 10px;
  text-align: center;
}

.bek_afm .bek_a30 .bek_a38 .bek_ev i {
  color: #0c3970;
}

.bek_afm .bek_a30 .bek_a38 .bek_ev.bek_hu {
  min-width: 15%;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1023px) {
  .bek_afm .bek_a30 .bek_a38 .bek_ev.bek_hu {
    width: 18%;
  }
}

@media screen and (max-width: 767px) {
  .bek_afm .bek_a30 .bek_a38 .bek_ev.bek_hu {
    width: 100%;
  }
}

.a16_a18 {
  border-radius: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.a16_a18 .a16_a2a {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 25px;
}

.a16_a18 .a16_a2c {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
}

.a16_a18 .a16_uz {
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
  height: 700px;
  overflow-y: scroll;
  padding: 20px 25px;
}

.a16_a18 .a16_awa {
  margin: 20px 0;
  text-align: center;
}

.a16_a18 .a16_awa button {
  border-radius: 0;
  width: 205px;
}

.a2f_a2h {
  background-color: #f5f6fa;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 12px;
}

.a2f_a2h .a2f_afm .a2f_a2j {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
}

.a2f_a2h .a2f_afm .a2f_a2j > button {
  border-radius: 25px;
  box-shadow: none;
  padding: 0;
  width: 205px;
}

.a2f_a2h .a2f_afm .a2f_a2l {
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: unset;
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  gap: 10px;
}

.a2f_a2h .a2f_afm .a2f_a2l i {
  background-color: #0068aa;
  border-radius: 20px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  padding: 3px;
}

.a2f_a2h .a2f_afm .a2f_a2n {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

.a2f_a2h .a2f_afm .a2f_afo {
  background-color: #fff;
  border-radius: 12px;
  color: #282828;
  font-family: "Inter Light", sans-serif;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq {
  margin-bottom: 25px;
}

@media screen and (max-width: 1023px) {
  .a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p {
    width: unset;
  }
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq.a2f_p6 {
  overflow: auto;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2r {
  font-family: "Agency", sans-serif;
  margin-bottom: 10px;
  width: 20%;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p {
  border-radius: 5px;
  min-height: 25px;
  padding: 10px 0;
  width: 100%;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p.a2f_f4 {
  background-color: #f5f6fa;
  padding: 10px;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2t {
  border-top: 1px solid #edf7f8;
  margin-top: 20px;
  padding-top: 20px;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v {
  border-collapse: collapse;
  box-shadow: none;
  font-family: "Inter Light", sans-serif;
  letter-spacing: 0;
  line-height: 1.8;
  margin-bottom: 30px;
  width: 100%;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v thead td {
  background-color: #f5f6fa;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v tbody td {
  background-color: #fff;
  font-family: "Agency", sans-serif;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v tfoot td {
  background-color: #f5f6fa;
  font-family: "Agency", sans-serif;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v tr {
  display: table-row;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v tr:nth-child(3) {
  display: table-row;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v td {
  border: 2px solid #0068aa;
  display: table-cell;
  padding: 10px;
  text-align: center;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v td small {
  top: -1px;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v .a2f_ahy {
  width: 20%;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v .a2f_a2x {
  line-height: 1.2;
  width: 23%;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v .a2f_a2z {
  line-height: 1.2;
  width: 23%;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v .a2f_a21 {
  line-height: 1.2;
  width: 23%;
}

.a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p .a2f_a2v .a2f_a23 {
  line-height: 1.2;
  width: 10%;
}

@media screen and (max-width: 767px) {
  .a2f_a2h .a2f_afm .a2f_afo .a2f_atq .a2f_a2p {
    width: 100%;
  }
}

.a2f_a2h .a2f_a25 {
  float: right;
}

.a2f_a2h .a2f_a27 {
  display: -ms-flexbox;
  display: flex;
}

.a2f_a2h .a2f_a27 .a2f_a29 {
  padding-left: 10px;
}

.a2f_a2h .a2f_a27 .a2f_a29 button {
  height: 25px;
}

.a2f_a2h .a2f_a3b {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  margin-top: 10px;
  padding: 20px;
  width: 100%;
}

.a2f_a2h .a2f_a3e {
  background-color: #fff;
  padding: 20px;
  width: 100%;
}

.a2f_a2h .a2f_a0 {
  font-family: "Agency", sans-serif;
  padding: 5px;
  text-align: left;
  width: 100%;
}

.a2f_a2h .a2f_ajg {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 20px;
}

.a2f_a2h .a2f_ajg button {
  border-radius: 0;
  margin: 0 20px;
  width: 205px;
}

.a2f_a2h .a2f_ajg .a2f_a3g {
  min-width: 200px;
}

@media screen and (max-width: 768px) {
  .a2f_a2h .a2f_ajg button {
    width: 100%;
  }
  .a2f_a2h .a2f_ajg button:not(:last-child) {
    margin-bottom: 24px;
  }
}

.a2f_a3i {
  border-collapse: collapse;
  border: solid 2px #0c3970;
  box-shadow: none !important;
  font-family: "Inter Light", sans-serif;
  margin: 10px auto;
  table-layout: fixed;
  width: 100%;
}

.a2f_a3i .a2f_a3k span {
  display: inline;
}

.a2f_a3i tr {
  background-color: transparent !important;
}

.a2f_a3i tr input {
  border: 0;
  padding: 0;
  text-align: center;
}

.a2f_a3i thead td {
  background-color: #f5f6fa;
}

.a2f_a3i tbody td {
  background-color: #fff;
  font-family: "Agency", sans-serif;
}

.a2f_a3i tfoot td {
  background-color: #f5f6fa;
  font-family: "Agency", sans-serif;
}

.a2f_a3i tr {
  display: table-row;
}

.a2f_a3i tr:nth-child(3) {
  display: table-row;
}

.a2f_a3i td {
  border: 2px solid #0068aa;
  display: table-cell;
  padding: 10px;
  text-align: center;
}

.a2f_a3i td small {
  top: -1px;
}

.a2f_au3 {
  color: #00b29f;
}

.a2f_j2 {
  -ms-flex-align: center;
  align-items: center;
  color: #0ac8b4;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 5px;
}

.a2f_j2 i {
  font-size: 1.3em;
  margin-top: 3px;
}

.a2f_a3m {
  width: 100%;
}

.a2f_a3m textarea {
  min-height: 200px;
}

.a2f_a3o {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 15px;
}

.a2f_a3o.a2f_asr {
  -ms-flex-direction: column;
  flex-direction: column;
}

.a2f_a3o .a2f_a3q {
  margin: 0;
  opacity: 1;
}

.a2f_a3o .a2f_a3q div {
  color: #000;
  opacity: 1;
  width: 200px;
}

.a2f_a3o .a2f_a3q div input {
  height: 31px;
}

.a2f_a3o .a2f_a3q div input:disabled {
  background-color: #f5f6fa;
  border: 0;
}

.a2f_a3o .a2f_a3q div input:-ms-input-placeholder {
  color: #000;
}

.a2f_a3o .a2f_a3q div input::placeholder {
  color: #000;
}

.a2f_a3s {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .a2f_a3s {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.a2f_a3s > div {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .a2f_a3s > div {
    width: 24%;
    max-width: 380px;
  }
}

.a2f_a3u {
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.a2f_a3u:hover {
  color: #fe6c5a;
}

.a2f_a3w {
  background-color: #f5f6fa;
  border-radius: 5px;
  min-width: 200px;
  padding: 5px;
}

.bem_beo {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.bem_beo .bem_beq {
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #0c3970;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 5px;
  min-height: 23px;
  padding: 8px 10px;
  text-align: start;
  text-transform: uppercase;
  width: 25%;
}

.bem_beo .bem_beq.bem_a58 {
  border-color: #fe6c5a;
}

.bem_beo .bem_beq.bem_bes {
  border-color: #0ac8b4;
}

.bem_beo .bem_beq i {
  color: #0c3970;
}

@media screen and (max-width: 1023px) {
  .bem_beo .bem_beq {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .bem_beo .bem_beq {
    width: 100%;
  }
}

.bem_beo .bem_beu {
  display: none;
  -ms-flex: 1;
  flex: 1;
}

.bem_beo .bem_beu input {
  border: 1px solid #0c3970;
  border-radius: 0;
  margin: 0 3px;
  min-height: 23px;
  padding: 5px 13px;
  width: 98%;
}

.bem_beo .bem_beu.bem_a58 {
  display: block;
}

.a3y_afm {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  min-height: 74vh;
}

.a3y_afm .a3y_a0 {
  background-color: #0c3970;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.a3y_afm .a3y_a30 {
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: "Inter Light", sans-serif;
  width: 100%;
}

.a3y_afm .a3y_a30 .a3y_a32 {
  color: #000;
  font-family: "Agency", sans-serif;
  font-size: 12px;
}

.a3y_afm .a3y_a30 .a3y_a34 {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0 20px;
  width: 100%;
}

.a3y_afm .a3y_a30 .a3y_a34:first-child {
  border-radius: 0 0 10px 10px;
  margin-top: 20px;
}

.a3y_afm .a3y_a30 .a3y_a34:nth-child(4) {
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.a3y_afm .a3y_a30 .a3y_a36 {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
  padding: 10px;
  width: 100%;
}

.a3y_afm .a3y_a30 .a3y_a38 {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .a3y_afm .a3y_a30 .a3y_a38 {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
  }
}

.a3y_afm .a3y_a30 .a3y_a38:not(:last-child) {
  margin-bottom: 35px;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a {
  background-color: #fff;
  border-radius: 5px;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 0 20px;
  width: 100%;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a.a3y_a1u {
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: -11px;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_abp {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4c {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4c {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4c > * {
  width: -moz-fit-content;
  width: fit-content;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4f {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  width: 100%;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4f .a3y_ev {
  width: 200px;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4f .a3y_ani {
  width: 83.5%;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4f:nth-last-of-type(1) {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ayn {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: end;
  justify-content: end;
  margin-top: -33px;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ayn .a3y_op {
  border-radius: 15px;
  min-width: 95px;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  height: 31px;
  margin: 5px 0;
  min-height: 31px;
  padding: 5px;
  text-align: start;
  width: 200px;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev {
    width: 18%;
  }
}

@media screen and (max-width: 767px) {
  .a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev {
    width: 100%;
  }
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev i {
  color: #0c3970;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev.a3y_a4h {
  padding: 0;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev.a3y_a4j {
  height: auto;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev.a3y_aai {
  z-index: 2;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev.a3y_aai > div input {
  border: 1px solid #cdcfd6;
  border-radius: 5px;
  height: 31px;
  width: 200px;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev .a3y_a4l {
  margin-bottom: 0;
  width: 100%;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev .a3y_a4l input {
  border: 1px solid #cdcfd6;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 31px;
  letter-spacing: 0;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev .a3y_a4l div {
  border: 0;
  margin-bottom: 0;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev .a3y_a4l button {
  border: 1px solid #cdcfd6;
  height: 31px;
  min-width: 130px;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_ev .a3y_a4l button span {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4n > div {
  margin-top: 0;
}

.a3y_afm .a3y_a30 .a3y_a38 .a3y_a4a .a3y_a4p {
  font-family: "Agency", sans-serif;
  margin-bottom: 10px;
}

.a3y_afm .a3y_a4r {
  -ms-flex-align: baseline;
  align-items: baseline;
  column-gap: 5px;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.a3y_afm .a3y_a4r > div {
  margin-top: 0;
}

.a3y_afm .a3y_a4t input {
  background-color: #f5f6fa;
  border: 0;
  border-radius: 5px;
  color: #000;
  margin: 0 10px 15px 0;
  min-height: 23px;
  padding: 5px;
  text-align: start;
  width: 97%;
}

.a3y_afm .a3y_a4t input:-ms-input-placeholder {
  font-size: 12px;
}

.a3y_afm .a3y_a4t input::placeholder {
  font-size: 12px;
}

.a3y_afm .a3y_a4t span {
  left: 11px;
  position: relative;
  top: -12px;
}

.a3y_afm .a3y_a4v {
  width: 30%;
}

.a3y_afm .a3y_a4x {
  width: 68%;
}

.a3y_afm .a3y_a4z {
  width: 100%;
}

.a3y_afm .a3y_a0a {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
}

.a3y_afm .a3y_a0a > button {
  border-radius: 0;
  width: 205px;
}

.a41_a43 {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 74vh;
  min-height: 74vh;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .a41_a43 {
    height: unset;
    min-height: 50vh;
  }
}

.a41_a43 .a41_a45 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.a41_a43 .a41_a45 button {
  border-radius: 15px;
  width: 205px;
}

.a41_a43 .a41_a47 {
  margin-top: 20px;
}

.a41_a43 .a41_a49 {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 0;
}

.a41_a43 .a41_a49 li {
  margin: 20px 0;
}

.a41_a43 .a41_av6 {
  color: #ffba96;
  font-size: 35px;
  height: 35px;
}

.a41_a43 .a41_av8 {
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

.a41_a43 .a41_av8 div {
  margin-left: 40px;
}

.a41_a43 .a41_ni {
  font-size: 16px;
}

.a41_a43 .a41_a5b {
  width: 350px;
}

.a41_a43 .a41_ajg {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 50px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .a41_a43 .a41_ajg {
    width: 100%;
  }
}

.a41_a43 .a41_ajg.a41_akn {
  margin-top: 205px;
}

.a41_a43 .a41_ajg button {
  border-radius: 0;
  width: 205px;
}

@media screen and (max-width: 767px) {
  .a41_a43 .a41_ajg button {
    width: 100%;
  }
}

.a41_a43 .a41_a5e {
  font-size: 12px;
}

.a41_a43 .a41_a5e > span {
  font-weight: 300;
}

.a41_a43 .a41_a5g {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
  margin-top: 30px;
  width: 100%;
}

.a41_at8 .a41_mx {
  padding: 0;
}

.a41_at8 div[role='contentinfo'] {
  max-width: 480px;
}

.a41_a5i {
  margin-bottom: 20px;
}

.a41_a5i textarea {
  height: 100px;
}

.a5k_a2h {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  padding: 25px;
}

.a5k_a2h .a5k_afm .a5k_a2j {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.a5k_a2h .a5k_afm .a5k_a2j > button {
  border-radius: 25px;
}

.a5k_a2h .a5k_a0 {
  color: #0c3970;
  font-size: 15.5px;
  padding-bottom: 25px;
  text-align: left;
  width: 100%;
}

.a5k_a2h .a5k_a5m {
  color: #282828;
  font-size: 14px;
  padding-bottom: 20px;
}

.a5k_a2h .a5k_ng {
  border: solid 2px #0c3970;
  font-size: 14px;
  margin-bottom: 25px;
  min-height: 230px;
  overflow-y: scroll;
  padding: 5px;
}

.a5k_a2h .a5k_a5o {
  background-color: #0c3970;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 18px;
  padding: 6px;
  text-align: center;
  width: 100%;
}

.a5k_rk textarea {
  min-height: 230px;
}

.a5k_a5q {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}

.a5s_a2h {
  background-color: #f5f6fa;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.a5s_a2h .a5s_afm {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  margin-bottom: 20px;
  padding: 20px;
}

.a5s_a2h .a5s_afm .a5s_a2j {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.a5s_a2h .a5s_afm .a5s_a2j > button {
  border-radius: 25px;
}

.a5s_a2h .a5s_a5m {
  color: #000;
  font-family: "Agency", sans-serif;
  padding-bottom: 20px;
}

.a5s_a2h .a5s_ng {
  border: solid 1px #cdcfd6;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  min-height: 230px;
  overflow-y: scroll;
  padding: 5px;
}

.a5s_a2h .a5s_a5u {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.a5w_at8 .a5w_mx {
  text-align: center;
}

.a5w_at8 div[role='contentinfo'] {
  border-radius: 14px;
  max-width: 460px;
  overflow: hidden;
}

.a5w_at8 div[role='contentinfo'] header h1 {
  text-align: center;
}

.a5w_at8 div[role='contentinfo'] footer {
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0;
}

.a5w_at8 div[role='contentinfo'] footer button {
  color: #fff !important;
  margin: 0 0 30px;
  max-width: 170px;
}

.ama_amc {
  background-color: #f5f6fa;
  margin: 0;
}

.ama_amc table {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.ama_amc table tr {
  background-color: rgba(209, 244, 248, 0.65);
}

.ama_amc table tr:nth-child(even) {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .ama_amc .ama_amf {
    padding: 20px;
  }
}

.ama_amc .ama_amf header button {
  font-size: 14px;
  height: 30px;
  width: 90px;
}

.ama_amc .ama_amf .ama_amh {
  padding: 0;
}

.ama_amc .ama_amf .ama_amh .ama_amj {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  padding: 20px 20px 0;
  width: 100%;
}

.ama_amc .ama_ajg {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.ama_amc .ama_ae3 {
  margin-bottom: 36px;
}

.ama_amc .ama_aml {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0068aa;
  border-radius: 10px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 18px;
  height: 40px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 0;
  text-align: center;
  width: 100%;
}

.ama_amc .ama_ae3,
.ama_amc .ama_amn {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
}

.ama_amc .ama_ae3 time,
.ama_amc .ama_ae3 span,
.ama_amc .ama_amn time,
.ama_amc .ama_amn span {
  font-weight: 700;
}

.ama_amc .ama_ae3 .ama_ae5,
.ama_amc .ama_amn .ama_ae5 {
  -ms-flex: 1;
  flex: 1;
}

.ama_amc .ama_ae3 .ama_ajg,
.ama_amc .ama_amn .ama_ajg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.ama_amc .ama_ae3 .ama_ajg button,
.ama_amc .ama_amn .ama_ajg button {
  margin: 0 20px;
}

.ama_amc .ama_amn {
  margin-top: 30px;
}

.ama_amc .ama_amp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2em;
}

.ama_amc .ama_amp button:first-child {
  margin-right: 50px;
}

.ama_amc .ama_ni {
  font-size: 16px;
}

.ama_amc .ama_amr {
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.ama_amc .ama_amr > div {
  margin: 0;
}

.ama_amc .ama_amr > div:first-child {
  margin-right: 3%;
  width: 64%;
}

.ama_amc .ama_amr > div:nth-child(2) {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .ama_amc .ama_ajg button {
    width: 100%;
  }
  .ama_amc .ama_ajg button:not(:last-child) {
    margin-bottom: 24px;
  }
  .ama_amc .ama_amr > div:first-child {
    width: 50%;
  }
  .ama_amc .ama_amr > div:nth-child(2) {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .ama_amc .ama_amr {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .ama_amc .ama_amr > div:first-child, .ama_amc .ama_amr > div:nth-child(2) {
    margin-top: 24px;
    width: 100%;
  }
}

.ama_amc .ama_amt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 30px;
  width: 100%;
}

.ama_amc .ama_amt .ama_a0 {
  background-color: #f2f2f3;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  color: #282828;
  font-family: "Agency", sans-serif;
  font-size: 12px;
  font-weight: 600;
  height: 25px;
  margin-right: 5px;
  padding: 7px 5px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ama_amc .ama_amt .ama_a0 {
    width: 100%;
  }
}

.ama_amc .ama_amt .ama_a0:last-child {
  margin-right: 0;
}

.ama_amc .ama_amt .ama_a0.ama_vm {
  background-color: #fff;
  color: #0c3970;
}

.ama_amc .ama_amt .ama_a0.ama_vm::after {
  background-color: #fff;
  bottom: -10px;
  content: '';
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  width: 100%;
}

.ama_amv {
  display: -ms-flexbox;
  display: flex;
}

.ama_amv .ama_amx {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.ama_amv .ama_amx h2 {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
  width: auto;
}

.ama_amv .ama_on {
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
  font-weight: 700;
}

.ama_amv .ama_ev {
  color: #282828;
  margin-left: 1em;
}

.ama_amv .ama_ev h2 {
  color: #0c3970;
}

.ama_amv .ama_ajg {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: auto;
}

.ama_amv .ama_ajg p {
  color: #282828;
  margin-right: 30px;
}

.ama_amv .ama_ajg span {
  display: block;
  text-align: right;
}

.ama_amv .ama_am {
  display: -ms-flexbox;
  display: flex;
}

.amz_amc {
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 13px -3px rgba(0, 0, 0, 0.05);
  margin: 0 -25px;
}

.amz_amc .amz_amf header button {
  font-size: 14px;
  height: 30px;
  width: 90px;
}

.amz_amc .amz_amf .amz_am1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 16px;
  margin-left: 30px;
  width: 95%;
}

@media screen and (max-width: 1023px) {
  .amz_amc .amz_amf .amz_am1 {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    padding: 20px 40px;
    width: 100%;
  }
}

.amz_amc .amz_aml {
  background-color: #0c3970;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 6px 0;
  text-align: center;
  width: 100%;
}

.amz_amc .amz_am3 {
  background-color: #fff;
  border-radius: 8px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 25px;
}

.amz_amc .amz_am3 .amz_a0 {
  margin-bottom: 10px;
}

.amz_amc .amz_ajg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 50px;
  width: 100%;
}

.amz_amc .amz_ae3 {
  margin-bottom: 36px;
}

.amz_amc .amz_ae3,
.amz_amc .amz_amn {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
}

.amz_amc .amz_ae3 time,
.amz_amc .amz_ae3 span,
.amz_amc .amz_amn time,
.amz_amc .amz_amn span {
  font-weight: 700;
}

.amz_amc .amz_ae3 .amz_ae5,
.amz_amc .amz_amn .amz_ae5 {
  -ms-flex: 1;
  flex: 1;
}

.amz_amc .amz_ae3 .amz_ajg,
.amz_amc .amz_amn .amz_ajg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.amz_amc .amz_ae3 .amz_ajg button,
.amz_amc .amz_amn .amz_ajg button {
  width: 235px;
}

.amz_amc .amz_a0 {
  background-color: #0c3970;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.amz_amc .amz_amp {
  display: -ms-flexbox;
  display: flex;
  width: 300px;
}

.amz_amc .amz_amp .amz_am5 {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  font-size: 12px;
  font-weight: bold;
  margin-top: 0;
  text-align: left;
}

.amz_amc .amz_amp .amz_am5 i {
  color: #0c3970;
  font-size: 18px;
  margin-left: 10px;
}

.amz_amc .amz_amp .amz_on {
  -ms-flex-align: center;
  align-items: center;
  background-color: #edf7f8;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  margin-left: 13px;
  width: 25px;
}

.amz_amc .amz_amp p {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.amz_amc .amz_am7 {
  margin-top: 40px;
}

.amz_amc .amz_am7 .amz_am9 {
  display: -ms-flexbox;
  display: flex;
}

.amz_amc .amz_am7 .amz_am9 p {
  color: #00b29f;
  margin: 0;
}

.amz_amc .amz_am7 .amz_anb {
  display: block;
  font-weight: normal;
  padding-left: 20px;
}

.amz_amc .amz_am7 i {
  cursor: pointer;
  top: 3px;
}

.amz_amv {
  display: -ms-flexbox;
  display: flex;
}

.amz_amv .amz_on {
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
  font-weight: 700;
}

.amz_amv .amz_ev {
  color: #282828;
  margin-left: 1em;
}

.amz_amv .amz_ev h2 {
  color: #0c3970;
}

.amz_amv .amz_ajg {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: auto;
}

.amz_amv .amz_ajg p {
  color: #282828;
  margin-right: 30px;
}

.amz_amv .amz_ajg span {
  display: block;
  text-align: right;
}

.amz_amv .amz_am {
  display: -ms-flexbox;
  display: flex;
}

.amz_amh {
  background-color: rgba(12, 57, 112, 0.08);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 90px;
  -ms-flex-pack: center;
  justify-content: center;
  left: -60px;
  margin-bottom: 24px;
  width: calc(100% + 140px);
}

.amz_amh .amz_ane {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  font-weight: 400;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  position: relative;
}

.amz_amh .amz_ane i {
  margin-right: 15px;
}

.amz_amh .amz_ane li {
  -ms-flex-align: center;
  align-items: center;
  color: #00b29f;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -ms-flex-pack: center;
  justify-content: center;
}

.amz_amh .amz_ane li:nth-child(2), .amz_amh .amz_ane li:nth-child(3) {
  width: 170px;
}

.amz_amh .amz_ane li span {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  border: 3px solid #676c67;
  color: inherit;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
  width: 25px;
}

.amz_ang {
  display: -ms-flexbox;
  display: flex;
}

.amz_ang > div.amz_ani {
  width: 100%;
}

.amz_ang > div.amz_ajg {
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 30%;
}

.amz_ang > div.amz_ajg button {
  margin-top: 15px;
  width: 100%;
}

.amz_l0 {
  margin-bottom: 25px;
  margin-top: 25px;
}

.amz_l0 :first-child {
  width: 95%;
}

.amz_ni {
  font-size: 16px;
}

.amz_ni:first-child {
  margin-bottom: 25px;
}

.amz_acm {
  text-align: right;
}

.amz_acm button {
  width: 170px;
}

.amz_ank {
  color: #fa6c5a;
}

.a5y_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.a5y_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.a5y_xi .a5y_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.a5y_xi .a5y_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.a5y_xi .a5y_ga span,
.a5y_xi .a5y_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.a5y_xi .a5y_ga span:first-child,
.a5y_xi .a5y_ga time:first-child {
  margin-right: 10%;
}

.a5y_xi .a5y_ga span:last-child,
.a5y_xi .a5y_ga time:last-child {
  width: 67%;
  text-align: left;
}

.a5y_xi .a5y_ga i {
  margin-left: 5px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .a5y_xi .a5y_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.a5y_xi .a5y_ga:not(:last-child) {
  margin-bottom: 3px;
}

.a5y_xi .a5y_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.a5y_xi .a5y_ga:last-child span {
  margin-right: 6%;
}

.a5y_xi .a5y_at2 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.a5y_xi .a5y_at2 .a5y_at4,
.a5y_xi .a5y_at2 .a5y_aev {
  border-radius: 7px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.a5y_xi .a5y_at2 .a5y_at4 {
  background-color: #fa6c5a;
}

.a5y_xi .a5y_at2 .a5y_aev {
  background-color: #0c3970;
}

.a5y_xi .a5y_at2 span,
.a5y_xi .a5y_at2 time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  margin-right: 11%;
}

.a5y_xi .a5y_at2 span:last-child,
.a5y_xi .a5y_at2 time:last-child {
  width: 67%;
}

.a5y_xi .a5y_at2:not(:last-child) {
  margin-bottom: 3px;
}

.a50_ae3 {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 0;
  min-height: calc(90vh - 280px);
}

@media screen and (max-width: 767px) {
  .a50_ae3 {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -10px 0 10px;
  }
}

.a50_ae3 time,
.a50_ae3 span {
  font-weight: 700;
}

.a50_ae3 span {
  font-family: "Inter Light", sans-serif;
  margin-right: 10px;
}

.a50_ae3 .a50_a0 {
  background-color: #0c3970;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.a50_ae3 .a50_azu {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 15px;
}

@media (max-width: 880px) {
  .a50_ae3 .a50_azu {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a50_ae3 .a50_azu .a50_ae7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_azu .a50_ae7 .a50_ev {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev:not(.a50_ah4) {
  min-height: 24px;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev:first-child {
  margin-bottom: 0;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev.a50_a52 {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: 10px 0;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev.a50_a52 input {
  border-radius: 6px;
  margin-left: 0;
  max-width: 50%;
  padding: 5px;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_ae9 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Agency", sans-serif;
  font-size: 12px;
  height: 24px;
  -ms-flex-pack: left;
  justify-content: left;
  margin-right: 5px;
  text-align: left;
  width: 11.5%;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_ae9 {
    width: 100%;
  }
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_ae9.a50_br {
  background-color: #0c3970;
  color: #fff;
  cursor: pointer;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_ae9 i {
  font-size: 16px;
  height: 16px;
  margin-right: 5px;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb {
  background-color: #f5f6fa;
  border: 0;
  border-radius: 6px;
  -ms-flex: 1;
  flex: 1;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  padding: 10px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb {
    width: 100%;
  }
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_hy {
  padding: 20px;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_afi {
  max-width: 20%;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_afi {
    max-width: 100%;
  }
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_a54 {
  padding: 0;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_a54 input {
  background-color: transparent;
  border: 0;
  margin-left: 0;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_a56 {
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_a56 i {
  color: #0c3970;
  cursor: pointer;
  font-size: 14px;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_afb.a50_a58 {
  border: 1px solid #fe6c5a;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_alq {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 8px;
  color: #0c3970;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 40px;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_ac4 {
  border-radius: 15px;
  min-width: unset;
  padding: 0;
  right: 0;
  width: 10%;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_ac4 {
    width: 100%;
  }
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_ac4.a50_ahb {
  background-color: #fe6c5a;
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_a6a {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  width: 20%;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_a6a {
    width: 100%;
  }
}

.a50_ae3 .a50_azu .a50_ae7 .a50_ev .a50_a6a label div {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_azu {
    font-size: 12px;
  }
}

.a50_ae3 .a50_ajg {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 800px;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_ajg {
    margin: 0;
  }
}

.a50_ae3 .a50_ajg button {
  margin: 10px;
  min-width: 200px;
}

@media screen and (max-width: 767px) {
  .a50_ae3 .a50_ajg button {
    width: 100%;
  }
}

.a50_ea {
  -ms-flex-align: center;
  align-items: center;
  border: solid 1px #cdcfd6;
  border-radius: 6px;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 20px;
  padding: 5px 15px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .a50_ea {
    width: 100%;
  }
}

.a50_ea.a50_a58 {
  border: solid 1px #fa6c5a;
}

.a50_ea.a50_a6c {
  margin-right: 5px;
  width: 30%;
}

.a50_ea.a50_a6f {
  width: 67%;
}

@media screen and (max-width: 767px) {
  .a50_ea.a50_a6f {
    width: 100%;
  }
}

.a50_ea.a50_a6h {
  width: 55%;
}

@media screen and (max-width: 767px) {
  .a50_ea.a50_a6h {
    width: 100%;
  }
}

.a50_ea span {
  margin: 0 !important;
}

.a50_ea i {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
  }
}

.a6j_ae3 time,
.a6j_ae3 span {
  font-weight: 700;
}

.a6j_ae3 span {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin-right: 10px;
}

.a6j_ae3 .a6j_azu {
  -ms-flex-align: baseline;
  align-items: baseline;
  background-color: #fff;
  border-radius: 0 5px 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ah4 {
    width: 100%;
  }
}

.a6j_ae3 .a6j_azu .a6j_ac0 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ac0 {
    width: 100%;
  }
}

.a6j_ae3 .a6j_azu .a6j_ac0 .a6j_ac2 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ac0 .a6j_ac2 {
    max-width: 100%;
    min-width: 0;
  }
}

.a6j_ae3 .a6j_azu .a6j_ac0 .a6j_ac2 textarea {
  border-radius: 5px;
  font-size: 12px;
  min-height: 80px;
  padding: 3px;
  resize: none;
}

.a6j_ae3 .a6j_azu .a6j_ac0 .a6j_ac4 {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  border-radius: 15px;
  margin-left: 20px;
  padding: 0;
  width: 90px;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ac0 .a6j_ac4 {
    width: 100%;
  }
}

.a6j_ae3 .a6j_azu .a6j_ac0 .a6j_az2 {
  border-radius: 15px;
  min-width: unset;
  padding: 0;
  width: 20px;
}

.a6j_ae3 .a6j_azu .a6j_ae7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 40%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ae7 {
    width: 100%;
  }
}

.a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 16px;
}

@media (max-width: 400px) {
  .a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev {
    font-size: 12px;
  }
}

.a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev > div {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  padding: 5px;
}

.a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_ae9 {
  font-family: "Agency", sans-serif;
  font-size: 12px;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_ae9 {
    margin: 0;
    width: 100%;
  }
}

.a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_afb {
  background-color: #fff;
}

@media (max-width: 400px) {
  .a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_afb {
    margin: 0 0 15px;
  }
}

.a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_afb:not(.a6j_afi) {
  width: 100%;
}

@media (max-width: 400px) {
  .a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_afb.a6j_afi {
    width: 100%;
  }
}

.a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_afb:not(.a6j_afk) {
  border: solid 1px #d5d0d0;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

.a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_a6l {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  margin-right: 20px;
  min-width: 50%;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu .a6j_ae7 .a6j_ev .a6j_a6l {
    margin-right: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .a6j_ae3 .a6j_azu {
    font-size: 12px;
    height: auto;
  }
}

.a6n_ae3 {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  min-height: 70vh;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 {
    border-radius: 0 0 10px 10px;
    -ms-flex-direction: column;
    flex-direction: column;
    height: unset;
    margin-bottom: 10px;
    min-height: 50vh;
  }
}

.a6n_ae3 time,
.a6n_ae3 span {
  font-weight: 700;
}

.a6n_ae3 span {
  font-family: "Inter Light", sans-serif;
  margin-right: 10px;
}

.a6n_ae3 .a6n_a0 {
  background-color: #0c3970;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.a6n_ae3 .a6n_a1o {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  height: 40px;
  padding: 0 10px;
  width: 55%;
}

.a6n_ae3 .a6n_a6p {
  height: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_a6r {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ev {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ev p {
  font-family: "Agency", sans-serif;
  margin: 0;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_ga {
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_ga {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_ga button {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: auto;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_kz {
  margin: 30px 0;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_kz.a6n_a6t {
  margin: 0;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_kz.a6n_a6t div {
  height: 45px;
  width: 150px;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_kz.a6n_a6t div {
    width: 100%;
  }
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_kz.a6n_a6t textarea {
  height: 100%;
  resize: horizontal;
  width: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_kz.a6n_a6t input {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_kz.a6n_a6t {
    width: 100%;
  }
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6v {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 12px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6v {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6v > * {
    margin: 0;
    width: 100%;
  }
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6v span {
  margin-right: 0;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6v .a6n_a6x {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 10px;
  width: 40%;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6v .a6n_alq {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  height: 40px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 33%;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z {
    padding: 0;
  }
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z li {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z li.a6n_a61 {
  -ms-flex-pack: end;
  justify-content: end;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z li.a6n_a61 button {
  width: 135px;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z li.a6n_a61 button {
    width: 100%;
  }
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z .a6n_a63 {
  padding: 5px 8px;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z .a6n_a65 {
  width: 10%;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z .a6n_a67 {
  -ms-flex: 1;
  flex: 1;
  margin-top: 0;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z .a6n_a69 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #0ac8b4;
  border-radius: 50%;
  color: #0ac8b4;
  display: -ms-flexbox;
  display: flex;
  font-family: "Agency", sans-serif;
  font-size: 16px;
  height: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  padding: 0;
  position: absolute;
  right: -8px;
  top: -11px;
  width: 20px;
  z-index: 1;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a6z .a6n_a69 i {
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 5px;
  width: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a7b {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a7b .a6n_pw {
  color: #3b3f3b;
  display: block;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  margin: 0 0 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ax4 .a6n_a7b button > div > div > div {
  height: 45px;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 {
  width: 20%;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 button {
  border: 0;
  box-shadow: none;
  color: #00b29f;
  display: block;
  font-size: 14px;
  padding: 0;
  text-align: left;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 button:hover, .a6n_ae3 .a6n_a6p .a6n_ab7 button:focus, .a6n_ae3 .a6n_a6p .a6n_ab7 button:active {
  background-color: transparent;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 button:active {
  transform: translateY(0);
}

.a6n_ae3 .a6n_a6p .a6n_ab7 button > div:first-child {
  color: #282828;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 button > div:last-child {
  background-color: transparent;
  border: 1px solid #cdcfd6;
  border-radius: 4px;
  color: #282828;
  width: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 .a6n_on {
  color: #0c3970;
  font-size: 1.4em;
  margin-top: 5px;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 .a6n_on.a6n_a0x {
  transform: rotate(45deg);
}

.a6n_ae3 .a6n_a6p .a6n_ab7 .a6n_pw {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
}

.a6n_ae3 .a6n_a6p .a6n_ab7 .a6n_pw.a6n_a7e {
  color: #0c3970;
}

.a6n_ae3 .a6n_a6p .a6n_aq3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto auto 50px;
}

.a6n_ae3 .a6n_a6p .a6n_aq3 button {
  width: 205px;
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p .a6n_aq3 {
    margin: auto 0 50px;
  }
  .a6n_ae3 .a6n_a6p .a6n_aq3 button {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .a6n_ae3 .a6n_a6p {
    font-size: 12px;
  }
}

.a7g_ae3 {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  min-height: 67vh;
  padding: 20px 20px 0;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 {
    border-radius: 0 0 10px 10px;
    -ms-flex-direction: column;
    flex-direction: column;
    height: unset;
    margin-bottom: 10px;
    min-height: 50vh;
  }
}

.a7g_ae3.a7g_a7i {
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.a7g_ae3 time,
.a7g_ae3 span {
  font-weight: 700;
}

.a7g_ae3 span {
  font-family: "Inter Light", sans-serif;
  margin-right: 10px;
}

.a7g_ae3 .a7g_a0 {
  background-color: #0c3970;
  color: #fff;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.a7g_ae3 .a7g_a7k {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 880px) {
  .a7g_ae3 .a7g_a7k {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_ae7 {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_a7m {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 90%;
}

@media screen and (max-width: 1023px) {
  .a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_a7m {
    width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin: 15px 0;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev {
    -ms-flex-direction: column;
    flex-direction: column;
    height: unset;
    margin: 20px 0;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev:not(.a7g_ah4) {
  height: 24px;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev:not(.a7g_ah4) {
    -ms-flex-align: start;
    align-items: flex-start;
    height: unset;
    margin: 0;
    width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev > div {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  padding: 20px;
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_ae9 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Agency", sans-serif;
  width: 13%;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_ae9 {
    max-width: unset;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_ae9.a7g_afi {
  width: 90px;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_ae9.a7g_afi {
    width: unset;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_ae9.a7g_br {
  background-color: #0c3970;
  color: #fff;
  cursor: pointer;
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_ae9 i {
  font-size: 16px;
  height: 16px;
  margin-right: 5px;
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_alq {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 10px;
  height: 35px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
  width: 140px;
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_alq i {
  color: #fff;
  font-size: 15px;
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_alq a {
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_alq.a7g_a7o {
  background-color: #f3f3f3;
  border-radius: 8px;
  color: #0c3970;
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_alq.a7g_a7o i {
  color: #0c3970;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev .a7g_alq.a7g_a7q {
    margin-bottom: 10px;
    width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_ae7 .a7g_ev.a7g_aak {
  width: 100%;
}

.a7g_ae3 .a7g_a7k .a7g_afb {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  padding: 0 10px;
  width: 264px;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_afb {
    width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_afb.a7g_afi {
  max-width: 120px;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_afb.a7g_afi {
    max-width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_afb.a7g_a7s {
  max-width: 50px;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_afb.a7g_a7s {
    max-width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_afb.a7g_a7u {
  width: 85%;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_afb.a7g_a7u {
    width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_a7w {
  width: 100%;
}

.a7g_ae3 .a7g_a7k .a7g_a7w p {
  font-weight: 700;
}

.a7g_ae3 .a7g_a7k .a7g_a7w .a7g_xi {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  gap: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_a7w .a7g_xi {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a7g_ae3 .a7g_a7k .a7g_a7w .a7g_ay1 {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: unset;
  width: 25px;
}

@media screen and (max-width: 1023px) {
  .a7g_ae3 .a7g_a7k .a7g_a7w .a7g_ay1 {
    width: 100%;
  }
}

.a7g_ae3 .a7g_a7k .a7g_a7w .a7g_ay1 i {
  font-size: 20px;
  margin-top: 4px;
}

.a7g_ae3 .a7g_a7k .a7g_a7w .a7g_afe {
  background-color: #fa6c5a;
  border-radius: 20px;
  color: #fff;
  padding: 5px 15px;
}

.a7g_ae3 .a7g_a7k .a7g_a7w .a7g_afe.a7g_kj {
  background-color: #0ac8b4;
}

.a7g_ae3 .a7g_a7k .a7g_aq3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px auto 30px;
  width: 100%;
}

.a7g_ae3 .a7g_a7k .a7g_aq3 button {
  width: 205px;
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k .a7g_aq3 {
    margin: 10px 0 50px;
  }
  .a7g_ae3 .a7g_a7k .a7g_aq3 button {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .a7g_ae3 .a7g_a7k {
    font-size: 12px;
  }
}

.a7y_ae3 {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  min-height: 78vh;
}

@media screen and (max-width: 767px) {
  .a7y_ae3 {
    border-radius: 0 0 10px 10px;
    -ms-flex-direction: column;
    flex-direction: column;
    height: unset;
    margin-bottom: 10px;
    min-height: 50vh;
  }
}

.a7y_ae3 .a7y_a70 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.a7y_ae3 .a7y_a70 .a7y_k3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0 20px 20px;
  width: 100%;
}

.a7y_ae3 .a7y_a70 .a7y_k3 span {
  font-size: 17px;
}

.a7y_ae3 .a7y_a70 .a7y_a72 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
  width: 100%;
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 24px;
  margin: 50px 0;
}

@media (max-width: 400px) {
  .a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev.a7y_cq {
  color: #0ac8b4;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0;
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev.a7y_cq:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev.a7y_cq {
    font-size: 12px;
  }
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev.a7y_a74 {
  -ms-flex-pack: end;
  justify-content: end;
  margin: 0;
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev .a7y_ae9 {
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  height: 24px;
  -ms-flex-pack: left;
  justify-content: left;
  margin-right: 5px;
  max-width: 130px;
  text-align: left;
  width: 100%;
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev .a7y_ae9 i {
  font-size: 16px;
  height: 16px;
  margin-right: 5px;
}

@media (max-width: 400px) {
  .a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev .a7y_ae9 {
    margin: 0 0 5px;
    max-width: unset;
  }
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev .a7y_alq {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: 1px solid transparent;
  border-radius: 22px;
  color: #fff;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 32px;
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev .a7y_alq a {
  color: #fff;
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_ev .a7y_alq a i {
  font-size: 15px;
}

.a7y_ae3 .a7y_a70 .a7y_a72 .a7y_a76 {
  font-family: "Agency", sans-serif;
  margin: 0;
  text-align: center;
}

@media (max-width: 880px) {
  .a7y_ae3 .a7y_a70 .a7y_a72 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .a7y_ae3 .a7y_a70 .a7y_a72 {
    -ms-flex-align: start;
    align-items: flex-start;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    margin-top: 10px;
  }
}

.a7y_ae3 .a7y_a70 .a7y_aq3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto auto 50px;
  padding: 0 20px;
  width: 100%;
}

.a7y_ae3 .a7y_a70 .a7y_aq3 button {
  width: 205px;
}

@media screen and (max-width: 767px) {
  .a7y_ae3 .a7y_a70 .a7y_aq3 {
    margin: auto 0 50px;
  }
  .a7y_ae3 .a7y_a70 .a7y_aq3 button {
    width: 100%;
  }
}

.a78_ae3 {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .a78_ae3 {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
  }
}

.a78_ae3 .a78_ayn {
  bottom: 33px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1023px) {
  .a78_ae3 .a78_ayn {
    gap: 0;
    bottom: unset;
  }
}

.a78_ae3 .a78_a8a {
  border-radius: 5px;
  box-shadow: none;
  height: auto;
  max-height: unset;
  padding: 10px;
  width: 205px;
}

.a78_ae3 .a78_a8a:first-child {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .a78_ae3 .a78_a8a {
    min-width: unset;
    width: 100%;
  }
  .a78_ae3 .a78_a8a:first-child {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.a78_aai {
  z-index: 10;
}

.a78_aai input {
  height: 40px;
  min-width: 250px;
  padding: 5px;
}

.a78_aai.a78_afi input {
  min-width: 155px;
}

.a78_a8c {
  background-color: #fff;
  height: 78vh;
  padding: 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .a78_a8c {
    -ms-flex-direction: column;
    flex-direction: column;
    height: unset;
    margin-bottom: 10px;
    min-height: 50vh;
  }
}

.a78_a8c.a78_afk {
  border-radius: 0 0 10px 10px;
}

.a78_a8c .a78_a8f {
  background-color: #fff;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .a78_a8c .a78_a8f {
    border-radius: 10px 0 10px 10px;
  }
}

.a78_a8c .a78_a8f .a78_a0 {
  font-family: "Agency", sans-serif;
  font-size: 12px;
  margin: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .a78_a8c .a78_a8f .a78_a0 {
    width: 100%;
  }
}

.a78_a8c .a78_a8f .a78_a0.a78_gp {
  width: 15%;
}

.a78_a8c .a78_a8f .a78_a8h {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.a78_a8c .a78_a8f .a78_a8h.a78_ga {
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 15px;
}

.a78_a8c .a78_a8f .a78_a8j.a78_am {
  margin-left: -20px;
}

@media screen and (max-width: 767px) {
  .a78_a8c .a78_a8f .a78_a8j.a78_am {
    margin-left: unset;
  }
}

.a78_a8c .a78_a8f .a78_a8j .a78_a8l {
  margin-bottom: 30px;
}

.a78_a8c .a78_a8f .a78_a8j .a78_a8l .a78_a8n {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.a78_a8c .a78_a8f .a78_a8j .a78_a8l .a78_a8p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.a78_a8c .a78_a8f .a78_a8j .a78_a8r {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border: 0;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  height: 40px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 13%;
}

@media screen and (max-width: 1023px) {
  .a78_a8c .a78_a8f .a78_a8j .a78_a8r {
    width: 100%;
  }
}

.a78_a8c .a78_a8f .a78_a8j .a78_a8r i {
  color: #0c3970;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.a78_a8c .a78_a8f .a78_a8j .a78_a8r.a78_kj {
  background-color: #0ac8b4;
  color: #fff;
}

.a78_a8c .a78_a8f .a78_a8j .a78_a8r.a78_wt {
  background-color: #fe6c5a;
  color: #fff;
}

.a78_a8c .a78_a8f .a78_a8j .a78_alq {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.a78_a8c .a78_a8f .a78_a8j .a78_alq .a78_cq {
  font-weight: bold;
  margin: 30px 0;
}

@media screen and (max-width: 767px) {
  .a78_a8c .a78_a8f .a78_a8j .a78_alq .a78_cq {
    font-size: 12px;
  }
}

.a78_a8c .a78_a8f .a78_a8j .a78_alq .a78_a8t {
  border-radius: 10px;
  color: #fff;
  margin-left: 10px;
  padding: 2px 10px;
}

.a78_a8c .a78_a8f .a78_a8j .a78_alq .a78_a8t.a78_wt {
  background-color: #fe6c5a;
}

.a78_a8c .a78_a8f .a78_a8j .a78_alq .a78_a8t.a78_kj {
  background-color: #0ac8b4;
}

.a78_a8c .a78_a8f .a78_a8j .a78_ac8 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 30px;
  width: 10%;
}

.a78_a8c .a78_a8f .a78_a8j .a78_ac8 > div {
  margin: unset;
}

@media screen and (max-width: 1023px) {
  .a78_a8c .a78_a8f .a78_a8j .a78_ac8 {
    width: 40%;
  }
}

@media (max-width: 880px) {
  .a78_a8c .a78_a8f .a78_a8j {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .a78_a8c .a78_a8f .a78_a8j {
    font-size: 12px;
  }
}

.a78_a8c .a78_a8f .a78_aq3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto auto 50px;
  width: 100%;
}

.a78_a8c .a78_a8f .a78_aq3 button {
  width: 205px;
}

@media screen and (max-width: 767px) {
  .a78_a8c .a78_a8f .a78_aq3 {
    margin: auto 0 50px;
  }
  .a78_a8c .a78_a8f .a78_aq3 button {
    width: 100%;
  }
}

.a8v_at8 .a8v_mx {
  text-align: center;
}

.a8v_at8 div[role='contentinfo'] {
  max-width: 520px;
  min-height: 300px;
  overflow: hidden;
}

.a8v_at8 div[role='contentinfo'] header h1 {
  text-align: center;
}

.a8v_at8 div[role='contentinfo'] footer {
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0;
}

.a8x_at8 .a8x_mx {
  text-align: center;
}

.a8x_at8 div[role='contentinfo'] {
  border-radius: 14px;
  max-width: 460px;
  overflow: hidden;
}

.a8x_at8 div[role='contentinfo'] header h1 {
  text-align: center;
}

.a8x_at8 div[role='contentinfo'] footer {
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0;
}

.a8x_at8 div[role='contentinfo'] footer button {
  color: #fff !important;
  margin: 0 0 30px;
  max-width: 170px;
}

.a8z_ae3 {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 {
    border-radius: 0 0 10px 10px;
  }
}

@media screen and (max-width: 767px) {
  .a8z_ae3 {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
  }
}

.a8z_ae3 .a8z_azu {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_azu {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a8z_ae3 .a8z_azu .a8z_ae7:first-child {
  width: 65%;
}

@media (max-width: 880px) {
  .a8z_ae3 .a8z_azu .a8z_ae7:first-child {
    width: 100%;
  }
}

.a8z_ae3 .a8z_azu .a8z_a81 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

.a8z_ae3 .a8z_azu .a8z_a81 .a8z_a83 {
  background-color: #0ac8b4;
  width: 205px;
}

.a8z_ae3 .a8z_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_ev {
    -ms-flex-align: unset;
    align-items: unset;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a8z_ae3 .a8z_ev span {
  font-family: "Agency", sans-serif;
  margin-right: 5px;
  width: 20%;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_ev span {
    width: 100%;
  }
}

.a8z_ae3 .a8z_ev.a8z_anb {
  margin-top: -20px;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_ev.a8z_anb {
    margin-top: 20px;
  }
}

.a8z_ae3 .a8z_ev .a8z_aut {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_ev .a8z_aut {
    width: 100%;
  }
}

.a8z_ae3 .a8z_ev .a8z_a1o {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  padding: 10px;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_ev .a8z_a1o {
    width: 100%;
  }
}

.a8z_ae3 .a8z_a85 {
  background-color: #0ac8b4;
  border-radius: 20px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
  min-width: 100px;
  padding: 9px;
  text-align: center;
  width: 170px;
}

.a8z_ae3 .a8z_a85.a8z_al0 {
  background-color: #fe6c5a;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_a85 {
    width: 100%;
  }
}

.a8z_ae3 .a8z_am {
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_am {
    width: 100%;
  }
}

.a8z_ae3 .a8z_am .a8z_ak5 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0ac8b4;
  border-radius: 5px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 170px;
}

@media screen and (max-width: 767px) {
  .a8z_ae3 .a8z_am .a8z_ak5 {
    width: 100%;
  }
}

.a8z_ae3 .a8z_am .a8z_ak5.a8z_wr {
  background-color: #0c3970;
}

.a87_at8 .a87_mx {
  text-align: center;
}

.a87_at8 div[role='contentinfo'] {
  border-radius: 14px;
  height: 450px;
  max-width: 850px;
  overflow: auto;
}

.a87_at8 div[role='contentinfo'] header h1 {
  text-align: center;
}

.a87_at8 div[role='contentinfo'] footer {
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 0;
}

.a87_at8 div[role='contentinfo'] footer button {
  color: #fff !important;
  margin: 0 0 30px;
  max-width: 170px;
}

.a87_at8 .a87_u {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.a87_at8 .a87_u .a87_a89 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 40px;
  width: 100%;
}

.a87_at8 .a87_u .a87_a89 .a87_a9b {
  width: 35%;
}

@media screen and (max-width: 767px) {
  .a87_at8 .a87_u .a87_a89 .a87_a9b {
    width: 100%;
  }
}

.a87_at8 .a87_u .a87_a89 span {
  margin-right: 10px;
}

.a87_at8 .a87_u .a87_a89 > div {
  margin: unset;
  margin-right: 20px;
}

.a87_at8 .a87_u .a87_a9e {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 40px;
  width: 100%;
}

.a87_at8 .a87_u .a87_a9e .a87_a9g {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.a87_at8 .a87_u .a87_a9e .a87_a9g > div {
  margin: unset;
  margin-right: 10px;
}

.a87_at8 .a87_u .a87_a9e > div {
  margin: unset;
}

.a87_at8 .a87_u .a87_a9e span {
  margin-right: 10px;
}

.a87_at8 .a87_u .a87_aai input {
  height: 40px;
  margin-top: 20px;
}

.anm_amc {
  background-color: #f5f6fa;
}

@media screen and (max-width: 767px) {
  .anm_amc {
    min-height: 95vh;
  }
}

.anm_amc table {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.anm_amc table tr {
  background-color: rgba(209, 244, 248, 0.65);
}

.anm_amc table tr:nth-child(even) {
  background-color: #fff;
}

.anm_amc .anm_amf header button {
  font-size: 14px;
  height: 30px;
  width: 90px;
}

.anm_amc .anm_amf .anm_a0 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0068aa;
  border-radius: 10px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  height: 40px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.anm_amc .anm_amf .anm_ano {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 30px;
  width: 100%;
}

.anm_amc .anm_amf .anm_ano .anm_anq {
  background-color: #f2f2f3;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  color: #282828;
  font-family: "Agency", sans-serif;
  font-size: 12px;
  font-weight: 600;
  height: 25px;
  margin-right: 5px;
  padding: 7px 5px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .anm_amc .anm_amf .anm_ano .anm_anq {
    width: 100%;
  }
}

.anm_amc .anm_amf .anm_ano .anm_anq:last-child {
  margin-right: 0;
}

.anm_amc .anm_amf .anm_ano .anm_anq.anm_fk {
  background-color: #fff;
  color: #0c3970;
}

.anm_amc .anm_amf .anm_ano .anm_anq.anm_fk::after {
  background-color: #fff;
  bottom: -10px;
  content: '';
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  width: 100%;
}

.anm_amc .anm_amf .anm_amj {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  padding: 10px 0 0 20px;
  width: 100%;
}

.anm_amc .anm_amf .anm_amj.anm_ans {
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 10px;
  min-height: 72vh;
}

.anm_amc .anm_ajg {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.anm_amc .anm_ae3 {
  margin-bottom: 36px;
}

.anm_amc .anm_ae3,
.anm_amc .anm_amn {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
}

.anm_amc .anm_ae3 time,
.anm_amc .anm_ae3 span,
.anm_amc .anm_amn time,
.anm_amc .anm_amn span {
  font-weight: 700;
}

.anm_amc .anm_ae3 .anm_ae5,
.anm_amc .anm_amn .anm_ae5 {
  -ms-flex: 1;
  flex: 1;
}

.anm_amc .anm_ae3 .anm_ajg,
.anm_amc .anm_amn .anm_ajg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.anm_amc .anm_ae3 .anm_ajg button,
.anm_amc .anm_amn .anm_ajg button {
  margin: 0 20px;
}

.anm_amc .anm_amn {
  margin-top: 30px;
}

.anm_amc .anm_amp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2em;
}

.anm_amc .anm_amp button:first-child {
  margin-right: 50px;
}

.anm_amc .anm_ni {
  font-size: 16px;
}

.anm_amc .anm_amr {
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.anm_amc .anm_amr > div {
  margin: 0;
}

.anm_amc .anm_amr > div:first-child {
  margin-right: 3%;
  width: 64%;
}

.anm_amc .anm_amr > div:nth-child(2) {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .anm_amc .anm_ajg button {
    width: 100%;
  }
  .anm_amc .anm_ajg button:not(:last-child) {
    margin-bottom: 24px;
  }
  .anm_amc .anm_amr > div:first-child {
    width: 50%;
  }
  .anm_amc .anm_amr > div:nth-child(2) {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .anm_amc .anm_amr {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .anm_amc .anm_amr > div:first-child, .anm_amc .anm_amr > div:nth-child(2) {
    margin-top: 24px;
    width: 100%;
  }
}

.anm_amv {
  display: -ms-flexbox;
  display: flex;
}

.anm_amv .anm_amx {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.anm_amv .anm_amx h2 {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
  width: auto;
}

.anm_amv .anm_on {
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
  font-weight: 700;
}

.anm_amv .anm_ev {
  color: #282828;
  margin-left: 1em;
}

.anm_amv .anm_ev h2 {
  color: #0c3970;
}

.anm_amv .anm_ajg {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: auto;
}

.anm_amv .anm_ajg p {
  color: #282828;
  margin-right: 30px;
}

.anm_amv .anm_ajg span {
  display: block;
  text-align: right;
}

.anm_amv .anm_am {
  display: -ms-flexbox;
  display: flex;
}

.anm_am7 {
  border-top: 20px solid rgba(209, 244, 248, 0.5);
  margin: 40px 0;
  padding: 20px 0;
}

.anm_am7 > p {
  font-family: "Agency", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.anm_am7 .anm_abp {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.anm_am7 .anm_abp .anm_anu {
  font-weight: 700;
  min-width: 200px;
  width: 200px;
}

.anm_am7 .anm_abp .anm_anw .anm_any {
  font-weight: 700;
  margin-top: 0;
}

.anm_am7 .anm_abp .anm_anw .anm_am9 {
  display: -ms-flexbox;
  display: flex;
}

.anm_am7 .anm_abp .anm_anw .anm_am9 p {
  color: #00b29f;
  margin: 0;
}

.anm_am7 .anm_abp .anm_anw .anm_anb {
  color: #00b29f;
  display: block;
  font-weight: normal;
}

.anm_am7 .anm_abp .anm_anw .anm_anb:not(:first-child) {
  padding-left: 20px;
}

.anm_am7 .anm_abp .anm_anw .anm_anb.anm_an0 {
  padding: 0;
}

.anm_am7 .anm_abp .anm_anw .anm_anb i {
  cursor: pointer;
  top: 3px;
}

.anm_an2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 50px;
  padding: 10px;
  width: 300px;
}

.anm_an2 .anm_anq {
  background-color: #fff;
  color: #78797a;
  height: 100%;
  width: 150px;
}

.anm_an2 .anm_anq.anm_am {
  border-radius: 5px 0 0 5px;
}

.anm_an2 .anm_anq.anm_st {
  border-radius: 0 5px 5px 0;
}

.anm_an2 .anm_anq.anm_fk {
  background-color: #0c3970;
  color: #fff;
}

.a9i_a9k div[role='contentinfo'] {
  min-width: 1000px;
  overflow-y: scroll;
}

.a9i_a9k footer {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: right;
  justify-content: right;
  margin: 50px 0 5px;
}

@media screen and (max-width: 767px) {
  .a9i_a9k footer {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.a9i_a9k .a9i_awj > div {
  display: inline-block;
}

.a9i_a9k .a9i_awl {
  margin-top: 30px;
}

.a9i_a9k .a9i_awl > div {
  display: inline-block;
  margin-right: 30px;
  width: 190px;
}

.a9i_a9k .a9i_awn > div {
  display: inline-block;
  margin-right: 30px;
  width: 190px;
}

.a9i_a9k .a9i_a6 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.a9i_a9k .a9i_a6 > div {
  margin-top: 0;
}

.a9i_a9k .a9i_a8 {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 104, 170, 0.5);
  padding-bottom: 20px;
}

.a9i_a9k .a9i_a8 > div {
  width: 32%;
}

.a9i_a9k .a9i_ba > div:first-child {
  width: 140px;
}

.a9i_a9k .a9i_ba > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.a9i_a9k .a9i_bc > div:first-child {
  width: 50%;
}

.a9i_a9k .a9i_bc > div:not(:first-child) {
  margin-left: 2%;
  width: 23%;
}

.a9i_a9k .a9i_bf > div:first-child {
  width: 50%;
}

.a9i_a9k .a9i_bf > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.a9i_a9k .a9i_aw {
  text-align: center;
}

.a9i_a9k.a9i_hy [role='contentinfo'] {
  max-width: 800px;
}

.a9i_a9k.a9i_awp [role='contentinfo'] {
  max-width: 600px;
}

.a9i_a9k.a9i_rs [role='contentinfo'] {
  max-width: 300px;
}

.a9i_a0 {
  margin-bottom: 50px;
}

.a9i_a9b {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .a9i_a9b {
    width: 100%;
  }
}

.a9i_a9g {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
}

.a9i_a9m {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 10px;
}

.a9i_a9m > div {
  width: 50%;
}

.a9i_a9o {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .a9i_a9o {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 15px 0;
  }
}

.a9i_a9o > div:first-child {
  margin-bottom: 5px;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .a9i_a9o > div:first-child {
    width: 100%;
  }
}

.a9i_a9o > div:last-child {
  width: 33%;
}

@media screen and (max-width: 767px) {
  .a9i_a9o > div:last-child {
    width: 100%;
  }
}

.a9i_a9o > div:last-child input {
  border-radius: 5px;
  height: 40px;
  padding: 11px 13px;
  top: 34px;
  width: 100%;
}

.a9i_ka {
  margin-top: 10px;
}

.a9i_ka span {
  font-size: 12px;
}

.a9i_bv {
  color: #fe6c5a;
  font-size: 14px;
  margin: 15px 0;
}

.a9q_aen .a9q_aw {
  text-align: center;
  width: 100%;
}

.a9q_aen div[role='contentinfo'] {
  max-width: 480px;
}

.a9q_aen footer div {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.a9q_aen footer button {
  box-shadow: none;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .a9q_aen footer button {
    width: 100%;
  }
}

.a9q_aen footer button:first-child.a9q_aep {
  color: #fff;
}

.a9s_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.a9s_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.a9s_xi .a9s_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.a9s_xi .a9s_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.a9s_xi .a9s_ga span,
.a9s_xi .a9s_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.a9s_xi .a9s_ga span:first-child,
.a9s_xi .a9s_ga time:first-child {
  margin-right: 10%;
}

.a9s_xi .a9s_ga span:last-child,
.a9s_xi .a9s_ga time:last-child {
  width: 67%;
  text-align: left;
}

.a9s_xi .a9s_ga i {
  margin-left: 5px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .a9s_xi .a9s_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.a9s_xi .a9s_ga:not(:last-child) {
  margin-bottom: 3px;
}

.a9s_xi .a9s_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.a9s_xi .a9s_ga:last-child span {
  margin-right: 6%;
}

.a9s_xi .a9s_at2 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.a9s_xi .a9s_at2 .a9s_fk,
.a9s_xi .a9s_at2 .a9s_al0 {
  border-radius: 7px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.a9s_xi .a9s_at2 .a9s_fk {
  background-color: #0ac8b4;
}

.a9s_xi .a9s_at2 .a9s_al0 {
  background-color: #fa6c5a;
}

.a9s_xi .a9s_at2 span,
.a9s_xi .a9s_at2 time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  margin-right: 11%;
}

.a9s_xi .a9s_at2 span:last-child,
.a9s_xi .a9s_at2 time:last-child {
  width: 67%;
}

.a9s_xi .a9s_at2:not(:last-child) {
  margin-bottom: 3px;
}

.a9s_xi .a9s_alq {
  background: none;
  border: 0;
  color: #0ac8b4;
  display: inherit;
  font-family: "Agency", sans-serif;
  margin-bottom: 0;
}

.a9s_xi .a9s_alq i {
  margin-right: 5px;
}

.a9s_a9u {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: none;
  border-radius: 50px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 18px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0;
  min-width: 50px;
}

.a9s_avo {
  color: #0c3970;
  cursor: pointer;
  font-size: 21px;
}

.a9s_kn {
  cursor: not-allowed;
  opacity: .6;
}

.a9s_a9w {
  display: -ms-flexbox;
  display: flex;
}

.a9y_a90 {
  color: #3b3f3b;
}

.a9y_a90 div[role='contentinfo'] {
  height: -moz-fit-content;
  height: fit-content;
  max-width: 800px;
  overflow-y: scroll;
}

.a9y_a90 footer {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}

.a9y_a90 .a9y_awj > div {
  display: inline-block;
}

.a9y_a90 .a9y_awl {
  margin-top: 30px;
}

.a9y_a90 .a9y_awl > div {
  display: inline-block;
  margin-right: 30px;
  width: 190px;
}

.a9y_a90 .a9y_awn > div {
  display: inline-block;
  margin-right: 30px;
  width: 190px;
}

.a9y_a90 .a9y_a0 {
  font-family: "Agency", sans-serif;
  margin-bottom: 20px;
}

.a9y_a90 .a9y_a92 {
  width: 100%;
}

.a9y_a90 .a9y_a92 .a9y_a94 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.a9y_a90 .a9y_a92 .a9y_a94 > div {
  margin-top: 0;
  width: 30%;
}

.a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(2), .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(3), .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(4) {
  margin: 0;
  width: 20%;
}

@media screen and (max-width: 767px) {
  .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(2), .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(3), .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(4) {
    width: 100%;
  }
}

.a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(2) button, .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(3) button, .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(4) button {
  min-width: unset;
}

.a9y_a90 .a9y_a92 .a9y_a96 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.a9y_a90 .a9y_a92 .a9y_a96 > div {
  margin-top: 0;
  width: 32%;
}

.a9y_a90 .a9y_a92 .a9y_a96 > div:first-child {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .a9y_a90 .a9y_a92 .a9y_a96 > div:first-child {
    width: 100%;
  }
}

.a9y_a90 .a9y_a92 .a9y_a96 > div:not(:first-child) {
  width: 17%;
}

@media screen and (max-width: 767px) {
  .a9y_a90 .a9y_a92 .a9y_a96 > div:not(:first-child) {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .a9y_a90 .a9y_a92 .a9y_a94,
  .a9y_a90 .a9y_a92 .a9y_a96 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .a9y_a90 .a9y_a92 .a9y_a94 > div,
  .a9y_a90 .a9y_a92 .a9y_a96 > div {
    margin-bottom: 10px;
    width: 100%;
  }
  .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(3), .a9y_a90 .a9y_a92 .a9y_a94 > div:nth-child(4),
  .a9y_a90 .a9y_a92 .a9y_a96 > div:nth-child(3),
  .a9y_a90 .a9y_a92 .a9y_a96 > div:nth-child(4) {
    width: 100%;
  }
}

.a9y_a90 .a9y_a98 {
  margin-bottom: 30px;
  width: 100%;
}

.a9y_a90 .a9y_a98 .a9y_a94 {
  display: -ms-flexbox;
  display: flex;
}

.a9y_a90 .a9y_a98 .a9y_a94 > div {
  margin-top: 0;
  width: 32%;
}

.a9y_a90 .a9y_a98 .a9y_a94 > div:nth-child(1), .a9y_a90 .a9y_a98 .a9y_a94 > div:nth-child(2) {
  width: 10%;
}

@media screen and (max-width: 767px) {
  .a9y_a90 .a9y_a98 .a9y_a94 > div:nth-child(1), .a9y_a90 .a9y_a98 .a9y_a94 > div:nth-child(2) {
    width: 100%;
  }
}

.a9y_a90 .a9y_a98 .a9y_a94 > div:last-child {
  width: 20%;
}

@media screen and (max-width: 767px) {
  .a9y_a90 .a9y_a98 .a9y_a94 > div:last-child {
    width: 100%;
  }
}

.a9y_a90 .a9y_a98 .a9y_a96 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.a9y_a90 .a9y_a98 .a9y_a96 .a9y_baa {
  gap: 15px;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.a9y_a90 .a9y_a98 .a9y_a96 > div {
  margin-top: 0;
  width: 32%;
}

.a9y_a90 .a9y_a98 .a9y_a96 > div:nth-child(1), .a9y_a90 .a9y_a98 .a9y_a96 > div:nth-child(2) {
  width: 10%;
}

@media screen and (max-width: 767px) {
  .a9y_a90 .a9y_a98 .a9y_a96 > div:nth-child(1), .a9y_a90 .a9y_a98 .a9y_a96 > div:nth-child(2) {
    width: 100%;
  }
}

.a9y_a90 .a9y_a98 .a9y_a96 > div:not(:nth-child(1)), .a9y_a90 .a9y_a98 .a9y_a96 > div:not(:nth-child(2)) {
  width: 12%;
}

@media screen and (max-width: 767px) {
  .a9y_a90 .a9y_a98 .a9y_a96 > div:not(:nth-child(1)), .a9y_a90 .a9y_a98 .a9y_a96 > div:not(:nth-child(2)) {
    width: 100%;
  }
}

.a9y_a90 .a9y_a98 .a9y_a96 .a9y_bac {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.a9y_a90 .a9y_a98 .a9y_a96 .a9y_bac > div {
  margin-top: 0;
  width: 15%;
}

@media screen and (max-width: 480px) {
  .a9y_a90 .a9y_a98 .a9y_a94,
  .a9y_a90 .a9y_a98 .a9y_a96 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .a9y_a90 .a9y_a98 .a9y_a94 > div,
  .a9y_a90 .a9y_a98 .a9y_a96 > div {
    margin-bottom: 10px;
    width: 100%;
  }
  .a9y_a90 .a9y_a98 .a9y_a94 > div:nth-child(3), .a9y_a90 .a9y_a98 .a9y_a94 > div:nth-child(4),
  .a9y_a90 .a9y_a98 .a9y_a96 > div:nth-child(3),
  .a9y_a90 .a9y_a98 .a9y_a96 > div:nth-child(4) {
    width: 100%;
  }
}

.a9y_a90 .a9y_a8 {
  border-bottom: 1px solid rgba(0, 104, 170, 0.5);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.a9y_a90 .a9y_a8 > div {
  width: 32%;
}

.a9y_a90 .a9y_ba > div:first-child {
  width: 140px;
}

.a9y_a90 .a9y_ba > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.a9y_a90 .a9y_bc > div:first-child {
  width: 50%;
}

.a9y_a90 .a9y_bc > div:not(:first-child) {
  margin-left: 2%;
  width: 23%;
}

.a9y_a90 .a9y_bf > div:first-child {
  width: 50%;
}

.a9y_a90 .a9y_bf > div:not(:first-child) {
  -ms-flex: auto;
  flex: auto;
  margin-left: 2%;
}

.a9y_a90 .a9y_aw {
  text-align: center;
}

.a9y_a90.a9y_hy [role='contentinfo'] {
  max-width: 800px;
}

.a9y_a90.a9y_awp [role='contentinfo'] {
  max-width: 600px;
}

.a9y_a90.a9y_rs [role='contentinfo'] {
  max-width: 300px;
}

.a9y_a9g {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 35px 0;
}

.a9y_a9m {
  display: -ms-flexbox;
  display: flex;
}

.a9y_a9m > div {
  width: 50%;
}

.a9y_a9o {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 35px;
}

.a9y_a9o > div:first-child {
  width: 64%;
}

.a9y_a9o > div:last-child {
  width: 33%;
}

.a9y_ka {
  margin-top: 10px;
}

.a9y_bv {
  color: #fe6c5a;
  font-size: 14px;
  margin: 15px 0;
}

.baf_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.baf_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.baf_xi .baf_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.baf_xi .baf_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.baf_xi .baf_ga span,
.baf_xi .baf_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.baf_xi .baf_ga span:first-child,
.baf_xi .baf_ga time:first-child {
  margin-right: 10%;
}

.baf_xi .baf_ga span:last-child,
.baf_xi .baf_ga time:last-child {
  width: 67%;
  text-align: left;
}

.baf_xi .baf_ga i {
  margin-left: 5px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .baf_xi .baf_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.baf_xi .baf_ga:not(:last-child) {
  margin-bottom: 3px;
}

.baf_xi .baf_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.baf_xi .baf_ga:last-child span {
  margin-right: 6%;
}

.baf_xi .baf_ajg div {
  background-color: #0c3970;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.bah_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.bah_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.bah_xi .bah_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.bah_xi .bah_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.bah_xi .bah_ga span,
.bah_xi .bah_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.bah_xi .bah_ga span:first-child,
.bah_xi .bah_ga time:first-child {
  margin-right: 10%;
}

.bah_xi .bah_ga span:last-child,
.bah_xi .bah_ga time:last-child {
  width: 67%;
  text-align: left;
}

.bah_xi .bah_ga i {
  margin-left: 5px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .bah_xi .bah_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.bah_xi .bah_ga:not(:last-child) {
  margin-bottom: 3px;
}

.bah_xi .bah_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.bah_xi .bah_ga:last-child span {
  margin-right: 6%;
}

.baj_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.baj_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.baj_xi .baj_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.baj_xi .baj_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.baj_xi .baj_ga span,
.baj_xi .baj_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.baj_xi .baj_ga span:first-child,
.baj_xi .baj_ga time:first-child {
  margin-right: 10%;
}

.baj_xi .baj_ga span:last-child,
.baj_xi .baj_ga time:last-child {
  width: 67%;
  text-align: left;
}

.baj_xi .baj_ga i {
  font-size: 20px;
  line-height: 0;
  margin-bottom: 0;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .baj_xi .baj_ga i {
    font-size: 18px;
    margin-right: 5px;
  }
}

.baj_xi .baj_ga:not(:last-child) {
  margin-bottom: 3px;
}

.baj_xi .baj_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.baj_xi .baj_ga:last-child span {
  margin-right: 6%;
}

.baj_xi .baj_at2 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.baj_xi .baj_at2 .baj_at4,
.baj_xi .baj_at2 .baj_aev {
  border-radius: 7px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.baj_xi .baj_at2 .baj_at4 {
  background-color: #fa6c5a;
}

.baj_xi .baj_at2 .baj_aev {
  background-color: #0c3970;
}

.baj_xi .baj_at2 span,
.baj_xi .baj_at2 time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  margin-right: 11%;
}

.baj_xi .baj_at2 span:last-child,
.baj_xi .baj_at2 time:last-child {
  width: 67%;
}

.baj_xi .baj_at2:not(:last-child) {
  margin-bottom: 3px;
}

.bal_ban .bal_aw {
  text-align: center;
  width: 100%;
}

.bal_ban div[role='contentinfo'] {
  max-width: 480px;
}

.bal_ban footer button {
  box-shadow: none;
  height: 50px;
  margin: 0;
  min-width: 170px;
}

.bal_ban footer button:first-child.bal_aep {
  color: #fff;
}

.bap_ban .bap_aw {
  text-align: center;
  width: 100%;
}

.bap_ban div[role='contentinfo'] {
  max-width: 480px;
}

.bap_ban footer button {
  box-shadow: none;
  height: 50px;
  margin: 0;
  min-width: 170px;
}

.bap_ban footer button:first-child.bap_aep {
  color: #fff;
}

.an4_an6 {
  min-height: calc(100vh - 90px);
}

.an4_an6 .an4_ae3 {
  margin-bottom: 20px;
}

.an4_an6 .an4_ae3 .an4_ae5 {
  background-color: #fff;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 880px) {
  .an4_an6 .an4_ae3 .an4_ae5 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 50%;
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7:first-child {
  width: 35%;
}

@media (max-width: 880px) {
  .an4_an6 .an4_ae3 .an4_ae5 .an4_ae7:first-child {
    padding-bottom: 0;
    width: 100%;
  }
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7:last-child {
  width: 35%;
}

@media (max-width: 880px) {
  .an4_an6 .an4_ae3 .an4_ae5 .an4_ae7:last-child {
    padding-top: 0;
    width: 100%;
  }
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev {
  -ms-flex-align: baseline;
  align-items: baseline;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: left;
  justify-content: left;
}

@media (max-width: 400px) {
  .an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev > div {
  border-radius: 6px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  margin-bottom: 15px;
  padding: 3px 5px;
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afk .an4_afe {
  border-radius: 15px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 23px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afk .an4_afe {
    font-size: 12px;
  }
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afk .an4_fk {
  background-color: #0ac8b4;
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afk .an4_s9 {
  background-color: #0c3970;
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afk .an4_afg {
  background-color: #fa6c5a;
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_ae9 {
  font-family: "Agency", sans-serif;
  font-size: 12px;
  height: 24px;
  margin-right: 7px;
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_ae9.an4_br {
  cursor: pointer;
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_ae9 i {
  margin-right: 5px;
  height: 16px;
  font-size: 16px;
}

@media (max-width: 400px) {
  .an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_ae9 {
    margin: 0 0 5px;
    max-width: unset;
  }
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afb {
  background-color: #f5f6fa;
  min-width: 70%;
  padding: 7px;
}

@media (max-width: 400px) {
  .an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afb {
    margin: 0 0 15px;
  }
}

.an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afb:not(.an4_afi) {
  width: 100%;
}

@media (max-width: 400px) {
  .an4_an6 .an4_ae3 .an4_ae5 .an4_ae7 .an4_ev .an4_afb.an4_afi {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_ae3 .an4_ae5 {
    font-size: 12px;
  }
}

.an4_an6 .an4_afm {
  background-color: #fff;
  border-radius: 10px;
  min-height: 65vh;
}

.an4_an6 .an4_afm .an4_afo {
  font-family: "Inter Light", sans-serif;
  min-height: 300px;
  padding: 20px;
}

.an4_an6 .an4_afm .an4_afo .an4_an8 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 40px 40px 40px 0;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_an8 {
    margin: 0;
  }
  .an4_an6 .an4_afm .an4_afo .an4_an8 .an4_br {
    width: 100%;
  }
}

.an4_an6 .an4_afm .an4_afo .an4_an8 .an4_br {
  font-size: 12px;
  padding: 0 55px;
}

.an4_an6 .an4_afm .an4_afo .an4_ga {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ga {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.an4_an6 .an4_afm .an4_afo .an4_ga > div:not(:first-child) {
  margin-left: 4%;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ga > div:not(:first-child) {
    margin-left: 0;
  }
}

.an4_an6 .an4_afm .an4_afo .an4_ev {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ev {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.an4_an6 .an4_afm .an4_afo .an4_ev span {
  font-family: "Agency", sans-serif;
  width: 90px;
}

.an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb {
  background-color: #f5f6fa;
  border-radius: 5px;
  font-family: "Inter Light", sans-serif;
  margin-left: 5px;
  padding: 7px;
  width: calc(100% - 95px);
}

.an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb.an4_rs {
  width: 19%;
}

.an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb.an4_rs:not(:nth-child(2)) {
  margin-left: 2%;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb.an4_rs:not(:nth-child(2)) {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb {
    margin-left: 0;
  }
}

.an4_an6 .an4_afm .an4_afo .an4_ev.an4_hy {
  width: 72%;
}

.an4_an6 .an4_afm .an4_afo .an4_ev.an4_hy .an4_aoa {
  min-width: 90px;
}

.an4_an6 .an4_afm .an4_afo .an4_ev.an4_hy .an4_aoc {
  margin-left: 15px;
}

.an4_an6 .an4_afm .an4_afo .an4_ev.an4_hy .an4_afb {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ev.an4_hy {
    width: 100%;
  }
}

.an4_an6 .an4_afm .an4_afo .an4_ev.an4_hu {
  width: 35%;
}

.an4_an6 .an4_afm .an4_afo .an4_ev.an4_hu .an4_afb {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ev.an4_hu .an4_afb {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ev.an4_hu {
    width: 100%;
  }
}

.an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb {
  width: 100px;
}

.an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb.an4_rs {
  width: 22%;
}

@media screen and (max-width: 767px) {
  .an4_an6 .an4_afm .an4_afo .an4_ev .an4_afb.an4_rs {
    width: 100%;
  }
}

.bar_at8 .bar_mx {
  text-align: center;
}

.bar_at8 div[role='contentinfo'] {
  max-width: 480px;
}

.bar_at8 div[role='contentinfo'] footer {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.bar_at8 div[role='contentinfo'] footer button {
  margin: 0;
  max-width: 170px;
}

.bat_aet header h1,
.bat_aet header p {
  text-align: left;
}

.bat_aet .bat_aev {
  margin: 0 auto;
  width: 60%;
}

.bat_aet .bat_mx .bat_cy {
  text-align: center;
}

.bat_aet div[role='contentinfo'] {
  max-width: 480px;
}

.bat_aet div[role='contentinfo'] footer {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.bat_aet div[role='contentinfo'] footer button {
  color: #fff;
  margin: 0;
  max-width: 170px;
}

.bav_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.bav_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.bav_xi .bav_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.bav_xi .bav_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.bav_xi .bav_ga span,
.bav_xi .bav_ga time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
}

.bav_xi .bav_ga span:first-child,
.bav_xi .bav_ga time:first-child {
  margin-right: 10%;
}

.bav_xi .bav_ga span:last-child,
.bav_xi .bav_ga time:last-child {
  width: 67%;
  text-align: left;
}

.bav_xi .bav_ga i {
  font-size: 20px;
  line-height: 0;
  margin-bottom: 0;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .bav_xi .bav_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.bav_xi .bav_ga:not(:last-child) {
  margin-bottom: 3px;
}

.bav_xi .bav_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.bav_xi .bav_ga:last-child span {
  margin-right: 6%;
}

.bax_ban .bax_aw {
  text-align: center;
  width: 100%;
}

.bax_ban div[role='contentinfo'] {
  max-width: 480px;
}

.bax_ban footer button {
  box-shadow: none;
  height: 50px;
  margin: 0;
  min-width: 170px;
}

.bax_ban footer button:first-child.bax_aep {
  color: #fff;
}

.baz_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.baz_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.baz_xi .baz_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.baz_xi .baz_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.baz_xi .baz_ga .baz_a9u,
.baz_xi .baz_ga .baz_avo {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: none;
  border-radius: 50px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0;
  width: 120px;
}

.baz_xi .baz_ga .baz_a9u {
  background-color: #0c3970;
}

.baz_xi .baz_ga .baz_a9u:hover, .baz_xi .baz_ga .baz_a9u:active, .baz_xi .baz_ga .baz_a9u:focus {
  background-color: #020a14;
}

.baz_xi .baz_ga .baz_avo {
  background-color: #fe6c5a;
}

.baz_xi .baz_ga .baz_avo:hover, .baz_xi .baz_ga .baz_avo:active, .baz_xi .baz_ga .baz_avo:focus {
  background-color: #f11c01;
}

.baz_xi .baz_ga span,
.baz_xi .baz_ga time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
}

.baz_xi .baz_ga span:first-child,
.baz_xi .baz_ga time:first-child {
  margin-right: 10%;
}

.baz_xi .baz_ga span:last-child,
.baz_xi .baz_ga time:last-child {
  text-align: left;
  width: 67%;
}

.baz_xi .baz_ga i {
  font-size: 20px;
  line-height: 0;
  margin-bottom: 0;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .baz_xi .baz_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.baz_xi .baz_ga:not(:last-child) {
  margin-bottom: 3px;
}

.baz_xi .baz_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.baz_xi .baz_ga:last-child span {
  margin-right: 6%;
}

.ba3_xg {
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
}

.ba3_xg .ba3_xi {
  background-color: #f5f6fa;
  border-radius: 5px;
  color: #282828;
  cursor: pointer;
  font-family: "Agency", sans-serif;
  margin-right: 5px;
  padding: 3px;
}

.ba3_xg .ba3_xi.ba3_xk, .ba3_xg .ba3_xi:hover {
  background-color: #fff;
  color: #0c3970;
}

.ba3_xg .ba3_xi .ba3_xm {
  display: none;
  font-size: 40px;
  font-weight: 700;
  min-height: 46px;
}

.ba3_xg .ba3_xi .ba3_pw {
  display: block;
  font-family: "Agency", sans-serif;
  font-size: 12px;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .ba3_xg .ba3_xi .ba3_pw {
    margin: 0;
  }
}

.ba5_xg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 20px;
  width: 100%;
}

.ba5_xg .ba5_ba7 {
  border-radius: 10px;
  height: 100px;
  letter-spacing: 1.5px;
  padding: 8px;
  width: 10%;
}

@media screen and (max-width: 1023px) {
  .ba5_xg .ba5_ba7 {
    width: 22%;
  }
}

@media screen and (max-width: 767px) {
  .ba5_xg .ba5_ba7 {
    width: 30%;
  }
}

.ba5_xg .ba5_ba7 h1 {
  color: #fff;
  font-family: "Inter Light", sans-serif;
  margin: 0;
}

.ba5_xg .ba5_ba7 p {
  color: #fff;
  font-size: 12px;
  height: 40%;
  margin: 0;
}

.ba5_xg .ba5_ba7:nth-child(1) {
  background-image: linear-gradient(to left, #7e7bbb, #0f3463);
}

.ba5_xg .ba5_ba7:nth-child(2) {
  background-image: linear-gradient(to left, #c5d1ed, #7a9ff8);
}

.ba5_xg .ba5_ba7:nth-child(3) {
  background-image: linear-gradient(to left, #6ae7d9, #2abc9c);
}

.ba5_xg .ba5_ba7:nth-child(4) {
  background-image: linear-gradient(to left, #507dbc, #365ba4);
}

.ba5_xg .ba5_ba7:nth-child(5) {
  background-image: linear-gradient(to left, #f3cfa0, #e4a97f);
}

.ba5_xg .ba5_ba7:nth-child(6) {
  background-image: linear-gradient(to left, #8cb3c3, #5f95ad);
}

.ba5_xg .ba5_ba7:nth-child(7) {
  background-image: linear-gradient(to left, #91b4e5, #6b94c9);
}

.ba5_xg .ba5_ba7:last-of-type {
  background-image: linear-gradient(to left, #ffb995, #e8cabb);
  width: 23%;
}

@media screen and (max-width: 1023px) {
  .ba5_xg .ba5_ba7:last-of-type {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .ba5_xg .ba5_ba7:last-of-type {
    width: 63%;
  }
}

.aof_aoh {
  background-color: #f5f6fa;
}

.aof_aoh .aof_ae3 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aof_aoh .aof_akt {
  color: #0068aa;
  font-family: "Agency", sans-serif;
  font-size: 22px;
  padding: 0 20px;
}

.aof_aoh .aof_agh {
  width: 100%;
}

.aof_aoh .aof_agh .aof_aoj {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.aof_aoh .aof_agh .aof_aol {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 70vh;
}

@media screen and (max-width: 1023px) {
  .aof_aoh .aof_agh .aof_aol {
    background-color: #edf2f5;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    height: unset;
    min-height: 65vh;
  }
}

.aof_aoh .aof_agh .aof_aol .aof_aon {
  width: 70%;
}

@media screen and (max-width: 1023px) {
  .aof_aoh .aof_agh .aof_aol .aof_aon {
    width: 100%;
  }
}

.aof_aoh .aof_agh .aof_aol .aof_aop {
  margin-top: 27px;
  width: 29%;
}

@media screen and (max-width: 1023px) {
  .aof_aoh .aof_agh .aof_aol .aof_aop {
    width: 100%;
  }
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor {
  background-color: #fff;
  border-radius: 8px;
  height: 25%;
  margin-bottom: 30px;
  padding: 15px;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor strong {
  font-family: "Inter Light", sans-serif;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px 0;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  padding-right: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi {
    font-size: 12px;
  }
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi .aof_aab {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi .aof_aab {
    font-size: 14px;
  }
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi .aof_aab.aof_agz {
  color: #7a9ff8;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi .aof_aab.aof_kj {
  color: #4dd3be;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi p {
  margin: 0;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aor .aof_aot .aof_xi:last-child {
  border-right: none;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov {
  background-color: #fff;
  border-radius: 8px;
  height: calc(75% - 37px);
  margin-bottom: 30px;
  padding: 15px;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov strong {
  font-family: "Inter Light", sans-serif;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh {
  margin-top: 40px;
  width: 100%;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi {
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  height: 40px;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi {
    font-size: 12px;
  }
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi:first-child, .aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi:last-child {
  border-bottom: none;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi p:first-child,
.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi strong:first-child {
  margin: 0;
  width: 60%;
}

.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi p,
.aof_aoh .aof_agh .aof_aol .aof_aop .aof_aov .aof_agh .aof_xi strong {
  margin: 0;
  width: 30%;
}

.aof_aoh .aof_agh .aof_sh {
  border-style: none;
  height: 200px !important;
}

.aof_aoh .aof_agh.aof_acw {
  min-height: calc(100vh - 300px);
}

.aof_aoh .aof_nq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.aof_aoh .aof_aox {
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 5px 30px;
}

.aof_aoh .aof_aox .aof_aoz {
  font-size: 14px;
  height: 33px;
  letter-spacing: 1px;
  line-height: 30px;
  padding: 0 10px;
}

.aof_aoh .aof_aox .aof_aoz i {
  margin-right: 5px;
  top: 2px;
}

.aof_aoh .aof_ale {
  position: relative;
}

.aof_aoh .aof_ale a {
  color: #3b3f3b;
  font-size: 18px;
}

.aof_aoh .aof_ale a:first-child {
  padding-right: 40px;
}

.aof_aoh .aof_ale a.active {
  color: #282828;
}

.aof_aoh .aof_ale a.active::after {
  background-color: #0ac8b4;
  bottom: calc(-100% + 4px);
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
}

.aof_aoh .aof_alg {
  text-align: center;
}

@keyframes aof_agf {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.aof_fk,
.aof_al0 {
  border-radius: 7px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.aof_fk {
  background-color: #0ac8b4;
}

.aof_al0 {
  background-color: #fa6c5a;
}

.aof_p6 {
  background-color: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.aof_p6 tbody {
  background-color: #fff;
  height: 216px;
  overflow-y: scroll;
}

.aof_p6 tbody tr {
  margin-bottom: 13px;
  margin-top: 0;
}

.aof_p6 tbody td div {
  font-size: 12px;
}

.aof_p6 thead {
  border-bottom: none;
  border-top: 0;
  margin-bottom: 10px;
}

.aof_p6 thead tr {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
}

.aof_p6 thead tr td {
  box-shadow: none !important;
  width: 220px;
  width: calc(100% / 6);
}

@media screen and (max-width: 1023px) {
  .aof_p6 thead tr td {
    padding: 10px;
  }
}

.aof_p6 thead tr td button span {
  font-size: 12px;
  font-weight: normal;
}

.aof_p6 tr {
  background-color: #fff;
  border-color: #edf2f5;
  border-radius: 5px;
  border-style: solid;
  height: 60px;
  margin: 10px 0 20px;
  margin: 10px 0;
}

.aof_p6 tr td {
  font-size: 14px;
  width: calc(100% / 6);
}

@media screen and (max-width: 1023px) {
  .aof_p6 tr td {
    font-size: 12px;
  }
}

.aof_p6.aof_ao1 tr {
  background-color: transparent;
  border-radius: 5px;
  box-shadow: none;
  height: 60px;
  margin: 10px 0 20px;
}

.aof_p6.aof_ao1 tr td {
  box-shadow: 3px 4px 5px -1px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1023px) {
  .aof_p6.aof_ao1 tr td {
    font-size: 12px;
  }
}

.aof_p6.aof_ao1 tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.aof_p6.aof_ao1 tr td:nth-last-child(2) {
  border-radius: 0 5px 5px 0;
}

.aof_p6.aof_ao1 tr td:last-child {
  box-shadow: none;
  background-color: transparent;
}

.aof_ao3 {
  background-color: transparent;
  border-collapse: collapse;
  table-layout: fixed;
  width: calc(100% - 40px);
}

.aof_ao3 thead {
  border-bottom: 0;
  height: 0;
  height: auto;
  margin-bottom: 10px;
}

.aof_ao3 thead tr {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
  height: 0;
}

.aof_ao3 thead tr td {
  box-shadow: none !important;
}

@media screen and (max-width: 1023px) {
  .aof_ao3 thead tr td {
    padding: 10px;
  }
}

.aof_ao3 tr {
  font-size: 12px;
  height: 60px;
}

@media screen and (max-width: 1023px) {
  .aof_ao3 tr td {
    font-size: 12px;
  }
}

.aof_ao3 tr td:last-child {
  text-align: right;
  width: 99%;
}

.aof_ao3.aof_ao1 tr {
  border-radius: 5px;
  box-shadow: none;
  height: 60px;
  margin: 10px 0 20px;
}

.aof_ao3.aof_ao1 tr td {
  box-shadow: 3px 4px 5px -1px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1023px) {
  .aof_ao3.aof_ao1 tr td {
    font-size: 12px;
  }
}

.aof_ao3.aof_ao1 tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.aof_ao3.aof_ao1 tr td:nth-last-child(2) {
  border-radius: 0 5px 5px 0;
}

.aof_ao3.aof_ao1 tr td:last-child {
  background-color: transparent;
  box-shadow: none;
}

.aof_ao5 {
  background-color: transparent;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.aof_ao5 tbody {
  height: 216px;
  overflow-y: scroll;
  padding: 0 20px 0 14px;
}

.aof_ao5 tbody tr {
  margin-bottom: 13px;
  margin-top: 0;
}

.aof_ao5 tbody tr td:nth-child(2) {
  padding-left: 17px;
}

.aof_ao5 tbody tr td:nth-child(3) {
  padding-left: 24px;
}

.aof_ao5 tbody tr td:nth-child(4) {
  padding-left: 31px;
}

.aof_ao5 tbody tr td:nth-child(5) {
  padding-left: 40px;
}

.aof_ao5 tbody td div {
  font-size: 12px;
}

.aof_ao5 thead {
  border-bottom: 0;
  margin-bottom: 10px;
  margin-left: 15px;
}

.aof_ao5 thead button span {
  font-size: 12px;
  font-weight: normal;
}

.aof_ao5 thead tr {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
  margin-top: 13px;
}

.aof_ao5 thead tr td {
  box-shadow: none !important;
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .aof_ao5 thead tr td {
    padding: 10px;
  }
}

.aof_ao5 tr {
  background-color: #fff;
  border-color: #edf2f5;
  border-radius: 5px;
  border-style: solid;
  height: 60px;
}

.aof_ao5 tr td {
  font-size: 14px;
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .aof_ao5 tr td {
    font-size: 12px;
  }
}

.aof_ao5.aof_ao1 tr {
  background-color: transparent;
  border-radius: 5px;
  box-shadow: none;
  height: 60px;
  margin: 10px 0 20px;
}

.aof_ao5.aof_ao1 tr td {
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .aof_ao5.aof_ao1 tr td {
    font-size: 12px;
  }
}

.aof_ao5.aof_ao1 tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.aof_ao5.aof_ao1 tr td:nth-last-child(2) {
  border-radius: 0 5px 5px 0;
}

.aof_ao5.aof_ao1 tr td:last-child {
  background-color: transparent;
  box-shadow: none;
}

.aof_ao7 {
  border-collapse: collapse;
  margin: 0;
  min-height: 400px;
  table-layout: fixed;
  width: 100%;
}

.aof_ao7 tbody {
  height: 216px;
  overflow-y: scroll;
}

.aof_ao7 tbody tr {
  margin-bottom: 13px;
  margin-top: 0;
}

.aof_ao7 tbody td div {
  font-size: 12px;
}

.aof_ao7 thead {
  height: 60px;
  margin-bottom: 10px;
}

.aof_ao7 thead tr {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
}

.aof_ao7 thead tr td {
  box-shadow: none !important;
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .aof_ao7 thead tr td {
    padding: 10px;
  }
}

.aof_ao7 thead tr td span {
  font-size: 12px;
}

.aof_ao7 button span {
  font-size: 12px;
  font-weight: normal;
}

.aof_ao7 tr {
  background-color: #fff;
  border-color: #edf2f5;
  border-radius: 5px;
  border-style: solid;
  margin: 10px 0;
}

.aof_ao7 tr td {
  font-size: 14px;
  width: 20%;
}

@media screen and (max-width: 1023px) {
  .aof_ao7 tr td {
    font-size: 12px;
  }
}

.aof_ao7.aof_ao1 tr {
  background-color: transparent;
  border-radius: 5px;
  box-shadow: none;
  height: 60px;
  margin: 10px 0 20px;
}

.aof_ao7.aof_ao1 tr td {
  box-shadow: 3px 4px 5px -1px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1023px) {
  .aof_ao7.aof_ao1 tr td {
    font-size: 12px;
  }
}

.aof_ao7.aof_ao1 tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.aof_ao7.aof_ao1 tr td:nth-last-child(2) {
  border-radius: 0 5px 5px 0;
}

.aof_ao7.aof_ao1 tr td:last-child {
  background-color: transparent;
  box-shadow: none;
}

.aof_ao7.aof_ao9 tr td {
  width: 16%;
}

.aof_ao7.aof_ao9 tr td:last-child {
  width: 20%;
}

.aof_apb {
  display: -ms-flexbox;
  display: flex;
}

.aof_ape {
  background-color: #fff;
  border-radius: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100% - 35px);
  margin-top: 5px;
  padding: 15px;
}

.aof_apg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0;
}

.aof_apg p {
  color: #282828;
  font-family: Nunito;
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.2;
  padding: 5% 5% 0 0;
  text-align: right;
}

.aof_api {
  color: #0c3970;
  font-family: Nunito;
  font-size: 22px;
  font-stretch: normal;
  font-style: normal;
  font-weight: bold;
  height: 41px;
  letter-spacing: normal;
  line-height: 1;
  padding-top: 10px;
  width: 290px;
}

.aof_m {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 100%;
}

.aof_m.aof_apk {
  -ms-flex-pack: unset;
  justify-content: unset;
}

.aof_m .aof_apm {
  width: 48%;
}

.aof_m .aof_apm.aof_apo {
  margin: 5px;
}

@media screen and (max-width: 767px) {
  .aof_m .aof_apm.aof_apo {
    width: 100%;
  }
}

.apq_aps .id,
.apq_aps .type {
  width: 8%;
}

.apq_aps .title {
  width: 20%;
}

.apq_aps .status,
.apq_aps .source,
.apq_aps .generatedByAdmin,
.apq_aps .updatedAt {
  width: 12%;
}

.apq_aps .actions {
  width: 15%;
}

.apq_aps .actions div {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
}

.apq_aps .apq_ali {
  display: inline-block;
  min-width: 140px;
  text-align: center;
}

.apq_aps .apq_ali span {
  animation: apq_agf 2s linear infinite;
  border-bottom: 4px solid #0ac8b4;
  border-left: 4px solid #0ac8b4;
  border-radius: 50%;
  border-top: 4px solid #0ac8b4;
  border: 4px solid #edf7f8;
  display: inline-block;
  height: 22px;
  margin: 45px;
  width: 22px;
}

.apq_aps .apq_ali i {
  color: #0ac8b4;
  font-size: 20px;
  margin: 45px;
}

.apq_aps .apq_aol {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 20px;
  min-height: 70vh;
  padding: 20px;
}

.apq_aps .apq_agh {
  background-color: #f5f6fa;
  min-height: calc(87vh);
}

.apq_aps .apq_agh.apq_apy .municipality,
.apq_aps .apq_agh.apq_apy .is_rfc_enabled,
.apq_aps .apq_agh.apq_apy .is_full_online_enabled,
.apq_aps .apq_agh.apq_apy .notaries {
  -ms-flex-align: center;
  align-items: center;
  width: 18%;
}

.apq_aps .apq_agh.apq_apy .state,
.apq_aps .apq_agh.apq_apy .actions {
  -ms-flex-align: center;
  align-items: center;
  width: 14%;
}

.apq_aps .apq_agh.apq_apy .actions {
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 10px;
}

.apq_aps .apq_agh.apq_apy .actions div {
  background-color: #0ac8b4;
  border-radius: 15px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 80px;
  overflow: unset;
  padding: 4px;
}

.apq_aps .apq_agh.apq_apy thead tr {
  margin-bottom: 10px;
}

.apq_aps .apq_ap8 {
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .apq_aps .apq_ap8 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.apq_aps .apq_ap8 .apq_alb {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .apq_aps .apq_ap8 .apq_alb {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

.apq_aps .apq_ap8 .apq_alb span {
  background-color: transparent;
}

.apq_aps .apq_ap8 .apq_alb span i {
  color: #282828;
}

.apq_aps .apq_ap8 .apq_alb p {
  font-size: 12px;
  font-weight: 700;
}

.apq_aps .apq_ap8 .apq_alb input {
  background: #f5f6fa;
  border: none;
  border-radius: 50px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 32px;
  width: 400px;
}

@media screen and (max-width: 767px) {
  .apq_aps .apq_ap8 .apq_alb input {
    width: 300px;
  }
}

.apq_aps .apq_ap8 .apq_alb input:-ms-input-placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.apq_aps .apq_ap8 .apq_alb input::placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.apq_aps .apq_ap8 .apq_aoz {
  border-radius: 20px;
  height: 33px;
  letter-spacing: 1px;
  line-height: 30px;
  margin-left: 10px;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .apq_aps .apq_ap8 .apq_aoz {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.apq_aps .apq_ap8 .apq_aoz i {
  margin-right: 5px;
  top: 2px;
}

.apq_aps .apq_br {
  border-radius: 20px;
  box-shadow: none;
  padding: 0 10px;
}

.apq_aps .apq_nq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.apq_aps .apq_p6 {
  background-color: transparent;
  border-collapse: collapse;
  margin: 20px;
  table-layout: fixed;
  width: calc(100% - 40px);
}

.apq_aps .apq_p6 thead {
  margin-bottom: 10px;
}

.apq_aps .apq_p6 thead tr {
  border-radius: 10px;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
}

.apq_aps .apq_p6 thead tr td {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
}

.apq_aps .apq_p6 thead tr td button span {
  color: #282828;
  font-size: 12px;
}

@media screen and (max-width: 1023px) {
  .apq_aps .apq_p6 thead tr td {
    padding: 10px;
  }
}

.apq_aps .apq_p6 tbody {
  height: 100%;
}

.apq_aps .apq_p6 tbody tr {
  margin-bottom: 13px;
  margin-top: 0;
}

.apq_aps .apq_p6 tbody tr td {
  border-color: #edf2f5;
  border-style: solid hidden;
}

.apq_aps .apq_p6 tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
  border-style: solid hidden solid solid;
}

.apq_aps .apq_p6 tbody tr td:last-child {
  border-radius: 0 5px 5px 0;
  border-style: solid solid solid hidden;
}

.apq_aps .apq_p6.apq_qc tbody tr {
  padding: 0;
}

.apq_aps .apq_p6.apq_qc tbody tr td:last-child {
  border-radius: 5px;
  border-style: solid solid solid solid;
  width: 100%;
}

.apq_aps .apq_ale {
  border-bottom: 2px solid #d9f6f9;
  padding-bottom: 10px;
  position: relative;
}

.apq_aps .apq_ale a {
  color: #3b3f3b;
  font-size: 18px;
}

.apq_aps .apq_ale a:first-child {
  margin-right: 40px;
}

.apq_aps .apq_ale a.active {
  color: #282828;
}

.apq_aps .apq_ale a.active::after {
  background-color: #0ac8b4;
  bottom: calc(-100% + 4px);
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
}

.apq_aps .apq_alg {
  text-align: center;
}

@keyframes apq_agf {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ba9_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.ba9_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.ba9_xi .ba9_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.ba9_xi .ba9_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.ba9_xi .ba9_ga span,
.ba9_xi .ba9_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.ba9_xi .ba9_ga span:first-child,
.ba9_xi .ba9_ga time:first-child {
  width: 30%;
}

.ba9_xi .ba9_ga span:last-child,
.ba9_xi .ba9_ga time:last-child {
  width: 67%;
  text-align: left;
}

.ba9_xi .ba9_ga i {
  margin-left: 5px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .ba9_xi .ba9_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.ba9_xi .ba9_ga:not(:last-child) {
  margin-bottom: 3px;
}

.ba9_xi .ba9_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.ba9_xi .ba9_ga:last-child span {
  margin-right: 6%;
}

.ba9_xi .ba9_ajg div {
  background-color: #0c3970;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.bbb_bbe [role='contentinfo'] {
  max-width: 500px;
}

.bbb_bbe [role='contentinfo'] header,
.bbb_bbe [role='contentinfo'] .bbb_mx {
  text-align: left;
}

.bbb_bbe footer {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 25px;
}

.bbb_bbe footer button {
  width: 150px;
}

.bbb_bbe .bbb_bbg .bbb_bbi {
  color: #434843;
  font-family: "Agency", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 10px 0 15px;
  text-transform: uppercase;
}

.bbb_bbe .bbb_bbg .bbb_bbk {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0 30px;
  font-weight: 600;
}

.bbb_bbe .bbb_bbg .bbb_bbk > div {
  margin: 0;
  margin-right: 25px;
}

.bbb_bbe .bbb_bbg .bbb_bbm {
  width: 91%;
}

.bbb_bbe .bbb_bbg .bbb_bbm div {
  margin-bottom: 7px !important;
}

@media screen and (max-width: 767px) {
  .bbb_bbe .bbb_bbg .bbb_bbm {
    width: 100%;
  }
}

.bbb_bbe .bbb_bbg .bbb_bbo {
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
}

.bbb_bbe .bbb_bbg .bbb_bbo .bbb_a69 {
  background: transparent;
  border: 0;
  color: #0ac8b4;
  position: absolute;
  right: 5%;
  top: 0;
}

.bbb_bbe .bbb_bbg .bbb_bbo > div {
  margin: 0;
}

.bbb_bbe .bbb_bbg .bbb_bbo > div:nth-child(1), .bbb_bbe .bbb_bbg .bbb_bbo > div:nth-child(2) {
  margin-right: 3%;
  width: 30%;
}

.bbb_bbe .bbb_bbg .bbb_bbo > div:nth-child(3) {
  width: 25%;
}

.bbb_bbe .bbb_au3 {
  color: #0ac8b4;
}

.bbb_bbe.bbb_hy [role='contentinfo'] {
  max-width: 800px;
}

.bbb_bbe.bbb_awp [role='contentinfo'] {
  max-width: 600px;
}

.bbb_bbe.bbb_rs [role='contentinfo'] {
  max-width: 300px;
}

.bbb_aw {
  text-align: center;
}

.bbb_bv {
  color: #fe6c5a;
  font-size: 14px;
  margin: 15px 0;
}

.bbb_bbq > p {
  font-family: "Agency", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.bbb_ga {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .bbb_ga {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}

.bbb_ga .bbb_apm {
  width: 270px;
}

.bbb_ab7 {
  margin-bottom: 30px;
}

.bbb_ab7 button {
  border: 0 !important;
  box-shadow: none;
  color: #0c3970;
  display: block;
  font-size: 14px;
  height: auto;
  padding: 0;
  text-align: left;
}

.bbb_ab7 button:hover {
  background-color: transparent;
}

.bbb_ab7 .bbb_abp {
  width: 270px;
}

.bbb_ab7 .bbb_abp .bbb_abr {
  -ms-flex-align: center;
  align-items: center;
  border: 2px dashed #0c3970;
  border-radius: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  letter-spacing: 1px;
  min-height: 150px;
  padding: 40px 15px;
  text-align: center;
}

.bbb_ab7 .bbb_abp .bbb_abr .bbb_abt {
  color: #0c3970;
  font-size: 14px;
  font-weight: 600;
}

.bbb_ab7 .bbb_abp .bbb_abr .bbb_abv {
  color: #AFB2AF;
  font-size: 14px;
  white-space: normal;
}

.bbb_ab7 .bbb_abp .bbb_abr .bbb_abx {
  background-color: #ECECEC;
  border: none;
  color: #bfbfbf;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 7px;
  width: 95px;
}

.bbb_ab7.bbb_vm .bbb_abp .bbb_abr {
  border: 4px dashed #0c3970;
}

.bbb_ab7.bbb_vm .bbb_abp .bbb_abr .bbb_abt {
  font-weight: 700;
}

.bbb_ab7.bbb_vm .bbb_abp .bbb_abr .bbb_abv {
  color: #0c3970;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.bbb_ab7.bbb_ab9 .bbb_abp .bbb_abr {
  border: 2px dashed #AFB2AF;
  pointer-events: none;
}

.bbb_ab7.bbb_ab9 .bbb_abp .bbb_abr .bbb_abt {
  color: #AFB2AF;
}

.bbb_ab7 .bbb_bbs {
  width: 100%;
}

.bbb_ab5 {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  height: 25px;
  min-width: unset;
  padding: 0;
  position: absolute;
  right: -12px;
  top: -12px;
  width: 25px;
  z-index: 10;
}

.bbb_ab5 i {
  color: #0c3970;
  font-size: 25px;
}

.bbb_a9g {
  margin: 25px 0;
}

.bbb_a9g .bbb_ka {
  margin-bottom: 10px;
}

.bbu_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.bbu_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.bbu_xi .bbu_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

.bbu_xi .bbu_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.bbu_xi .bbu_ga span,
.bbu_xi .bbu_ga time {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  color: #282828;
  line-height: 1.7;
}

.bbu_xi .bbu_ga span:first-child,
.bbu_xi .bbu_ga time:first-child {
  margin-right: 10%;
}

.bbu_xi .bbu_ga span:last-child,
.bbu_xi .bbu_ga time:last-child {
  width: 67%;
  text-align: left;
}

.bbu_xi .bbu_ga i {
  margin-left: 5px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .bbu_xi .bbu_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.bbu_xi .bbu_ga:not(:last-child) {
  margin-bottom: 3px;
}

.bbu_xi .bbu_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.bbu_xi .bbu_ga:last-child span {
  margin-right: 6%;
}

.bbu_xi .bbu_at2 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.bbu_xi .bbu_at2 .bbu_fk,
.bbu_xi .bbu_at2 .bbu_al0 {
  border-radius: 7px;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 3px 4px;
  text-align: center;
}

.bbu_xi .bbu_at2 .bbu_fk {
  background-color: #0ac8b4;
}

.bbu_xi .bbu_at2 .bbu_al0 {
  background-color: #fa6c5a;
}

.bbu_xi .bbu_at2 span,
.bbu_xi .bbu_at2 time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  margin-right: 11%;
}

.bbu_xi .bbu_at2 span:last-child,
.bbu_xi .bbu_at2 time:last-child {
  width: 67%;
}

.bbu_xi .bbu_at2:not(:last-child) {
  margin-bottom: 3px;
}

.bbu_xi .bbu_alq {
  background: none;
  border: 0;
  color: #0ac8b4;
  display: inherit;
  font-family: "Agency", sans-serif;
  margin-bottom: 0;
}

.bbu_xi .bbu_alq i {
  margin-right: 5px;
}

.bbu_a9u {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  border: none;
  border-radius: 50px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 18px;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0;
  min-width: 50px;
}

.bbu_avo {
  color: #0c3970;
  cursor: pointer;
  font-size: 21px;
}

.bbu_kn {
  cursor: not-allowed;
  opacity: .6;
}

.bbu_a9w {
  display: -ms-flexbox;
  display: flex;
}

.aqa_aqc .name,
.aqa_aqc .email,
.aqa_aqc .phone,
.aqa_aqc .company_name,
.aqa_aqc .bussiness_activity {
  width: 16.6%;
}

.aqa_aqc .actions {
  width: 16.6%;
}

.aqa_aqc .actions div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  overflow: visible;
}

.aqa_aqc .aqa_ali {
  display: inline-block;
  min-width: 140px;
  text-align: center;
}

.aqa_aqc .aqa_ali span {
  animation: aqa_agf 2s linear infinite;
  border-bottom: 4px solid #0ac8b4;
  border-left: 4px solid #0ac8b4;
  border-radius: 50%;
  border-top: 4px solid #0ac8b4;
  border: 4px solid #edf7f8;
  display: inline-block;
  height: 22px;
  margin: 45px;
  width: 22px;
}

.aqa_aqc .aqa_ali i {
  color: #0ac8b4;
  font-size: 20px;
  margin: 45px;
}

.aqa_aqc .aqa_akt {
  color: #0c3970;
  font-family: "Inter Light", sans-serif;
  font-size: 30px;
  font-weight: 700;
  padding: 0 20px;
}

.aqa_aqc .aqa_agh {
  background-color: #fff;
  min-height: calc(87vh);
  padding: 10px 20px;
}

.aqa_aqc .aqa_agh .aqa_agl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .aqa_aqc .aqa_agh .aqa_agl {
    display: -ms-grid;
    display: grid;
  }
}

.aqa_aqc .aqa_agh .aqa_agl .aqa_agn {
  width: 100%;
}

@media (max-device-width: 812px) {
  .aqa_aqc .aqa_agh .aqa_agl .aqa_agn {
    width: auto;
  }
}

.aqa_aqc .aqa_agh .aqa_agl .aqa_agp {
  display: -ms-flexbox;
  display: flex;
  width: 26%;
}

@media screen and (max-width: 767px) {
  .aqa_aqc .aqa_agh .aqa_agl .aqa_agp {
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}

.aqa_aqc .aqa_agh .aqa_agl .aqa_agp .aqa_agr {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .aqa_aqc .aqa_agh .aqa_agl .aqa_agp .aqa_agr {
    margin-right: 10px;
    margin-top: 0;
  }
}

.aqa_aqc .aqa_agh .aqa_agl .aqa_agp .aqa_agr label {
  color: #78797a;
  font-size: 14px;
}

.aqa_aqc .aqa_agh.aqa_aqc .municipality,
.aqa_aqc .aqa_agh.aqa_aqc .is_rfc_enabled,
.aqa_aqc .aqa_agh.aqa_aqc .is_full_online_enabled,
.aqa_aqc .aqa_agh.aqa_aqc .notaries {
  -ms-flex-align: center;
  align-items: center;
  width: 18%;
}

.aqa_aqc .aqa_agh.aqa_aqc .state,
.aqa_aqc .aqa_agh.aqa_aqc .actions {
  -ms-flex-align: center;
  align-items: center;
  width: 14%;
}

.aqa_aqc .aqa_agh.aqa_aqc .actions {
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 10px;
}

.aqa_aqc .aqa_agh.aqa_aqc .actions div {
  background-color: #0ac8b4;
  border-radius: 15px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 80px;
  overflow: unset;
  padding: 4px;
}

.aqa_aqc .aqa_akz {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 40px 20px;
}

@media screen and (max-width: 767px) {
  .aqa_aqc .aqa_akz {
    display: unset;
    margin: 0;
    width: 100%;
  }
}

.aqa_aqc .aqa_akz .aqa_alb > div {
  margin: 0;
}

.aqa_aqc .aqa_akz .aqa_alb span {
  background-color: transparent;
}

.aqa_aqc .aqa_akz .aqa_alb span i {
  color: #282828;
}

.aqa_aqc .aqa_akz .aqa_alb input {
  background: #f5f6fa;
  border: none;
  border-radius: 50px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 32px;
}

.aqa_aqc .aqa_akz .aqa_alb input:-ms-input-placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.aqa_aqc .aqa_akz .aqa_alb input::placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.aqa_aqc .aqa_aoz {
  font-size: 14px;
  height: 33px;
  letter-spacing: 1px;
  line-height: 30px;
  margin-left: 10px;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .aqa_aqc .aqa_aoz {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.aqa_aqc .aqa_aoz i {
  margin-right: 5px;
  top: 2px;
}

.aqa_aqc .aqa_ap8 {
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .aqa_aqc .aqa_ap8 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aqa_aqc .aqa_br {
  box-shadow: 0 1px 6px -2px #979797;
  font-size: 12px;
  height: 25px;
  padding-left: 10px;
  padding-right: 10px;
}

.aqa_aqc .aqa_nq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.aqa_aqc .aqa_p6 {
  background-color: transparent;
  border-collapse: collapse;
  margin: 20px;
  table-layout: fixed;
  width: calc(100% - 40px);
}

.aqa_aqc .aqa_p6 thead {
  margin-bottom: 0;
  border-bottom: none;
}

.aqa_aqc .aqa_p6 thead tr {
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
}

.aqa_aqc .aqa_p6 thead tr td {
  box-shadow: none !important;
  padding-bottom: 0;
}

.aqa_aqc .aqa_p6 thead tr td button span {
  color: #282828;
  font-size: 12px;
  font-weight: 400;
}

@media screen and (max-width: 1023px) {
  .aqa_aqc .aqa_p6 thead tr td {
    padding: 10px;
  }
}

.aqa_aqc .aqa_p6 tbody {
  height: 100%;
}

.aqa_aqc .aqa_p6 tbody tr {
  margin-bottom: 13px;
  margin-top: 0;
}

.aqa_aqc .aqa_p6 tbody tr td {
  border-color: #edf2f5;
  border-style: solid hidden;
}

.aqa_aqc .aqa_p6 tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
  border-style: solid hidden solid solid;
}

.aqa_aqc .aqa_p6 tbody tr td:nth-last-child(2) {
  border-radius: 0 5px 5px 0;
  border-style: solid solid solid hidden;
}

.aqa_aqc .aqa_p6 tbody tr td:last-child {
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.aqa_aqc .aqa_ale {
  border-bottom: 2px solid #d9f6f9;
  padding-bottom: 10px;
  position: relative;
}

.aqa_aqc .aqa_ale a {
  color: #3b3f3b;
  font-size: 18px;
}

.aqa_aqc .aqa_ale a:first-child {
  margin-right: 40px;
}

.aqa_aqc .aqa_ale a.active {
  color: #282828;
}

.aqa_aqc .aqa_ale a.active::after {
  background-color: #0ac8b4;
  bottom: calc(-100% + 4px);
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
}

.aqa_aqc .aqa_alg {
  text-align: center;
}

@keyframes aqa_agf {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.aqf_aqh .aqf_afq {
  background-color: #0068aa;
  height: 1px;
  margin: 20px 0;
  opacity: .4;
}

.aqf_aqh .title {
  max-width: 364px;
  width: 40%;
}

.aqf_aqh .category,
.aqf_aqh .price,
.aqf_aqh .status {
  width: calc(60% / 3);
}

.aqf_aqh .aqf_aox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.aqf_aqh .aqf_nq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.aqf_aqh .aqf_aql {
  color: #0ac8b4;
  display: inline-block;
  margin-top: 2px;
}

.aqf_aqh .aqf_aqn {
  color: #fe6c5a;
}

.bbw_xi {
  background-color: #fff;
  border: solid 2px #edf7f8;
  padding: 15px 5px;
}

.bbw_xi > button {
  background-color: transparent;
  border: 0;
  width: 100%;
}

.bbw_xi .bbw_a0 {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.bbw_xi .bbw_ga {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.bbw_xi .bbw_ga .bbw_ax0 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.bbw_xi .bbw_ga .bbw_ax0 .bbw_br {
  -ms-flex-align: center;
  align-items: center;
  border: none;
  border-radius: 22px;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 3px;
  max-width: 32px;
  min-width: 32px;
}

.bbw_xi .bbw_ga .bbw_ax0 .bbw_br i {
  color: #fff;
}

.bbw_xi .bbw_ga .bbw_ax0 .bbw_br[disabled] {
  cursor: not-allowed;
  opacity: .6;
}

.bbw_xi .bbw_ga .bbw_ax0 .bbw_br.bbw_alq {
  background-color: #0c3970;
}

.bbw_xi .bbw_ga .bbw_ax0 .bbw_br.bbw_als {
  background-color: #0ac8b4;
}

.bbw_xi .bbw_ga .bbw_ax0 .bbw_br.bbw_alu i {
  width: 21px;
}

.bbw_xi .bbw_ga .bbw_ax0 .bbw_br.bbw_alw {
  color: #fff !important;
  font-size: 10px;
}

.bbw_xi .bbw_ga span,
.bbw_xi .bbw_ga time {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  line-height: 1.7;
}

.bbw_xi .bbw_ga span:first-child,
.bbw_xi .bbw_ga time:first-child {
  margin-right: 10%;
}

.bbw_xi .bbw_ga span:last-child,
.bbw_xi .bbw_ga time:last-child {
  text-align: left;
  width: 67%;
}

.bbw_xi .bbw_ga i {
  font-size: 20px;
  line-height: 0;
  margin-bottom: 0;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .bbw_xi .bbw_ga i {
    font-size: 12px;
    margin-right: 5px;
  }
}

.bbw_xi .bbw_ga:not(:last-child) {
  margin-bottom: 3px;
}

.bbw_xi .bbw_ga:last-child {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.bbw_xi .bbw_ga:last-child span {
  margin-right: 6%;
}

.aqp_aqr .aqp_ajg {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.aqp_aqr .aqp_ajg button {
  margin: 0;
}

.aqp_aqr .aqp_ajg button:first-child {
  color: #0ac8b4;
  margin-left: auto;
  margin-right: 26px;
}

.aqp_aqr .aqp_ajg button[type='submit'] {
  min-width: 200px;
}

.aqp_aqr .aqp_ae3,
.aqp_aqr .aqp_amn {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aqp_aqr .aqp_ae3 h4,
.aqp_aqr .aqp_amn h4 {
  display: inline-block;
}

.aqp_aqr .aqp_ae3 .aqp_ajg,
.aqp_aqr .aqp_amn .aqp_ajg {
  display: inline;
}

.aqp_aqr .aqp_amn {
  margin-top: 30px;
}

.aqp_aqr textarea {
  min-height: 146px;
}

.aqp_aqr .aqp_amr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 24px;
}

.aqp_aqr .aqp_amr > div {
  margin: 0;
}

.aqp_aqr .aqp_amr > div:first-child {
  margin-right: 3%;
  width: 64%;
}

.aqp_aqr .aqp_amr > div:nth-child(2) {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .aqp_aqr .aqp_ajg button[type='submit'] {
    min-width: auto;
  }
  .aqp_aqr .aqp_amr > div:first-child {
    width: 50%;
  }
  .aqp_aqr .aqp_amr > div:nth-child(2) {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .aqp_aqr .aqp_amr {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .aqp_aqr .aqp_amr > div:first-child, .aqp_aqr .aqp_amr > div:nth-child(2) {
    margin-top: 24px;
    width: 100%;
  }
}

.ba1_u {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.aqt_agh {
  background-color: transparent;
  border-radius: 8px;
  display: block;
  min-height: 80vh;
}

@media screen and (max-width: 767px) {
  .aqt_agh {
    padding: 0;
  }
}

.aqt_amf header button {
  height: 32px;
  width: 90px;
}

.aqt_amf .aqt_am1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 16px;
}

.aqt_akv {
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: #fff;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aqt_u {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  min-height: 120px;
  padding: 0 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .aqt_u {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.aqt_u .aqt_aqv {
  border: 0;
  border-radius: 22px;
  width: 110px;
}

@media screen and (max-width: 767px) {
  .aqt_u .aqt_aqv {
    margin: 20px 0;
    width: 100%;
  }
}

.aqt_u p {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .aqt_u p {
    margin-right: 0;
  }
}

.aqt_alb {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .aqt_alb {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .aqt_alb {
    width: 100%;
  }
}

.aqt_alb > div {
  margin: 0;
}

.aqt_alb span {
  background-color: transparent;
}

.aqt_alb span i {
  color: #282828;
}

.aqt_alb input {
  background: #f5f6fa;
  border: 0;
  border-radius: 50px;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  height: 32px;
}

.aqt_alb input:-ms-input-placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.aqt_alb input::placeholder {
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
}

.aqt_aqx {
  -ms-flex-align: center;
  align-items: center;
  color: #7a9ff8;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  gap: 5px;
  text-wrap: nowrap;
}

.aqt_aqx i {
  margin-top: 5px;
}

.aqt_afw {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .aqt_afw {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

.aqt_ae7 {
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  width: 49%;
}

@media screen and (max-width: 1023px) {
  .aqt_ae7 {
    width: 100%;
  }
}

.aqt_ev {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 12px;
  font-weight: 700;
  height: 25px;
}

.aqt_aqz {
  background: #f5f6fa;
  border-radius: 3px;
  color: #282828;
  padding: 4px 0;
  padding-left: 10px;
  width: 38%;
}

.aqt_aq1 {
  background: #f5f6fa;
  border-radius: 3px;
  color: #282828;
  padding: 4px 0;
  padding-left: 10px;
  width: 100%;
}

.aqt_amj {
  background-color: #f5f6fa;
  border-radius: 5px;
  color: #282828;
  font-size: 12px;
  height: 130px;
  margin: 50px 0;
  padding: 30px 0;
  text-align: center;
  width: 100%;
}

.aqt_aq3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .aqt_aq5 {
    margin: 0;
    width: 100%;
  }
}

.aqt_aq7 {
  background-color: #0c3970;
  color: #fff;
  font-size: 12px;
  margin: 0 40%;
  padding: 6px 0;
  text-align: center;
  width: 20%;
}

.aqt_aq9 {
  background-color: #fff;
  border-radius: 10px;
  height: 65vh;
  margin-top: 20px;
  padding: 20px;
  width: 100%;
}

.arb_are {
  min-height: calc(100vh - 90px);
  padding: 10px;
}

.arb_are .arb_arg {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  margin-bottom: 50px;
}

.arb_are .arb_arg:focus {
  outline: none;
}

.arb_are .arb_ari {
  background-color: #edf2f5;
}

.arb_are .arb_ari .arb_ae5 {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 4px 1px 10px -5px rgba(0, 0, 0, 0.05);
  color: #fff;
  font-family: "Inter Light", sans-serif;
  margin-top: 15px;
  min-height: calc(79vh - 67px);
  padding: 20px 0 0 30px;
}

.arb_are .arb_ari .arb_ae5 > p {
  margin: 0;
}

.arb_are .arb_ark {
  border-bottom: 2px solid rgba(0, 104, 170, 0.14);
  margin-bottom: 28px;
  padding-right: 30px;
}

.arb_are .arb_ark:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.arb_are .arb_arm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: "Inter Light", sans-serif;
  padding: 15px 0 25px;
}

.arb_are .arb_arm label {
  font-weight: bold;
}

.arb_are .arb_arm > div {
  margin-top: 5px;
  width: 29%;
}

.arb_are .arb_arm > div:not(:nth-child(3n)) {
  margin-right: 4%;
}

.arb_are .arb_arm > div:nth-child(3n) {
  width: 33%;
}

.arb_are .arb_aro {
  border: 0;
  color: #0ac8b4;
  font-size: 20px;
  margin: 20px 0 0;
  min-width: 80px;
}

.arb_are .arb_j2 {
  -ms-flex-align: center;
  align-items: center;
  color: #0ac8b4;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .arb_are .arb_j2 {
    text-align: center;
    width: 100%;
  }
}

.arb_are .arb_j2 i {
  font-size: 16px;
  padding-top: 5px;
}

.arb_are footer {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .arb_are footer {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .arb_are .arb_aro {
    margin: 0;
    min-width: 30px;
    position: absolute;
    right: -60px;
    top: 25px;
  }
}

@media screen and (max-width: 985px) {
  .arb_are .arb_arm > div {
    margin-bottom: 20px;
    margin-right: 4%;
    width: 45%;
  }
  .arb_are .arb_arm .arb_arq {
    width: 100% !important;
  }
}

@media screen and (max-width: 810px) {
  .arb_are .arb_arm > div {
    margin-bottom: 20px;
    width: 100%;
  }
  .arb_are .arb_aro {
    right: 0;
    top: -45px;
  }
}

.ars_ng {
  height: 100vh;
  width: 100%;
}

.ars_ng iframe {
  height: 100%;
}

.bby_u {
  padding: 30px 0;
}

.bby_u .bby_as1 {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .bby_u .bby_as3 {
    height: 35px;
    width: 100%;
  }
}

.bby_u .bby_as3.bby_ab3 {
  width: 30%;
}

.bby_u .bby_as3 button {
  height: 30px;
}

.bby_u .bby_as3 button span {
  font-size: 14px;
}

.bby_u .bby_as3 button ~ div {
  font-size: 14px;
}

.bby_u .bby_aai {
  margin: 20px 0 -21px;
}

.bby_u .bby_aai input {
  height: 45px;
  width: 30%;
}

.bby_u .bby_bb0 {
  padding: 10px;
}

.bby_u .bby_bb0 .bby_bb2 {
  background-color: #0c3970;
  border-radius: 5px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  height: 30px;
  margin-right: 1%;
  padding: 7px;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .bby_u .bby_bb0 .bby_bb2 {
    margin-bottom: 19px !important;
    margin-right: 0;
    width: 100%;
  }
}

.bby_u .bby_bb0 .bby_bb4 {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bby_u .bby_bb0 .bby_bb4 {
    -ms-flex-direction: row;
    flex-direction: row;
    width: 74%;
  }
}

.bby_u .bby_bb0 .bby_bb4 > div {
  margin: 10px 0;
  width: 100%;
}

.bby_u .bby_bb0 .bby_bb4 > div span {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3 {
  width: 32%;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3.bby_ab3 {
  width: 50%;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3 input {
  font-size: 14px;
  padding: 3px 12px;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3 input:-ms-input-placeholder {
  font-size: 14px;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3 input::placeholder {
  font-size: 14px;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3 button {
  height: 30px;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3 button span {
  font-size: 14px;
}

.bby_u .bby_bb0 .bby_bb4 .bby_as3 button ~ div {
  font-size: 14px;
}

.bby_u .bby_as7 {
  color: #000;
  display: block;
  margin: 20px 0;
}

.bby_u .bby_as7 > span > span {
  margin-left: 5px;
  top: 2px;
}

.bby_u .bby_zq {
  display: block;
  margin: 10px auto 30px;
  width: 205px;
}

@media screen and (max-width: 767px) {
  .bby_u .bby_zq {
    margin: 0;
    max-width: unset;
    width: 100%;
  }
}

.bby_u .bby_zq.bby_bb6 {
  margin-top: 200px;
}

.bby_u .icon-id {
  display: inline-block;
  margin-right: 8px;
}

.bby_u .icon-check {
  color: #0c3970;
}

.bby_u .icon-close {
  top: 4px;
}

.bby_af8 {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .bby_af8 {
    font-size: 12px !important;
  }
}

.bby_bb8 {
  margin-bottom: 10px;
  margin-top: 50px;
}

.bby_ab1 {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .bby_ab1 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bby_ab1 > div {
  margin: 20px auto;
  width: 45%;
}

.bby_ab1 .bby_ab5 {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  height: 25px;
  min-width: unset;
  padding: 0;
  position: absolute;
  right: -12px;
  top: -12px;
  width: 25px;
  z-index: 10;
}

.bby_ab1 .bby_ab5 i {
  color: #0c3970;
  font-size: 25px;
}

.bby_ab1 .bby_ab7 {
  margin-bottom: 0;
}

.bby_ab1 .bby_ab7 button {
  border: 0;
  box-shadow: none;
  color: #0c3970;
  display: block;
  font-size: 14px;
  height: auto;
  padding: 0;
  text-align: left;
}

.bby_ab1 .bby_ab7 button:hover {
  background-color: transparent;
}

.bby_ab1 .bby_ab7.bby_vm .bby_abp .bby_abr {
  border: 4px dashed #0c3970;
}

.bby_ab1 .bby_ab7.bby_vm .bby_abp .bby_abr .bby_abt {
  font-weight: 700;
}

.bby_ab1 .bby_ab7.bby_vm .bby_abp .bby_abr .bby_abv {
  color: #0c3970;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.bby_ab1 .bby_ab7.bby_ab9 .bby_abp .bby_abr {
  border: 2px dashed #AFB2AF;
  pointer-events: none;
}

.bby_ab1 .bby_ab7.bby_ab9 .bby_abp .bby_abr .bby_abt {
  color: #AFB2AF;
}

.bby_bca {
  background-color: #edf7f8;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px auto;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .bby_bca {
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 12px;
    padding: 10px 5px;
  }
}

.bby_bca p {
  color: #282828;
  line-height: normal;
  margin-bottom: auto;
  margin-top: auto;
  text-align: justify;
}

.bby_bca p span {
  color: #0c3970;
  font-weight: 700;
}

.bby_bcc {
  margin: 0 auto;
  max-width: 250px;
  padding: 20px 0;
  width: 250px;
}

@media screen and (max-width: 767px) {
  .bby_bcc {
    margin: 0;
    max-width: unset;
    width: 100%;
  }
}

.bby_bcc.bby_bb6 {
  margin-top: 200px;
}

@media screen and (max-width: 767px) {
  .bby_bcc.bby_bb6 {
    margin-top: 40px;
  }
}

.bby_bcc .bby_zq {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .bby_bcc .bby_zq {
    height: 35px;
    width: 100%;
  }
}

.bcf_af8 {
  margin-bottom: 25px;
}

.bcf_u {
  background-color: #fff;
  padding: 10px;
  width: 100%;
}

.bcf_u .bcf_as1 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding: 0 !important;
}

.bcf_u .bcf_as1 .bcf_bb2 {
  background-color: #0c3970;
  border-radius: 5px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  height: 30px;
  margin-right: 1%;
  padding: 7px;
  width: 25%;
}

.bcf_u .bcf_as1 .bcf_bb4 {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 {
    height: 35px;
    width: 100%;
  }
}

.bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 input {
  font-size: 14px;
  padding: 3px 12px;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 input {
    font-size: 12px;
  }
}

.bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 input:-ms-input-placeholder {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 input:-ms-input-placeholder {
    font-size: 12px;
  }
}

.bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 input::placeholder {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_as1 .bcf_bb4 .bcf_as3 input::placeholder {
    font-size: 12px;
  }
}

.bcf_u .bcf_as1 .bcf_bb4 input {
  height: 30px !important;
}

.bcf_u .bcf_api {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0c3970;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  font-size: 20px;
  height: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.bcf_u .bcf_api p {
  margin: 0;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .bcf_u {
    padding: 0;
  }
}

.bcf_u .bcf_bch {
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .bcf_u .bcf_bch {
    padding: 10px 35px;
  }
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bch {
    padding: 5px;
  }
}

.bcf_u .bcf_bcj {
  margin: 30px 0;
}

.bcf_u .bcf_bcl {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bcl {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.bcf_u .bcf_bcl .bcf_bcn {
  margin: 10px 0;
}

.bcf_u .bcf_as1 {
  padding: 20px 50px;
}

.bcf_u .bcf_bcp {
  background-color: #0c3970;
  border-radius: 4px;
  color: #fff;
  margin-top: 30px;
  padding: 8px;
  text-align: center;
  width: 100%;
}

.bcf_u .bcf_as5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
}

.bcf_u .bcf_as5 > * {
  margin-bottom: 30px;
}

.bcf_u .bcf_as7 {
  display: block;
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_as7 {
    margin: 0;
  }
}

.bcf_u .bcf_as7.bcf_ml {
  text-align: center;
}

.bcf_u .bcf_as7 > span {
  font-family: "Agency", sans-serif;
}

.bcf_u .bcf_as7 > span > span {
  margin-left: 5px;
  top: 2px;
}

.bcf_u .bcf_au1,
.bcf_u .bcf_au3 {
  color: #00b29f;
}

.bcf_u .bcf_bcr {
  background-color: transparent;
  border: 0;
  font-size: 30px;
  top: 3px;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bcr {
    font-size: 20px;
  }
}

.bcf_u .bcf_bct {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bct {
    padding: 10px 10px 10px 27px;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .bcf_u .bcf_bct {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bcf_u .bcf_bct .bcf_bcv {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bct .bcf_bcv {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bcf_u .bcf_bct .bcf_bcv > button {
  height: 46px;
  top: 22px;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bct .bcf_bcv > button {
    top: 0;
  }
}

.bcf_u .bcf_bct .bcf_as3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 10px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bct .bcf_as3 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bcf_u .bcf_bct .bcf_as3 > div {
  margin: unset;
  width: 100%;
}

.bcf_u .bcf_bct .bcf_as3 > div:nth-child(even) {
  margin: 0 15px;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bct .bcf_as3 > div:nth-child(even) {
    margin: unset;
  }
}

.bcf_u .bcf_bct > button {
  background-color: transparent;
  border: 0;
  left: -25px;
  position: absolute;
  top: 20px;
}

@media screen and (max-width: 767px) {
  .bcf_u .bcf_bct > button {
    left: 2px;
    top: 13px;
  }
}

.bcf_u .bcf_bct > button:hover {
  color: #fe6c5a;
}

.bcf_u .bcf_zq {
  display: block;
  margin: 30px auto;
  width: 205px;
}

.bcf_bv {
  color: #fe6c5a;
  width: 100%;
}

.bcf_bcx {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.bcf_bcx button {
  width: 100%;
}

.bcz_af8 {
  margin-bottom: 25px;
}

.bcz_u {
  background-color: #fff;
  padding: 10px;
  width: 100%;
}

.bcz_u .bcz_as1 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding: 0 !important;
}

.bcz_u .bcz_as1 .bcz_bb2 {
  background-color: #0c3970;
  border-radius: 5px;
  color: #fff;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  height: 30px;
  margin-right: 1%;
  padding: 7px;
  width: 25%;
}

.bcz_u .bcz_as1 .bcz_bb4 {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 {
    width: 100%;
    height: 35px;
  }
}

.bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 input {
  font-size: 14px;
  padding: 3px 12px;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 input {
    font-size: 12px;
  }
}

.bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 input:-ms-input-placeholder {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 input:-ms-input-placeholder {
    font-size: 12px;
  }
}

.bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 input::placeholder {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_as1 .bcz_bb4 .bcz_as3 input::placeholder {
    font-size: 12px;
  }
}

.bcz_u .bcz_as1 .bcz_bb4 input {
  height: 30px !important;
}

@media screen and (max-width: 767px) {
  .bcz_u {
    padding: 0;
  }
}

.bcz_u .bcz_bch {
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .bcz_u .bcz_bch {
    padding: 10px 35px;
  }
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bch {
    padding: 5px;
  }
}

.bcz_u .bcz_bcj {
  margin: 30px 0;
}

.bcz_u .bcz_bcl {
  margin: 20px 0;
}

.bcz_u .bcz_bcl .bcz_bcn {
  margin: 10px 0;
}

.bcz_u .bcz_as1 {
  padding: 20px 50px;
}

.bcz_u .bcz_bcp {
  background-color: #0c3970;
  border-radius: 4px;
  color: #fff;
  margin-top: 30px;
  padding: 8px;
  text-align: center;
  width: 100%;
}

.bcz_u .bcz_as5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
}

.bcz_u .bcz_as5 > * {
  margin-bottom: 30px;
}

.bcz_u .bcz_as7 {
  display: block;
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_as7 {
    margin: 0;
  }
}

.bcz_u .bcz_as7.bcz_ml {
  text-align: center;
}

.bcz_u .bcz_as7 > span {
  font-family: "Agency", sans-serif;
}

.bcz_u .bcz_as7 > span > span {
  margin-left: 5px;
  top: 2px;
}

.bcz_u .bcz_au1,
.bcz_u .bcz_au3 {
  color: #00b29f;
}

.bcz_u .bcz_bcr {
  background-color: transparent;
  border: none;
  font-size: 30px;
  top: 3px;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bcr {
    font-size: 20px;
  }
}

.bcz_u .bcz_bct {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bct {
    padding: 10px 10px 10px 27px;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .bcz_u .bcz_bct {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bcz_u .bcz_bct .bcz_bcv {
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bct .bcz_bcv {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bcz_u .bcz_bct .bcz_bcv > button {
  height: 46px;
  top: 22px;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bct .bcz_bcv > button {
    top: 0;
  }
}

.bcz_u .bcz_bct .bcz_as3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 10px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bct .bcz_as3 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bcz_u .bcz_bct .bcz_as3 > div {
  margin: unset;
  width: 100%;
}

.bcz_u .bcz_bct .bcz_as3 > div:nth-child(even) {
  margin: 0 15px;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bct .bcz_as3 > div:nth-child(even) {
    margin: unset;
  }
}

.bcz_u .bcz_bct > button {
  background-color: transparent;
  border: 0;
  left: -25px;
  position: absolute;
  top: 20px;
}

@media screen and (max-width: 767px) {
  .bcz_u .bcz_bct > button {
    left: 2px;
    top: 13px;
  }
}

.bcz_u .bcz_bct > button:hover {
  color: #fe6c5a;
}

.bcz_u .bcz_zq {
  display: block;
  margin: 30px auto;
  width: 205px;
}

.bcz_bv {
  color: #fe6c5a;
  width: 100%;
}

.bcz_bcx {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.bcz_bcx button {
  width: 100%;
}

.aru_amc {
  background-color: #fff;
  border-radius: 8px;
  height: 87vh;
  padding: 0 40px 40px;
}

@media screen and (max-width: 767px) {
  .aru_amc {
    height: unset;
    padding: 0;
  }
}

.aru_amc table {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.aru_amc table tr {
  background-color: rgba(209, 244, 248, 0.65);
}

.aru_amc table tr:nth-child(even) {
  background-color: #fff;
}

.aru_amc .aru_amf header button {
  font-size: 14px;
  height: 30px;
  width: 90px;
}

.aru_amc .aru_ajg {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.aru_amc .aru_ae3 {
  margin-bottom: 36px;
}

.aru_amc .aru_ae3,
.aru_amc .aru_amn {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
}

.aru_amc .aru_ae3 time,
.aru_amc .aru_ae3 span,
.aru_amc .aru_amn time,
.aru_amc .aru_amn span {
  font-weight: 700;
}

.aru_amc .aru_ae3 .aru_ae5,
.aru_amc .aru_amn .aru_ae5 {
  -ms-flex: 1;
  flex: 1;
}

.aru_amc .aru_ae3 .aru_ajg,
.aru_amc .aru_amn .aru_ajg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.aru_amc .aru_ae3 .aru_ajg button,
.aru_amc .aru_amn .aru_ajg button {
  margin: 0 20px;
}

.aru_amc .aru_amn {
  margin-top: 30px;
}

.aru_amc .aru_amp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2em;
}

.aru_amc .aru_amp button:first-child {
  margin-right: 50px;
}

.aru_amc .aru_ni {
  font-size: 16px;
}

.aru_amc .aru_amr {
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.aru_amc .aru_amr > div {
  margin: 0;
}

.aru_amc .aru_amr > div:first-child {
  margin-right: 3%;
  width: 64%;
}

.aru_amc .aru_amr > div:nth-child(2) {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .aru_amc .aru_ajg button {
    width: 100%;
  }
  .aru_amc .aru_ajg button:not(:last-child) {
    margin-bottom: 24px;
  }
  .aru_amc .aru_amr > div:first-child {
    width: 50%;
  }
  .aru_amc .aru_amr > div:nth-child(2) {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .aru_amc .aru_amr {
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .aru_amc .aru_amr > div:first-child, .aru_amc .aru_amr > div:nth-child(2) {
    margin-top: 24px;
    width: 100%;
  }
}

.asx_asz {
  margin: 50 auto;
  padding: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .asx_asz {
    padding: 20px;
  }
}

.asx_asz .asx_arg {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  margin: 40px 0;
}

.asx_asz .asx_arg .asx_on {
  -ms-flex-align: center;
  align-items: center;
  background-color: #edf7f8;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
  width: 25px;
}

.asx_asz .asx_arg .asx_on img {
  transform: rotate(180deg);
}

.asx_asz .asx_arg:focus {
  outline: none;
}

.asx_asz .asx_u {
  padding: 0 20px;
}

@media screen and (max-width: 1023px) {
  .asx_asz .asx_u {
    padding: 0;
  }
}

.asx_asz .asx_u .asx_as1 {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.asx_asz .asx_u .asx_as1 .asx_as3 {
  height: 35px;
  width: 300px;
}

.asx_asz .asx_u .asx_as1 .asx_as3.asx_hy {
  width: 580px;
}

.asx_asz .asx_u .asx_as1 .asx_k9 {
  height: 35px;
  margin-bottom: 0;
  width: 300px;
  z-index: 11;
}

@media screen and (max-width: 767px) {
  .asx_asz .asx_u .asx_as1 .asx_k9 {
    z-index: 8;
  }
}

.asx_asz .asx_u .asx_as5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
}

.asx_asz .asx_u .asx_as5 > * {
  margin-bottom: 30px;
}

.asx_asz .asx_u .asx_as7 {
  display: block;
  margin: 20px 0;
}

.asx_asz .asx_u .asx_as7 > span > span {
  margin-left: 5px;
  top: 2px;
}

.asx_asz .asx_u .asx_zq {
  display: block;
  margin: 30px auto;
  max-width: 250px;
  width: 250px;
}

.asx_asz .asx_u .icon-id {
  display: inline-block;
  margin-right: 8px;
}

.asx_asz .asx_u .icon-check {
  color: #0c3970;
}

.asx_asz .asx_u .icon-close {
  top: 4px;
}

.asx_asz .asx_af8 {
  margin-bottom: 25px;
}

.atg_asz {
  margin: 0 auto;
  padding: 20px;
}

.atg_asz .atg_af8 {
  margin-bottom: 25px;
}

.atg_asz .atg_arg {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  margin: 40px 0;
}

.atg_asz .atg_arg .atg_on {
  -ms-flex-align: center;
  align-items: center;
  background-color: #edf7f8;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
  width: 25px;
}

.atg_asz .atg_arg .atg_on img {
  transform: rotate(180deg);
}

.atg_asz .atg_arg:focus {
  outline: none;
}

.atg_asz .atg_ae7 {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.atg_asz .atg_ati {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 20px;
}

.atg_asz .atg_ati .atg_ae9 {
  font-size: 12px;
}

.atg_asz .atg_ati .atg_afb {
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f6fa;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  margin: 0;
  min-height: 40px;
  overflow: hidden;
  padding: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 300px;
}

.atg_asz .atg_ati .atg_afb.atg_hy {
  width: 580px;
}

.atg_asz .atg_af8 {
  margin-bottom: 25px;
}

.atg_as5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.atg_as5 h4 span {
  font-family: "Agency", sans-serif;
  font-size: 18px;
}

.atg_as5 > * {
  margin-bottom: 30px;
}

.bc5_aak {
  width: 100%;
}

.bc5_aak .bc5_bc7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bc5_aak .bc5_bc7 > div {
  margin-top: 0;
  width: 32%;
}

.bc5_aak .bc5_bc7 > div:nth-child(2), .bc5_aak .bc5_bc7 > div:nth-child(3) {
  width: 15%;
}

@media screen and (max-width: 767px) {
  .bc5_aak .bc5_bc7 > div:nth-child(2), .bc5_aak .bc5_bc7 > div:nth-child(3) {
    width: 100%;
  }
}

.bc5_aak .bc5_bc9 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.bc5_aak .bc5_bc9 > div {
  margin-top: 0;
  width: 32%;
}

.bc5_aak .bc5_bc9 > div.bc5_bbm {
  width: 66%;
}

@media screen and (max-width: 767px) {
  .bc5_aak .bc5_bc9 > div.bc5_bbm {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .bc5_aak .bc5_bc7,
  .bc5_aak .bc5_bc9 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .bc5_aak .bc5_bc7 > div,
  .bc5_aak .bc5_bc9 > div {
    margin-bottom: 10px;
    width: 100%;
  }
  .bc5_aak .bc5_bc7 > div:nth-child(3), .bc5_aak .bc5_bc7 > div:nth-child(4),
  .bc5_aak .bc5_bc9 > div:nth-child(3),
  .bc5_aak .bc5_bc9 > div:nth-child(4) {
    width: 100%;
  }
}

.bc5_beb,
.bc5_aai {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .bc5_beb,
  .bc5_aai {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.bc5_beb > div,
.bc5_aai > div {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bc5_beb > div,
  .bc5_aai > div {
    max-width: 380px;
    width: 32%;
  }
}

.bc5_bee,
.bc5_0a {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .bc5_bee,
  .bc5_0a {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.bc5_bee > div,
.bc5_0a > div {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

.bc5_bee > div:first-child,
.bc5_0a > div:first-child {
  margin-right: 2%;
}

@media screen and (min-width: 768px) {
  .bc5_bee > div,
  .bc5_0a > div {
    max-width: 380px;
    width: 32%;
  }
}

.bc5_aau > div,
.bc5_aab > div,
.bc5_aam > div,
.bc5_z6 > div,
.bc5_beg > div,
.bc5_aaq > div {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bc5_aau > div,
  .bc5_aab > div,
  .bc5_aam > div,
  .bc5_z6 > div,
  .bc5_beg > div,
  .bc5_aaq > div {
    max-width: 380px;
    width: 32%;
  }
}

.bc5_aae {
  width: 100%;
}

.bc5_bbm {
  width: 66%;
}

@media screen and (max-width: 767px) {
  .bc5_bbm {
    width: 100%;
  }
}

.bc5_bei > div {
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .bc5_bei > div {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.bc5_bei > div:first-child > div {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

.bc5_bei > div:first-child > div:first-child {
  margin-right: 2%;
}

@media screen and (min-width: 768px) {
  .bc5_bei > div:first-child > div {
    max-width: 380px;
    width: 32%;
  }
}

.bc5_bei > div:last-child {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bc5_bei > div:last-child > div {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .bc5_bei > div:last-child > div {
    max-width: 380px;
    width: 32%;
  }
}

.atk_asz {
  background-color: #fff;
  border-radius: 8px;
  height: 86vh;
  margin: 0 auto;
  padding: 20px;
}

.atk_asz .atk_u {
  height: 75%;
}

.atk_asz .atk_atm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.atk_asz .atk_as1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
}

.atk_asz .atk_as1 .atk_ato {
  font-size: 12px;
  height: 30px;
  margin: 0 10px 0 0;
  width: 200px;
}

.atk_asz .atk_as1 .atk_as3 {
  width: 300px;
}

.atk_asz .atk_as1 .atk_as3 input {
  height: 40px;
  padding: 3px 4px;
}

.atk_asz .atk_af8 {
  margin-bottom: 15px;
}

.atk_asz .atk_arg {
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  margin: 40px 0;
}

.atk_asz .atk_arg .atk_on {
  -ms-flex-align: center;
  align-items: center;
  background-color: #edf7f8;
  border: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
  width: 25px;
}

.atk_asz .atk_arg .atk_on img {
  transform: rotate(180deg);
}

.atk_asz .atk_arg:focus {
  outline: none;
}

.atk_asz .atk_abt {
  background-color: #0c3970;
  color: #fff;
  margin: 20px 0;
  padding: 8px;
  text-align: center;
  width: 100%;
}

.atk_asz .atk_ati {
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 19px;
}

.atk_asz .atk_ati .atk_ae9 {
  background-color: #0c3970;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  margin: 0 10px 0 0;
  padding: 6px;
  width: 200px;
}

.atk_asz .atk_ati .atk_afb {
  border: 2px solid #0c3970;
  font-size: 14px;
  margin: 0;
  min-height: 32px;
  padding: 6px;
  width: 200px;
}

.atk_asz .atk_af8 {
  margin-bottom: 25px;
}

.atk_zq {
  display: block;
  margin: auto auto 0;
  min-height: 32px;
  width: 205px;
}

.atk_atq {
  margin-bottom: 25px;
  padding: 25px 50px;
}

.atk_atq:nth-child(even) {
  background-color: #edf7f8;
}

.atk_atq .atk_as7 {
  display: block;
  margin: 0;
}

.atk_atq .atk_as7 > span > span {
  margin-left: 5px;
  top: 2px;
}

.atk_atq .atk_ats {
  padding: 15px 30px;
}

.atk_as5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.atk_as5 h4 span {
  font-family: "Agency", sans-serif;
  font-size: 18px;
}

.atk_as5 > * {
  margin-bottom: 30px;
}

.af2_af4 {
  background-color: #fff;
  border-radius: 8px;
}

.genrador-de-plantilla .progress-bar {
  margin-bottom: 25px;
}

.c6_c8 {
  background-color: #fff;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
  height: 65px;
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.c6_c8 a {
  display: inline !important;
}

.c6_c8 a img {
  margin-top: 20px;
}

.c6_c8 .container {
  height: 65px;
  margin-left: 0;
  max-width: 100%;
  position: relative;
  width: 110%;
}

.c6_c8 .container > div {
  height: 65px;
}

.c6_c8 .c6_ea {
  display: inline-block;
  padding: 24px 24px 0;
  transition: width .2s ease;
  vertical-align: top;
}

.c6_c8 .c6_ea .c6_ec {
  display: inline-block;
}

.c6_c8 .c6_ea .c6_ef {
  display: none;
}

.c6_c8 .c6_ea.c6_eh {
  width: 240px;
}

.c6_c8 .c6_ea.c6_ej {
  padding-left: 15px;
  width: 80px;
}

.c6_c8 .c6_ea.c6_ej .c6_ec {
  display: none;
}

.c6_c8 .c6_ea.c6_ej .c6_ef {
  display: inline-block;
}

.c6_c8 .c6_el {
  display: inline-block;
  padding: 24px 24px 0;
  transition: width .2s ease;
  vertical-align: top;
}

.c6_c8 .c6_en {
  background-color: #979797;
  display: inline-block;
  height: 100%;
  width: 1px;
}

.c6_c8 .c6_ep {
  list-style: none;
  position: absolute;
  right: 24px;
  top: -1px;
}

.c6_c8 .c6_ep li {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .c6_c8 .c6_ea.c6_eh {
    width: 80px;
  }
  .c6_c8 .c6_ea .c6_ec {
    display: none;
  }
  .c6_c8 .c6_ea .c6_ef {
    display: inline-block;
  }
}

.ez_e1 {
  text-align: center;
  z-index: 999;
}

.ez_e1 .ez_e3 {
  padding: 0 10px 20px;
  padding-bottom: 0;
}

.ez_e1 .ez_e5 {
  font-size: 18px;
  font-weight: 600;
  margin: 1em 0;
}

.ez_e1 footer div {
  margin-top: -20px;
}

.ez_e1 footer button {
  min-width: 170px;
}

.er_et {
  background-color: #fff;
  display: inline-block;
  height: 100%;
  padding-top: 5px;
  vertical-align: top;
}

.er_et button {
  height: -moz-fit-content !important;
  height: fit-content !important;
  padding-top: 15px;
}

.er_et .er_ev {
  display: inline-block;
  max-width: 250px;
  overflow: hidden;
  padding-left: 1em;
  padding-right: 1em;
  text-overflow: ellipsis;
  vertical-align: super;
}

.er_et .er_ev > div {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.er_et > button {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  text-align: left;
  width: 100%;
}

.er_et > button:active {
  transform: none;
}

.er_et > button i {
  color: #0ac8b4;
  font-size: 18px;
}

.er_et > button span {
  font-family: "Agency", sans-serif;
  font-size: 14px;
}

.er_et .er_ex {
  margin: 10px 0 0;
  position: relative;
  width: 100%;
}

.er_et .er_ex button {
  border: 0;
  border-radius: 0;
  bottom: 8px;
}

.er_et .er_ex div div {
  border-radius: 5px;
}

.er_et .er_ex i {
  padding-top: 50px;
  float: none;
}

.er_et .er_ex ul li:first-child, .er_et .er_ex ul li:last-child {
  border: 0;
  margin-top: 1px;
  padding-bottom: 55px;
}

.er_et .er_ex ul li:last-child {
  border-bottom: 0 !important;
}

@media screen and (max-width: 1024px) {
  .er_et .er_ev {
    max-width: 190px;
  }
}

@media screen and (max-width: 768px) {
  .er_et .er_ev {
    max-width: 150px;
  }
}

.e7_e9 {
  color: #fff;
  font-size: 12px;
  height: 570px;
  min-width: 170px;
  padding: 0;
  position: sticky;
  top: 85px;
  z-index: 9;
}

@media screen and (max-width: 1023px) {
  .e7_e9 {
    height: calc(100vh - 65px);
    overflow: hidden;
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .e7_e9 {
    background-color: #0068aa;
    height: calc(100vh - 65px);
    min-width: unset;
    position: fixed;
    top: 65px;
    transition: width .2s ease-in-out;
    width: 0;
  }
  .e7_e9.e7_fb {
    width: 280px;
  }
}

.e7_e9 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.e7_e9 ul .e7_fe {
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: 0;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter Light", sans-serif;
  height: 30px;
  list-style: none;
  margin: 10px 0;
  padding: 0 5px 0 10px;
  transition: all .1s ease-in-out;
  width: 100%;
  z-index: 2;
}

.e7_e9 ul .e7_fe .e7_fg {
  -ms-flex-align: end;
  align-items: end;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-order: 3;
  order: 3;
  width: 20px;
}

.e7_e9 ul .e7_fe .e7_fg i {
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px;
  transform: translate(0%, 9%);
}

.e7_e9 ul .e7_fe > button {
  -ms-flex-align: center;
  align-items: center;
  background: 0;
  border: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: inherit;
}

.e7_e9 ul .e7_fe span {
  color: #fff;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-family: "Inter Light", sans-serif;
  font-size: 11px;
  -ms-flex-order: 2;
  order: 2;
  padding-left: 5px;
  text-align: left;
  text-transform: capitalize;
}

.e7_e9 ul .e7_fe .e7_fi {
  -ms-flex-align: center;
  align-items: center;
  background-color: #0068aa;
  border-radius: 35px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  font-size: 8px;
  height: 14px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  opacity: 0;
  -ms-flex-order: 1;
  order: 1;
  width: 14px;
}

.e7_e9 ul .e7_fe .e7_fi:hover i {
  color: #0068aa;
}

.e7_e9 ul .e7_fe.e7_fk {
  background-color: #f5f6fa;
  border-radius: 7px 0 0 7px;
  z-index: unset;
}

.e7_e9 ul .e7_fe.e7_fk .e7_fg i {
  color: #0068aa;
}

.e7_e9 ul .e7_fe.e7_fk span {
  color: #0068aa;
}

.e7_e9 ul .e7_fe.e7_fk .e7_fm {
  background-color: #0068aa;
  content: '';
  height: 20px;
  justify-self: start;
  position: absolute;
  right: 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .e7_e9 ul .e7_fe.e7_fk .e7_fm {
    content: unset;
  }
}

.e7_e9 ul .e7_fe.e7_fk .e7_fm.e7_fo {
  border-bottom-right-radius: 7px;
  top: -20px;
}

.e7_e9 ul .e7_fe.e7_fk .e7_fm.e7_fo::after {
  background-color: #f5f6fa;
  content: '';
  height: 20px;
  position: absolute;
  right: -1px;
  top: 1px;
  width: 20%;
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .e7_e9 ul .e7_fe.e7_fk .e7_fm.e7_fo::after {
    content: unset;
  }
}

.e7_e9 ul .e7_fe.e7_fk .e7_fm.e7_fq {
  border-top-right-radius: 7px;
  bottom: -20px;
}

.e7_e9 ul .e7_fe.e7_fk .e7_fm.e7_fq::after {
  background-color: #f5f6fa;
  content: '';
  height: 20px;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 20%;
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .e7_e9 ul .e7_fe.e7_fk .e7_fm.e7_fq::after {
    content: unset;
  }
}

.e7_e9 ul .e7_fe:hover {
  background-color: #f5f6fa;
  cursor: pointer;
}

.e7_e9 ul .e7_fe:hover[disabled] {
  cursor: not-allowed;
  opacity: .5;
}

.e7_e9 ul .e7_fe:hover .e7_fi {
  opacity: 1;
}

.e7_e9 ul .e7_fe:hover span {
  color: #0c3970;
}

.e7_e9 ul .e7_fe:hover .e7_fg i {
  color: #0c3970;
}

@media screen and (max-width: 767px) {
  .e7_e9 ul .e7_fe {
    padding-left: 5px;
  }
}

.e7_e9 .e7_fs {
  background-color: #fff;
  border: 0;
  bottom: 0;
  padding: 30px 0 30px 40px;
  position: absolute;
  text-align: left;
  width: 100%;
}

.e7_e9 .e7_fs img {
  margin: 0 20px 0 0;
  vertical-align: middle;
}

.e7_e9 .e7_fs span {
  color: #979797;
}

.e7_e9 .e7_fu {
  padding: 18px 0 0;
  height: calc(100% - 82px);
  min-height: 100px;
}

.e7_e9.e7_ej {
  width: 80px;
}

.e7_e9.e7_ej .e7_fs {
  padding: 30px 0;
  text-align: center;
}

.e7_e9.e7_ej .e7_fs img {
  margin: 0 0 10px;
}

.e7_e9.e7_ej .e7_fs span {
  display: block;
}

.e7_fw {
  height: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.e7_fw a {
  font-size: inherit;
}

.e7_fw::before {
  background-color: #0ac8b4;
  content: '';
  height: 44px;
  left: -44px;
  opacity: 0;
  position: absolute;
  top: 16px;
  transition: opacity .5s ease, left .2s ease;
  width: 6px;
}

.e7_fw .e7_fy {
  padding: 30px 0 30px 30px;
}

.e7_fw .e7_fy i {
  color: #282828;
  height: 25px;
  width: 25px;
}

.e7_fw .e7_fy .e7_f0 {
  color: #282828;
  display: inline-block;
  font-family: "Inter Light", sans-serif;
  font-weight: 400;
  left: 60px;
  opacity: 1;
  position: absolute;
  transition: opacity .2s ease;
}

.e7_fw.e7_ej .e7_fy .e7_f0 {
  opacity: 0;
}

.e7_fw button {
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

.e7_fw a {
  display: block;
}

.e7_fw.e7_fk {
  color: #0c3970;
}

.e7_fw.e7_fk::before {
  left: 0;
  opacity: 1;
  transition-delay: .1s;
  transition: opacity .2s ease, left .3s ease;
}

.e7_fw.e7_fk div i,
.e7_fw.e7_fk div .e7_f0 {
  color: #00b29f;
}

.e7_f2 {
  background-color: #0068aa;
  border: none;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1);
  display: none;
  height: 32px;
  position: fixed;
  top: 85px;
  transform: translateX(0);
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;
  width: 32px;
  z-index: 100;
}

.e7_f2 img {
  height: 60%;
  transform: rotate(0);
  transition: transform .2s ease-in-out .2s;
  width: 80%;
}

.e7_f2:focus {
  outline: none;
}

.e7_f2.e7_fb {
  box-shadow: none;
  transform: translateX(278px);
}

.e7_f2.e7_fb img {
  transform: rotate(-180deg);
}

@media screen and (max-width: 767px) {
  .e7_f2 {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    top: 65px;
  }
}

.e7_f4 {
  background: transparent;
  display: none;
  pointer-events: none;
  position: absolute;
  transition: background .2s ease-in-out;
  z-index: 1;
}

.e7_f4.e7_fb {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  left: 0;
  pointer-events: auto;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .e7_f4 {
    display: block;
  }
}

.e7_f6 {
  background-color: #0068aa;
  min-height: calc(87vh);
}

.b_e {
  background-color: #f5f6fa;
}

.b_e.b_g {
  background-image: unset;
}

.b_e .container {
  max-width: 100%;
}

.b_e .b_i {
  display: -ms-flexbox;
  display: flex;
}

.b_e .b_i .b_k {
  border-color: #edf7f8;
  border-radius: 5px;
  border-width: 3px;
  height: 100%;
  margin: 20px 25px;
  min-height: calc(87vh);
  width: 100%;
}

@media screen and (max-width: 767px) {
  .b_e .b_i .b_k {
    margin: 0;
    min-height: calc(95vh);
  }
}

@media screen and (max-width: 768px) {
  .b_e .b_i .b_m {
    left: 80px;
  }
  .b_e.b_g {
    background-image: unset;
  }
  .b_e .b_o {
    display: none;
  }
}

.q_s {
  -ms-flex-align: center;
  align-items: center;
  background-position: -65px 20vh;
  background-repeat: no-repeat;
  background-size: 240px auto, auto 240px;
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  min-height: 100vh;
  padding: 10px;
}

.q_s .q_u {
  background-color: #fff;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.1);
  padding: 36px 20px;
}

.q_s .q_u .q_w {
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .q_s {
    background-image: none;
  }
}

@media screen and (max-width: 1023px) {
  .q_s {
    background-size: 240px auto, auto 240px;
  }
}

@media (max-width: 1024px) {
  .q_s {
    background-image: none;
  }
}

@media screen and (max-width: 1023px) {
  .q_s {
    background-size: 240px auto, auto 240px;
  }
}

.q_s .q_y a {
  color: #00b29f;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.q_s .q_0,
.q_s .q_ab,
.q_s .q_ae,
.q_s .q_ag {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 768px;
  padding: 50px 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .q_s .q_0,
  .q_s .q_ab,
  .q_s .q_ae,
  .q_s .q_ag {
    width: 100%;
  }
}

.q_s .q_0:not(.q_ae),
.q_s .q_ab:not(.q_ae),
.q_s .q_ae:not(.q_ae),
.q_s .q_ag:not(.q_ae) {
  width: 500px;
}

.q_s .q_0:not(.q_ae) input,
.q_s .q_ab:not(.q_ae) input,
.q_s .q_ae:not(.q_ae) input,
.q_s .q_ag:not(.q_ae) input {
  padding: 20px 13px 20px 45px;
}

.q_s .q_0 .q_ai,
.q_s .q_0 .q_ak,
.q_s .q_ab .q_ai,
.q_s .q_ab .q_ak,
.q_s .q_ae .q_ai,
.q_s .q_ae .q_ak,
.q_s .q_ag .q_ai,
.q_s .q_ag .q_ak {
  height: 45px;
  margin: 20px auto;
  min-width: 170px;
}

.q_s .q_0 .q_ai.q_am,
.q_s .q_0 .q_ak.q_am,
.q_s .q_ab .q_ai.q_am,
.q_s .q_ab .q_ak.q_am,
.q_s .q_ae .q_ai.q_am,
.q_s .q_ae .q_ak.q_am,
.q_s .q_ag .q_ai.q_am,
.q_s .q_ag .q_ak.q_am {
  margin: 20px 0 20px auto;
}

@media screen and (max-width: 767px) {
  .q_s .q_0 .q_ai,
  .q_s .q_0 .q_ak,
  .q_s .q_ab .q_ai,
  .q_s .q_ab .q_ak,
  .q_s .q_ae .q_ai,
  .q_s .q_ae .q_ak,
  .q_s .q_ag .q_ai,
  .q_s .q_ag .q_ak {
    margin: 0;
  }
}

.q_s .q_0 .q_ao,
.q_s .q_ab .q_ao,
.q_s .q_ae .q_ao,
.q_s .q_ag .q_ao {
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  margin: 25px 0;
}

@media screen and (max-width: 767px) {
  .q_s .q_0 .q_ao,
  .q_s .q_ab .q_ao,
  .q_s .q_ae .q_ao,
  .q_s .q_ag .q_ao {
    display: none;
  }
}

.q_s .q_0 .q_ao a,
.q_s .q_ab .q_ao a,
.q_s .q_ae .q_ao a,
.q_s .q_ag .q_ao a {
  color: #28b29f;
  font-weight: bold;
}

.q_s .q_0 .q_ao a:visited,
.q_s .q_ab .q_ao a:visited,
.q_s .q_ae .q_ao a:visited,
.q_s .q_ag .q_ao a:visited {
  color: #28b29f;
}

.q_s .q_0 .q_w,
.q_s .q_ab .q_w,
.q_s .q_ae .q_w,
.q_s .q_ag .q_w {
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.q_s .q_aq,
.q_s .q_as {
  background-color: #edf2f5;
  border-color: #edf2f5;
  border-radius: 15px;
  border-style: solid;
  border-width: 20px;
}

.q_s .q_aq .q_au,
.q_s .q_as .q_au {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 5px 10px 4px rgba(0, 0, 0, 0.12);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 400px;
  padding: 50px;
  width: 550px;
}

.q_s .q_aq .q_au .q_ai,
.q_s .q_as .q_au .q_ai {
  border-radius: 10px;
  height: 45px;
  margin: 20px auto;
  min-width: 170px;
  padding: 10px 35px 20px 35px;
}

.q_s .q_aq .q_au .q_aw,
.q_s .q_as .q_au .q_aw {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.q_s .q_aq .q_au .q_aw > p,
.q_s .q_as .q_au .q_aw > p {
  text-align: center;
}

.q_s a {
  color: #0c3970;
  margin-bottom: 10px;
}

.q_s .q_ay {
  padding-bottom: 15px;
}

.q_s .q_a0 {
  font-weight: bold;
  padding: 13px 0 5px 0;
}

.q_s .q_a2 {
  color: #0c3970;
  font-size: 28px;
  font-weight: 700;
  padding-top: 10px;
}

.q_s .q_a2 span {
  font-weight: 400;
}

.q_s div .q_a4 {
  margin: 10px 0 15px;
}

.q_s .q_ae .q_a6 {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.q_s .q_ae .q_a6 > div {
  margin-top: 0;
  min-height: 88px;
}

.q_s .q_ae .q_a6 > div:not(:first-child) {
  margin-left: 2%;
  width: 28%;
}

@media screen and (max-width: 480px) {
  .q_s .q_ae .q_a6 {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .q_s .q_ae .q_a6 > div {
    -ms-flex: inherit;
    flex: inherit;
  }
  .q_s .q_ae .q_a6 > div:first-child, .q_s .q_ae .q_a6 > div:not(:first-child) {
    margin: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}

.q_s .q_ae .q_a8 > div {
  width: 32%;
}

.q_s .q_ae .q_a8 > div:first-child {
  width: 40%;
}

.q_s .q_ae .q_ba > div:first-child {
  width: 20%;
}

.q_s .q_ae .q_ba > div:not(:first-child) {
  margin-left: 2%;
  width: 33%;
}

.q_s .q_ae .q_bc > div {
  width: 23%;
}

.q_s .q_ae .q_bc > div:nth-child(2) {
  width: 50%;
}

.q_s .q_ae .q_bc > div:not(:first-child) {
  margin-left: 2%;
}

.q_s .q_ae .q_bf > div {
  width: 100%;
}

.q_s .q_bh {
  display: block;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

.q_s .q_bh:visited {
  color: #0c3970;
}

.q_s .q_y {
  color: #0c3970;
  display: block;
  margin-top: 20px;
  text-align: center;
}

.q_s .q_y a {
  font-size: 14px;
}

.q_s .q_y a:visited {
  color: #0c3970;
}

.q_s .q_bj {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px 0;
  padding-top: 10px;
}

.q_s .q_bj button {
  border-radius: 6px;
  padding: 10px 70px 20px 70px;
}

.q_bl {
  text-align: center;
}

.q_bn .q_bp {
  color: #282828;
  font-weight: 300;
  margin: 80px 0 20px;
}

.q_bn .q_br {
  width: 160px;
}

.q_bt h3,
.q_bt p {
  display: inline-block;
  margin: auto;
  width: 100%;
  max-width: 370px;
}

.q_bt h3 span {
  color: #282828;
}

.q_bt p {
  margin-top: 20px;
}

.q_bt p span {
  max-width: 100%;
}

.q_bt .q_aw {
  margin: 0;
}

.q_bt .q_aw img {
  display: block;
  margin: 0 auto 20px;
}

.q_bt .q_aw a {
  display: inline-block;
  margin-top: 20px;
}

.q_bt .q_bv {
  margin-top: 5px;
}

.q_bx .q_b1,
.q_bz .q_b1 {
  margin-left: 10%;
  width: 114px;
  height: 112px;
  color: #0c3970;
}

.q_bx .q_aw,
.q_bz .q_aw {
  display: -ms-flexbox;
  display: flex;
}

.q_bx .q_aw img,
.q_bz .q_aw img {
  display: block;
  margin: 0 auto 20px;
}

.q_bx .q_aw p,
.q_bz .q_aw p {
  margin-bottom: 20px;
}

.q_bx .q_aw a,
.q_bz .q_aw a {
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 400;
}

.q_bx .q_aw button,
.q_bz .q_aw button {
  background-color: #0ac8b4;
  margin-left: auto;
  width: 160px;
}

.q_bx .q_b3,
.q_bz .q_b3 {
  margin-left: 10%;
}

.q_bx .q_b5,
.q_bz .q_b5 {
  margin-top: 20px;
}

.q_bx .q_b5,
.q_bx .q_b5 a,
.q_bz .q_b5,
.q_bz .q_b5 a {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}

.q_bx .q_b5 i,
.q_bz .q_b5 i {
  margin-right: 5px;
  padding-top: 2px;
}

.q_bx .q_b5 button,
.q_bz .q_b5 button {
  margin-left: auto;
  width: 160px;
}

.q_b7 .q_b9 a {
  display: block;
  text-align: right;
}

.q_b7 .q_b9 img {
  display: block;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.q_b7 .q_b9 .q_br {
  width: 160px;
}

.q_b7 .q_b9 .q_br span {
  color: #fff;
  font-size: 16px;
}

.q_b7 .q_cb {
  letter-spacing: .6px;
  margin-top: 20px;
}

.q_b7 .q_ce {
  margin: 20px 0;
  width: 160px;
}

.q_cg {
  font-size: 14px;
  margin: 20px 0;
}

.q_cg a {
  color: #00b29f;
}

.q_ci,
.q_ck {
  margin-top: 0;
}

.q_cm {
  display: -ms-flexbox;
  display: flex;
}

.q_cm button {
  margin-left: auto;
  width: 160px;
}

.q_co div.page-data {
  max-width: 800px;
}

.q_co.q_cq div.page-data {
  max-width: 340px;
  text-align: center;
}

.q_am {
  margin: 13px 0 !important;
}

.q_cs {
  font-size: 12px;
  margin-bottom: 5px;
}

.m7_m9 {
  -ms-flex-align: center;
  align-items: center;
  background: url(/images/cfa190fe47c431eb500fff790d372dec.svg) calc(50% - 150px) calc(50% - 50px) no-repeat, url(/images/58e409fae39ca8ad7aea2c94bc3b39d7.svg) right top no-repeat, linear-gradient(to bottom, #fff, #edf7f8);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Agency", sans-serif;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100%;
}

.m7_m9 .m7_nb {
  padding: 20px 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.m7_m9 .m7_ne {
  padding: 90px 0;
  width: 100%;
}

.m7_m9 .page-data {
  margin: auto;
  max-width: 400px;
}

.m7_m9 .page-data h2 {
  margin-bottom: 29px;
}

.m7_m9 footer {
  bottom: 0;
  font-size: 14px;
  position: absolute;
  width: 100%;
}

.m7_m9 footer .container {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #282828;
  font-family: "Inter Light", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 20px;
}

.m7_m9 .m7_ni {
  display: inline-block;
  margin-left: 80px;
}

.m7_m9 form {
  margin: 30px auto 0;
}

.m7_m9 form button[type='submit'] {
  float: right;
}

@media screen and (max-width: 480px) {
  .m7_m9 .m7_ni {
    display: inline-block;
    margin-left: 0;
  }
}

