@charset "UTF-8";
/*
  MetaMask design system imports
  The variables declared here should take precedence.
  They are included first because they will be used to replace bad variable names in itcss
  prior to it being fully removed from the system.
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    font-variant: inherit;
    font-size: inherit;
    line-height: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

/* stylelint-disable */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    border-style: none;
    cursor: pointer;
}

button::-moz-focus-inner {
    border: none;
}

/* stylelint-enable */

/*
Responsive Breakpoints
*/

/**
  These colors are either deprecated or will move into colors.scss
  when approved for the design system
**/

/*
  Colors
  http://chir.ag/projects/name-that-color
 */

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}

.fa-xs {
    font-size: 0.75em;
}

.fa-sm {
    font-size: 0.875em;
}

.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-fw {
    text-align: center;
    width: 1.25em;
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-border {
    border: solid 0.08em #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-500px:before {
    content: "";
}

.fa-accessible-icon:before {
    content: "";
}

.fa-accusoft:before {
    content: "";
}

.fa-acquisitions-incorporated:before {
    content: "";
}

.fa-ad:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-card:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-adobe:before {
    content: "";
}

.fa-adversal:before {
    content: "";
}

.fa-affiliatetheme:before {
    content: "";
}

.fa-air-freshener:before {
    content: "";
}

.fa-airbnb:before {
    content: "";
}

.fa-algolia:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-alipay:before {
    content: "";
}

.fa-allergies:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-amazon-pay:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-amilia:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angry:before {
    content: "";
}

.fa-angrycreative:before {
    content: "";
}

.fa-angular:before {
    content: "";
}

.fa-ankh:before {
    content: "";
}

.fa-app-store:before {
    content: "";
}

.fa-app-store-ios:before {
    content: "";
}

.fa-apper:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-apple-alt:before {
    content: "";
}

.fa-apple-pay:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-archway:before {
    content: "";
}

.fa-arrow-alt-circle-down:before {
    content: "";
}

.fa-arrow-alt-circle-left:before {
    content: "";
}

.fa-arrow-alt-circle-right:before {
    content: "";
}

.fa-arrow-alt-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-arrows-alt-h:before {
    content: "";
}

.fa-arrows-alt-v:before {
    content: "";
}

.fa-artstation:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-asymmetrik:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-atlas:before {
    content: "";
}

.fa-atlassian:before {
    content: "";
}

.fa-atom:before {
    content: "";
}

.fa-audible:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-autoprefixer:before {
    content: "";
}

.fa-avianex:before {
    content: "";
}

.fa-aviato:before {
    content: "";
}

.fa-award:before {
    content: "";
}

.fa-aws:before {
    content: "";
}

.fa-baby:before {
    content: "";
}

.fa-baby-carriage:before {
    content: "";
}

.fa-backspace:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-bacon:before {
    content: "";
}

.fa-bahai:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-balance-scale-left:before {
    content: "";
}

.fa-balance-scale-right:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-band-aid:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-bars:before {
    content: "";
}

.fa-baseball-ball:before {
    content: "";
}

.fa-basketball-ball:before {
    content: "";
}

.fa-bath:before {
    content: "";
}

.fa-battery-empty:before {
    content: "";
}

.fa-battery-full:before {
    content: "";
}

.fa-battery-half:before {
    content: "";
}

.fa-battery-quarter:before {
    content: "";
}

.fa-battery-three-quarters:before {
    content: "";
}

.fa-battle-net:before {
    content: "";
}

.fa-bed:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bezier-curve:before {
    content: "";
}

.fa-bible:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-biking:before {
    content: "";
}

.fa-bimobject:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-biohazard:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitcoin:before {
    content: "";
}

.fa-bity:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-blackberry:before {
    content: "";
}

.fa-blender:before {
    content: "";
}

.fa-blender-phone:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-blog:before {
    content: "";
}

.fa-blogger:before {
    content: "";
}

.fa-blogger-b:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-bolt:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-bone:before {
    content: "";
}

.fa-bong:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-book-dead:before {
    content: "";
}

.fa-book-medical:before {
    content: "";
}

.fa-book-open:before {
    content: "";
}

.fa-book-reader:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-bootstrap:before {
    content: "";
}

.fa-border-all:before {
    content: "";
}

.fa-border-none:before {
    content: "";
}

.fa-border-style:before {
    content: "";
}

.fa-bowling-ball:before {
    content: "";
}

.fa-box:before {
    content: "";
}

.fa-box-open:before {
    content: "";
}

.fa-box-tissue:before {
    content: "拏";
}

.fa-boxes:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-brain:before {
    content: "";
}

.fa-bread-slice:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-briefcase-medical:before {
    content: "";
}

.fa-broadcast-tower:before {
    content: "";
}

.fa-broom:before {
    content: "";
}

.fa-brush:before {
    content: "";
}

.fa-btc:before {
    content: "";
}

.fa-buffer:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-burn:before {
    content: "";
}

.fa-buromobelexperte:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-bus-alt:before {
    content: "";
}

.fa-business-time:before {
    content: "";
}

.fa-buy-n-large:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-calendar-alt:before {
    content: "";
}

.fa-calendar-check:before {
    content: "";
}

.fa-calendar-day:before {
    content: "";
}

.fa-calendar-minus:before {
    content: "";
}

.fa-calendar-plus:before {
    content: "";
}

.fa-calendar-times:before {
    content: "";
}

.fa-calendar-week:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-campground:before {
    content: "";
}

.fa-canadian-maple-leaf:before {
    content: "";
}

.fa-candy-cane:before {
    content: "";
}

.fa-cannabis:before {
    content: "";
}

.fa-capsules:before {
    content: "";
}

.fa-car:before {
    content: "";
}

.fa-car-alt:before {
    content: "";
}

.fa-car-battery:before {
    content: "";
}

.fa-car-crash:before {
    content: "";
}

.fa-car-side:before {
    content: "";
}

.fa-caravan:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-caret-square-down:before {
    content: "";
}

.fa-caret-square-left:before {
    content: "";
}

.fa-caret-square-right:before {
    content: "";
}

.fa-caret-square-up:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-carrot:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cash-register:before {
    content: "";
}

.fa-cat:before {
    content: "";
}

.fa-cc-amazon-pay:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-apple-pay:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-centercode:before {
    content: "";
}

.fa-centos:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-chair:before {
    content: "";
}

.fa-chalkboard:before {
    content: "";
}

.fa-chalkboard-teacher:before {
    content: "";
}

.fa-charging-station:before {
    content: "";
}

.fa-chart-area:before {
    content: "";
}

.fa-chart-bar:before {
    content: "";
}

.fa-chart-line:before {
    content: "";
}

.fa-chart-pie:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-check-double:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-cheese:before {
    content: "";
}

.fa-chess:before {
    content: "";
}

.fa-chess-bishop:before {
    content: "";
}

.fa-chess-board:before {
    content: "";
}

.fa-chess-king:before {
    content: "";
}

.fa-chess-knight:before {
    content: "";
}

.fa-chess-pawn:before {
    content: "";
}

.fa-chess-queen:before {
    content: "";
}

.fa-chess-rook:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-chromecast:before {
    content: "";
}

.fa-church:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-circle-notch:before {
    content: "";
}

.fa-city:before {
    content: "";
}

.fa-clinic-medical:before {
    content: "";
}

.fa-clipboard:before {
    content: "";
}

.fa-clipboard-check:before {
    content: "";
}

.fa-clipboard-list:before {
    content: "";
}

.fa-clock:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-closed-captioning:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-cloud-download-alt:before {
    content: "";
}

.fa-cloud-meatball:before {
    content: "";
}

.fa-cloud-moon:before {
    content: "";
}

.fa-cloud-moon-rain:before {
    content: "";
}

.fa-cloud-rain:before {
    content: "";
}

.fa-cloud-showers-heavy:before {
    content: "";
}

.fa-cloud-sun:before {
    content: "";
}

.fa-cloud-sun-rain:before {
    content: "";
}

.fa-cloud-upload-alt:before {
    content: "";
}

.fa-cloudscale:before {
    content: "";
}

.fa-cloudsmith:before {
    content: "";
}

.fa-cloudversify:before {
    content: "";
}

.fa-cocktail:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-code-branch:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cog:before {
    content: "";
}

.fa-cogs:before {
    content: "";
}

.fa-coins:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-comment-alt:before {
    content: "";
}

.fa-comment-dollar:before {
    content: "";
}

.fa-comment-dots:before {
    content: "";
}

.fa-comment-medical:before {
    content: "";
}

.fa-comment-slash:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-comments-dollar:before {
    content: "";
}

.fa-compact-disc:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-compress-alt:before {
    content: "";
}

.fa-compress-arrows-alt:before {
    content: "";
}

.fa-concierge-bell:before {
    content: "";
}

.fa-confluence:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-cookie:before {
    content: "";
}

.fa-cookie-bite:before {
    content: "";
}

.fa-copy:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-cotton-bureau:before {
    content: "";
}

.fa-couch:before {
    content: "";
}

.fa-cpanel:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-creative-commons-by:before {
    content: "";
}

.fa-creative-commons-nc:before {
    content: "";
}

.fa-creative-commons-nc-eu:before {
    content: "";
}

.fa-creative-commons-nc-jp:before {
    content: "";
}

.fa-creative-commons-nd:before {
    content: "";
}

.fa-creative-commons-pd:before {
    content: "";
}

.fa-creative-commons-pd-alt:before {
    content: "";
}

.fa-creative-commons-remix:before {
    content: "";
}

.fa-creative-commons-sa:before {
    content: "";
}

.fa-creative-commons-sampling:before {
    content: "";
}

.fa-creative-commons-sampling-plus:before {
    content: "";
}

.fa-creative-commons-share:before {
    content: "";
}

.fa-creative-commons-zero:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-critical-role:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-crop-alt:before {
    content: "";
}

.fa-cross:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-crow:before {
    content: "";
}

.fa-crown:before {
    content: "";
}

.fa-crutch:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-css3-alt:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-cut:before {
    content: "";
}

.fa-cuttlefish:before {
    content: "";
}

.fa-d-and-d:before {
    content: "";
}

.fa-d-and-d-beyond:before {
    content: "";
}

.fa-dailymotion:before {
    content: "勒";
}

.fa-dashcube:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-deaf:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-democrat:before {
    content: "";
}

.fa-deploydog:before {
    content: "";
}

.fa-deskpro:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-dev:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-dharmachakra:before {
    content: "";
}

.fa-dhl:before {
    content: "";
}

.fa-diagnoses:before {
    content: "";
}

.fa-diaspora:before {
    content: "";
}

.fa-dice:before {
    content: "";
}

.fa-dice-d20:before {
    content: "";
}

.fa-dice-d6:before {
    content: "";
}

.fa-dice-five:before {
    content: "";
}

.fa-dice-four:before {
    content: "";
}

.fa-dice-one:before {
    content: "";
}

.fa-dice-six:before {
    content: "";
}

.fa-dice-three:before {
    content: "";
}

.fa-dice-two:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-digital-ocean:before {
    content: "";
}

.fa-digital-tachograph:before {
    content: "";
}

.fa-directions:before {
    content: "";
}

.fa-discord:before {
    content: "";
}

.fa-discourse:before {
    content: "";
}

.fa-disease:before {
    content: "";
}

.fa-divide:before {
    content: "";
}

.fa-dizzy:before {
    content: "";
}

.fa-dna:before {
    content: "";
}

.fa-dochub:before {
    content: "";
}

.fa-docker:before {
    content: "";
}

.fa-dog:before {
    content: "";
}

.fa-dollar-sign:before {
    content: "";
}

.fa-dolly:before {
    content: "";
}

.fa-dolly-flatbed:before {
    content: "";
}

.fa-donate:before {
    content: "";
}

.fa-door-closed:before {
    content: "";
}

.fa-door-open:before {
    content: "";
}

.fa-dot-circle:before {
    content: "";
}

.fa-dove:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-draft2digital:before {
    content: "";
}

.fa-drafting-compass:before {
    content: "";
}

.fa-dragon:before {
    content: "";
}

.fa-draw-polygon:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-dribbble-square:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-drum:before {
    content: "";
}

.fa-drum-steelpan:before {
    content: "";
}

.fa-drumstick-bite:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-dumbbell:before {
    content: "";
}

.fa-dumpster:before {
    content: "";
}

.fa-dumpster-fire:before {
    content: "";
}

.fa-dungeon:before {
    content: "";
}

.fa-dyalog:before {
    content: "";
}

.fa-earlybirds:before {
    content: "";
}

.fa-ebay:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-edit:before {
    content: "";
}

.fa-egg:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-elementor:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-ello:before {
    content: "";
}

.fa-ember:before {
    content: "";
}

.fa-empire:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-text:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-equals:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-erlang:before {
    content: "";
}

.fa-ethereum:before {
    content: "";
}

.fa-ethernet:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-euro-sign:before {
    content: "";
}

.fa-evernote:before {
    content: "";
}

.fa-exchange-alt:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-exclamation-triangle:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-expand-alt:before {
    content: "";
}

.fa-expand-arrows-alt:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-external-link-alt:before {
    content: "";
}

.fa-external-link-square-alt:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-dropper:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-facebook:before {
    content: "";
}

.fa-facebook-f:before {
    content: "";
}

.fa-facebook-messenger:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-fan:before {
    content: "";
}

.fa-fantasy-flight-games:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-faucet:before {
    content: "串";
}

.fa-fax:before {
    content: "";
}

.fa-feather:before {
    content: "";
}

.fa-feather-alt:before {
    content: "";
}

.fa-fedex:before {
    content: "";
}

.fa-fedora:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-figma:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-alt:before {
    content: "";
}

.fa-file-archive:before {
    content: "";
}

.fa-file-audio:before {
    content: "";
}

.fa-file-code:before {
    content: "";
}

.fa-file-contract:before {
    content: "";
}

.fa-file-csv:before {
    content: "";
}

.fa-file-download:before {
    content: "";
}

.fa-file-excel:before {
    content: "";
}

.fa-file-export:before {
    content: "";
}

.fa-file-image:before {
    content: "";
}

.fa-file-import:before {
    content: "";
}

.fa-file-invoice:before {
    content: "";
}

.fa-file-invoice-dollar:before {
    content: "";
}

.fa-file-medical:before {
    content: "";
}

.fa-file-medical-alt:before {
    content: "";
}

.fa-file-pdf:before {
    content: "";
}

.fa-file-powerpoint:before {
    content: "";
}

.fa-file-prescription:before {
    content: "";
}

.fa-file-signature:before {
    content: "";
}

.fa-file-upload:before {
    content: "";
}

.fa-file-video:before {
    content: "";
}

.fa-file-word:before {
    content: "";
}

.fa-fill:before {
    content: "";
}

.fa-fill-drip:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-fingerprint:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-fire-alt:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-firefox-browser:before {
    content: "龜";
}

.fa-first-aid:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-first-order-alt:before {
    content: "";
}

.fa-firstdraft:before {
    content: "";
}

.fa-fish:before {
    content: "";
}

.fa-fist-raised:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-flag-usa:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-flipboard:before {
    content: "";
}

.fa-flushed:before {
    content: "";
}

.fa-fly:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-minus:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-folder-plus:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-font-awesome:before {
    content: "";
}

.fa-font-awesome-alt:before {
    content: "";
}

.fa-font-awesome-flag:before {
    content: "";
}

.fa-font-awesome-logo-full:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-fonticons-fi:before {
    content: "";
}

.fa-football-ball:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-fort-awesome-alt:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-freebsd:before {
    content: "";
}

.fa-frog:before {
    content: "";
}

.fa-frown:before {
    content: "";
}

.fa-frown-open:before {
    content: "";
}

.fa-fulcrum:before {
    content: "";
}

.fa-funnel-dollar:before {
    content: "";
}

.fa-futbol:before {
    content: "";
}

.fa-galactic-republic:before {
    content: "";
}

.fa-galactic-senate:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-gas-pump:before {
    content: "";
}

.fa-gavel:before {
    content: "";
}

.fa-gem:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-ghost:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-gifts:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-git-alt:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-gitkraken:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-gitter:before {
    content: "";
}

.fa-glass-cheers:before {
    content: "";
}

.fa-glass-martini:before {
    content: "";
}

.fa-glass-martini-alt:before {
    content: "";
}

.fa-glass-whiskey:before {
    content: "";
}

.fa-glasses:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-globe-africa:before {
    content: "";
}

.fa-globe-americas:before {
    content: "";
}

.fa-globe-asia:before {
    content: "";
}

.fa-globe-europe:before {
    content: "";
}

.fa-gofore:before {
    content: "";
}

.fa-golf-ball:before {
    content: "";
}

.fa-goodreads:before {
    content: "";
}

.fa-goodreads-g:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-google-drive:before {
    content: "";
}

.fa-google-play:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-google-plus-g:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-gopuram:before {
    content: "";
}

.fa-graduation-cap:before {
    content: "";
}

.fa-gratipay:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-greater-than:before {
    content: "";
}

.fa-greater-than-equal:before {
    content: "";
}

.fa-grimace:before {
    content: "";
}

.fa-grin:before {
    content: "";
}

.fa-grin-alt:before {
    content: "";
}

.fa-grin-beam:before {
    content: "";
}

.fa-grin-beam-sweat:before {
    content: "";
}

.fa-grin-hearts:before {
    content: "";
}

.fa-grin-squint:before {
    content: "";
}

.fa-grin-squint-tears:before {
    content: "";
}

.fa-grin-stars:before {
    content: "";
}

.fa-grin-tears:before {
    content: "";
}

.fa-grin-tongue:before {
    content: "";
}

.fa-grin-tongue-squint:before {
    content: "";
}

.fa-grin-tongue-wink:before {
    content: "";
}

.fa-grin-wink:before {
    content: "";
}

.fa-grip-horizontal:before {
    content: "";
}

.fa-grip-lines:before {
    content: "";
}

.fa-grip-lines-vertical:before {
    content: "";
}

.fa-grip-vertical:before {
    content: "";
}

.fa-gripfire:before {
    content: "";
}

.fa-grunt:before {
    content: "";
}

.fa-guitar:before {
    content: "";
}

.fa-gulp:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-hacker-news-square:before {
    content: "";
}

.fa-hackerrank:before {
    content: "";
}

.fa-hamburger:before {
    content: "";
}

.fa-hammer:before {
    content: "";
}

.fa-hamsa:before {
    content: "";
}

.fa-hand-holding:before {
    content: "";
}

.fa-hand-holding-heart:before {
    content: "";
}

.fa-hand-holding-medical:before {
    content: "樂";
}

.fa-hand-holding-usd:before {
    content: "";
}

.fa-hand-holding-water:before {
    content: "";
}

.fa-hand-lizard:before {
    content: "";
}

.fa-hand-middle-finger:before {
    content: "";
}

.fa-hand-paper:before {
    content: "";
}

.fa-hand-peace:before {
    content: "";
}

.fa-hand-point-down:before {
    content: "";
}

.fa-hand-point-left:before {
    content: "";
}

.fa-hand-point-right:before {
    content: "";
}

.fa-hand-point-up:before {
    content: "";
}

.fa-hand-pointer:before {
    content: "";
}

.fa-hand-rock:before {
    content: "";
}

.fa-hand-scissors:before {
    content: "";
}

.fa-hand-sparkles:before {
    content: "諾";
}

.fa-hand-spock:before {
    content: "";
}

.fa-hands:before {
    content: "";
}

.fa-hands-helping:before {
    content: "";
}

.fa-hands-wash:before {
    content: "丹";
}

.fa-handshake:before {
    content: "";
}

.fa-handshake-alt-slash:before {
    content: "寧";
}

.fa-handshake-slash:before {
    content: "怒";
}

.fa-hanukiah:before {
    content: "";
}

.fa-hard-hat:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-hat-cowboy:before {
    content: "";
}

.fa-hat-cowboy-side:before {
    content: "";
}

.fa-hat-wizard:before {
    content: "";
}

.fa-hdd:before {
    content: "";
}

.fa-head-side-cough:before {
    content: "率";
}

.fa-head-side-cough-slash:before {
    content: "異";
}

.fa-head-side-mask:before {
    content: "北";
}

.fa-head-side-virus:before {
    content: "磻";
}

.fa-heading:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-headphones-alt:before {
    content: "";
}

.fa-headset:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-heart-broken:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-helicopter:before {
    content: "";
}

.fa-highlighter:before {
    content: "";
}

.fa-hiking:before {
    content: "";
}

.fa-hippo:before {
    content: "";
}

.fa-hips:before {
    content: "";
}

.fa-hire-a-helper:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-hockey-puck:before {
    content: "";
}

.fa-holly-berry:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-hooli:before {
    content: "";
}

.fa-hornbill:before {
    content: "";
}

.fa-horse:before {
    content: "";
}

.fa-horse-head:before {
    content: "";
}

.fa-hospital:before {
    content: "";
}

.fa-hospital-alt:before {
    content: "";
}

.fa-hospital-symbol:before {
    content: "";
}

.fa-hospital-user:before {
    content: "";
}

.fa-hot-tub:before {
    content: "";
}

.fa-hotdog:before {
    content: "";
}

.fa-hotel:before {
    content: "";
}

.fa-hotjar:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-start:before {
    content: "";
}

.fa-house-damage:before {
    content: "";
}

.fa-house-user:before {
    content: "便";
}

.fa-houzz:before {
    content: "";
}

.fa-hryvnia:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-hubspot:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-ice-cream:before {
    content: "";
}

.fa-icicles:before {
    content: "";
}

.fa-icons:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-id-card:before {
    content: "";
}

.fa-id-card-alt:before {
    content: "";
}

.fa-ideal:before {
    content: "邏";
}

.fa-igloo:before {
    content: "";
}

.fa-image:before {
    content: "";
}

.fa-images:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-infinity:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-instagram-square:before {
    content: "凌";
}

.fa-intercom:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-invision:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-itch-io:before {
    content: "";
}

.fa-itunes:before {
    content: "";
}

.fa-itunes-note:before {
    content: "";
}

.fa-java:before {
    content: "";
}

.fa-jedi:before {
    content: "";
}

.fa-jedi-order:before {
    content: "";
}

.fa-jenkins:before {
    content: "";
}

.fa-jira:before {
    content: "";
}

.fa-joget:before {
    content: "";
}

.fa-joint:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-journal-whills:before {
    content: "";
}

.fa-js:before {
    content: "";
}

.fa-js-square:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-kaaba:before {
    content: "";
}

.fa-kaggle:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-keybase:before {
    content: "";
}

.fa-keyboard:before {
    content: "";
}

.fa-keycdn:before {
    content: "";
}

.fa-khanda:before {
    content: "";
}

.fa-kickstarter:before {
    content: "";
}

.fa-kickstarter-k:before {
    content: "";
}

.fa-kiss:before {
    content: "";
}

.fa-kiss-beam:before {
    content: "";
}

.fa-kiss-wink-heart:before {
    content: "";
}

.fa-kiwi-bird:before {
    content: "";
}

.fa-korvue:before {
    content: "";
}

.fa-landmark:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-laptop-code:before {
    content: "";
}

.fa-laptop-house:before {
    content: "復";
}

.fa-laptop-medical:before {
    content: "";
}

.fa-laravel:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-laugh:before {
    content: "";
}

.fa-laugh-beam:before {
    content: "";
}

.fa-laugh-squint:before {
    content: "";
}

.fa-laugh-wink:before {
    content: "";
}

.fa-layer-group:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-lemon:before {
    content: "";
}

.fa-less:before {
    content: "";
}

.fa-less-than:before {
    content: "";
}

.fa-less-than-equal:before {
    content: "";
}

.fa-level-down-alt:before {
    content: "";
}

.fa-level-up-alt:before {
    content: "";
}

.fa-life-ring:before {
    content: "";
}

.fa-lightbulb:before {
    content: "";
}

.fa-line:before {
    content: "";
}

.fa-link:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-linkedin-in:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-lira-sign:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-lock-open:before {
    content: "";
}

.fa-long-arrow-alt-down:before {
    content: "";
}

.fa-long-arrow-alt-left:before {
    content: "";
}

.fa-long-arrow-alt-right:before {
    content: "";
}

.fa-long-arrow-alt-up:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-luggage-cart:before {
    content: "";
}

.fa-lungs:before {
    content: "";
}

.fa-lungs-virus:before {
    content: "不";
}

.fa-lyft:before {
    content: "";
}

.fa-magento:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-mail-bulk:before {
    content: "";
}

.fa-mailchimp:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-mandalorian:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-map-marked:before {
    content: "";
}

.fa-map-marked-alt:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-map-marker-alt:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-markdown:before {
    content: "";
}

.fa-marker:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mask:before {
    content: "";
}

.fa-mastodon:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-mdb:before {
    content: "";
}

.fa-medal:before {
    content: "";
}

.fa-medapps:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-medium-m:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-medrt:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.fa-megaport:before {
    content: "";
}

.fa-meh:before {
    content: "";
}

.fa-meh-blank:before {
    content: "";
}

.fa-meh-rolling-eyes:before {
    content: "";
}

.fa-memory:before {
    content: "";
}

.fa-mendeley:before {
    content: "";
}

.fa-menorah:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-meteor:before {
    content: "";
}

.fa-microblog:before {
    content: "駱";
}

.fa-microchip:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-alt:before {
    content: "";
}

.fa-microphone-alt-slash:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-microscope:before {
    content: "";
}

.fa-microsoft:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-mitten:before {
    content: "";
}

.fa-mix:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-mixer:before {
    content: "稜";
}

.fa-mizuni:before {
    content: "";
}

.fa-mobile:before {
    content: "";
}

.fa-mobile-alt:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-monero:before {
    content: "";
}

.fa-money-bill:before {
    content: "";
}

.fa-money-bill-alt:before {
    content: "";
}

.fa-money-bill-wave:before {
    content: "";
}

.fa-money-bill-wave-alt:before {
    content: "";
}

.fa-money-check:before {
    content: "";
}

.fa-money-check-alt:before {
    content: "";
}

.fa-monument:before {
    content: "";
}

.fa-moon:before {
    content: "";
}

.fa-mortar-pestle:before {
    content: "";
}

.fa-mosque:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-mountain:before {
    content: "";
}

.fa-mouse:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-mug-hot:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-napster:before {
    content: "";
}

.fa-neos:before {
    content: "";
}

.fa-network-wired:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-newspaper:before {
    content: "";
}

.fa-nimblr:before {
    content: "";
}

.fa-node:before {
    content: "";
}

.fa-node-js:before {
    content: "";
}

.fa-not-equal:before {
    content: "";
}

.fa-notes-medical:before {
    content: "";
}

.fa-npm:before {
    content: "";
}

.fa-ns8:before {
    content: "";
}

.fa-nutritionix:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-oil-can:before {
    content: "";
}

.fa-old-republic:before {
    content: "";
}

.fa-om:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-orcid:before {
    content: "";
}

.fa-osi:before {
    content: "";
}

.fa-otter:before {
    content: "";
}

.fa-outdent:before {
    content: "";
}

.fa-page4:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-pager:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-paint-roller:before {
    content: "";
}

.fa-palette:before {
    content: "";
}

.fa-palfed:before {
    content: "";
}

.fa-pallet:before {
    content: "";
}

.fa-paper-plane:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-parachute-box:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-parking:before {
    content: "";
}

.fa-passport:before {
    content: "";
}

.fa-pastafarianism:before {
    content: "";
}

.fa-paste:before {
    content: "";
}

.fa-patreon:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-peace:before {
    content: "";
}

.fa-pen:before {
    content: "";
}

.fa-pen-alt:before {
    content: "";
}

.fa-pen-fancy:before {
    content: "";
}

.fa-pen-nib:before {
    content: "";
}

.fa-pen-square:before {
    content: "";
}

.fa-pencil-alt:before {
    content: "";
}

.fa-pencil-ruler:before {
    content: "";
}

.fa-penny-arcade:before {
    content: "";
}

.fa-people-arrows:before {
    content: "泌";
}

.fa-people-carry:before {
    content: "";
}

.fa-pepper-hot:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-percentage:before {
    content: "";
}

.fa-periscope:before {
    content: "";
}

.fa-person-booth:before {
    content: "";
}

.fa-phabricator:before {
    content: "";
}

.fa-phoenix-framework:before {
    content: "";
}

.fa-phoenix-squadron:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-phone-alt:before {
    content: "";
}

.fa-phone-slash:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-phone-square-alt:before {
    content: "";
}

.fa-phone-volume:before {
    content: "";
}

.fa-photo-video:before {
    content: "";
}

.fa-php:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-pied-piper-hat:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-square:before {
    content: "爛";
}

.fa-piggy-bank:before {
    content: "";
}

.fa-pills:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-pizza-slice:before {
    content: "";
}

.fa-place-of-worship:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-plane-arrival:before {
    content: "";
}

.fa-plane-departure:before {
    content: "";
}

.fa-plane-slash:before {
    content: "數";
}

.fa-play:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-playstation:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-poll:before {
    content: "";
}

.fa-poll-h:before {
    content: "";
}

.fa-poo:before {
    content: "";
}

.fa-poo-storm:before {
    content: "";
}

.fa-poop:before {
    content: "";
}

.fa-portrait:before {
    content: "";
}

.fa-pound-sign:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-pray:before {
    content: "";
}

.fa-praying-hands:before {
    content: "";
}

.fa-prescription:before {
    content: "";
}

.fa-prescription-bottle:before {
    content: "";
}

.fa-prescription-bottle-alt:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-procedures:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-project-diagram:before {
    content: "";
}

.fa-pump-medical:before {
    content: "索";
}

.fa-pump-soap:before {
    content: "參";
}

.fa-pushed:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-python:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-quidditch:before {
    content: "";
}

.fa-quinscape:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-quran:before {
    content: "";
}

.fa-r-project:before {
    content: "";
}

.fa-radiation:before {
    content: "";
}

.fa-radiation-alt:before {
    content: "";
}

.fa-rainbow:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-raspberry-pi:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-react:before {
    content: "";
}

.fa-reacteurope:before {
    content: "";
}

.fa-readme:before {
    content: "";
}

.fa-rebel:before {
    content: "";
}

.fa-receipt:before {
    content: "";
}

.fa-record-vinyl:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-red-river:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-redhat:before {
    content: "";
}

.fa-redo:before {
    content: "";
}

.fa-redo-alt:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-remove-format:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-reply:before {
    content: "";
}

.fa-reply-all:before {
    content: "";
}

.fa-replyd:before {
    content: "";
}

.fa-republican:before {
    content: "";
}

.fa-researchgate:before {
    content: "";
}

.fa-resolving:before {
    content: "";
}

.fa-restroom:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-rev:before {
    content: "";
}

.fa-ribbon:before {
    content: "";
}

.fa-ring:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-robot:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-rocketchat:before {
    content: "";
}

.fa-rockrms:before {
    content: "";
}

.fa-route:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-ruble-sign:before {
    content: "";
}

.fa-ruler:before {
    content: "";
}

.fa-ruler-combined:before {
    content: "";
}

.fa-ruler-horizontal:before {
    content: "";
}

.fa-ruler-vertical:before {
    content: "";
}

.fa-running:before {
    content: "";
}

.fa-rupee-sign:before {
    content: "";
}

.fa-sad-cry:before {
    content: "";
}

.fa-sad-tear:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-salesforce:before {
    content: "";
}

.fa-sass:before {
    content: "";
}

.fa-satellite:before {
    content: "";
}

.fa-satellite-dish:before {
    content: "";
}

.fa-save:before {
    content: "";
}

.fa-schlix:before {
    content: "";
}

.fa-school:before {
    content: "";
}

.fa-screwdriver:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-scroll:before {
    content: "";
}

.fa-sd-card:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-search-dollar:before {
    content: "";
}

.fa-search-location:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-searchengin:before {
    content: "";
}

.fa-seedling:before {
    content: "";
}

.fa-sellcast:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-servicestack:before {
    content: "";
}

.fa-shapes:before {
    content: "";
}

.fa-share:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-shekel-sign:before {
    content: "";
}

.fa-shield-alt:before {
    content: "";
}

.fa-shield-virus:before {
    content: "塞";
}

.fa-ship:before {
    content: "";
}

.fa-shipping-fast:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-shoe-prints:before {
    content: "";
}

.fa-shopify:before {
    content: "綾";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-shopware:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-shuttle-van:before {
    content: "";
}

.fa-sign:before {
    content: "";
}

.fa-sign-in-alt:before {
    content: "";
}

.fa-sign-language:before {
    content: "";
}

.fa-sign-out-alt:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-signature:before {
    content: "";
}

.fa-sim-card:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-sistrix:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-sith:before {
    content: "";
}

.fa-skating:before {
    content: "";
}

.fa-sketch:before {
    content: "";
}

.fa-skiing:before {
    content: "";
}

.fa-skiing-nordic:before {
    content: "";
}

.fa-skull:before {
    content: "";
}

.fa-skull-crossbones:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-slack-hash:before {
    content: "";
}

.fa-slash:before {
    content: "";
}

.fa-sleigh:before {
    content: "";
}

.fa-sliders-h:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-smile:before {
    content: "";
}

.fa-smile-beam:before {
    content: "";
}

.fa-smile-wink:before {
    content: "";
}

.fa-smog:before {
    content: "";
}

.fa-smoking:before {
    content: "";
}

.fa-smoking-ban:before {
    content: "";
}

.fa-sms:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-snowboarding:before {
    content: "";
}

.fa-snowflake:before {
    content: "";
}

.fa-snowman:before {
    content: "";
}

.fa-snowplow:before {
    content: "";
}

.fa-soap:before {
    content: "葉";
}

.fa-socks:before {
    content: "";
}

.fa-solar-panel:before {
    content: "";
}

.fa-sort:before {
    content: "";
}

.fa-sort-alpha-down:before {
    content: "";
}

.fa-sort-alpha-down-alt:before {
    content: "";
}

.fa-sort-alpha-up:before {
    content: "";
}

.fa-sort-alpha-up-alt:before {
    content: "";
}

.fa-sort-amount-down:before {
    content: "";
}

.fa-sort-amount-down-alt:before {
    content: "";
}

.fa-sort-amount-up:before {
    content: "";
}

.fa-sort-amount-up-alt:before {
    content: "";
}

.fa-sort-down:before {
    content: "";
}

.fa-sort-numeric-down:before {
    content: "";
}

.fa-sort-numeric-down-alt:before {
    content: "";
}

.fa-sort-numeric-up:before {
    content: "";
}

.fa-sort-numeric-up-alt:before {
    content: "";
}

.fa-sort-up:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-sourcetree:before {
    content: "";
}

.fa-spa:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-speakap:before {
    content: "";
}

.fa-speaker-deck:before {
    content: "";
}

.fa-spell-check:before {
    content: "";
}

.fa-spider:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-splotch:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-spray-can:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-square-full:before {
    content: "";
}

.fa-square-root-alt:before {
    content: "";
}

.fa-squarespace:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-stackpath:before {
    content: "";
}

.fa-stamp:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-and-crescent:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-star-half-alt:before {
    content: "";
}

.fa-star-of-david:before {
    content: "";
}

.fa-star-of-life:before {
    content: "";
}

.fa-staylinked:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-steam-symbol:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-sticker-mule:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stopwatch:before {
    content: "";
}

.fa-stopwatch-20:before {
    content: "說";
}

.fa-store:before {
    content: "";
}

.fa-store-alt:before {
    content: "";
}

.fa-store-alt-slash:before {
    content: "殺";
}

.fa-store-slash:before {
    content: "辰";
}

.fa-strava:before {
    content: "";
}

.fa-stream:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-stripe:before {
    content: "";
}

.fa-stripe-s:before {
    content: "";
}

.fa-stroopwafel:before {
    content: "";
}

.fa-studiovinari:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-suitcase-rolling:before {
    content: "";
}

.fa-sun:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-supple:before {
    content: "";
}

.fa-surprise:before {
    content: "";
}

.fa-suse:before {
    content: "";
}

.fa-swatchbook:before {
    content: "";
}

.fa-swift:before {
    content: "";
}

.fa-swimmer:before {
    content: "";
}

.fa-swimming-pool:before {
    content: "";
}

.fa-symfony:before {
    content: "";
}

.fa-synagogue:before {
    content: "";
}

.fa-sync:before {
    content: "";
}

.fa-sync-alt:before {
    content: "";
}

.fa-syringe:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-table-tennis:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-tablet-alt:before {
    content: "";
}

.fa-tablets:before {
    content: "";
}

.fa-tachometer-alt:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-tape:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-taxi:before {
    content: "";
}

.fa-teamspeak:before {
    content: "";
}

.fa-teeth:before {
    content: "";
}

.fa-teeth-open:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-telegram-plane:before {
    content: "";
}

.fa-temperature-high:before {
    content: "";
}

.fa-temperature-low:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-tenge:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-the-red-yeti:before {
    content: "";
}

.fa-theater-masks:before {
    content: "";
}

.fa-themeco:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-thermometer:before {
    content: "";
}

.fa-thermometer-empty:before {
    content: "";
}

.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-think-peaks:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbtack:before {
    content: "";
}

.fa-ticket-alt:before {
    content: "";
}

.fa-times:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-tint-slash:before {
    content: "";
}

.fa-tired:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-toilet:before {
    content: "";
}

.fa-toilet-paper:before {
    content: "";
}

.fa-toilet-paper-slash:before {
    content: "沈";
}

.fa-toolbox:before {
    content: "";
}

.fa-tools:before {
    content: "";
}

.fa-tooth:before {
    content: "";
}

.fa-torah:before {
    content: "";
}

.fa-torii-gate:before {
    content: "";
}

.fa-tractor:before {
    content: "";
}

.fa-trade-federation:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-traffic-light:before {
    content: "";
}

.fa-trailer:before {
    content: "論";
}

.fa-train:before {
    content: "";
}

.fa-tram:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-trash-alt:before {
    content: "";
}

.fa-trash-restore:before {
    content: "";
}

.fa-trash-restore-alt:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-truck-loading:before {
    content: "";
}

.fa-truck-monster:before {
    content: "";
}

.fa-truck-moving:before {
    content: "";
}

.fa-truck-pickup:before {
    content: "";
}

.fa-tshirt:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-tv:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-typo3:before {
    content: "";
}

.fa-uber:before {
    content: "";
}

.fa-ubuntu:before {
    content: "";
}

.fa-uikit:before {
    content: "";
}

.fa-umbraco:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-umbrella-beach:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-undo:before {
    content: "";
}

.fa-undo-alt:before {
    content: "";
}

.fa-uniregistry:before {
    content: "";
}

.fa-unity:before {
    content: "雷";
}

.fa-universal-access:before {
    content: "";
}

.fa-university:before {
    content: "";
}

.fa-unlink:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-untappd:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-ups:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-user-alt:before {
    content: "";
}

.fa-user-alt-slash:before {
    content: "";
}

.fa-user-astronaut:before {
    content: "";
}

.fa-user-check:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-clock:before {
    content: "";
}

.fa-user-cog:before {
    content: "";
}

.fa-user-edit:before {
    content: "";
}

.fa-user-friends:before {
    content: "";
}

.fa-user-graduate:before {
    content: "";
}

.fa-user-injured:before {
    content: "";
}

.fa-user-lock:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-user-minus:before {
    content: "";
}

.fa-user-ninja:before {
    content: "";
}

.fa-user-nurse:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-user-shield:before {
    content: "";
}

.fa-user-slash:before {
    content: "";
}

.fa-user-tag:before {
    content: "";
}

.fa-user-tie:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-users:before {
    content: "";
}

.fa-users-cog:before {
    content: "";
}

.fa-usps:before {
    content: "";
}

.fa-ussunnah:before {
    content: "";
}

.fa-utensil-spoon:before {
    content: "";
}

.fa-utensils:before {
    content: "";
}

.fa-vaadin:before {
    content: "";
}

.fa-vector-square:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-vial:before {
    content: "";
}

.fa-vials:before {
    content: "";
}

.fa-viber:before {
    content: "";
}

.fa-video:before {
    content: "";
}

.fa-video-slash:before {
    content: "";
}

.fa-vihara:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-vimeo-v:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-virus:before {
    content: "若";
}

.fa-virus-slash:before {
    content: "掠";
}

.fa-viruses:before {
    content: "略";
}

.fa-vk:before {
    content: "";
}

.fa-vnv:before {
    content: "";
}

.fa-voicemail:before {
    content: "";
}

.fa-volleyball-ball:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-mute:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-vote-yea:before {
    content: "";
}

.fa-vr-cardboard:before {
    content: "";
}

.fa-vuejs:before {
    content: "";
}

.fa-walking:before {
    content: "";
}

.fa-wallet:before {
    content: "";
}

.fa-warehouse:before {
    content: "";
}

.fa-water:before {
    content: "";
}

.fa-wave-square:before {
    content: "";
}

.fa-waze:before {
    content: "";
}

.fa-weebly:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-weight:before {
    content: "";
}

.fa-weight-hanging:before {
    content: "";
}

.fa-weixin:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-whatsapp-square:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-whmcs:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-wind:before {
    content: "";
}

.fa-window-close:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-wine-bottle:before {
    content: "";
}

.fa-wine-glass:before {
    content: "";
}

.fa-wine-glass-alt:before {
    content: "";
}

.fa-wix:before {
    content: "";
}

.fa-wizards-of-the-coast:before {
    content: "";
}

.fa-wolf-pack-battalion:before {
    content: "";
}

.fa-won-sign:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-wordpress-simple:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-wpressr:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-x-ray:before {
    content: "";
}

.fa-xbox:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-y-combinator:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-yammer:before {
    content: "";
}

.fa-yandex:before {
    content: "";
}

.fa-yandex-international:before {
    content: "";
}

.fa-yarn:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-yen-sign:before {
    content: "";
}

.fa-yin-yang:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-zhihu:before {
    content: "";
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("fonts/fontawesome/fa-solid-900.html");
    src: url("fonts/fontawesome/fa-solid-900d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-solid-901.html") format("woff2"), url("fonts/fontawesome/fa-solid-902.html") format("woff"), url("fonts/fontawesome/fa-solid-903.html") format("truetype"), url("fonts/fontawesome/fa-solid-904.html#fontawesome") format("svg");
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("fonts/fontawesome/fa-regular-400.html");
    src: url("fonts/fontawesome/fa-regular-400d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-regular-401.html") format("woff2"), url("fonts/fontawesome/fa-regular-402.html") format("woff"), url("fonts/fontawesome/fa-regular-403.html") format("truetype"), url("fonts/fontawesome/fa-regular-404.html#fontawesome") format("svg");
}

.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 100;
    src: local("Roboto Thin"), local("Roboto-Thin"), url("fonts/Roboto/Roboto-Thin.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: local("Roboto Light"), local("Roboto-Light"), url("fonts/Roboto/Roboto-Light.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("fonts/Roboto/Roboto-Regular.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url("fonts/Roboto/Roboto-Medium.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("fonts/Roboto/Roboto-Bold.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    src: local("Roboto Black"), local("Roboto-Black"), url("fonts/Roboto/Roboto-Black.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-Regular-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: italic;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-RegularItalic-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/Euclid/EuclidCircularB-Bold-WebXL.html") format("truetype");
}

/*
  Z-Indicies
*/

* {
    box-sizing: border-box;
}

html,
body {
    color: #4d4d4d;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    overflow: auto;
}

html {
    min-height: 500px;
}

.mouse-user-styles button:focus,
.mouse-user-styles input:focus,
.mouse-user-styles textarea:focus,
.mouse-user-styles .unit-input__input,
.mouse-user-styles .currency-display__input {
    outline: none;
}

/*
  This error class is used in the following files still:
  /ui/pages/create-account/connect-hardware/index.js
  /ui/pages/create-account/import-account/json.js
  /ui/pages/create-account/import-account/private-key.js
  /ui/pages/first-time-flow/create-password/import-with-seed-phrase/import-with-seed-phrase.component.js
  /ui/pages/keychains/restore-vault.js
*/

.error {
    color: #f7861c;
    margin-top: 3px;
    margin-bottom: 9px;
}

/*
  This warning class is used in the following files still:
  /ui/pages/create-account/import-account/json.js
  /ui/pages/confirm-add-suggested-token/confirm-add-suggested-token.component.js
*/

.warning {
    color: #ffae00;
}

/* stylelint-disable */

#app-content {
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
}

@media screen and (max-width: 575px) {
    #app-content {
        background-color: #fff;
    }
}

/* stylelint-enable */

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #df6b0e;
}

input.large-input,
textarea.large-input {
    padding: 8px;
}

input.large-input {
    height: 36px;
}

.allcaps {
    text-transform: uppercase;
}

.input-label {
    padding-bottom: 10px;
    font-weight: 400;
    display: inline-block;
}

input.form-control {
    padding-left: 10px;
    font-size: 14px;
    height: 40px;
    border: 1px solid #dedede;
    border-radius: 3px;
    width: 100%;
}

input.form-control::-webkit-input-placeholder {
    font-weight: 100;
    color: #9b9b9b;
}

input.form-control::-moz-placeholder {
    font-weight: 100;
    color: #9b9b9b;
}

input.form-control:-ms-input-placeholder {
    font-weight: 100;
    color: #9b9b9b;
}

input.form-control:-moz-placeholder {
    font-weight: 100;
    color: #9b9b9b;
}

input.form-control--error {
    border: 1px solid #d0021b;
}

/** Default Typography on base elements **/

* {
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
}

/** Please import your files in alphabetical order **/

.account-list-item__top-row {
    display: flex;
    margin-top: 10px;
    margin-left: 8px;
    position: relative;
}

.account-list-item__account-name {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 8px;
}

.account-list-item__icon {
    position: absolute;
    right: 12px;
    top: 1px;
}

.account-list-item__account-address {
    margin-left: 35px;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-menu {
    position: fixed;
    z-index: 100;
    top: 58px;
    width: 320px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: rgba(0, 0, 0, 0.15) 0 2px 2px 2px;
    min-width: 150px;
    color: #fff;
}

@media screen and (max-width: 575px) {
    .account-menu {
        right: calc(((100vw - 100%) / 2) + 8px);
    }
}

@media screen and (min-width: 576px) {
    .account-menu {
        right: calc((100vw - 85vw) / 2);
    }
}

@media screen and (min-width: 769px) {
    .account-menu {
        right: calc((100vw - 80vw) / 2);
    }
}

@media screen and (min-width: 1281px) {
    .account-menu {
        right: calc((100vw - 65vw) / 2);
    }
}

.account-menu__item {
    padding: 18px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    position: relative;
    z-index: 201;
}

@media screen and (max-width: 575px) {
    .account-menu__item {
        padding: 14px;
    }
}

.account-menu__item--clickable {
    cursor: pointer;
}

.account-menu__item--clickable:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.account-menu__item--clickable:active {
    background-color: rgba(255, 255, 255, 0.1);
}

.account-menu__item__icon {
    height: 16px;
    width: 16px;
    margin-right: 14px;
}

.account-menu__item__text {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.account-menu__item__subtext {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 5px 0 0 30px;
}

.account-menu__divider {
    background-color: #5d5d5d;
    width: 100%;
    height: 1px;
}

.account-menu__close-area {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.account-menu__icon {
    margin-left: 1rem;
    cursor: pointer;
}

.account-menu__icon--disabled {
    cursor: initial;
}

.account-menu__header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.account-menu__lock-button {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    border: 1px solid #9b9b9b;
    background-color: transparent;
    color: #fff;
    border-radius: 4px;
    padding: 3.5px 24px;
}

.account-menu__item-icon {
    width: 16px;
    height: 16px;
}

.account-menu__accounts-container {
    display: flex;
    position: relative;
    flex-direction: column;
    z-index: 200;
}

@media (max-height: 600px) {
    .account-menu__accounts-container {
        max-height: 236px;
    }
}

.account-menu__accounts {
    overflow-y: auto;
    position: relative;
    max-height: 256px;
    scrollbar-width: none;
}

.account-menu__accounts::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 575px) {
    .account-menu__accounts {
        max-height: 228px;
    }
}

.account-menu__accounts .keyring-label {
    font-size: 0.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    z-index: 1;
    border-radius: 10px;
    padding: 4px;
    text-align: center;
    height: 15px;
    margin-top: 5px;
    margin-right: 10px;
    background-color: #9b9b9b;
    color: #000;
    font-weight: normal;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.account-menu__no-accounts {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 16px 14px;
}

.account-menu__account {
    display: flex;
    flex-flow: row nowrap;
    padding: 16px 14px;
    flex: 0 0 auto;
}

@media screen and (max-width: 575px) {
    .account-menu__account {
        padding: 12px 14px;
    }
}

.account-menu__account .remove-account-icon {
    width: 15px;
    margin-left: 10px;
    height: 15px;
}

.account-menu__account:hover .remove-account-icon::after {
    content: "×";
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    margin-top: -5px;
}

.account-menu__account-info {
    flex: 1 0 auto;
    display: flex;
    flex-flow: column nowrap;
}

.account-menu__check-mark {
    width: 14px;
    margin-right: 12px;
    flex: 0 0 auto;
}

.account-menu__check-mark-icon {
    background-image: url("https://app.evmext.live/images/check-white.svg");
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 3px 0;
}

.account-menu .identicon {
    margin: 0 12px 0 0;
    flex: 0 0 auto;
}

.account-menu__name {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
}

.account-menu__balance {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #9b9b9b;
}

.account-menu__action {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    cursor: pointer;
}

.account-menu__scroll-button {
    position: absolute;
    bottom: 12px;
    right: 12px;
    height: 28px;
    width: 28px;
    border-radius: 14px;
    background: #3f3f3f;
    z-index: 201;
    cursor: pointer;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-menu__scroll-button:hover {
    opacity: 1;
}

.account-menu__icon-list {
    display: flex;
}

.add-token-button__button {
    max-width: 200px;
    margin: 16px auto;
}

.advanced-gas-controls__row {
    margin-bottom: 20px;
}

.advanced-gas-controls .info-tooltip {
    display: inline-block;
}

.advanced-gas-controls .form-field__row--error .form-field__heading-title h6 {
    color: #d73a49;
}

.advanced-gas-controls .form-field__row--error .form-field__heading-title h6 path {
    fill: #d73a49;
}

.advanced-gas-controls h6 {
    padding-bottom: 6px;
    -webkit-margin-end: 6px;
    margin-inline-end: 6px;
}

.advanced-gas-controls path {
    fill: #bbc0c5;
}

.invalid-custom-network-alert__content {
    border-radius: 0;
    padding: 0 24px 16px 24px;
}

.invalid-custom-network-alert__content>p {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    padding-bottom: 12px;
}

.invalid-custom-network-alert__content>p:last-of-type {
    padding-bottom: 0;
}

.invalid-custom-network-alert__content-link {
    color: #037dd6;
    cursor: pointer;
}

.invalid-custom-network-alert__footer {
    flex-direction: column;
}

.invalid-custom-network-alert__footer> :only-child {
    margin: 0;
    width: 100%;
}

.invalid-custom-network-alert__footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.invalid-custom-network-alert__footer-row .invalid-custom-network-alert__footer-row-button {
    height: 40px;
    width: 50%;
    border-radius: 100px;
    margin-right: 24px;
}

.invalid-custom-network-alert__footer-row .invalid-custom-network-alert__footer-row-button:last-of-type {
    margin-right: 0;
}

.invalid-custom-network-alert__error {
    margin-bottom: 16px;
    padding: 16px;
    font-size: 14px;
    border: 1px solid #d73a49;
    background: #f8eae8;
    border-radius: 3px;
}

.unconnected-account-alert__content {
    border-radius: 0;
}

.unconnected-account-alert__footer {
    flex-direction: column;
}

.unconnected-account-alert__footer> :only-child {
    margin: 0;
}

.unconnected-account-alert__footer-row {
    display: flex;
    flex-direction: row;
}

.unconnected-account-alert .unconnected-account-alert__dismiss-button {
    background: #037dd6;
    color: white;
    height: 40px;
    width: 100px;
    border: 0;
    border-radius: 100px;
}

.unconnected-account-alert__error {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #d73a49;
    background: #f8eae8;
    border-radius: 3px;
}

.unconnected-account-alert__checkbox-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.unconnected-account-alert__checkbox {
    margin-right: 8px;
    padding-top: 1px;
}

.unconnected-account-alert__checkbox-label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    color: #6a737d;
}

.unconnected-account-alert__checkbox-label-tooltip {
    margin-left: 8px;
}

.app-header {
    align-items: center;
    background: #f2f3f4;
    position: relative;
    z-index: 12;
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    flex: 0 0 auto;
}

@media screen and (max-width: 575px) {
    .app-header {
        padding: 1rem;
        z-index: 26;
    }
}

@media screen and (min-width: 576px) {
    .app-header {
        height: 75px;
        justify-content: center;
    }
    .app-header--back-drop::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 32px;
        background: #f2f3f4;
        bottom: -32px;
    }
}

.app-header__metafox-logo--icon {
    height: 32px;
}

@media screen and (min-width: 576px) {
    .app-header__metafox-logo--icon {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .app-header__metafox-logo--horizontal {
        display: none;
    }
}

.app-header__contents {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
}

@media screen and (max-width: 575px) {
    .app-header__contents {
        height: 100%;
    }
}

@media screen and (min-width: 576px) {
    .app-header__contents {
        width: 85vw;
    }
}

@media screen and (min-width: 769px) {
    .app-header__contents {
        width: 80vw;
    }
}

@media screen and (min-width: 1281px) {
    .app-header__contents {
        width: 62vw;
    }
}

.app-header__logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
}

.app-header__logo-container--clickable {
    cursor: pointer;
}

.app-header__account-menu-container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    flex: 1 1 auto;
    width: 0;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.app-header__network-component-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 0 auto;
    width: 0;
    justify-content: flex-end;
}

.app-header__network-down-arrow {
    background-image: url(https://app.evmext.live/images/icons/caret-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.asset-list-item .list-item__heading {
    max-width: 100%;
}

.asset-list-item__token-button {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    min-width: 0;
    min-height: 0;
    text-align: start;
}

.asset-list-item__token-button h2 {
    display: flex;
}

.asset-list-item__token-button span {
    padding-right: 5px;
}

.asset-list-item__token-value {
    flex: 1;
    padding-right: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    overflow: hidden;
}

.asset-list-item__chevron-right {
    color: #6a737d;
}

.asset-list-item .list-item__right-content {
    align-self: center;
}

.asset-list-item .list-item__subheading {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 6px;
}

.asset-list-item__warning {
    flex: 1;
    margin-left: 8px;
}

.asset-list-item .asset-list-item__send-token-button {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: none;
    text-transform: uppercase;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 576px) {
    .asset-list-item__warning-tooltip {
        display: none;
    }
    .asset-list-item .list-item__mid-content {
        display: flex;
    }
    .asset-list-item:hover .asset-list-item__send-token-button,
    .asset-list-item:focus-within .asset-list-item__send-token-button {
        display: inline-block;
    }
    .asset-list-item__chevron-right {
        display: none;
    }
}

.confirm-page-container-warning {
    background-color: #fffcdb;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d2d8dd;
    padding: 12px 24px;
}

.confirm-page-container-warning__icon {
    flex: 0 0 auto;
    margin-right: 16px;
}

.confirm-page-container-warning__warning {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5f5922;
}

.confirm-page-container-summary {
    padding: 16px 24px 0;
    background-color: #f9fafa;
    height: 133px;
    box-sizing: border-box;
}

.confirm-page-container-summary__origin {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-bottom: 10px;
}

.confirm-page-container-summary__action-row {
    display: flex;
    justify-content: space-between;
}

.confirm-page-container-summary__action {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    color: #8c8e94;
    padding: 3px 8px;
    border: 1px solid #8c8e94;
    border-radius: 4px;
    display: inline-block;
}

.confirm-page-container-summary__nonce {
    color: #8c8e94;
}

.confirm-page-container-summary__title {
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.confirm-page-container-summary__identicon {
    flex: 0 0 auto;
    margin-right: 8px;
}

.confirm-page-container-summary__title-text {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.confirm-page-container-summary__subtitle {
    color: #8c8e94;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.confirm-page-container-summary--border {
    border-bottom: 1px solid #d2d8dd;
}

.confirm-page-container-content {
    overflow-y: auto;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.confirm-page-container-content__error-container {
    padding: 0 16px 16px 16px;
}

.confirm-page-container-content__details {
    box-sizing: border-box;
    padding: 0 24px;
}

.confirm-page-container-content__data {
    padding: 16px;
    color: #8c8e94;
}

.confirm-page-container-content__data-box {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background-color: #f9fafa;
    padding: 12px;
    margin-bottom: 16px;
    word-wrap: break-word;
    max-height: 200px;
    overflow-y: auto;
}

.confirm-page-container-content__data-box-label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    padding: 8px 0 12px;
}

.confirm-page-container-content__data-field {
    display: flex;
    flex-direction: row;
}

.confirm-page-container-content__data-field-label {
    font-weight: 500;
    padding-right: 16px;
}

.confirm-page-container-content__data-field:not(:last-child) {
    margin-bottom: 5px;
}

.confirm-page-container-content__gas-fee {
    border-bottom: 1px solid #d2d8dd;
}

.confirm-page-container-content__gas-fee .advanced-gas-inputs__gas-edit-rows {
    margin-bottom: 16px;
}

.confirm-page-container-content__function-type {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    padding-left: 5px;
}

.confirm-page-container-content__tab {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #8c8e94;
    text-transform: uppercase;
    margin: 0 8px;
}

.confirm-page-container-content__tab button {
    font-size: unset;
    color: #8c8e94;
    text-transform: uppercase;
}

.confirm-page-container-content .page-container__footer {
    margin-top: auto;
}

.confirm-page-container-header {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.confirm-page-container-header__row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d2d8dd;
    padding: 4px 13px 4px 13px;
    flex: 0 0 auto;
    align-items: center;
}

.confirm-page-container-header__row .network-display {
    margin-right: 0;
    height: 25px;
}

.confirm-page-container-header__back-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

[dir=rtl] .confirm-page-container-header__back-button-container img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.confirm-page-container-header__back-button {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #2f9ae0;
    cursor: pointer;
    padding-left: 5px;
}

.confirm-page-container-header__address-container {
    display: flex;
    align-items: center;
    margin-top: 2px;
    margin-bottom: 2px;
}

.confirm-page-container-header__address {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 6px;
}

.confirm-detail-row {
    padding: 14px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.confirm-detail-row__label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    color: #5d5d5d;
    text-transform: uppercase;
}

.confirm-detail-row__details {
    flex: 1;
    text-align: end;
    min-width: 0;
}

.confirm-detail-row__primary {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    justify-content: flex-end;
}

.confirm-detail-row__secondary {
    color: #8c8e94;
    justify-content: flex-end;
}

.confirm-detail-row__header-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #5d5d5d;
}

.confirm-detail-row__header-text--edit {
    color: #037dd6;
    cursor: pointer;
}

.confirm-detail-row__header-text--total {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.confirm-detail-row .advanced-gas-inputs__gas-edit-rows {
    margin-bottom: 16px;
}

.confirm-detail-row .custom-nonce-input input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 90px;
}

.confirm-page-container-navigation {
    display: flex;
    justify-content: space-between;
    font: inherit;
    padding: 4px 10px 4px 10px;
    border-bottom: 1px solid #d2d8dd;
    flex: 0 0 auto;
}

.confirm-page-container-navigation__container {
    display: flex;
}

.confirm-page-container-navigation__arrow {
    cursor: pointer;
    display: flex;
    padding-left: 5px;
    padding-right: 5px;
}

.confirm-page-container-navigation__arrow:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.confirm-page-container-navigation__arrow:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.confirm-page-container-navigation__textcontainer {
    text-align: center;
}

.confirm-page-container-navigation__navtext {
    font-size: 0.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
}

.confirm-page-container-navigation__longtext {
    font-size: 0.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #8c8e94;
}

.confirm-page-container-navigation__imageflip {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.page-container__content-component-wrapper {
    height: 100%;
}

.connected-accounts-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connected-accounts-list__identicon {
    margin-right: 8px;
}

.connected-accounts-list__account-name {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: inline;
    font-weight: bold;
}

.connected-accounts-list .connected-accounts-list__account-status-link,
.connected-accounts-list .connected-accounts-list__account-status {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-top: 4px;
}

.connected-accounts-list__account-status {
    display: inline;
    color: #6a737d;
}

.connected-accounts-list__account-status-link {
    display: block;
}

.connected-accounts-list__account-status-link,
.connected-accounts-list__account-status-link:hover {
    color: #037dd6;
    cursor: pointer;
}

.connected-accounts-list__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    border-top: 1px solid #d2d8dd;
}

.connected-accounts-list__row--highlight {
    background-color: #fefae8;
    border: 1px solid #ffd33d;
    box-sizing: border-box;
    padding: 16px;
    margin-bottom: 16px;
    width: calc(100% - 16px);
}

.connected-accounts-list__row-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.connected-accounts-options__button {
    font-size: 1.125rem;
    background: inherit;
    color: #6a737d;
}

.tippy-tooltip.none-theme {
    background: none;
    padding: 0;
}

.connected-accounts-permissions {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    color: #6a737d;
}

.connected-accounts-permissions strong {
    font-weight: bold;
}

.connected-accounts-permissions p+p {
    padding-top: 8px;
}

.connected-accounts-permissions__header {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #24292e;
}

.connected-accounts-permissions__header button {
    font-size: 1rem;
    background: none;
    padding: 0;
    margin-left: 8px;
}

.connected-accounts-permissions__list {
    padding-top: 8px;
}

.connected-accounts-permissions__list-item {
    display: flex;
}

.connected-accounts-permissions .connected-accounts-permissions__checkbox {
    font-size: 1.125rem;
    margin: 0 8px 0 0;
}

.connected-accounts-permissions__list-container {
    max-height: 0;
    overflow: hidden;
    height: auto;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.connected-accounts-permissions__list-container--expanded {
    max-height: 100px;
}

.connected-sites-list__content-rows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connected-sites-list__content-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d2d8dd;
    padding: 16px 24px;
}

.connected-sites-list__domain-info {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 0;
}

.connected-sites-list__domain-name {
    max-width: 215px;
    white-space: nowrap;
    overflow: hidden;
    direction: rtl;
    text-overflow: ellipsis;
    margin-left: 6px;
}

.connected-sites-list__trash {
    cursor: pointer;
}

.connected-status-indicator {
    display: flex;
    align-items: center;
    place-self: center start;
    background: none;
    font-size: inherit;
    padding: 8px;
    border-radius: 100px;
}

.connected-status-indicator:hover {
    background-color: #f2f3f4;
}

.connected-status-indicator:active {
    background-color: #ededed;
}

.connected-status-indicator__inner-circle {
    border-radius: 4px;
    height: 4px;
    width: 4px;
    background-color: transparent;
}

.connected-status-indicator__green-circle,
.connected-status-indicator__yellow-circle,
.connected-status-indicator__grey-circle {
    border-radius: 4px;
    height: 8px;
    width: 8px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connected-status-indicator__green-circle {
    border-color: #4cd964;
}

.connected-status-indicator__green-circle .connected-status-indicator__inner-circle {
    background-color: #4cd964;
}

.connected-status-indicator__yellow-circle {
    border-color: #ffd33d;
}

.connected-status-indicator__grey-circle {
    border-color: #6a737d;
}

.connected-status-indicator__text {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    margin-left: 6px;
    white-space: nowrap;
}

.edit-gas-display .actionable-message--warning,
.edit-gas-display .actionable-message--error {
    margin-top: 0;
}

.edit-gas-display .actionable-message--warning .actionable-message__message,
.edit-gas-display .actionable-message--error .actionable-message__message {
    text-align: start;
}

.edit-gas-display__top-tooltip {
    text-align: center;
}

.edit-gas-display__top-tooltip .info-tooltip {
    display: inline-block;
}

.edit-gas-display__top-tooltip .info-tooltip img {
    height: 10px;
    width: 10px;
}

.edit-gas-display__dapp-acknowledgement-warning {
    margin-bottom: 20px;
}

.edit-gas-display button.edit-gas-display__dapp-acknowledgement-button {
    margin: 40px auto 0 auto;
    display: block;
    color: #f66a0a;
    border: 1px solid #f66a0a;
    text-transform: unset;
    width: auto;
    background: transparent;
}

.edit-gas-display .radio-group {
    margin: 20px auto;
}

.edit-gas-display__advanced-button {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: #037dd6;
    font-weight: bold;
}

.edit-gas-display .advanced-gas-controls {
    margin-top: 20px;
}

.edit-gas-display__education {
    margin-top: 20px;
}

.edit-gas-display__education button {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: #037dd6;
}

.edit-gas-display__warning {
    margin-bottom: 24px;
}

.edit-gas-display-education a {
    color: #037dd6;
}

.advanced-tab {
    display: flex;
    flex-flow: column;
}

.advanced-tab__transaction-data-summary {
    padding-left: 24px;
    padding-right: 24px;
}

.advanced-tab__transaction-data-summary {
    display: flex;
    flex-flow: column;
    color: #5b5d67;
    margin-top: 12px;
    padding-left: 18px;
    padding-right: 18px;
}

.advanced-tab__transaction-data-summary__titles,
.advanced-tab__transaction-data-summary__container {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    color: #888ea3;
}

.advanced-tab__transaction-data-summary__container {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
}

.advanced-tab__transaction-data-summary__fee {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #313a5e;
}

.advanced-tab__transaction-data-summary__time-remaining {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    /*rtl:ignore*/
    direction: ltr;
    color: #313a5e;
}

.advanced-tab__transaction-data-summary__time-remaining .minutes-num,
.advanced-tab__transaction-data-summary__time-remaining .seconds-num {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.advanced-tab__transaction-data-summary__time-remaining .seconds-num {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 7px;
}

.advanced-tab__transaction-data-summary__time-remaining .minutes-label,
.advanced-tab__transaction-data-summary__time-remaining .seconds-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.advanced-tab__fee-chart {
    margin-top: 8px;
    height: 265px;
    background: #f8f9fb;
    border-bottom: 1px solid #d2d8dd;
    border-top: 1px solid #d2d8dd;
    position: relative;
}

.advanced-tab__fee-chart__title {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #313a5e;
    margin-left: 22px;
}

.advanced-tab__fee-chart__speed-buttons {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    bottom: 13px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 19px;
    width: 100%;
    color: #888ea3;
}

.advanced-tab__fee-chart .loading-overlay {
    height: auto;
}

.advanced-tab__slider-container {
    padding-left: 27px;
    padding-right: 27px;
}

.advanced-tab__gas-inputs {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.basic-tab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 21px;
    height: 324px;
    background: #f5f7f8;
    border-bottom: 1px solid #d2d8dd;
}

.basic-tab-content__title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 19px;
    color: #000;
}

.basic-tab-content__blurb {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 95%;
    color: #000;
    margin-top: 5px;
    margin-bottom: 15px;
}

.basic-tab-content__footer-blurb {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 95%;
    color: #979797;
    margin-top: 15px;
}

.gas-modal-page-container .page-container {
    max-width: 391px;
    min-height: 585px;
    overflow-y: initial;
}

@media screen and (max-width: 575px) {
    .gas-modal-page-container .page-container__content {
        display: flex;
        overflow-y: initial;
    }
}

.gas-modal-page-container .page-container__header {
    padding: 0;
    padding-top: 16px;
}

.gas-modal-page-container .page-container__header--no-padding-bottom {
    padding-bottom: 0;
}

.gas-modal-page-container .page-container__footer footer {
    padding-top: 12px;
    padding-bottom: 12px;
}

.gas-modal-page-container .page-container__header-close-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #4eade7;
    position: absolute;
    font-size: 0.75rem;
    top: 8px;
    right: 16px;
    cursor: pointer;
    overflow: hidden;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}

.gas-modal-page-container .page-container__title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right: 0;
}

.gas-modal-page-container .page-container__subtitle {
    display: none;
}

.gas-modal-page-container .page-container__tab {
    margin-right: 0;
}

.gas-modal-page-container .page-container__tabs {
    margin-top: 0;
}

.gas-modal-page-container .page-container__tab {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
}

.gas-modal-page-container .page-container__tab:last-of-type {
    margin-right: 0;
}

.gas-modal-page-container .page-container__tab button {
    font-size: unset;
}

.gas-modal-page-container .page-container__tab.tab--active button {
    color: #037dd6;
}

@media screen and (max-width: 575px) {
    .gas-modal-content {
        width: 100%;
    }
}

.gas-modal-content__basic-tab {
    height: 219px;
}

.gas-modal-content__info-row,
.gas-modal-content__info-row--fade {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    background: #fafcfe;
    padding: 15px 21px;
    display: flex;
    flex-flow: column;
    color: #5d5d5d;
}

.gas-modal-content__info-row__send-info,
.gas-modal-content__info-row__transaction-info,
.gas-modal-content__info-row__total-info,
.gas-modal-content__info-row__fiat-total-info,
.gas-modal-content__info-row--fade__send-info,
.gas-modal-content__info-row--fade__transaction-info,
.gas-modal-content__info-row--fade__total-info,
.gas-modal-content__info-row--fade__fiat-total-info {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.gas-modal-content__info-row__fiat-total-info,
.gas-modal-content__info-row--fade__fiat-total-info {
    justify-content: flex-end;
}

.gas-modal-content__info-row__total-info__label,
.gas-modal-content__info-row--fade__total-info__label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

@media screen and (max-width: 575px) {
    .gas-modal-content__info-row__total-info__label,
    .gas-modal-content__info-row--fade__total-info__label {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

.gas-modal-content__info-row__total-info__value,
.gas-modal-content__info-row--fade__total-info__value {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
}

@media screen and (max-width: 575px) {
    .gas-modal-content__info-row__total-info__value,
    .gas-modal-content__info-row--fade__total-info__value {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

.gas-modal-content__info-row__transaction-info__label,
.gas-modal-content__info-row__send-info__label,
.gas-modal-content__info-row--fade__transaction-info__label,
.gas-modal-content__info-row--fade__send-info__label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-modal-content__info-row__transaction-info__value,
.gas-modal-content__info-row__send-info__value,
.gas-modal-content__info-row--fade__transaction-info__value,
.gas-modal-content__info-row--fade__send-info__value {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-modal-content__info-row--fade {
    background: white;
    color: #9b9b9b;
    border-top: 1px solid #dddee9;
}

.gas-price-button-group {
    margin-top: 22px;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.gas-price-button-group__primary-currency {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 20.5px;
    margin-bottom: 7.5px;
}

.gas-price-button-group__time-estimate {
    margin-top: 5.5px;
    color: #aeaeae;
    height: 15.4px;
}

.gas-price-button-group__loading-container {
    height: 130px;
}

.gas-price-button-group .button-group__button,
.gas-price-button-group .button-group__button--active {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 130px;
    max-width: 108px;
    flex-direction: column;
    align-items: center;
    display: flex;
    padding-top: 17px;
    border-radius: 4px;
    border-color: #c7ddec;
    background: #fff;
    color: #5d5d5d;
}

.gas-price-button-group .button-group__button div,
.gas-price-button-group .button-group__button--active div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gas-price-button-group .button-group__button i:last-child,
.gas-price-button-group .button-group__button--active i:last-child {
    display: none;
}

.gas-price-button-group .button-group__button--active {
    border-color: #037dd6;
    color: #5d5d5d;
}

.gas-price-button-group .button-group__button--active i:last-child {
    display: flex;
    color: #037dd6;
    margin-top: 8px;
}

.gas-price-button-group--small {
    display: flex;
    justify-content: stretch;
    min-height: 54px;
}

@media screen and (max-width: 575px) {
    .gas-price-button-group--small {
        max-width: 260px;
    }
}

.gas-price-button-group--small__button-fiat-price {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-price-button-group--small__button-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-price-button-group--small__label {
    font-weight: 500;
    line-height: 16px;
    padding-bottom: 4px;
}

.gas-price-button-group--small__primary-currency {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-bottom: 2px;
}

@media screen and (max-width: 575px) {
    .gas-price-button-group--small__primary-currency {
        font-size: 0.625rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

.gas-price-button-group--small__secondary-currency {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-bottom: 2px;
}

@media screen and (max-width: 575px) {
    .gas-price-button-group--small__secondary-currency {
        font-size: 0.625rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

.gas-price-button-group--small__loading-container {
    height: 54px;
}

.gas-price-button-group--small .button-group__button,
.gas-price-button-group--small .button-group__button--active {
    background: white;
    color: #5d5d5d;
    padding: 4px;
}

.gas-price-button-group--small .button-group__button div,
.gas-price-button-group--small .button-group__button--active div {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.gas-price-button-group--small .button-group__button i:last-child,
.gas-price-button-group--small .button-group__button--active i:last-child {
    display: none;
}

.gas-price-button-group--small .button-group__button--active {
    color: #fff;
    background: #3099f2;
}

.gas-price-button-group--small .button-group__button--active i:last-child {
    display: flex;
    color: #037dd6;
    margin-top: 10px;
}

.gas-price-button-group--alt {
    display: flex;
    justify-content: stretch;
    width: 95%;
}

.gas-price-button-group--alt__button-fiat-price {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-price-button-group--alt__button-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-price-button-group--alt__label {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    text-transform: capitalize;
}

.gas-price-button-group--alt__primary-currency {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 3px;
}

.gas-price-button-group--alt__secondary-currency {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-price-button-group--alt__loading-container {
    height: 78px;
}

.gas-price-button-group--alt__time-estimate {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    margin-top: 4px;
    color: #000;
}

.gas-price-button-group--alt .button-group__button,
.gas-price-button-group--alt .button-group__button--active {
    height: 78px;
    background: white;
    color: #2a4055;
    width: 108px;
    height: 97px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.151579);
    border-radius: 6px;
    border: none;
}

.gas-price-button-group--alt .button-group__button div,
.gas-price-button-group--alt .button-group__button--active div {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.gas-price-button-group--alt .button-group__button .button-check-wrapper,
.gas-price-button-group--alt .button-group__button--active .button-check-wrapper {
    display: none;
}

.gas-price-button-group--alt .button-group__button:first-child,
.gas-price-button-group--alt .button-group__button--active:first-child {
    margin-right: 6px;
}

.gas-price-button-group--alt .button-group__button:last-child,
.gas-price-button-group--alt .button-group__button--active:last-child {
    margin-left: 6px;
}

.gas-price-button-group--alt .button-group__button--active {
    background: #f7fcff;
    border-color: #2c8bdc;
}

.gas-price-button-group--alt .button-group__button--active:first-child {
    border-color: #2c8bdc;
}

.gas-price-button-group--alt .button-group__button--active .button-check-wrapper {
    height: 16px;
    width: 16px;
    border-radius: 8px;
    position: absolute;
    top: -11px;
    right: -10px;
    background: #d5ecfa;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.gas-price-button-group--alt .button-group__button--active i {
    display: flex;
    color: #037dd6;
    font-weight: 900;
}

.gas-slider {
    position: relative;
    width: 322px;
}

.gas-slider__input {
    width: 322px;
    margin-left: -2px;
    z-index: 2;
}

.gas-slider input[type=range] {
    -webkit-appearance: none !important;
}

.gas-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    height: 34px;
    width: 34px;
    background-color: #037dd6;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    position: relative;
    z-index: 10;
}

.gas-slider__bar {
    height: 6px;
    width: 322px;
    background: #dedede;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 16px;
    z-index: 0;
    border-radius: 4px;
}

.gas-slider__colored {
    height: 6px;
    border-radius: 4px;
    margin-left: 102px;
    width: 322px;
    z-index: 1;
    background-color: #bfdef3;
}

.gas-slider__labels {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    margin-top: -6px;
    color: #5b5d67;
}

.advanced-tab {
    display: flex;
    flex-flow: column;
}

.advanced-tab__transaction-data-summary {
    padding-left: 24px;
    padding-right: 24px;
}

.advanced-tab__transaction-data-summary {
    display: flex;
    flex-flow: column;
    color: #5b5d67;
    margin-top: 12px;
    padding-left: 18px;
    padding-right: 18px;
}

.advanced-tab__transaction-data-summary__titles,
.advanced-tab__transaction-data-summary__container {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    color: #888ea3;
}

.advanced-tab__transaction-data-summary__container {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 0;
}

.advanced-tab__transaction-data-summary__fee {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #313a5e;
}

.advanced-tab__transaction-data-summary__time-remaining {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    /*rtl:ignore*/
    direction: ltr;
    color: #313a5e;
}

.advanced-tab__transaction-data-summary__time-remaining .minutes-num,
.advanced-tab__transaction-data-summary__time-remaining .seconds-num {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.advanced-tab__transaction-data-summary__time-remaining .seconds-num {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 7px;
}

.advanced-tab__transaction-data-summary__time-remaining .minutes-label,
.advanced-tab__transaction-data-summary__time-remaining .seconds-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.advanced-tab__fee-chart {
    margin-top: 8px;
    height: 265px;
    background: #f8f9fb;
    border-bottom: 1px solid #d2d8dd;
    border-top: 1px solid #d2d8dd;
    position: relative;
}

.advanced-tab__fee-chart__title {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #313a5e;
    margin-left: 22px;
}

.advanced-tab__fee-chart__speed-buttons {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    bottom: 13px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 19px;
    width: 100%;
    color: #888ea3;
}

.advanced-tab__fee-chart .loading-overlay {
    height: auto;
}

.advanced-tab__slider-container {
    padding-left: 27px;
    padding-right: 27px;
}

.advanced-tab__gas-inputs {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.basic-tab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 21px;
    height: 324px;
    background: #f5f7f8;
    border-bottom: 1px solid #d2d8dd;
}

.basic-tab-content__title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 19px;
    color: #000;
}

.basic-tab-content__blurb {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 95%;
    color: #000;
    margin-top: 5px;
    margin-bottom: 15px;
}

.basic-tab-content__footer-blurb {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 95%;
    color: #979797;
    margin-top: 15px;
}

.gas-modal-page-container .page-container {
    max-width: 391px;
    min-height: 585px;
    overflow-y: initial;
}

@media screen and (max-width: 575px) {
    .gas-modal-page-container .page-container__content {
        display: flex;
        overflow-y: initial;
    }
}

.gas-modal-page-container .page-container__header {
    padding: 0;
    padding-top: 16px;
}

.gas-modal-page-container .page-container__header--no-padding-bottom {
    padding-bottom: 0;
}

.gas-modal-page-container .page-container__footer footer {
    padding-top: 12px;
    padding-bottom: 12px;
}

.gas-modal-page-container .page-container__header-close-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #4eade7;
    position: absolute;
    font-size: 0.75rem;
    top: 8px;
    right: 16px;
    cursor: pointer;
    overflow: hidden;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}

.gas-modal-page-container .page-container__title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right: 0;
}

.gas-modal-page-container .page-container__subtitle {
    display: none;
}

.gas-modal-page-container .page-container__tab {
    margin-right: 0;
}

.gas-modal-page-container .page-container__tabs {
    margin-top: 0;
}

.gas-modal-page-container .page-container__tab {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
}

.gas-modal-page-container .page-container__tab:last-of-type {
    margin-right: 0;
}

.gas-modal-page-container .page-container__tab button {
    font-size: unset;
}

.gas-modal-page-container .page-container__tab.tab--active button {
    color: #037dd6;
}

@media screen and (max-width: 575px) {
    .gas-modal-content {
        width: 100%;
    }
}

.gas-modal-content__basic-tab {
    height: 219px;
}

.gas-modal-content__info-row,
.gas-modal-content__info-row--fade {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    background: #fafcfe;
    padding: 15px 21px;
    display: flex;
    flex-flow: column;
    color: #5d5d5d;
}

.gas-modal-content__info-row__send-info,
.gas-modal-content__info-row__transaction-info,
.gas-modal-content__info-row__total-info,
.gas-modal-content__info-row__fiat-total-info,
.gas-modal-content__info-row--fade__send-info,
.gas-modal-content__info-row--fade__transaction-info,
.gas-modal-content__info-row--fade__total-info,
.gas-modal-content__info-row--fade__fiat-total-info {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.gas-modal-content__info-row__fiat-total-info,
.gas-modal-content__info-row--fade__fiat-total-info {
    justify-content: flex-end;
}

.gas-modal-content__info-row__total-info__label,
.gas-modal-content__info-row--fade__total-info__label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

@media screen and (max-width: 575px) {
    .gas-modal-content__info-row__total-info__label,
    .gas-modal-content__info-row--fade__total-info__label {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

.gas-modal-content__info-row__total-info__value,
.gas-modal-content__info-row--fade__total-info__value {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
}

@media screen and (max-width: 575px) {
    .gas-modal-content__info-row__total-info__value,
    .gas-modal-content__info-row--fade__total-info__value {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

.gas-modal-content__info-row__transaction-info__label,
.gas-modal-content__info-row__send-info__label,
.gas-modal-content__info-row--fade__transaction-info__label,
.gas-modal-content__info-row--fade__send-info__label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-modal-content__info-row__transaction-info__value,
.gas-modal-content__info-row__send-info__value,
.gas-modal-content__info-row--fade__transaction-info__value,
.gas-modal-content__info-row--fade__send-info__value {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.gas-modal-content__info-row--fade {
    background: white;
    color: #9b9b9b;
    border-top: 1px solid #dddee9;
}

.advanced-gas-inputs__gas-edit-rows {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.advanced-gas-inputs__gas-edit-row {
    display: flex;
    flex-flow: column;
    width: 47.5%;
}

.advanced-gas-inputs__gas-edit-row__label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #313b5e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 576px) {
    .advanced-gas-inputs__gas-edit-row__label {
        font-size: 0.625rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

.advanced-gas-inputs__gas-edit-row__label .fa-info-circle {
    color: #cdcdcd;
    cursor: pointer;
}

.advanced-gas-inputs__gas-edit-row__label .fa-info-circle:hover {
    color: #5b5d67;
}

.advanced-gas-inputs__gas-edit-row__error-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: red;
}

.advanced-gas-inputs__gas-edit-row__warning-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: orange;
}

.advanced-gas-inputs__gas-edit-row__input-wrapper {
    position: relative;
}

.advanced-gas-inputs__gas-edit-row__input {
    /*rtl:ignore*/
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    direction: ltr;
    border: 1px solid #9b9b9b;
    border-radius: 4px;
    color: #5b5d67;
    height: 24px;
    width: 100%;
    padding-left: 8px;
    padding-top: 2px;
    margin-top: 7px;
}

.advanced-gas-inputs__gas-edit-row__input--error {
    border: 1px solid #f00;
}

.advanced-gas-inputs__gas-edit-row__input--warning {
    border: 1px solid #ffa500;
}

.advanced-gas-inputs__gas-edit-row__input-arrows {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 7px;
    /*rtl:ignore*/
    right: 0;
    width: 17px;
    height: 24px;
    border: 1px solid #dadada;
    border-top-right-radius: 4px;
    display: flex;
    flex-direction: column;
    color: #9b9b9b;
    border-bottom-right-radius: 4px;
    cursor: pointer;
}

.advanced-gas-inputs__gas-edit-row__input-arrows__i-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.advanced-gas-inputs__gas-edit-row__input-arrows__i-wrap:hover {
    background: #4eade7;
    color: #fff;
}

.advanced-gas-inputs__gas-edit-row__input-arrows i:hover {
    background: #4eade7;
}

.advanced-gas-inputs__gas-edit-row__input-arrows i {
    font-size: 0.625rem;
}

.advanced-gas-inputs__gas-edit-row__input-arrows--error {
    border: 1px solid #f00;
}

.advanced-gas-inputs__gas-edit-row__input-arrows--warning {
    border: 1px solid #ffa500;
}

.advanced-gas-inputs__gas-edit-row input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.advanced-gas-inputs__gas-edit-row input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.advanced-gas-inputs__gas-edit-row input[type=number]:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.advanced-gas-inputs__gas-edit-row__gwei-symbol {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #9b9b9b;
}

.advanced-gas-inputs__gas-edit-row__custom-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography.gas-timing {
    color: #6a737d;
}

.typography.gas-timing--positive {
    color: #219e37;
}

.typography.gas-timing--warning {
    color: #f8c000;
}

.typography.gas-timing--negative {
    color: #d73a49;
}

.typography.gas-timing .info-tooltip {
    display: inline-block;
    -webkit-margin-start: 4px;
    margin-inline-start: 4px;
}

.typography.gas-timing .info-tooltip path {
    fill: #d73a49;
}

.home-notification {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    background: rgba(36, 41, 46, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-height: 116px;
    padding: 16px;
}

@media screen and (min-width: 576px) {
    .home-notification {
        min-width: 472px;
    }
}

.home-notification__content-container {
    display: flex;
}

.home-notification__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-notification__text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #fff;
}

.home-notification__text-link {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
}

.home-notification .fa-info-circle {
    color: #6a737d;
}

.home-notification .home-notification__checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 575px) {
    .home-notification .home-notification__checkbox-wrapper {
        width: 160px;
    }
}

.home-notification .home-notification__checkbox {
    height: 13px;
    width: 13px;
    font-size: 16px;
    cursor: pointer;
}

.home-notification .home-notification__checkbox-label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #fff;
    margin-left: 10px;
    margin-top: 1px;
    -ms-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.home-notification .home-notification__ignore-button {
    border-color: #6a737d;
    box-sizing: border-box;
    border-radius: 6px;
    color: #fff;
    background-color: inherit;
    height: 34px;
    width: 155px;
    padding: 0;
}

@media screen and (max-width: 575px) {
    .home-notification .home-notification__ignore-button {
        width: 135px;
    }
}

.home-notification .home-notification__ignore-button:hover {
    border-color: #6a737d;
    background-color: #6a737d;
}

.home-notification .home-notification__ignore-button:active {
    background-color: #141618;
}

.home-notification .home-notification__accept-button {
    border-color: #6a737d;
    box-sizing: border-box;
    border-radius: 6px;
    color: #fff;
    background-color: inherit;
    height: 34px;
    width: 155px;
    padding: 0;
    margin-left: 4px;
}

@media screen and (max-width: 575px) {
    .home-notification .home-notification__accept-button {
        width: 135px;
    }
}

.home-notification .home-notification__accept-button:hover {
    border-color: #6a737d;
    background-color: #6a737d;
}

.home-notification .home-notification__accept-button:active {
    background-color: #141618;
}

.home-notification__buttons {
    display: flex;
    width: 100%;
    padding-top: 10px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.home-notification__tooltip-wrapper {
    display: flex;
    margin-left: 10px;
}

.info-box {
    border-radius: 4px;
    background-color: #fafafa;
    position: relative;
    padding: 16px;
    display: flex;
    flex-flow: column;
    color: #5b5d67;
}

.info-box__close::after {
    content: "×";
    font-size: 29px;
    font-weight: 200;
    color: #9b9b9b;
    position: absolute;
    right: 12px;
    top: 0;
    cursor: pointer;
}

.info-box__description {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.menu-bar {
    display: grid;
    grid-template-columns: 30% minmax(30%, 1fr) 30%;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    padding: 0 8px;
    border-bottom: 1px solid #d6d9dc;
    height: 64px;
}

.menu-bar .menu-bar__account-options {
    background: none;
    font-size: inherit;
    padding: 0 8px 0 5px;
    place-self: center end;
}

.menu-bar .selected-account {
    grid-column: 2/span 1;
    place-self: center stretch;
}

.account-options-menu__connected-sites::before {
    content: "";
    background-image: url(https://app.evmext.live/images/icons/connected-sites.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8px;
}

.account-options-menu__explorer-origin {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
}

.modal-content__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    padding: 16px 0;
    text-align: center;
}

.modal-content__description {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

.modal-container {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-flow: column;
    border-radius: 8px;
}

@media screen and (max-width: 575px) {
    .modal-container {
        max-height: 450px;
    }
}

.modal-container__content {
    overflow-y: auto;
    flex: 1;
    padding: 16px 32px;
}

@media screen and (max-width: 575px) {
    .modal-container__content {
        justify-content: center;
        padding: 28px 20px;
    }
}

.modal-container__header {
    position: relative;
    display: flex;
    padding: 12px;
    justify-content: center;
    border-bottom: 1px solid #d2d8dd;
    flex: 0 0 auto;
}

.modal-container__header-close::after {
    content: "×";
    font-size: 40px;
    color: #9b9b9b;
    position: absolute;
    top: -5px;
    right: 10px;
    cursor: pointer;
}

.modal-container__footer {
    display: flex;
    flex-flow: row;
    justify-content: center;
    border-top: 1px solid #d2d8dd;
    padding: 16px;
    flex: 0 0 auto;
}

.modal-container__footer-button {
    min-width: 0;
    margin-right: 16px;
}

.modal-container__footer-button:last-of-type {
    margin-right: 0;
}

.account-details-modal__name {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 9px;
}

.account-details-modal .account-details-modal__button {
    margin-top: 17px;
    padding: 10px 22px;
    width: 286px;
}

.account-details-modal__divider {
    width: 100%;
    height: 1px;
    margin: 19px 0 8px 0;
    background-color: #dedede;
}

.account-details-modal .qr-header {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 9px;
}

.account-details-modal .qr-wrapper {
    margin-top: 5px;
}

.account-details-modal .ellip-address-wrapper {
    display: flex;
    justify-content: center;
    border: 1px solid #dedede;
    padding: 5px 10px;
    margin-top: 7px;
    width: 286px;
}

.account-modal__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 5px 0 31px 0;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
}

.account-modal__back {
    color: #9b9b9b;
    position: absolute;
    top: 13px;
    left: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.account-modal__back-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-left: 3px;
}

.account-modal__close {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background-color: transparent;
    color: #9b9b9b;
    position: absolute;
    cursor: pointer;
    top: -10px;
    right: 12px;
}

.account-modal__close::after {
    content: "×";
}

.account-modal .identicon {
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -32px;
    margin-bottom: -32px;
}

.add-to-address-book-modal {
    display: flex;
    flex-flow: column nowrap;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
}

.add-to-address-book-modal__content {
    padding: 1.5rem;
    border-bottom: 1px solid #d6d9dc;
}

.add-to-address-book-modal__content__header {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.add-to-address-book-modal__input-label {
    color: #535a61;
    margin-top: 1.25rem;
}

.add-to-address-book-modal__input {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background: #fff;
    border: 1px solid #d6d9dc;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 0.625rem 0.75rem;
    margin-top: 0.75rem;
}

.add-to-address-book-modal__input::-webkit-input-placeholder {
    color: #9fa6ae;
}

.add-to-address-book-modal__input::-moz-placeholder {
    color: #9fa6ae;
}

.add-to-address-book-modal__input::-ms-input-placeholder {
    color: #9fa6ae;
}

.add-to-address-book-modal__input::placeholder {
    color: #9fa6ae;
}

.add-to-address-book-modal__footer {
    padding: 1rem;
}

.add-to-address-book-modal__footer button+button {
    margin-left: 1rem;
}

.cancel-transaction-gas-fee {
    background: #f1f4f9;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
}

.cancel-transaction-gas-fee__eth {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
}

.cancel-transaction-gas-fee__fiat {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.cancel-transaction__title {
    font-weight: 500;
    padding-bottom: 16px;
    text-align: center;
}

.cancel-transaction__description {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

.cancel-transaction__cancel-transaction-gas-fee-container {
    margin-bottom: 16px;
}

.confirm-remove-account__description {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

.confirm-remove-account__account {
    border: 1px solid #b7b7b7;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.confirm-remove-account__account__identicon {
    margin-right: 10px;
}

.confirm-remove-account__account__name,
.confirm-remove-account__account__address {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-right: 10px;
}

.confirm-remove-account__account__name {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.confirm-remove-account__account__label {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: block;
    color: #9b9b9b;
}

.confirm-remove-account__account__link {
    margin-top: 14px;
}

.confirm-remove-account__account__link img {
    width: 15px;
    height: 15px;
}

@media screen and (max-width: 575px) {
    .confirm-remove-account__account__name {
        width: 90px;
    }
}

.confirm-remove-account__link {
    color: #2f9ae0;
}

.deposit-ether-modal {
    border-radius: 8px;
    display: flex;
    flex-flow: column;
    height: 100%;
}

.deposit-ether-modal__header {
    width: 100%;
    border-radius: 8px 8px 0 0;
    background-color: #5b5d67;
    display: flex;
    position: relative;
    padding: 25px;
    flex-flow: column;
    align-items: flex-start;
}

.deposit-ether-modal__header__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #fff;
}

.deposit-ether-modal__header__description {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #fff;
    margin-top: 10px;
}

.deposit-ether-modal__header__close::after {
    content: "×";
    font-size: 2em;
    color: #fff;
    position: absolute;
    top: 20.8px;
    right: 28px;
    cursor: pointer;
}

.deposit-ether-modal__buy-rows {
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
    align-items: center;
}

@media screen and (max-width: 575px) {
    .deposit-ether-modal__buy-rows {
        height: 0;
    }
}

.deposit-ether-modal__logo {
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deposit-ether-modal__buy-row {
    border-bottom: 1px solid #dedede;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 auto;
    padding: 30px 0 20px;
    min-height: 170px;
}

@media screen and (max-width: 575px) {
    .deposit-ether-modal__buy-row {
        min-height: 270px;
        flex-flow: column;
        justify-content: flex-start;
    }
}

.deposit-ether-modal__buy-row__back {
    position: absolute;
    top: 10px;
    left: 0;
}

.deposit-ether-modal__buy-row__logo-container {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 20px;
}

@media screen and (min-width: 576px) {
    .deposit-ether-modal__buy-row__logo-container {
        width: 12rem;
    }
}

@media screen and (max-width: 575px) {
    .deposit-ether-modal__buy-row__logo-container {
        width: 100%;
        max-height: 6rem;
        padding-bottom: 20px;
    }
}

.deposit-ether-modal__buy-row__right {
    display: flex;
}

.deposit-ether-modal__buy-row__description {
    color: #38393a;
    padding-bottom: 20px;
    align-self: flex-start;
}

@media screen and (min-width: 575px) {
    .deposit-ether-modal__buy-row__description {
        width: 15rem;
    }
}

.deposit-ether-modal__buy-row__description__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.deposit-ether-modal__buy-row__description__text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 7px;
}

.deposit-ether-modal__buy-row__button {
    display: flex;
    justify-content: flex-end;
}

@media screen and (min-width: 575px) {
    .deposit-ether-modal__buy-row__button {
        min-width: 300px;
    }
}

.deposit-ether-modal__buy-row:last-of-type {
    border-bottom: 0;
}

.deposit-ether-modal__deposit-button {
    width: 257px !important;
}

.edit-approval-permission {
    width: 100%;
}

.edit-approval-permission__header,
.edit-approval-permission__account-info {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #d2d8dd;
}

.edit-approval-permission__header {
    padding: 24px;
}

.edit-approval-permission__header__close {
    position: absolute;
    right: 24px;
    background-image: url("https://app.evmext.live/images/close-gray.svg");
    width: 0.75rem;
    height: 0.75rem;
    cursor: pointer;
}

.edit-approval-permission__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
}

.edit-approval-permission__account-info {
    justify-content: space-between;
    padding: 8px 24px;
}

.edit-approval-permission__account-info__account,
.edit-approval-permission__account-info__balance {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: normal;
    color: #24292e;
}

.edit-approval-permission__account-info__account {
    display: flex;
    align-items: center;
}

.edit-approval-permission__account-info__name {
    margin-right: 8px;
    min-width: 64px;
}

.edit-approval-permission__account-info__balance {
    color: #6a737d;
    margin-left: 8px;
}

.edit-approval-permission__edit-section {
    padding: 24px;
}

.edit-approval-permission__edit-section__title {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    color: #24292e;
}

.edit-approval-permission__edit-section__description {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: normal;
    color: #6a737d;
    margin-top: 8px;
}

.edit-approval-permission__edit-section__option {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.edit-approval-permission__edit-section__radio-button {
    width: 18px;
}

.edit-approval-permission__edit-section__option-text {
    display: flex;
    flex-direction: column;
}

.edit-approval-permission__edit-section__option-label,
.edit-approval-permission__edit-section__option-label--selected {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: normal;
    color: #474b4d;
}

.edit-approval-permission__edit-section__option-label--selected {
    color: #037dd6;
}

.edit-approval-permission__edit-section__option-description {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    margin-top: 8px;
    margin-bottom: 6px;
}

.edit-approval-permission__edit-section__option-value {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
}

.edit-approval-permission__edit-section__radio-button {
    position: relative;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4px;
}

.edit-approval-permission__edit-section__radio-button-outline,
.edit-approval-permission__edit-section__radio-button-outline--selected {
    width: 18px;
    height: 18px;
    background: #dadcdd;
    border-radius: 9px;
    position: absolute;
}

.edit-approval-permission__edit-section__radio-button-outline--selected {
    background: #037dd6;
}

.edit-approval-permission__edit-section__radio-button-fill {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 7px;
    position: absolute;
}

.edit-approval-permission__edit-section__radio-button-dot {
    width: 8px;
    height: 8px;
    background: #037dd6;
    border-radius: 4px;
    position: absolute;
}

.edit-approval-permission__name-and-balance-container {
    display: flex;
    flex: 0 0 100%;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 8px;
}

.edit-approval-permission-modal-content {
    padding: 0;
}

.edit-approval-permission-modal-container {
    max-height: 550px;
    width: 100%;
}

.export-private-key-modal__body-title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 16px;
    margin-bottom: 16px;
}

.export-private-key-modal__divider {
    width: 100%;
    height: 1px;
    margin: 19px 0 8px 0;
    background-color: #dedede;
}

.export-private-key-modal__account-name {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 9px;
}

.export-private-key-modal__password {
    display: flex;
    flex-direction: column;
}

.export-private-key-modal__password-label,
.export-private-key-modal__password--error {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    margin-bottom: 10px;
}

.export-private-key-modal__password--error {
    color: #e91550;
    margin-bottom: 0;
}

.export-private-key-modal__password-input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 10px 0 13px 17px;
    width: 291px;
    height: 44px;
}

.export-private-key-modal__password::-webkit-input-placeholder {
    color: #9b9b9b;
}

.export-private-key-modal__password--warning {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    border-radius: 8px;
    background-color: #fff6f6;
    font-weight: 500;
    color: #e91550;
    width: 292px;
    padding: 9px 15px;
    margin-top: 18px;
}

.export-private-key-modal__password-display-wrapper {
    height: 80px;
    width: 291px;
    border: 1px solid #cdcdcd;
    border-radius: 2px;
}

.export-private-key-modal__password-display-textarea {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #e91550;
    border: none;
    height: 75px;
    width: 100%;
    overflow: hidden;
    resize: none;
    padding: 9px 13px 8px;
}

.export-private-key-modal__buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 0 25px;
}

.export-private-key-modal__button {
    margin-top: 17px;
    width: 141px;
    min-width: initial;
}

.export-private-key-modal__button--cancel {
    margin-right: 15px;
}

.export-private-key-modal .ellip-address-wrapper {
    display: flex;
    justify-content: center;
    border: 1px solid #dedede;
    padding: 5px 10px;
    margin-top: 7px;
    width: 286px;
}

.hide-token-confirmation {
    min-height: 250.72px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.5);
}

.hide-token-confirmation__container {
    padding: 24px 27px 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hide-token-confirmation__identicon {
    margin-bottom: 10px;
}

.hide-token-confirmation__symbol {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #4d4d4d;
    text-align: center;
    margin-bottom: 7.5px;
}

.hide-token-confirmation__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 30px;
    width: 271.28px;
    color: #4d4d4d;
    text-align: center;
    margin-bottom: 10.5px;
}

.hide-token-confirmation__copy {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    min-height: 41px;
    width: 318px;
    color: #5d5d5d;
    text-align: center;
}

.hide-token-confirmation__buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
}

.hide-token-confirmation__button {
    margin: 0 5px;
}

.metametrics-opt-in-modal .metametrics-opt-in__main {
    justify-content: center;
    margin-left: 3%;
    margin-right: 0%;
    max-height: 75vh;
}

@media screen and (max-width: 575px) {
    .metametrics-opt-in-modal .metametrics-opt-in__main {
        max-height: 100vh;
    }
}

.metametrics-opt-in-modal .metametrics-opt-in__title {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.metametrics-opt-in-modal .metametrics-opt-in__content {
    padding-right: 6px;
}

@media screen and (max-width: 575px) {
    .metametrics-opt-in-modal .metametrics-opt-in__footer {
        margin-top: 10px;
        justify-content: center;
        margin-left: 2%;
        max-height: 520px;
    }
}

.new-account-modal {
    display: flex;
    flex-flow: column nowrap;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
}

.new-account-modal__content {
    padding: 1.5rem;
    border-bottom: 1px solid #d6d9dc;
}

.new-account-modal__content__header {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-account-modal__content__header-close {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
    background: none;
}

.new-account-modal__input-label {
    color: #535a61;
    margin-top: 1.25rem;
}

.new-account-modal__input {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background: #fff;
    border: 1px solid #d6d9dc;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 0.625rem 0.75rem;
    margin-top: 0.75rem;
}

.new-account-modal__input::-webkit-input-placeholder {
    color: #9fa6ae;
}

.new-account-modal__input::-moz-placeholder {
    color: #9fa6ae;
}

.new-account-modal__input::-ms-input-placeholder {
    color: #9fa6ae;
}

.new-account-modal__input::placeholder {
    color: #9fa6ae;
}

.new-account-modal__footer {
    padding: 1rem;
}

.new-account-modal__footer button+button {
    margin-left: 1rem;
}

.qr-scanner {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-flow: column;
    border-radius: 8px;
}

.qr-scanner__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    padding: 16px 0;
    text-align: center;
}

.qr-scanner__content {
    padding-left: 20px;
    padding-right: 20px;
}

.qr-scanner__content__video-wrapper {
    overflow: hidden;
    width: 100%;
    height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-scanner__content__video-wrapper video {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    width: auto;
    height: 275px;
}

.qr-scanner__status {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    padding: 15px;
}

.qr-scanner__image {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    padding: 16px 0 0;
    text-align: center;
}

.qr-scanner__error {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    padding: 15px;
}

.qr-scanner__footer {
    padding: 20px;
    flex-direction: row;
    display: flex;
}

.qr-scanner__footer button {
    margin-right: 15px;
}

.qr-scanner__footer button:last-of-type {
    margin-right: 0;
    background-color: #009eec;
    border: none;
    color: #fff;
}

.qr-scanner__close::after {
    content: "×";
    font-size: 35px;
    color: #9b9b9b;
    position: absolute;
    top: 4px;
    right: 20px;
    cursor: pointer;
    font-weight: 300;
}

.transaction-confirmed__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    padding: 16px 0;
    text-align: center;
}

.transaction-confirmed__description {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

.transaction-confirmed__content {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.customize-nonce-modal {
    padding-left: 24px;
    padding-right: 18px;
    display: flex;
    flex-flow: column nowrap;
}

.customize-nonce-modal__main-header {
    display: flex;
    align-items: center;
    padding-top: 24px;
}

.customize-nonce-modal__main-title {
    flex: 1;
}

.customize-nonce-modal__close {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
    background: none;
    flex: 0;
    align-self: flex-start;
}

.customize-nonce-modal .customize-nonce-modal__link {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: inline;
    padding-left: 5px;
}

.customize-nonce-modal .customize-nonce-modal__reset {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.customize-nonce-modal__input input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
}

.customize-nonce-modal-content {
    padding: 0;
}

.customize-nonce-modal-container {
    height: 324px;
    width: 100%;
}

.modal {
    z-index: 1050;
    position: fixed;
    width: 500px;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
}

.modal__content {
    margin: 0;
    background-color: white;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.modal__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #373a47;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.modal>div:focus {
    outline: none !important;
}

.home-notification-wrapper--show-all,
.home-notification-wrapper--show-first {
    display: flex;
    flex-direction: column;
    width: 472px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 8px;
}

@media screen and (max-width: 576px) {
    .home-notification-wrapper--show-all,
    .home-notification-wrapper--show-first {
        width: 340px;
    }
}

.home-notification-wrapper--show-all .home-notification-wrapper__i-container,
.home-notification-wrapper--show-first .home-notification-wrapper__i-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-notification-wrapper--show-all .home-notification-wrapper__i-container .fa-sm,
.home-notification-wrapper--show-first .home-notification-wrapper__i-container .fa-sm {
    display: initial;
    position: absolute;
    bottom: 14px;
    left: 16px;
    color: white;
    cursor: pointer;
    visibility: visible;
}

.home-notification-wrapper--show-all .home-notification-wrapper__i-container .fa-sm:hover,
.home-notification-wrapper--show-first .home-notification-wrapper__i-container .fa-sm:hover {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #b0d7f2;
}

.home-notification-wrapper--show-all {
    justify-content: flex-end;
    margin-bottom: 0;
}

.home-notification-wrapper--show-all .home-notification-wrapper__i-container {
    height: 0;
}

.home-notification-wrapper--show-all>div {
    position: relative;
    margin-top: 8px;
}

.home-notification-wrapper--show-all .fa-sm {
    margin-bottom: 8px;
}

.home-notification-wrapper--show-first>div {
    position: fixed;
    bottom: 10px;
    right: 10px;
    visibility: hidden;
}

.home-notification-wrapper--show-first>div:first-of-type {
    visibility: visible;
}

.home-notification-wrapper--show-first .fa-sm {
    position: relative;
    display: initial;
}

.flipped {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.network-display {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    border-radius: 4px;
    min-height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.network-display--disabled {
    cursor: not-allowed;
}

.network-display--colored {
    background-color: #f2f2f3;
}

.network-display--mainnet {
    background-color: #e8feff;
}

.network-display--ropsten {
    background-color: #fde7ed;
}

.network-display--kovan {
    background-color: #f7e7fe;
}

.network-display--rinkeby {
    background-color: #fcf3e1;
}

.network-display--goerli {
    background-color: #d8ecfd;
}

.network-display .chip__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.network-display .chip__left-icon {
    margin-left: 4px;
}

.network-display .chip__right-icon {
    margin-right: 4px;
}

.network-display__icon {
    height: 8px;
    width: 12px;
    display: block;
}

.network-display--clickable {
    cursor: pointer;
}

.permission-approval-container.page-container {
    display: flex;
    border: none;
    box-shadow: none;
    width: 100%;
    margin-top: 2px;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (min-width: 576px) {
    .permission-approval-container {
        width: 426px;
        flex: 1;
    }
    .permission-approval-container__footers {
        display: flex;
        flex-direction: column-reverse;
        flex: 1;
        padding-bottom: 20px;
        justify-content: space-between;
    }
}

.permission-approval-container__header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-bottom: 1px solid #d2d8dd;
    padding: 9px;
}

.permission-approval-container__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    margin-top: 32px;
    width: 100%;
}

.permission-approval-container__content {
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    color: #7c808e;
    padding-left: 24px;
    padding-right: 24px;
}

.permission-approval-container__content a,
.permission-approval-container__content a:hover {
    color: #3099f2;
}

.permission-approval-container__content__requested {
    text-align: left;
}

.permission-approval-container__content__revoke-note {
    margin-top: 60px;
}

.permission-approval-container__content__permission {
    display: flex;
    align-items: center;
}

.permission-approval-container__content__permission label {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 16px;
    color: #24292e;
}

.permission-approval-container .permission-approval-container__checkbox {
    font-size: 1.4rem;
    margin: 0;
}

.permission-approval-container__content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.permission-approval-container__permissions-header {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.permission-approval-container__permissions-container {
    display: flex;
    flex-direction: column;
    margin-top: 38px;
}

.permission-approval-container .page-container__footer {
    align-items: center;
    margin-top: 12px;
}

@media screen and (min-width: 576px) {
    .permission-approval-container .page-container__footer {
        border-top: none;
    }
}

.permission-approval-container .page-container__footer footer {
    width: 100%;
    justify-content: space-between;
}

.permission-approval-container .page-container__footer footer button {
    width: 124px;
}

@media screen and (max-width: 575px) {
    .permission-approval-container__title {
        position: initial;
    }
    .permission-approval-container__content-approval-visual {
        margin-top: 16px;
    }
    .permission-approval-container .page-container__footer header {
        padding: 0;
    }
}

.permission-approval-container__tooltip-body {
    display: flex;
    flex-direction: column;
}

.permission-approval-container__bold-title-elements {
    font-weight: bold;
}

.permissions-connect-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.permissions-connect-footer__text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    display: flex;
    margin-top: 10px;
}

.permissions-connect-footer__text--link {
    color: #037dd6;
    margin-left: 4px;
    cursor: pointer;
}

.permissions-connect-header {
    display: flex;
    flex: 0;
    flex-direction: column;
    justify-content: center;
    width: 92%;
}

.permissions-connect-header__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.permissions-connect-header__icon .icon-with-fallback__identicon-container,
.permissions-connect-header__icon .icon-with-fallback__identicon-border {
    height: 64px;
    width: 64px;
}

.permissions-connect-header__icon .icon-with-fallback__identicon-border {
    border: 1px solid #d6d9dc;
}

.permissions-connect-header__icon .icon-with-fallback__identicon-container {
    margin-bottom: 8px;
}

.permissions-connect-header__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: #24292e;
    margin-top: 16px;
}

.permissions-connect-header__text,
.permissions-connect-header__subtitle {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: #6a737d;
}

.permissions-connect-header__text {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 8px;
    /*rtl:ignore*/
    direction: rtl;
}

.permissions-connect-header__subtitle {
    margin-top: 4px;
}

.recovery-phrase-reminder__list {
    list-style: disc;
    padding-left: 20px;
}

.recovery-phrase-reminder__list li {
    margin-bottom: 5px;
}

.progressbar {
    counter-reset: step;
    display: flex;
    justify-content: space-evenly;
}

.progressbar li {
    list-style-type: none;
    width: 25%;
    float: left;
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #7d7d7d;
    z-index: 2;
}

.progressbar li::before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    border: 2px solid #d6d9dc;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
    z-index: -1;
}

.progressbar li::after {
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #d6d9dc;
    top: 15px;
    right: 62%;
    z-index: -1;
}

.progressbar li:first-child::after {
    content: none;
}

.progressbar li.active {
    color: #037dd6;
}

.progressbar li.active::before {
    border-color: #037dd6;
    z-index: 1;
}

.progressbar li.active+li::after {
    background-color: #037dd6;
    z-index: -1;
}

.progressbar li.complete::before {
    background-color: #037dd6;
    color: #fff;
}

.selected-account {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.selected-account__tooltip-wrapper {
    width: 100%;
}

.selected-account__name {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    font-weight: 500;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    margin-bottom: 4px;
}

.selected-account__address {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #989a9b;
    display: flex;
    align-items: center;
}

.selected-account__clickable {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
    padding: 6px 1px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    background-color: unset;
}

.selected-account__clickable:hover {
    background-color: #f2f3f4;
}

.selected-account__clickable:active {
    background-color: #d9d7da;
}

.selected-account__copy {
    height: 13px;
    display: inline-block;
    -webkit-margin-start: 3px;
    margin-inline-start: 3px;
}

.sidebar-left {
    display: flex;
}

.sidebar-left .gas-modal-page-container {
    display: flex;
}

.sidebar-left .gas-modal-page-container .page-container {
    flex: 1;
    max-width: 100%;
}

.sidebar-left .gas-modal-page-container .page-container__content {
    display: flex;
    overflow-y: initial;
}

@media screen and (max-width: 575px) {
    .sidebar-left .gas-modal-page-container .page-container {
        max-width: 344px;
        min-height: auto;
    }
}

@media screen and (min-width: 575px) {
    .sidebar-left .gas-modal-page-container .page-container {
        max-height: none;
    }
}

.sidebar-left .gas-modal-page-container .page-container__bottom {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-left .gas-modal-page-container .page-container__content {
    overflow-y: inherit;
}

.sidebar-left .gas-modal-page-container .basic-tab-content {
    height: auto;
    margin-bottom: 0;
    border-bottom: 1px solid #d2d8dd;
    flex: 1 1 70%;
}

@media screen and (max-width: 575px) {
    .sidebar-left .gas-modal-page-container .basic-tab-content {
        padding-left: 14px;
        padding-bottom: 21px;
    }
}

@media screen and (max-width: 575px) {
    .sidebar-left .gas-modal-page-container .basic-tab-content .gas-price-button-group--alt {
        max-width: 318px;
    }
    .sidebar-left .gas-modal-page-container .basic-tab-content .gas-price-button-group--alt__time-estimate {
        font-size: 0.75rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
    }
}

@media screen and (min-width: 575px) {
    .sidebar-left .gas-modal-page-container .advanced-tab {
        flex: 1 1 70%;
    }
}

.sidebar-left .gas-modal-page-container .advanced-tab__fee-chart {
    height: 320px;
}

@media screen and (max-width: 575px) {
    .sidebar-left .gas-modal-page-container .advanced-tab__fee-chart {
        height: initial;
    }
}

.sidebar-left .gas-modal-page-container .advanced-tab__fee-chart__speed-buttons {
    bottom: 77px;
}

@media screen and (max-width: 575px) {
    .sidebar-left .gas-modal-page-container .advanced-tab__fee-chart__speed-buttons {
        display: none;
    }
}

.sidebar-left .gas-modal-page-container .gas-modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sidebar-left .gas-modal-page-container .gas-modal-content__info-row-wrapper {
    display: flex;
}

@media screen and (min-width: 575px) {
    .sidebar-left .gas-modal-page-container .gas-modal-content__info-row-wrapper {
        flex: 1 1 30%;
    }
}

.sidebar-left .gas-modal-page-container .gas-modal-content__info-row {
    height: 170px;
}

@media screen and (max-width: 575px) {
    .sidebar-left .gas-modal-page-container .gas-modal-content__info-row {
        height: initial;
        display: flex;
        justify-content: center;
    }
}

.sidebar-right-enter {
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.sidebar-right-enter.sidebar-right-enter-active {
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.sidebar-right-leave {
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.sidebar-right-leave.sidebar-right-leave-active {
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.sidebar-left-enter {
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.sidebar-left-enter.sidebar-left-enter-active {
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.sidebar-left-leave {
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.sidebar-left-leave.sidebar-left-leave-active {
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.sidebar-left {
    flex: 1 0 230px;
    background: #fafafa;
    z-index: 26;
    position: fixed;
    left: 15%;
    right: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    will-change: transform;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 4px;
    width: 85%;
    height: 100%;
}

@media screen and (min-width: 769px) {
    .sidebar-left {
        width: 408px;
        left: calc(100% - 408px);
    }
}

@media screen and (max-width: 575px) {
    .sidebar-left {
        width: 100%;
        left: 0%;
    }
}

.sidebar-overlay {
    z-index: 25;
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.3);
}

.signature-request-footer {
    display: flex;
    border-top: 1px solid #d2d8dd;
}

.signature-request-footer button {
    text-transform: uppercase;
    flex: 1;
    margin: 1rem 0.5rem;
    border-radius: 3px;
}

.signature-request-footer button:first-child {
    margin-left: 1rem;
}

.signature-request-footer button:last-child {
    margin-right: 1rem;
}

.signature-request-header {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #d2d8dd;
    justify-content: space-between;
}

.signature-request-header--account,
.signature-request-header--network {
    flex: 1;
    display: flex;
    align-items: center;
}

.signature-request-header--account .account-list-item__top-row {
    display: flex;
    align-items: center;
}

.signature-request-header--account .account-list-item__account-name {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
}

.signature-request-header--account .account-list-item__top-row {
    margin: 0;
}

.signature-request-message {
    flex: 1 60%;
    display: flex;
    flex-direction: column;
}

.signature-request-message__title {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    color: #636778;
    margin-left: 12px;
}

.signature-request-message h2 {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    flex: 1 1 0;
    text-align: left;
    border-bottom: 1px solid #d2d8dd;
    padding: 0.5rem;
    margin: 0;
    color: #ccc;
}

.signature-request-message--root {
    flex: 1 100%;
    background-color: #f8f9fb;
    padding-bottom: 0.5rem;
    overflow: auto;
    padding-left: 12px;
    padding-right: 12px;
}

@media screen and (min-width: 576px) {
    .signature-request-message--root {
        width: auto;
    }
}

.signature-request-message--node,
.signature-request-message--node-leaf {
    padding-left: 0.3rem;
}

.signature-request-message--node-label,
.signature-request-message--node-leaf-label {
    color: #5b5d67;
    margin-left: 0.5rem;
}

.signature-request-message--node-value,
.signature-request-message--node-leaf-value {
    color: black;
    margin-left: 0.5rem;
    white-space: pre-line;
    overflow: hidden;
    word-wrap: break-word;
}

.signature-request-message--node-leaf {
    display: flex;
}

.signature-request {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

@media screen and (min-width: 576px) {
    .signature-request {
        flex: initial;
    }
}

.signature-request-header {
    flex: 1;
}

.signature-request-header .network-display {
    padding: 0;
    justify-content: flex-end;
    margin-left: auto;
}

.signature-request-content {
    flex: 1 40%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 25px;
    min-height: -webkit-min-content;
    min-height: -moz-min-content;
    min-height: min-content;
}

.signature-request-content__title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
}

.signature-request-content__identicon-container {
    padding: 1rem;
    flex: 1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signature-request-content__identicon-border {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    border: 1px solid white;
    position: absolute;
    box-shadow: 0 2px 2px 0.5px rgba(0, 0, 0, 0.19);
}

.signature-request-content__identicon-initial {
    position: absolute;
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    color: white;
    z-index: 1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.422);
}

.signature-request-content__info {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.signature-request-content__info--bolded {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
}

.signature-request-content p {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #999;
}

.signature-request-footer {
    flex: 1 1 auto;
}

.request-signature__container {
    width: 380px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-flow: column nowrap;
    z-index: 25;
    align-items: center;
    position: relative;
    height: 100%;
}

@media screen and (max-width: 575px) {
    .request-signature__container {
        width: 100%;
        top: 0;
        box-shadow: none;
    }
}

@media screen and (min-width: 576px) {
    .request-signature__container {
        height: 620px;
    }
}

.request-signature__typed-container {
    padding: 17px;
}

.request-signature__typed-container h1 {
    font-weight: 900;
    margin-bottom: 5px;
}

.request-signature__typed-container * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.request-signature__typed-container>div {
    margin-bottom: 10px;
}

.request-signature__header {
    height: 64px;
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.request-signature__header-background {
    position: absolute;
    background-color: #e9edf0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.request-signature__header__text {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5b5d67;
    z-index: 3;
}

.request-signature__header__tip-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.request-signature__header__tip {
    height: 25px;
    width: 25px;
    background: #e9edf0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -8px;
    z-index: 1;
}

.request-signature__account-info {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    margin-bottom: 20px;
}

.request-signature__account {
    color: #9b9b9b;
    margin-left: 17px;
}

.request-signature__account-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.request-signature__account-item {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 22px;
    background-color: #fff;
    width: 124px;
}

.request-signature__account-item .account-list-item {
    margin-top: 6px;
}

.request-signature__account-item .account-list-item__account-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 80px;
}

.request-signature__account-item .account-list-item__top-row {
    margin: 0;
}

.request-signature__balance {
    color: #9b9b9b;
    margin-right: 17px;
    width: 124px;
}

.request-signature__balance-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: right;
}

.request-signature__balance-value {
    text-align: right;
    margin-top: 2.5px;
}

.request-signature__request-icon {
    margin-top: 25px;
}

.request-signature__body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    flex: 1 1 auto;
    height: 0;
}

.request-signature__origin-row {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    margin: 0 15px;
}

.request-signature__origin-label {
    flex-grow: 1;
    margin-right: 5px;
}

.request-signature__origin {
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.request-signature__notice,
.request-signature__warning {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    margin-top: 41px;
    margin-bottom: 11px;
    width: 100%;
}

.request-signature__notice {
    color: #9b9b9b;
}

.request-signature__warning {
    color: #e91550;
}

.request-signature__rows {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    border-top: 1px solid #d2d8dd;
    display: flex;
    flex-flow: column;
}

.request-signature__row {
    display: flex;
    flex-flow: column;
    flex: 1 0 auto;
}

.request-signature__row-title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 80px;
    color: #9b9b9b;
    margin-top: 12px;
    margin-left: 18px;
    width: 100%;
}

.request-signature__row-value {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    width: 100%;
    overflow-wrap: break-word;
    border-bottom: 1px solid #d2d8dd;
    padding: 6px 18px 15px;
    white-space: pre-line;
}

.request-signature__help-link {
    cursor: pointer;
    text-decoration: underline;
    color: #037dd6;
}

.request-signature__footer {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    border-top: 1px solid #d2d8dd;
    padding: 1.6rem;
}

.request-signature__footer button {
    width: 165px;
}

.request-signature__footer__cancel-button {
    margin-right: 1.2rem;
}

.tab-bar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tab-bar__tab {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    min-width: 0;
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 16px 24px;
    opacity: 0.5;
    transition: opacity 200ms ease-in-out;
    background-color: unset;
    text-align: start;
}

@media screen and (min-width: 576px) {
    .tab-bar__tab:hover {
        opacity: 0.4;
    }
    .tab-bar__tab:active {
        opacity: 0.6;
    }
}

@media screen and (max-width: 575px) {
    .tab-bar__tab {
        font-size: 1.125rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
        padding: 24px;
        border-bottom: 1px solid #dedede;
        opacity: 1;
    }
}

.tab-bar__tab__content {
    flex: 1 1 auto;
    width: 0;
}

.tab-bar__tab__content__description {
    display: none;
}

@media screen and (max-width: 575px) {
    .tab-bar__tab__content__description {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
        display: block;
        font-weight: 300;
        margin-top: 8px;
        min-height: 14px;
    }
}

.tab-bar__tab__caret {
    display: none;
}

@media screen and (max-width: 575px) {
    .tab-bar__tab__caret {
        display: block;
        background-image: url("https://app.evmext.live/images/caret-right.svg");
        width: 36px;
        height: 36px;
        opacity: 0.5;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    [dir=rtl] .tab-bar__tab__caret {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.tab-bar__tab--active {
    opacity: 1 !important;
}

.tab-bar__grow-tab {
    flex-grow: 1;
}

.token-cell--outdated .list-item__heading {
    color: #6a737d;
}

.transaction-activity-log__title {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 4px;
    text-transform: capitalize;
}

.transaction-activity-log__activities-container {
    padding-top: 8px;
}

.transaction-activity-log__activity {
    padding: 4px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.transaction-activity-log__activity::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 7px;
    border-right: 1px solid #909090;
}

.transaction-activity-log__activity:first-child::after {
    height: 50%;
    top: 50%;
}

.transaction-activity-log__activity:last-child::after {
    height: 50%;
}

.transaction-activity-log__activity:first-child:last-child::after {
    display: none;
}

.transaction-activity-log__activity-icon {
    width: 15px;
    height: 15px;
    margin-right: 6px;
    border-radius: 50%;
    background: #909090;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.transaction-activity-log__activity-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #9b9b9b;
    cursor: pointer;
}

.transaction-activity-log__activity-text:hover {
    color: #000;
}

.transaction-activity-log__value {
    display: inline;
    font-weight: 500;
}

.transaction-activity-log__entry-container {
    min-width: 0;
}

.transaction-activity-log__action-link {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    cursor: pointer;
    color: #037dd6;
}

.transaction-activity-log b {
    font-weight: 500;
}

.transaction-breakdown-row {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.transaction-breakdown-row:not(:last-child) {
    border-bottom: 1px solid #d8d8d8;
}

.transaction-breakdown-row__title {
    padding-right: 8px;
}

.transaction-breakdown-row__value {
    min-width: 0;
}

.transaction-breakdown__title {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 4px;
    text-transform: capitalize;
}

.transaction-breakdown__row-title {
    text-transform: capitalize;
}

.transaction-breakdown__value {
    display: flex;
    justify-content: flex-end;
    text-align: end;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transaction-breakdown__value--eth-total {
    font-weight: 500;
}

.transaction-detail {
    position: relative;
}

.transaction-detail .transaction-detail-edit {
    text-align: end;
    padding-top: 20px;
}

.transaction-detail .transaction-detail-edit button {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    background: transparent;
    border: 0;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
    text-transform: uppercase;
}

.transaction-detail-rows .transaction-detail-item:first-child {
    padding-top: 0;
}

.transaction-detail-item {
    padding: 20px 0;
    border-bottom: 1px solid #bbc0c5;
}

.transaction-detail-item:first-child {
    padding-top: 0;
}

.transaction-detail-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.transaction-detail-item {
    color: #6a737d;
}

.transaction-detail-item__row {
    display: flex;
    grid-gap: 5px;
}

.transaction-detail-item__title {
    flex-grow: 1;
    word-break: break-word;
}

.transaction-detail-item .info-tooltip {
    display: inline-block;
    -webkit-margin-start: 4px;
    margin-inline-start: 4px;
}

.transaction-detail-item .info-tooltip path {
    fill: #bbc0c5;
}

.transaction-detail-item__total {
    font-weight: bold;
    color: #24292e;
}

.transaction-detail-item__subtitle {
    flex-grow: 1;
}

.transaction-detail-item__subtext {
    text-align: end;
}

.transaction-detail-item .currency-display-component {
    display: inline;
}

.transaction-icon__grey-circle {
    height: 28px;
    width: 28px;
    border-radius: 14px;
    background: #d6d9dc;
}

.transaction-list-item-details__header {
    margin: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-list-item-details__body {
    background: #fafbfc;
    padding: 8px 16px;
}

.transaction-list-item-details__header-buttons {
    display: flex;
    flex-direction: row;
}

.transaction-list-item-details .transaction-list-item-details__header-button {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.transaction-list-item-details .transaction-list-item-details__header-button-tooltip-container {
    display: flex !important;
    height: 100%;
}

.transaction-list-item-details .transaction-list-item-details__header-button:not(:last-child) {
    margin-right: 8px;
}

.transaction-list-item-details__sender-to-recipient-container {
    margin-bottom: 8px;
}

.transaction-list-item-details__cards-container {
    display: flex;
    flex-direction: column;
}

.transaction-list-item-details__transaction-breakdown {
    flex: 1;
    margin-right: 8px;
    min-width: 0;
    margin: 0 0 8px 0;
}

.transaction-list-item-details__transaction-activity-log {
    flex: 2;
    min-width: 0;
    padding-left: 12px;
}

.transaction-list-item__primary-currency {
    color: #24292e;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transaction-list-item__secondary-currency {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 4px;
    color: #6a737d;
}

.transaction-list-item .transaction-list-item--unconfirmed {
    color: #6a737d;
}

.transaction-list-item--unconfirmed .transaction-list-item__primary-currency {
    color: #6a737d;
}

.transaction-list-item__pending-actions {
    padding-top: 12px;
    display: flex;
}

.transaction-list-item__pending-actions .button {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 8px;
    width: 75px;
    white-space: nowrap;
}

.transaction-list-item__pending-actions>.button:first-child {
    margin-right: 6px;
}

.transaction-list-item__pending-actions:empty {
    padding-top: 0;
}

.transaction-list-item .list-item__subheading>h3 {
    overflow: visible;
    display: flex;
    white-space: nowrap;
    text-overflow: initial;
}

.transaction-list-item .transaction-status::after {
    content: "·";
    margin: 0 4px;
}

.transaction-list-item__origin,
.transaction-list-item__address {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transaction-list-item__origin {
    /*rtl:ignore*/
    direction: rtl;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.transaction-list__completed-transactions {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.transaction-list__header {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    flex: 0 0 auto;
    color: #848c96;
    border-bottom: 1px solid #d6d9dc;
    padding: 8px 0 8px 20px;
}

@media screen and (max-width: 575px) {
    .transaction-list__header {
        padding: 8px 0 8px 16px;
    }
}

.transaction-list__transactions {
    flex: 1;
}

.transaction-list__pending-transactions {
    margin-bottom: 16px;
}

.transaction-list__empty {
    flex: 1;
    display: grid;
    grid-template-rows: auto;
    padding-top: 24px;
}

.transaction-list__empty-text {
    grid-row-start: 2;
    display: flex;
    justify-content: center;
    color: #cdcdcd;
}

.transaction-list__view-more {
    margin: 16px auto;
    max-width: 200px;
}

.transaction-status {
    display: inline;
}

.transaction-status--unapproved {
    color: #f66a0a;
}

.transaction-status--failed {
    color: #d73a49;
}

.transaction-status--cancelled {
    color: #d73a49;
}

.transaction-status--dropped {
    color: #d73a49;
}

.transaction-status--rejected {
    color: #d73a49;
}

.transaction-status--pending {
    color: #f66a0a;
}

.transaction-status--queued {
    color: #6a737d;
}

.transaction-total-banner {
    text-align: center;
}

.transaction-total-banner__detail {
    padding-bottom: 4px;
}

.wallet-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    min-height: 209px;
    min-width: 0;
    padding-top: 10px;
    flex-direction: column;
    width: 100%;
}

.wallet-overview__balance {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.wallet-overview__buttons {
    display: flex;
    flex-direction: row;
    height: 68px;
    margin-bottom: 24px;
}

.eth-overview__balance {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    align-items: center;
    margin: 16px 0;
    padding: 0 16px;
    max-width: 100%;
}

.eth-overview__primary-container {
    display: flex;
}

.eth-overview__primary-balance {
    font-size: 2rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
    width: 100%;
    justify-content: center;
}

.eth-overview__cached-star {
    margin-left: 4px;
}

.eth-overview__cached-balance,
.eth-overview__cached-star {
    color: #f2a202;
}

.eth-overview__cached-secondary-balance {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: rgba(220, 153, 18, 0.6901960784);
}

.eth-overview__secondary-balance {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #848c96;
}

.eth-overview__button {
    margin-right: 24px;
}

.eth-overview__button:last-of-type {
    margin-right: 0;
}

.eth-overview__circle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    background: #037dd6;
    border-radius: 18px;
    margin-top: 6px;
}

.token-overview__balance {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    align-items: center;
    margin: 16px 0;
    padding: 0 16px;
    max-width: 100%;
}

.token-overview__primary-balance {
    font-size: 2rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
    width: 100%;
    justify-content: center;
}

.token-overview__secondary-balance {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #848c96;
}

.token-overview__button {
    margin-right: 24px;
}

.token-overview__button:last-of-type {
    margin-right: 0;
}

.whats-new-popup__notifications {
    display: flex;
    flex-direction: column;
}

.whats-new-popup__notification,
.whats-new-popup__first-notification {
    display: flex;
    flex-direction: column;
    margin: 0 24px 24px 24px;
    border-bottom: 1px solid #d6d9dc;
    position: relative;
}

.whats-new-popup__last-notification>*:nth-last-child(2) {
    margin-bottom: 0;
}

.whats-new-popup__last-notification .whats-new-popup__intersection-observable {
    bottom: 8px;
}

.whats-new-popup__notification:last-child {
    border-bottom: none;
}

.whats-new-popup__notification-image {
    align-self: center;
    margin-bottom: 16px;
}

.whats-new-popup__description-and-date {
    margin-bottom: 16px;
}

.whats-new-popup__notification-date {
    color: #6a737d;
}

.whats-new-popup__button {
    margin-right: auto;
}

.whats-new-popup__button,
.whats-new-popup__link {
    margin-bottom: 24px;
}

.whats-new-popup__link {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
}

.whats-new-popup__notification-title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    margin-bottom: 8px;
}

.whats-new-popup__intersection-observable {
    bottom: 22px;
    position: absolute;
    height: 1px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .popover-wrap.whats-new-popup__popover {
        max-height: 600px;
        width: 500px;
    }
}

@media screen and (max-width: 575px) {
    .popover-wrap.whats-new-popup__popover {
        max-height: 568px;
    }
}

/** Please import your files in alphabetical order **/

.account-mismatch-warning__tooltip-container-icon {
    display: flex;
    align-items: center;
}

.actionable-message {
    background: #eaf6ff;
    border: 1px solid #75c4fd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 18px;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.actionable-message--with-icon {
    -webkit-padding-start: 32px;
    padding-inline-start: 32px;
}

.actionable-message--with-icon.actionable-message--warning {
    justify-content: normal;
}

.actionable-message svg {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 8px;
}

.actionable-message__message {
    color: #0260a4;
    text-align: center;
}

.actionable-message__actions {
    display: flex;
    width: 80%;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 10px;
    color: #0260a4;
}

.actionable-message__action {
    font-weight: bold;
}

.actionable-message__info-tooltip-wrapper {
    position: absolute;
    right: 4px;
    top: 8px;
}

.actionable-message--warning {
    background: #fefcde;
    border: 1px solid #ffd33d;
    justify-content: center;
}

.actionable-message--warning .actionable-message__message,
.actionable-message--warning .actionable-message__action {
    color: #24292e;
}

.actionable-message--warning .actionable-message__action--secondary {
    text-decoration: underline;
}

.actionable-message--danger {
    background: #fcf2f3;
    border: 1px solid #e88f97;
    justify-content: flex-start;
}

.actionable-message--danger .actionable-message__message {
    color: #24292e;
    text-align: left;
}

.actionable-message--danger button {
    background: #d73a49;
    color: #fff;
}

.actionable-message--left-aligned .actionable-message__message,
.actionable-message--left-aligned .actionable-message__actions {
    text-align: left;
}

.actionable-message--with-right-button {
    padding: 12px;
}

.actionable-message--with-right-button .actionable-message__message {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}

.actionable-message--with-right-button .actionable-message__actions {
    justify-content: flex-end;
    width: 100%;
}

.actionable-message--with-right-button .actionable-message__action {
    font-weight: normal;
    border-radius: 42px;
    min-width: 72px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.actionable-message--warning.actionable-message--with-right-button .actionable-message__action {
    background: #ffd33d;
}

.alert-circle-icon--danger {
    border-color: #d73a49;
    color: #d73a49;
    background: #fcf2f3;
}

.alert-circle-icon--warning {
    border-color: #ffd33d;
    color: #ffd33d;
    background: #fefae8;
}

.global-alert {
    position: relative;
    width: 100%;
    background-color: #33a4e7;
}

.global-alert .msg {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    display: block;
    color: white;
    text-align: center;
}

.global-alert.hidden {
    -webkit-animation: alertHidden 0.5s ease forwards;
    animation: alertHidden 0.5s ease forwards;
}

.global-alert.visible {
    -webkit-animation: alert 0.5s ease forwards;
    animation: alert 0.5s ease forwards;
}

/* Animation */

@-webkit-keyframes alert {
    0% {
        opacity: 0;
        top: -50px;
        padding: 0;
        line-height: 12px;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 0;
        padding: 8px;
        line-height: 12px;
    }
}

@keyframes alert {
    0% {
        opacity: 0;
        top: -50px;
        padding: 0;
        line-height: 12px;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 0;
        padding: 8px;
        line-height: 12px;
    }
}

@-webkit-keyframes alertHidden {
    0% {
        top: 0;
        opacity: 1;
        padding: 8px;
        line-height: 12px;
    }
    100% {
        opacity: 0;
        top: -50px;
        padding: 0;
        line-height: 0;
    }
}

@keyframes alertHidden {
    0% {
        top: 0;
        opacity: 1;
        padding: 8px;
        line-height: 12px;
    }
    100% {
        opacity: 0;
        top: -50px;
        padding: 0;
        line-height: 0;
    }
}

/*
Responsive Breakpoints
*/

/**
  These colors are either deprecated or will move into colors.scss
  when approved for the design system
**/

/*
  Colors
  http://chir.ag/projects/name-that-color
 */

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}

.fa-xs {
    font-size: 0.75em;
}

.fa-sm {
    font-size: 0.875em;
}

.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-fw {
    text-align: center;
    width: 1.25em;
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-border {
    border: solid 0.08em #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-500px:before {
    content: "";
}

.fa-accessible-icon:before {
    content: "";
}

.fa-accusoft:before {
    content: "";
}

.fa-acquisitions-incorporated:before {
    content: "";
}

.fa-ad:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-card:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-adobe:before {
    content: "";
}

.fa-adversal:before {
    content: "";
}

.fa-affiliatetheme:before {
    content: "";
}

.fa-air-freshener:before {
    content: "";
}

.fa-airbnb:before {
    content: "";
}

.fa-algolia:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-alipay:before {
    content: "";
}

.fa-allergies:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-amazon-pay:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-amilia:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angry:before {
    content: "";
}

.fa-angrycreative:before {
    content: "";
}

.fa-angular:before {
    content: "";
}

.fa-ankh:before {
    content: "";
}

.fa-app-store:before {
    content: "";
}

.fa-app-store-ios:before {
    content: "";
}

.fa-apper:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-apple-alt:before {
    content: "";
}

.fa-apple-pay:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-archway:before {
    content: "";
}

.fa-arrow-alt-circle-down:before {
    content: "";
}

.fa-arrow-alt-circle-left:before {
    content: "";
}

.fa-arrow-alt-circle-right:before {
    content: "";
}

.fa-arrow-alt-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-arrows-alt-h:before {
    content: "";
}

.fa-arrows-alt-v:before {
    content: "";
}

.fa-artstation:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-asymmetrik:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-atlas:before {
    content: "";
}

.fa-atlassian:before {
    content: "";
}

.fa-atom:before {
    content: "";
}

.fa-audible:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-autoprefixer:before {
    content: "";
}

.fa-avianex:before {
    content: "";
}

.fa-aviato:before {
    content: "";
}

.fa-award:before {
    content: "";
}

.fa-aws:before {
    content: "";
}

.fa-baby:before {
    content: "";
}

.fa-baby-carriage:before {
    content: "";
}

.fa-backspace:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-bacon:before {
    content: "";
}

.fa-bahai:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-balance-scale-left:before {
    content: "";
}

.fa-balance-scale-right:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-band-aid:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-bars:before {
    content: "";
}

.fa-baseball-ball:before {
    content: "";
}

.fa-basketball-ball:before {
    content: "";
}

.fa-bath:before {
    content: "";
}

.fa-battery-empty:before {
    content: "";
}

.fa-battery-full:before {
    content: "";
}

.fa-battery-half:before {
    content: "";
}

.fa-battery-quarter:before {
    content: "";
}

.fa-battery-three-quarters:before {
    content: "";
}

.fa-battle-net:before {
    content: "";
}

.fa-bed:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bezier-curve:before {
    content: "";
}

.fa-bible:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-biking:before {
    content: "";
}

.fa-bimobject:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-biohazard:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitcoin:before {
    content: "";
}

.fa-bity:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-blackberry:before {
    content: "";
}

.fa-blender:before {
    content: "";
}

.fa-blender-phone:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-blog:before {
    content: "";
}

.fa-blogger:before {
    content: "";
}

.fa-blogger-b:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-bolt:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-bone:before {
    content: "";
}

.fa-bong:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-book-dead:before {
    content: "";
}

.fa-book-medical:before {
    content: "";
}

.fa-book-open:before {
    content: "";
}

.fa-book-reader:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-bootstrap:before {
    content: "";
}

.fa-border-all:before {
    content: "";
}

.fa-border-none:before {
    content: "";
}

.fa-border-style:before {
    content: "";
}

.fa-bowling-ball:before {
    content: "";
}

.fa-box:before {
    content: "";
}

.fa-box-open:before {
    content: "";
}

.fa-box-tissue:before {
    content: "拏";
}

.fa-boxes:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-brain:before {
    content: "";
}

.fa-bread-slice:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-briefcase-medical:before {
    content: "";
}

.fa-broadcast-tower:before {
    content: "";
}

.fa-broom:before {
    content: "";
}

.fa-brush:before {
    content: "";
}

.fa-btc:before {
    content: "";
}

.fa-buffer:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-burn:before {
    content: "";
}

.fa-buromobelexperte:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-bus-alt:before {
    content: "";
}

.fa-business-time:before {
    content: "";
}

.fa-buy-n-large:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-calendar-alt:before {
    content: "";
}

.fa-calendar-check:before {
    content: "";
}

.fa-calendar-day:before {
    content: "";
}

.fa-calendar-minus:before {
    content: "";
}

.fa-calendar-plus:before {
    content: "";
}

.fa-calendar-times:before {
    content: "";
}

.fa-calendar-week:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-campground:before {
    content: "";
}

.fa-canadian-maple-leaf:before {
    content: "";
}

.fa-candy-cane:before {
    content: "";
}

.fa-cannabis:before {
    content: "";
}

.fa-capsules:before {
    content: "";
}

.fa-car:before {
    content: "";
}

.fa-car-alt:before {
    content: "";
}

.fa-car-battery:before {
    content: "";
}

.fa-car-crash:before {
    content: "";
}

.fa-car-side:before {
    content: "";
}

.fa-caravan:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-caret-square-down:before {
    content: "";
}

.fa-caret-square-left:before {
    content: "";
}

.fa-caret-square-right:before {
    content: "";
}

.fa-caret-square-up:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-carrot:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cash-register:before {
    content: "";
}

.fa-cat:before {
    content: "";
}

.fa-cc-amazon-pay:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-apple-pay:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-centercode:before {
    content: "";
}

.fa-centos:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-chair:before {
    content: "";
}

.fa-chalkboard:before {
    content: "";
}

.fa-chalkboard-teacher:before {
    content: "";
}

.fa-charging-station:before {
    content: "";
}

.fa-chart-area:before {
    content: "";
}

.fa-chart-bar:before {
    content: "";
}

.fa-chart-line:before {
    content: "";
}

.fa-chart-pie:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-check-double:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-cheese:before {
    content: "";
}

.fa-chess:before {
    content: "";
}

.fa-chess-bishop:before {
    content: "";
}

.fa-chess-board:before {
    content: "";
}

.fa-chess-king:before {
    content: "";
}

.fa-chess-knight:before {
    content: "";
}

.fa-chess-pawn:before {
    content: "";
}

.fa-chess-queen:before {
    content: "";
}

.fa-chess-rook:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-chromecast:before {
    content: "";
}

.fa-church:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-circle-notch:before {
    content: "";
}

.fa-city:before {
    content: "";
}

.fa-clinic-medical:before {
    content: "";
}

.fa-clipboard:before {
    content: "";
}

.fa-clipboard-check:before {
    content: "";
}

.fa-clipboard-list:before {
    content: "";
}

.fa-clock:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-closed-captioning:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-cloud-download-alt:before {
    content: "";
}

.fa-cloud-meatball:before {
    content: "";
}

.fa-cloud-moon:before {
    content: "";
}

.fa-cloud-moon-rain:before {
    content: "";
}

.fa-cloud-rain:before {
    content: "";
}

.fa-cloud-showers-heavy:before {
    content: "";
}

.fa-cloud-sun:before {
    content: "";
}

.fa-cloud-sun-rain:before {
    content: "";
}

.fa-cloud-upload-alt:before {
    content: "";
}

.fa-cloudscale:before {
    content: "";
}

.fa-cloudsmith:before {
    content: "";
}

.fa-cloudversify:before {
    content: "";
}

.fa-cocktail:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-code-branch:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cog:before {
    content: "";
}

.fa-cogs:before {
    content: "";
}

.fa-coins:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-comment-alt:before {
    content: "";
}

.fa-comment-dollar:before {
    content: "";
}

.fa-comment-dots:before {
    content: "";
}

.fa-comment-medical:before {
    content: "";
}

.fa-comment-slash:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-comments-dollar:before {
    content: "";
}

.fa-compact-disc:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-compress-alt:before {
    content: "";
}

.fa-compress-arrows-alt:before {
    content: "";
}

.fa-concierge-bell:before {
    content: "";
}

.fa-confluence:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-cookie:before {
    content: "";
}

.fa-cookie-bite:before {
    content: "";
}

.fa-copy:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-cotton-bureau:before {
    content: "";
}

.fa-couch:before {
    content: "";
}

.fa-cpanel:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-creative-commons-by:before {
    content: "";
}

.fa-creative-commons-nc:before {
    content: "";
}

.fa-creative-commons-nc-eu:before {
    content: "";
}

.fa-creative-commons-nc-jp:before {
    content: "";
}

.fa-creative-commons-nd:before {
    content: "";
}

.fa-creative-commons-pd:before {
    content: "";
}

.fa-creative-commons-pd-alt:before {
    content: "";
}

.fa-creative-commons-remix:before {
    content: "";
}

.fa-creative-commons-sa:before {
    content: "";
}

.fa-creative-commons-sampling:before {
    content: "";
}

.fa-creative-commons-sampling-plus:before {
    content: "";
}

.fa-creative-commons-share:before {
    content: "";
}

.fa-creative-commons-zero:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-critical-role:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-crop-alt:before {
    content: "";
}

.fa-cross:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-crow:before {
    content: "";
}

.fa-crown:before {
    content: "";
}

.fa-crutch:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-css3-alt:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-cut:before {
    content: "";
}

.fa-cuttlefish:before {
    content: "";
}

.fa-d-and-d:before {
    content: "";
}

.fa-d-and-d-beyond:before {
    content: "";
}

.fa-dailymotion:before {
    content: "勒";
}

.fa-dashcube:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-deaf:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-democrat:before {
    content: "";
}

.fa-deploydog:before {
    content: "";
}

.fa-deskpro:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-dev:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-dharmachakra:before {
    content: "";
}

.fa-dhl:before {
    content: "";
}

.fa-diagnoses:before {
    content: "";
}

.fa-diaspora:before {
    content: "";
}

.fa-dice:before {
    content: "";
}

.fa-dice-d20:before {
    content: "";
}

.fa-dice-d6:before {
    content: "";
}

.fa-dice-five:before {
    content: "";
}

.fa-dice-four:before {
    content: "";
}

.fa-dice-one:before {
    content: "";
}

.fa-dice-six:before {
    content: "";
}

.fa-dice-three:before {
    content: "";
}

.fa-dice-two:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-digital-ocean:before {
    content: "";
}

.fa-digital-tachograph:before {
    content: "";
}

.fa-directions:before {
    content: "";
}

.fa-discord:before {
    content: "";
}

.fa-discourse:before {
    content: "";
}

.fa-disease:before {
    content: "";
}

.fa-divide:before {
    content: "";
}

.fa-dizzy:before {
    content: "";
}

.fa-dna:before {
    content: "";
}

.fa-dochub:before {
    content: "";
}

.fa-docker:before {
    content: "";
}

.fa-dog:before {
    content: "";
}

.fa-dollar-sign:before {
    content: "";
}

.fa-dolly:before {
    content: "";
}

.fa-dolly-flatbed:before {
    content: "";
}

.fa-donate:before {
    content: "";
}

.fa-door-closed:before {
    content: "";
}

.fa-door-open:before {
    content: "";
}

.fa-dot-circle:before {
    content: "";
}

.fa-dove:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-draft2digital:before {
    content: "";
}

.fa-drafting-compass:before {
    content: "";
}

.fa-dragon:before {
    content: "";
}

.fa-draw-polygon:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-dribbble-square:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-drum:before {
    content: "";
}

.fa-drum-steelpan:before {
    content: "";
}

.fa-drumstick-bite:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-dumbbell:before {
    content: "";
}

.fa-dumpster:before {
    content: "";
}

.fa-dumpster-fire:before {
    content: "";
}

.fa-dungeon:before {
    content: "";
}

.fa-dyalog:before {
    content: "";
}

.fa-earlybirds:before {
    content: "";
}

.fa-ebay:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-edit:before {
    content: "";
}

.fa-egg:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-elementor:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-ello:before {
    content: "";
}

.fa-ember:before {
    content: "";
}

.fa-empire:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-text:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-equals:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-erlang:before {
    content: "";
}

.fa-ethereum:before {
    content: "";
}

.fa-ethernet:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-euro-sign:before {
    content: "";
}

.fa-evernote:before {
    content: "";
}

.fa-exchange-alt:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-exclamation-triangle:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-expand-alt:before {
    content: "";
}

.fa-expand-arrows-alt:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-external-link-alt:before {
    content: "";
}

.fa-external-link-square-alt:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-dropper:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-facebook:before {
    content: "";
}

.fa-facebook-f:before {
    content: "";
}

.fa-facebook-messenger:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-fan:before {
    content: "";
}

.fa-fantasy-flight-games:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-faucet:before {
    content: "串";
}

.fa-fax:before {
    content: "";
}

.fa-feather:before {
    content: "";
}

.fa-feather-alt:before {
    content: "";
}

.fa-fedex:before {
    content: "";
}

.fa-fedora:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-figma:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-alt:before {
    content: "";
}

.fa-file-archive:before {
    content: "";
}

.fa-file-audio:before {
    content: "";
}

.fa-file-code:before {
    content: "";
}

.fa-file-contract:before {
    content: "";
}

.fa-file-csv:before {
    content: "";
}

.fa-file-download:before {
    content: "";
}

.fa-file-excel:before {
    content: "";
}

.fa-file-export:before {
    content: "";
}

.fa-file-image:before {
    content: "";
}

.fa-file-import:before {
    content: "";
}

.fa-file-invoice:before {
    content: "";
}

.fa-file-invoice-dollar:before {
    content: "";
}

.fa-file-medical:before {
    content: "";
}

.fa-file-medical-alt:before {
    content: "";
}

.fa-file-pdf:before {
    content: "";
}

.fa-file-powerpoint:before {
    content: "";
}

.fa-file-prescription:before {
    content: "";
}

.fa-file-signature:before {
    content: "";
}

.fa-file-upload:before {
    content: "";
}

.fa-file-video:before {
    content: "";
}

.fa-file-word:before {
    content: "";
}

.fa-fill:before {
    content: "";
}

.fa-fill-drip:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-fingerprint:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-fire-alt:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-firefox-browser:before {
    content: "龜";
}

.fa-first-aid:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-first-order-alt:before {
    content: "";
}

.fa-firstdraft:before {
    content: "";
}

.fa-fish:before {
    content: "";
}

.fa-fist-raised:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-flag-usa:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-flipboard:before {
    content: "";
}

.fa-flushed:before {
    content: "";
}

.fa-fly:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-minus:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-folder-plus:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-font-awesome:before {
    content: "";
}

.fa-font-awesome-alt:before {
    content: "";
}

.fa-font-awesome-flag:before {
    content: "";
}

.fa-font-awesome-logo-full:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-fonticons-fi:before {
    content: "";
}

.fa-football-ball:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-fort-awesome-alt:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-freebsd:before {
    content: "";
}

.fa-frog:before {
    content: "";
}

.fa-frown:before {
    content: "";
}

.fa-frown-open:before {
    content: "";
}

.fa-fulcrum:before {
    content: "";
}

.fa-funnel-dollar:before {
    content: "";
}

.fa-futbol:before {
    content: "";
}

.fa-galactic-republic:before {
    content: "";
}

.fa-galactic-senate:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-gas-pump:before {
    content: "";
}

.fa-gavel:before {
    content: "";
}

.fa-gem:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-ghost:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-gifts:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-git-alt:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-gitkraken:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-gitter:before {
    content: "";
}

.fa-glass-cheers:before {
    content: "";
}

.fa-glass-martini:before {
    content: "";
}

.fa-glass-martini-alt:before {
    content: "";
}

.fa-glass-whiskey:before {
    content: "";
}

.fa-glasses:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-globe-africa:before {
    content: "";
}

.fa-globe-americas:before {
    content: "";
}

.fa-globe-asia:before {
    content: "";
}

.fa-globe-europe:before {
    content: "";
}

.fa-gofore:before {
    content: "";
}

.fa-golf-ball:before {
    content: "";
}

.fa-goodreads:before {
    content: "";
}

.fa-goodreads-g:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-google-drive:before {
    content: "";
}

.fa-google-play:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-google-plus-g:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-gopuram:before {
    content: "";
}

.fa-graduation-cap:before {
    content: "";
}

.fa-gratipay:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-greater-than:before {
    content: "";
}

.fa-greater-than-equal:before {
    content: "";
}

.fa-grimace:before {
    content: "";
}

.fa-grin:before {
    content: "";
}

.fa-grin-alt:before {
    content: "";
}

.fa-grin-beam:before {
    content: "";
}

.fa-grin-beam-sweat:before {
    content: "";
}

.fa-grin-hearts:before {
    content: "";
}

.fa-grin-squint:before {
    content: "";
}

.fa-grin-squint-tears:before {
    content: "";
}

.fa-grin-stars:before {
    content: "";
}

.fa-grin-tears:before {
    content: "";
}

.fa-grin-tongue:before {
    content: "";
}

.fa-grin-tongue-squint:before {
    content: "";
}

.fa-grin-tongue-wink:before {
    content: "";
}

.fa-grin-wink:before {
    content: "";
}

.fa-grip-horizontal:before {
    content: "";
}

.fa-grip-lines:before {
    content: "";
}

.fa-grip-lines-vertical:before {
    content: "";
}

.fa-grip-vertical:before {
    content: "";
}

.fa-gripfire:before {
    content: "";
}

.fa-grunt:before {
    content: "";
}

.fa-guitar:before {
    content: "";
}

.fa-gulp:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-hacker-news-square:before {
    content: "";
}

.fa-hackerrank:before {
    content: "";
}

.fa-hamburger:before {
    content: "";
}

.fa-hammer:before {
    content: "";
}

.fa-hamsa:before {
    content: "";
}

.fa-hand-holding:before {
    content: "";
}

.fa-hand-holding-heart:before {
    content: "";
}

.fa-hand-holding-medical:before {
    content: "樂";
}

.fa-hand-holding-usd:before {
    content: "";
}

.fa-hand-holding-water:before {
    content: "";
}

.fa-hand-lizard:before {
    content: "";
}

.fa-hand-middle-finger:before {
    content: "";
}

.fa-hand-paper:before {
    content: "";
}

.fa-hand-peace:before {
    content: "";
}

.fa-hand-point-down:before {
    content: "";
}

.fa-hand-point-left:before {
    content: "";
}

.fa-hand-point-right:before {
    content: "";
}

.fa-hand-point-up:before {
    content: "";
}

.fa-hand-pointer:before {
    content: "";
}

.fa-hand-rock:before {
    content: "";
}

.fa-hand-scissors:before {
    content: "";
}

.fa-hand-sparkles:before {
    content: "諾";
}

.fa-hand-spock:before {
    content: "";
}

.fa-hands:before {
    content: "";
}

.fa-hands-helping:before {
    content: "";
}

.fa-hands-wash:before {
    content: "丹";
}

.fa-handshake:before {
    content: "";
}

.fa-handshake-alt-slash:before {
    content: "寧";
}

.fa-handshake-slash:before {
    content: "怒";
}

.fa-hanukiah:before {
    content: "";
}

.fa-hard-hat:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-hat-cowboy:before {
    content: "";
}

.fa-hat-cowboy-side:before {
    content: "";
}

.fa-hat-wizard:before {
    content: "";
}

.fa-hdd:before {
    content: "";
}

.fa-head-side-cough:before {
    content: "率";
}

.fa-head-side-cough-slash:before {
    content: "異";
}

.fa-head-side-mask:before {
    content: "北";
}

.fa-head-side-virus:before {
    content: "磻";
}

.fa-heading:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-headphones-alt:before {
    content: "";
}

.fa-headset:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-heart-broken:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-helicopter:before {
    content: "";
}

.fa-highlighter:before {
    content: "";
}

.fa-hiking:before {
    content: "";
}

.fa-hippo:before {
    content: "";
}

.fa-hips:before {
    content: "";
}

.fa-hire-a-helper:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-hockey-puck:before {
    content: "";
}

.fa-holly-berry:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-hooli:before {
    content: "";
}

.fa-hornbill:before {
    content: "";
}

.fa-horse:before {
    content: "";
}

.fa-horse-head:before {
    content: "";
}

.fa-hospital:before {
    content: "";
}

.fa-hospital-alt:before {
    content: "";
}

.fa-hospital-symbol:before {
    content: "";
}

.fa-hospital-user:before {
    content: "";
}

.fa-hot-tub:before {
    content: "";
}

.fa-hotdog:before {
    content: "";
}

.fa-hotel:before {
    content: "";
}

.fa-hotjar:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-start:before {
    content: "";
}

.fa-house-damage:before {
    content: "";
}

.fa-house-user:before {
    content: "便";
}

.fa-houzz:before {
    content: "";
}

.fa-hryvnia:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-hubspot:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-ice-cream:before {
    content: "";
}

.fa-icicles:before {
    content: "";
}

.fa-icons:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-id-card:before {
    content: "";
}

.fa-id-card-alt:before {
    content: "";
}

.fa-ideal:before {
    content: "邏";
}

.fa-igloo:before {
    content: "";
}

.fa-image:before {
    content: "";
}

.fa-images:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-infinity:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-instagram-square:before {
    content: "凌";
}

.fa-intercom:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-invision:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-itch-io:before {
    content: "";
}

.fa-itunes:before {
    content: "";
}

.fa-itunes-note:before {
    content: "";
}

.fa-java:before {
    content: "";
}

.fa-jedi:before {
    content: "";
}

.fa-jedi-order:before {
    content: "";
}

.fa-jenkins:before {
    content: "";
}

.fa-jira:before {
    content: "";
}

.fa-joget:before {
    content: "";
}

.fa-joint:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-journal-whills:before {
    content: "";
}

.fa-js:before {
    content: "";
}

.fa-js-square:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-kaaba:before {
    content: "";
}

.fa-kaggle:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-keybase:before {
    content: "";
}

.fa-keyboard:before {
    content: "";
}

.fa-keycdn:before {
    content: "";
}

.fa-khanda:before {
    content: "";
}

.fa-kickstarter:before {
    content: "";
}

.fa-kickstarter-k:before {
    content: "";
}

.fa-kiss:before {
    content: "";
}

.fa-kiss-beam:before {
    content: "";
}

.fa-kiss-wink-heart:before {
    content: "";
}

.fa-kiwi-bird:before {
    content: "";
}

.fa-korvue:before {
    content: "";
}

.fa-landmark:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-laptop-code:before {
    content: "";
}

.fa-laptop-house:before {
    content: "復";
}

.fa-laptop-medical:before {
    content: "";
}

.fa-laravel:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-laugh:before {
    content: "";
}

.fa-laugh-beam:before {
    content: "";
}

.fa-laugh-squint:before {
    content: "";
}

.fa-laugh-wink:before {
    content: "";
}

.fa-layer-group:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-lemon:before {
    content: "";
}

.fa-less:before {
    content: "";
}

.fa-less-than:before {
    content: "";
}

.fa-less-than-equal:before {
    content: "";
}

.fa-level-down-alt:before {
    content: "";
}

.fa-level-up-alt:before {
    content: "";
}

.fa-life-ring:before {
    content: "";
}

.fa-lightbulb:before {
    content: "";
}

.fa-line:before {
    content: "";
}

.fa-link:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-linkedin-in:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-lira-sign:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-lock-open:before {
    content: "";
}

.fa-long-arrow-alt-down:before {
    content: "";
}

.fa-long-arrow-alt-left:before {
    content: "";
}

.fa-long-arrow-alt-right:before {
    content: "";
}

.fa-long-arrow-alt-up:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-luggage-cart:before {
    content: "";
}

.fa-lungs:before {
    content: "";
}

.fa-lungs-virus:before {
    content: "不";
}

.fa-lyft:before {
    content: "";
}

.fa-magento:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-mail-bulk:before {
    content: "";
}

.fa-mailchimp:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-mandalorian:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-map-marked:before {
    content: "";
}

.fa-map-marked-alt:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-map-marker-alt:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-markdown:before {
    content: "";
}

.fa-marker:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mask:before {
    content: "";
}

.fa-mastodon:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-mdb:before {
    content: "";
}

.fa-medal:before {
    content: "";
}

.fa-medapps:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-medium-m:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-medrt:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.fa-megaport:before {
    content: "";
}

.fa-meh:before {
    content: "";
}

.fa-meh-blank:before {
    content: "";
}

.fa-meh-rolling-eyes:before {
    content: "";
}

.fa-memory:before {
    content: "";
}

.fa-mendeley:before {
    content: "";
}

.fa-menorah:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-meteor:before {
    content: "";
}

.fa-microblog:before {
    content: "駱";
}

.fa-microchip:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-alt:before {
    content: "";
}

.fa-microphone-alt-slash:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-microscope:before {
    content: "";
}

.fa-microsoft:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-mitten:before {
    content: "";
}

.fa-mix:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-mixer:before {
    content: "稜";
}

.fa-mizuni:before {
    content: "";
}

.fa-mobile:before {
    content: "";
}

.fa-mobile-alt:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-monero:before {
    content: "";
}

.fa-money-bill:before {
    content: "";
}

.fa-money-bill-alt:before {
    content: "";
}

.fa-money-bill-wave:before {
    content: "";
}

.fa-money-bill-wave-alt:before {
    content: "";
}

.fa-money-check:before {
    content: "";
}

.fa-money-check-alt:before {
    content: "";
}

.fa-monument:before {
    content: "";
}

.fa-moon:before {
    content: "";
}

.fa-mortar-pestle:before {
    content: "";
}

.fa-mosque:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-mountain:before {
    content: "";
}

.fa-mouse:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-mug-hot:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-napster:before {
    content: "";
}

.fa-neos:before {
    content: "";
}

.fa-network-wired:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-newspaper:before {
    content: "";
}

.fa-nimblr:before {
    content: "";
}

.fa-node:before {
    content: "";
}

.fa-node-js:before {
    content: "";
}

.fa-not-equal:before {
    content: "";
}

.fa-notes-medical:before {
    content: "";
}

.fa-npm:before {
    content: "";
}

.fa-ns8:before {
    content: "";
}

.fa-nutritionix:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-oil-can:before {
    content: "";
}

.fa-old-republic:before {
    content: "";
}

.fa-om:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-orcid:before {
    content: "";
}

.fa-osi:before {
    content: "";
}

.fa-otter:before {
    content: "";
}

.fa-outdent:before {
    content: "";
}

.fa-page4:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-pager:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-paint-roller:before {
    content: "";
}

.fa-palette:before {
    content: "";
}

.fa-palfed:before {
    content: "";
}

.fa-pallet:before {
    content: "";
}

.fa-paper-plane:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-parachute-box:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-parking:before {
    content: "";
}

.fa-passport:before {
    content: "";
}

.fa-pastafarianism:before {
    content: "";
}

.fa-paste:before {
    content: "";
}

.fa-patreon:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-peace:before {
    content: "";
}

.fa-pen:before {
    content: "";
}

.fa-pen-alt:before {
    content: "";
}

.fa-pen-fancy:before {
    content: "";
}

.fa-pen-nib:before {
    content: "";
}

.fa-pen-square:before {
    content: "";
}

.fa-pencil-alt:before {
    content: "";
}

.fa-pencil-ruler:before {
    content: "";
}

.fa-penny-arcade:before {
    content: "";
}

.fa-people-arrows:before {
    content: "泌";
}

.fa-people-carry:before {
    content: "";
}

.fa-pepper-hot:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-percentage:before {
    content: "";
}

.fa-periscope:before {
    content: "";
}

.fa-person-booth:before {
    content: "";
}

.fa-phabricator:before {
    content: "";
}

.fa-phoenix-framework:before {
    content: "";
}

.fa-phoenix-squadron:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-phone-alt:before {
    content: "";
}

.fa-phone-slash:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-phone-square-alt:before {
    content: "";
}

.fa-phone-volume:before {
    content: "";
}

.fa-photo-video:before {
    content: "";
}

.fa-php:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-pied-piper-hat:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-square:before {
    content: "爛";
}

.fa-piggy-bank:before {
    content: "";
}

.fa-pills:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-pizza-slice:before {
    content: "";
}

.fa-place-of-worship:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-plane-arrival:before {
    content: "";
}

.fa-plane-departure:before {
    content: "";
}

.fa-plane-slash:before {
    content: "數";
}

.fa-play:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-playstation:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-poll:before {
    content: "";
}

.fa-poll-h:before {
    content: "";
}

.fa-poo:before {
    content: "";
}

.fa-poo-storm:before {
    content: "";
}

.fa-poop:before {
    content: "";
}

.fa-portrait:before {
    content: "";
}

.fa-pound-sign:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-pray:before {
    content: "";
}

.fa-praying-hands:before {
    content: "";
}

.fa-prescription:before {
    content: "";
}

.fa-prescription-bottle:before {
    content: "";
}

.fa-prescription-bottle-alt:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-procedures:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-project-diagram:before {
    content: "";
}

.fa-pump-medical:before {
    content: "索";
}

.fa-pump-soap:before {
    content: "參";
}

.fa-pushed:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-python:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-quidditch:before {
    content: "";
}

.fa-quinscape:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-quran:before {
    content: "";
}

.fa-r-project:before {
    content: "";
}

.fa-radiation:before {
    content: "";
}

.fa-radiation-alt:before {
    content: "";
}

.fa-rainbow:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-raspberry-pi:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-react:before {
    content: "";
}

.fa-reacteurope:before {
    content: "";
}

.fa-readme:before {
    content: "";
}

.fa-rebel:before {
    content: "";
}

.fa-receipt:before {
    content: "";
}

.fa-record-vinyl:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-red-river:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-redhat:before {
    content: "";
}

.fa-redo:before {
    content: "";
}

.fa-redo-alt:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-remove-format:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-reply:before {
    content: "";
}

.fa-reply-all:before {
    content: "";
}

.fa-replyd:before {
    content: "";
}

.fa-republican:before {
    content: "";
}

.fa-researchgate:before {
    content: "";
}

.fa-resolving:before {
    content: "";
}

.fa-restroom:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-rev:before {
    content: "";
}

.fa-ribbon:before {
    content: "";
}

.fa-ring:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-robot:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-rocketchat:before {
    content: "";
}

.fa-rockrms:before {
    content: "";
}

.fa-route:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-ruble-sign:before {
    content: "";
}

.fa-ruler:before {
    content: "";
}

.fa-ruler-combined:before {
    content: "";
}

.fa-ruler-horizontal:before {
    content: "";
}

.fa-ruler-vertical:before {
    content: "";
}

.fa-running:before {
    content: "";
}

.fa-rupee-sign:before {
    content: "";
}

.fa-sad-cry:before {
    content: "";
}

.fa-sad-tear:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-salesforce:before {
    content: "";
}

.fa-sass:before {
    content: "";
}

.fa-satellite:before {
    content: "";
}

.fa-satellite-dish:before {
    content: "";
}

.fa-save:before {
    content: "";
}

.fa-schlix:before {
    content: "";
}

.fa-school:before {
    content: "";
}

.fa-screwdriver:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-scroll:before {
    content: "";
}

.fa-sd-card:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-search-dollar:before {
    content: "";
}

.fa-search-location:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-searchengin:before {
    content: "";
}

.fa-seedling:before {
    content: "";
}

.fa-sellcast:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-servicestack:before {
    content: "";
}

.fa-shapes:before {
    content: "";
}

.fa-share:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-shekel-sign:before {
    content: "";
}

.fa-shield-alt:before {
    content: "";
}

.fa-shield-virus:before {
    content: "塞";
}

.fa-ship:before {
    content: "";
}

.fa-shipping-fast:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-shoe-prints:before {
    content: "";
}

.fa-shopify:before {
    content: "綾";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-shopware:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-shuttle-van:before {
    content: "";
}

.fa-sign:before {
    content: "";
}

.fa-sign-in-alt:before {
    content: "";
}

.fa-sign-language:before {
    content: "";
}

.fa-sign-out-alt:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-signature:before {
    content: "";
}

.fa-sim-card:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-sistrix:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-sith:before {
    content: "";
}

.fa-skating:before {
    content: "";
}

.fa-sketch:before {
    content: "";
}

.fa-skiing:before {
    content: "";
}

.fa-skiing-nordic:before {
    content: "";
}

.fa-skull:before {
    content: "";
}

.fa-skull-crossbones:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-slack-hash:before {
    content: "";
}

.fa-slash:before {
    content: "";
}

.fa-sleigh:before {
    content: "";
}

.fa-sliders-h:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-smile:before {
    content: "";
}

.fa-smile-beam:before {
    content: "";
}

.fa-smile-wink:before {
    content: "";
}

.fa-smog:before {
    content: "";
}

.fa-smoking:before {
    content: "";
}

.fa-smoking-ban:before {
    content: "";
}

.fa-sms:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-snowboarding:before {
    content: "";
}

.fa-snowflake:before {
    content: "";
}

.fa-snowman:before {
    content: "";
}

.fa-snowplow:before {
    content: "";
}

.fa-soap:before {
    content: "葉";
}

.fa-socks:before {
    content: "";
}

.fa-solar-panel:before {
    content: "";
}

.fa-sort:before {
    content: "";
}

.fa-sort-alpha-down:before {
    content: "";
}

.fa-sort-alpha-down-alt:before {
    content: "";
}

.fa-sort-alpha-up:before {
    content: "";
}

.fa-sort-alpha-up-alt:before {
    content: "";
}

.fa-sort-amount-down:before {
    content: "";
}

.fa-sort-amount-down-alt:before {
    content: "";
}

.fa-sort-amount-up:before {
    content: "";
}

.fa-sort-amount-up-alt:before {
    content: "";
}

.fa-sort-down:before {
    content: "";
}

.fa-sort-numeric-down:before {
    content: "";
}

.fa-sort-numeric-down-alt:before {
    content: "";
}

.fa-sort-numeric-up:before {
    content: "";
}

.fa-sort-numeric-up-alt:before {
    content: "";
}

.fa-sort-up:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-sourcetree:before {
    content: "";
}

.fa-spa:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-speakap:before {
    content: "";
}

.fa-speaker-deck:before {
    content: "";
}

.fa-spell-check:before {
    content: "";
}

.fa-spider:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-splotch:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-spray-can:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-square-full:before {
    content: "";
}

.fa-square-root-alt:before {
    content: "";
}

.fa-squarespace:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-stackpath:before {
    content: "";
}

.fa-stamp:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-and-crescent:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-star-half-alt:before {
    content: "";
}

.fa-star-of-david:before {
    content: "";
}

.fa-star-of-life:before {
    content: "";
}

.fa-staylinked:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-steam-symbol:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-sticker-mule:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stopwatch:before {
    content: "";
}

.fa-stopwatch-20:before {
    content: "說";
}

.fa-store:before {
    content: "";
}

.fa-store-alt:before {
    content: "";
}

.fa-store-alt-slash:before {
    content: "殺";
}

.fa-store-slash:before {
    content: "辰";
}

.fa-strava:before {
    content: "";
}

.fa-stream:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-stripe:before {
    content: "";
}

.fa-stripe-s:before {
    content: "";
}

.fa-stroopwafel:before {
    content: "";
}

.fa-studiovinari:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-suitcase-rolling:before {
    content: "";
}

.fa-sun:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-supple:before {
    content: "";
}

.fa-surprise:before {
    content: "";
}

.fa-suse:before {
    content: "";
}

.fa-swatchbook:before {
    content: "";
}

.fa-swift:before {
    content: "";
}

.fa-swimmer:before {
    content: "";
}

.fa-swimming-pool:before {
    content: "";
}

.fa-symfony:before {
    content: "";
}

.fa-synagogue:before {
    content: "";
}

.fa-sync:before {
    content: "";
}

.fa-sync-alt:before {
    content: "";
}

.fa-syringe:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-table-tennis:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-tablet-alt:before {
    content: "";
}

.fa-tablets:before {
    content: "";
}

.fa-tachometer-alt:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-tape:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-taxi:before {
    content: "";
}

.fa-teamspeak:before {
    content: "";
}

.fa-teeth:before {
    content: "";
}

.fa-teeth-open:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-telegram-plane:before {
    content: "";
}

.fa-temperature-high:before {
    content: "";
}

.fa-temperature-low:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-tenge:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-the-red-yeti:before {
    content: "";
}

.fa-theater-masks:before {
    content: "";
}

.fa-themeco:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-thermometer:before {
    content: "";
}

.fa-thermometer-empty:before {
    content: "";
}

.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-think-peaks:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbtack:before {
    content: "";
}

.fa-ticket-alt:before {
    content: "";
}

.fa-times:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-tint-slash:before {
    content: "";
}

.fa-tired:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-toilet:before {
    content: "";
}

.fa-toilet-paper:before {
    content: "";
}

.fa-toilet-paper-slash:before {
    content: "沈";
}

.fa-toolbox:before {
    content: "";
}

.fa-tools:before {
    content: "";
}

.fa-tooth:before {
    content: "";
}

.fa-torah:before {
    content: "";
}

.fa-torii-gate:before {
    content: "";
}

.fa-tractor:before {
    content: "";
}

.fa-trade-federation:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-traffic-light:before {
    content: "";
}

.fa-trailer:before {
    content: "論";
}

.fa-train:before {
    content: "";
}

.fa-tram:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-trash-alt:before {
    content: "";
}

.fa-trash-restore:before {
    content: "";
}

.fa-trash-restore-alt:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-truck-loading:before {
    content: "";
}

.fa-truck-monster:before {
    content: "";
}

.fa-truck-moving:before {
    content: "";
}

.fa-truck-pickup:before {
    content: "";
}

.fa-tshirt:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-tv:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-typo3:before {
    content: "";
}

.fa-uber:before {
    content: "";
}

.fa-ubuntu:before {
    content: "";
}

.fa-uikit:before {
    content: "";
}

.fa-umbraco:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-umbrella-beach:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-undo:before {
    content: "";
}

.fa-undo-alt:before {
    content: "";
}

.fa-uniregistry:before {
    content: "";
}

.fa-unity:before {
    content: "雷";
}

.fa-universal-access:before {
    content: "";
}

.fa-university:before {
    content: "";
}

.fa-unlink:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-untappd:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-ups:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-user-alt:before {
    content: "";
}

.fa-user-alt-slash:before {
    content: "";
}

.fa-user-astronaut:before {
    content: "";
}

.fa-user-check:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-clock:before {
    content: "";
}

.fa-user-cog:before {
    content: "";
}

.fa-user-edit:before {
    content: "";
}

.fa-user-friends:before {
    content: "";
}

.fa-user-graduate:before {
    content: "";
}

.fa-user-injured:before {
    content: "";
}

.fa-user-lock:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-user-minus:before {
    content: "";
}

.fa-user-ninja:before {
    content: "";
}

.fa-user-nurse:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-user-shield:before {
    content: "";
}

.fa-user-slash:before {
    content: "";
}

.fa-user-tag:before {
    content: "";
}

.fa-user-tie:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-users:before {
    content: "";
}

.fa-users-cog:before {
    content: "";
}

.fa-usps:before {
    content: "";
}

.fa-ussunnah:before {
    content: "";
}

.fa-utensil-spoon:before {
    content: "";
}

.fa-utensils:before {
    content: "";
}

.fa-vaadin:before {
    content: "";
}

.fa-vector-square:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-vial:before {
    content: "";
}

.fa-vials:before {
    content: "";
}

.fa-viber:before {
    content: "";
}

.fa-video:before {
    content: "";
}

.fa-video-slash:before {
    content: "";
}

.fa-vihara:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-vimeo-v:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-virus:before {
    content: "若";
}

.fa-virus-slash:before {
    content: "掠";
}

.fa-viruses:before {
    content: "略";
}

.fa-vk:before {
    content: "";
}

.fa-vnv:before {
    content: "";
}

.fa-voicemail:before {
    content: "";
}

.fa-volleyball-ball:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-mute:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-vote-yea:before {
    content: "";
}

.fa-vr-cardboard:before {
    content: "";
}

.fa-vuejs:before {
    content: "";
}

.fa-walking:before {
    content: "";
}

.fa-wallet:before {
    content: "";
}

.fa-warehouse:before {
    content: "";
}

.fa-water:before {
    content: "";
}

.fa-wave-square:before {
    content: "";
}

.fa-waze:before {
    content: "";
}

.fa-weebly:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-weight:before {
    content: "";
}

.fa-weight-hanging:before {
    content: "";
}

.fa-weixin:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-whatsapp-square:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-whmcs:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-wind:before {
    content: "";
}

.fa-window-close:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-wine-bottle:before {
    content: "";
}

.fa-wine-glass:before {
    content: "";
}

.fa-wine-glass-alt:before {
    content: "";
}

.fa-wix:before {
    content: "";
}

.fa-wizards-of-the-coast:before {
    content: "";
}

.fa-wolf-pack-battalion:before {
    content: "";
}

.fa-won-sign:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-wordpress-simple:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-wpressr:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-x-ray:before {
    content: "";
}

.fa-xbox:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-y-combinator:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-yammer:before {
    content: "";
}

.fa-yandex:before {
    content: "";
}

.fa-yandex-international:before {
    content: "";
}

.fa-yarn:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-yen-sign:before {
    content: "";
}

.fa-yin-yang:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-zhihu:before {
    content: "";
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("fonts/fontawesome/fa-solid-900.html");
    src: url("fonts/fontawesome/fa-solid-900d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-solid-901.html") format("woff2"), url("fonts/fontawesome/fa-solid-902.html") format("woff"), url("fonts/fontawesome/fa-solid-903.html") format("truetype"), url("fonts/fontawesome/fa-solid-904.html#fontawesome") format("svg");
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("fonts/fontawesome/fa-regular-400.html");
    src: url("fonts/fontawesome/fa-regular-400d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-regular-401.html") format("woff2"), url("fonts/fontawesome/fa-regular-402.html") format("woff"), url("fonts/fontawesome/fa-regular-403.html") format("truetype"), url("fonts/fontawesome/fa-regular-404.html#fontawesome") format("svg");
}

.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 100;
    src: local("Roboto Thin"), local("Roboto-Thin"), url("fonts/Roboto/Roboto-Thin.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: local("Roboto Light"), local("Roboto-Light"), url("fonts/Roboto/Roboto-Light.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("fonts/Roboto/Roboto-Regular.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url("fonts/Roboto/Roboto-Medium.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("fonts/Roboto/Roboto-Bold.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    src: local("Roboto Black"), local("Roboto-Black"), url("fonts/Roboto/Roboto-Black.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-Regular-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: italic;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-RegularItalic-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/Euclid/EuclidCircularB-Bold-WebXL.html") format("truetype");
}

/*
  Z-Indicies
*/

/**
 * Calculate the luminance for a color.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 *
 * Note:
 * @Gudahtt and @brad-decker have identified a potential performance concern
 * that **might** impact build times if this function becomes widely used. It
 * has not been validated, and is predicated on user-land math.pow functions
 * prior to dart-sass 1.25.0. However, if the build times of sass raise
 * exponentially a lookup table of all possible values for the math.pow call
 * can be used to bypass the issue. This will require some logic updates as
 * well. For reference, the blog post where the performance concern was
 * originally made is here https://bit.ly/3c3qXzq (css-tricks)
 */

/**
 * Calculate the contrast ratio between two colors.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 */

/**
 * Determine whether to use dark or light text on top of given color.
 * Returns black for dark text and white for light text.
 */

.box--padding-0 {
    padding: 0px;
}

.box--padding-1 {
    padding: 4px;
}

.box--padding-2 {
    padding: 8px;
}

.box--padding-3 {
    padding: 12px;
}

.box--padding-4 {
    padding: 16px;
}

.box--padding-5 {
    padding: 20px;
}

.box--padding-6 {
    padding: 24px;
}

.box--padding-7 {
    padding: 28px;
}

.box--padding-8 {
    padding: 32px;
}

.box--padding-9 {
    padding: 36px;
}

.box--padding-10 {
    padding: 40px;
}

.box--padding-11 {
    padding: 44px;
}

.box--padding-12 {
    padding: 48px;
}

.box--padding-top-0 {
    padding-top: 0px;
}

.box--padding-right-0 {
    padding-right: 0px;
}

.box--padding-bottom-0 {
    padding-bottom: 0px;
}

.box--padding-left-0 {
    padding-left: 0px;
}

.box--padding-top-1 {
    padding-top: 4px;
}

.box--padding-right-1 {
    padding-right: 4px;
}

.box--padding-bottom-1 {
    padding-bottom: 4px;
}

.box--padding-left-1 {
    padding-left: 4px;
}

.box--padding-top-2 {
    padding-top: 8px;
}

.box--padding-right-2 {
    padding-right: 8px;
}

.box--padding-bottom-2 {
    padding-bottom: 8px;
}

.box--padding-left-2 {
    padding-left: 8px;
}

.box--padding-top-3 {
    padding-top: 12px;
}

.box--padding-right-3 {
    padding-right: 12px;
}

.box--padding-bottom-3 {
    padding-bottom: 12px;
}

.box--padding-left-3 {
    padding-left: 12px;
}

.box--padding-top-4 {
    padding-top: 16px;
}

.box--padding-right-4 {
    padding-right: 16px;
}

.box--padding-bottom-4 {
    padding-bottom: 16px;
}

.box--padding-left-4 {
    padding-left: 16px;
}

.box--padding-top-5 {
    padding-top: 20px;
}

.box--padding-right-5 {
    padding-right: 20px;
}

.box--padding-bottom-5 {
    padding-bottom: 20px;
}

.box--padding-left-5 {
    padding-left: 20px;
}

.box--padding-top-6 {
    padding-top: 24px;
}

.box--padding-right-6 {
    padding-right: 24px;
}

.box--padding-bottom-6 {
    padding-bottom: 24px;
}

.box--padding-left-6 {
    padding-left: 24px;
}

.box--padding-top-7 {
    padding-top: 28px;
}

.box--padding-right-7 {
    padding-right: 28px;
}

.box--padding-bottom-7 {
    padding-bottom: 28px;
}

.box--padding-left-7 {
    padding-left: 28px;
}

.box--padding-top-8 {
    padding-top: 32px;
}

.box--padding-right-8 {
    padding-right: 32px;
}

.box--padding-bottom-8 {
    padding-bottom: 32px;
}

.box--padding-left-8 {
    padding-left: 32px;
}

.box--padding-top-9 {
    padding-top: 36px;
}

.box--padding-right-9 {
    padding-right: 36px;
}

.box--padding-bottom-9 {
    padding-bottom: 36px;
}

.box--padding-left-9 {
    padding-left: 36px;
}

.box--padding-top-10 {
    padding-top: 40px;
}

.box--padding-right-10 {
    padding-right: 40px;
}

.box--padding-bottom-10 {
    padding-bottom: 40px;
}

.box--padding-left-10 {
    padding-left: 40px;
}

.box--padding-top-11 {
    padding-top: 44px;
}

.box--padding-right-11 {
    padding-right: 44px;
}

.box--padding-bottom-11 {
    padding-bottom: 44px;
}

.box--padding-left-11 {
    padding-left: 44px;
}

.box--padding-top-12 {
    padding-top: 48px;
}

.box--padding-right-12 {
    padding-right: 48px;
}

.box--padding-bottom-12 {
    padding-bottom: 48px;
}

.box--padding-left-12 {
    padding-left: 48px;
}

.box--margin-0 {
    margin: 0px;
}

.box--margin-1 {
    margin: 4px;
}

.box--margin-2 {
    margin: 8px;
}

.box--margin-3 {
    margin: 12px;
}

.box--margin-4 {
    margin: 16px;
}

.box--margin-5 {
    margin: 20px;
}

.box--margin-6 {
    margin: 24px;
}

.box--margin-7 {
    margin: 28px;
}

.box--margin-8 {
    margin: 32px;
}

.box--margin-9 {
    margin: 36px;
}

.box--margin-10 {
    margin: 40px;
}

.box--margin-11 {
    margin: 44px;
}

.box--margin-12 {
    margin: 48px;
}

.box--margin-top-0 {
    margin-top: 0px;
}

.box--margin-right-0 {
    margin-right: 0px;
}

.box--margin-bottom-0 {
    margin-bottom: 0px;
}

.box--margin-left-0 {
    margin-left: 0px;
}

.box--margin-top-1 {
    margin-top: 4px;
}

.box--margin-right-1 {
    margin-right: 4px;
}

.box--margin-bottom-1 {
    margin-bottom: 4px;
}

.box--margin-left-1 {
    margin-left: 4px;
}

.box--margin-top-2 {
    margin-top: 8px;
}

.box--margin-right-2 {
    margin-right: 8px;
}

.box--margin-bottom-2 {
    margin-bottom: 8px;
}

.box--margin-left-2 {
    margin-left: 8px;
}

.box--margin-top-3 {
    margin-top: 12px;
}

.box--margin-right-3 {
    margin-right: 12px;
}

.box--margin-bottom-3 {
    margin-bottom: 12px;
}

.box--margin-left-3 {
    margin-left: 12px;
}

.box--margin-top-4 {
    margin-top: 16px;
}

.box--margin-right-4 {
    margin-right: 16px;
}

.box--margin-bottom-4 {
    margin-bottom: 16px;
}

.box--margin-left-4 {
    margin-left: 16px;
}

.box--margin-top-5 {
    margin-top: 20px;
}

.box--margin-right-5 {
    margin-right: 20px;
}

.box--margin-bottom-5 {
    margin-bottom: 20px;
}

.box--margin-left-5 {
    margin-left: 20px;
}

.box--margin-top-6 {
    margin-top: 24px;
}

.box--margin-right-6 {
    margin-right: 24px;
}

.box--margin-bottom-6 {
    margin-bottom: 24px;
}

.box--margin-left-6 {
    margin-left: 24px;
}

.box--margin-top-7 {
    margin-top: 28px;
}

.box--margin-right-7 {
    margin-right: 28px;
}

.box--margin-bottom-7 {
    margin-bottom: 28px;
}

.box--margin-left-7 {
    margin-left: 28px;
}

.box--margin-top-8 {
    margin-top: 32px;
}

.box--margin-right-8 {
    margin-right: 32px;
}

.box--margin-bottom-8 {
    margin-bottom: 32px;
}

.box--margin-left-8 {
    margin-left: 32px;
}

.box--margin-top-9 {
    margin-top: 36px;
}

.box--margin-right-9 {
    margin-right: 36px;
}

.box--margin-bottom-9 {
    margin-bottom: 36px;
}

.box--margin-left-9 {
    margin-left: 36px;
}

.box--margin-top-10 {
    margin-top: 40px;
}

.box--margin-right-10 {
    margin-right: 40px;
}

.box--margin-bottom-10 {
    margin-bottom: 40px;
}

.box--margin-left-10 {
    margin-left: 40px;
}

.box--margin-top-11 {
    margin-top: 44px;
}

.box--margin-right-11 {
    margin-right: 44px;
}

.box--margin-bottom-11 {
    margin-bottom: 44px;
}

.box--margin-left-11 {
    margin-left: 44px;
}

.box--margin-top-12 {
    margin-top: 48px;
}

.box--margin-right-12 {
    margin-right: 48px;
}

.box--margin-bottom-12 {
    margin-bottom: 48px;
}

.box--margin-left-12 {
    margin-left: 48px;
}

.box--border-size-0 {
    border-width: 0px;
}

.box--border-size-1 {
    border-width: 1px;
}

.box--border-size-2 {
    border-width: 2px;
}

.box--border-size-3 {
    border-width: 3px;
}

.box--border-size-4 {
    border-width: 4px;
}

.box--border-size-5 {
    border-width: 5px;
}

.box--border-size-6 {
    border-width: 6px;
}

.box--border-size-7 {
    border-width: 7px;
}

.box--border-size-8 {
    border-width: 8px;
}

.box--border-size-9 {
    border-width: 9px;
}

.box--border-size-10 {
    border-width: 10px;
}

.box--border-size-11 {
    border-width: 11px;
}

.box--border-size-12 {
    border-width: 12px;
}

.box--border-color-ui-1 {
    border-color: #f2f3f4;
}

.box--border-color-ui-2 {
    border-color: #d6d9dc;
}

.box--border-color-ui-3 {
    border-color: #bbc0c5;
}

.box--border-color-ui-4 {
    border-color: #6a737d;
}

.box--border-color-white {
    border-color: #fff;
}

.box--border-color-black {
    border-color: #24292e;
}

.box--border-color-primary-1 {
    border-color: #037dd6;
}

.box--border-color-primary-2 {
    border-color: #eaf6ff;
}

.box--border-color-primary-3 {
    border-color: #0260a4;
}

.box--border-color-secondary-1 {
    border-color: #f66a0a;
}

.box--border-color-secondary-2 {
    border-color: #fef5ef;
}

.box--border-color-secondary-3 {
    border-color: #c65507;
}

.box--border-color-alert-1 {
    border-color: #ffd33d;
}

.box--border-color-alert-2 {
    border-color: #fefcde;
}

.box--border-color-alert-3 {
    border-color: #f8c000;
}

.box--border-color-error-1 {
    border-color: #d73a49;
}

.box--border-color-error-2 {
    border-color: #fcf2f3;
}

.box--border-color-error-3 {
    border-color: #b92534;
}

.box--border-color-success-1 {
    border-color: #4cd964;
}

.box--border-color-success-2 {
    border-color: #caf4d1;
}

.box--border-color-success-3 {
    border-color: #219e37;
}

.box--border-color-mainnet {
    border-color: #29b6af;
}

.box--border-color-ropsten {
    border-color: #ff4a8d;
}

.box--border-color-kovan {
    border-color: #9064ff;
}

.box--border-color-rinkeby {
    border-color: #f6c343;
}

.box--border-color-goerli {
    border-color: #3099f2;
}

.box--border-color-transparent {
    border-color: transparent;
}

.box--border-style-solid {
    border-style: solid;
}

.box--border-style-double {
    border-style: double;
}

.box--border-style-none {
    border-style: none;
}

.box--border-style-dashed {
    border-style: dashed;
}

.box--border-style-dotted {
    border-style: dotted;
}

.box--rounded-none {
    border-radius: 0;
}

.box--rounded-xs {
    border-radius: 0.125rem;
}

.box--rounded-sm {
    border-radius: 0.25rem;
}

.box--rounded-md {
    border-radius: 0.375rem;
}

.box--rounded-lg {
    border-radius: 0.5rem;
}

.box--rounded-xl {
    border-radius: 0.75rem;
}

.box--display-block {
    display: block;
}

.box--display-grid {
    display: grid;
}

.box--display-flex {
    display: flex;
}

.box--display-inline-block {
    display: inline-block;
}

.box--display-inline-grid {
    display: inline-grid;
}

.box--display-inline-flex {
    display: inline-flex;
}

.box--display-list-item {
    display: list-item;
}

.box--align-items-baseline {
    align-items: baseline;
}

.box--align-items-center {
    align-items: center;
}

.box--align-items-flex-end {
    align-items: flex-end;
}

.box--align-items-flex-start {
    align-items: flex-start;
}

.box--align-items-stretch {
    align-items: stretch;
}

.box--justify-content-center {
    justify-content: center;
}

.box--justify-content-flex-end {
    justify-content: flex-end;
}

.box--justify-content-flex-start {
    justify-content: flex-start;
}

.box--justify-content-space-around {
    justify-content: space-around;
}

.box--justify-content-space-between {
    justify-content: space-between;
}

.box--justify-content-space-evenly {
    justify-content: space-evenly;
}

.box--width-full {
    width: 100%;
}

.box--height-full {
    height: 100%;
}

.box--width-1\/2 {
    width: 50%;
}

.box--height-1\/2 {
    height: 50%;
}

.box--width-1\/3 {
    width: 33.333333%;
}

.box--height-1\/3 {
    height: 33.333333%;
}

.box--width-2\/3 {
    width: 66.666667%;
}

.box--height-2\/3 {
    height: 66.666667%;
}

.box--width-1\/4 {
    width: 25%;
}

.box--height-1\/4 {
    height: 25%;
}

.box--width-2\/4 {
    width: 50%;
}

.box--height-2\/4 {
    height: 50%;
}

.box--width-3\/4 {
    width: 75%;
}

.box--height-3\/4 {
    height: 75%;
}

.box--width-1\/5 {
    width: 20%;
}

.box--height-1\/5 {
    height: 20%;
}

.box--width-2\/5 {
    width: 40%;
}

.box--height-2\/5 {
    height: 40%;
}

.box--width-3\/5 {
    width: 60%;
}

.box--height-3\/5 {
    height: 60%;
}

.box--width-4\/5 {
    width: 80%;
}

.box--height-4\/5 {
    height: 80%;
}

.box--width-1\/6 {
    width: 16.666667%;
}

.box--height-1\/6 {
    height: 16.666667%;
}

.box--width-2\/6 {
    width: 33.333333%;
}

.box--height-2\/6 {
    height: 33.333333%;
}

.box--width-3\/6 {
    width: 50%;
}

.box--height-3\/6 {
    height: 50%;
}

.box--width-4\/6 {
    width: 66.666667%;
}

.box--height-4\/6 {
    height: 66.666667%;
}

.box--width-5\/6 {
    width: 83.333333%;
}

.box--height-5\/6 {
    height: 83.333333%;
}

.box--width-1\/12 {
    width: 8.333333%;
}

.box--height-1\/12 {
    height: 8.333333%;
}

.box--width-2\/12 {
    width: 16.666667%;
}

.box--height-2\/12 {
    height: 16.666667%;
}

.box--width-3\/12 {
    width: 25%;
}

.box--height-3\/12 {
    height: 25%;
}

.box--width-4\/12 {
    width: 33.333333%;
}

.box--height-4\/12 {
    height: 33.333333%;
}

.box--width-5\/12 {
    width: 41.666667%;
}

.box--height-5\/12 {
    height: 41.666667%;
}

.box--width-6\/12 {
    width: 50%;
}

.box--height-6\/12 {
    height: 50%;
}

.box--width-7\/12 {
    width: 58.333333%;
}

.box--height-7\/12 {
    height: 58.333333%;
}

.box--width-8\/12 {
    width: 66.666667%;
}

.box--height-8\/12 {
    height: 66.666667%;
}

.box--width-9\/12 {
    width: 75%;
}

.box--height-9\/12 {
    height: 75%;
}

.box--width-10\/12 {
    width: 83.333333%;
}

.box--height-10\/12 {
    height: 83.333333%;
}

.box--width-11\/12 {
    width: 91.666667%;
}

.box--height-11\/12 {
    height: 91.666667%;
}

.box--height-screen {
    height: 100vh;
}

.box--width-screen {
    width: 100vw;
}

.box--height-max {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.box--width-max {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.box--height-min {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}

.box--width-min {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}

.box--text-align-left {
    text-align: left;
}

.box--text-align-right {
    text-align: right;
}

.box--text-align-center {
    text-align: center;
}

.box--text-align-justify {
    text-align: justify;
}

.box--text-align-end {
    text-align: end;
}

.breadcrumbs {
    display: flex;
    flex-flow: row nowrap;
}

.breadcrumb {
    height: 10px;
    width: 10px;
    border: 1px solid #979797;
    border-radius: 50%;
}

.breadcrumb+.breadcrumb {
    margin-left: 10px;
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-group__button {
    font-size: 1rem;
    color: #4d4d4d;
    border-style: solid;
    border-color: #dedede;
    border-width: 1px 1px 1px;
    border-left: 0;
    flex: 1;
    padding: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button-group__button:first-child {
    border-left: 1px solid #dedede;
    border-radius: 4px 0 0 4px;
}

.button-group__button:last-child {
    border-radius: 0 4px 4px 0;
}

.button-group__button--active {
    background-color: #3099f2;
    color: #fff;
}

.button-group__button:disabled {
    opacity: 0.5;
}

.radio-button-group .radio-button {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #3b4046;
    border: 1px solid #d6d9dc;
    background: #fff;
    border-radius: 25px;
    height: 25px;
    margin-right: 8px;
    min-width: 48px;
    padding: 0;
}

.radio-button-group .radio-button--active {
    background: #037dd6;
    color: white;
    border: none;
}

.radio-button-group .radio-button--danger {
    border: 1px solid #d73a49;
    color: #d73a49;
    background: #fff;
}

.radio-button-group .radio-button:hover {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
}

.radio-button-group .radio-button--active.radio-button--danger {
    border: 1px solid #d73a49;
    color: white;
    background: #d73a49;
}

/*
  Buttons
 */

.button {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 6px;
    width: 100%;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.button--disabled,
.button[disabled] {
    cursor: auto;
    opacity: 0.5;
    pointer-events: none;
}

.button__icon {
    display: flex;
    align-items: center;
    margin-right: 4px;
}

.btn-secondary {
    color: #037dd6;
    border: 1px solid #b0d7f2;
    background-color: #fff;
}

.btn-secondary:hover {
    border-color: #037dd6;
}

.btn-secondary:active {
    background: #eaf6ff;
    border-color: #037dd6;
}

.btn-secondary--disabled,
.btn-secondary[disabled] {
    opacity: 1;
    color: #b0d7f2;
}

.btn-warning {
    color: #f66a0a;
    border: 1px solid #ffd3b5;
    background-color: #fff;
}

.btn-warning:hover {
    border-color: #f66a0a;
}

.btn-warning:active {
    background: #fef5ef;
    border-color: #f66a0a;
}

.btn-warning--disabled,
.btn-warning[disabled] {
    opacity: 1;
    color: #ffd3b5;
}

.btn-danger {
    color: #d73a49;
    border: 1px solid #feb6bf;
    background-color: #fff;
}

.btn-danger:hover {
    border-color: #d73a49;
}

.btn-danger:active {
    background: #fcf2f3;
    border-color: #d73a49;
}

.btn-danger--disabled,
.btn-danger[disabled] {
    opacity: 1;
    color: #feb6bf;
}

.btn-danger-primary {
    color: #fff;
    border: 1px solid #d73a49;
    background-color: #d73a49;
}

.btn-danger-primary:hover {
    border-color: #c72837;
    background-color: #c72837;
}

.btn-danger-primary:active {
    background: #b92534;
    border-color: #b92534;
}

.btn-danger-primary--disabled,
.btn-danger-primary[disabled] {
    opacity: 1;
    border-color: #feb6bf;
    background-color: #feb6bf;
}

.btn-default {
    color: #6a737d;
    border: 1px solid #b3b3b3;
}

.btn-default:hover {
    border-color: #6a737d;
}

.btn-default:active {
    background: #fbfbfc;
    border-color: #6a737d;
}

.btn-default--disabled,
.btn-default[disabled] {
    opacity: 1;
    color: #b3b3b3;
}

.btn-primary {
    color: #fff;
    border: 1px solid #037dd6;
    background-color: #037dd6;
}

.btn-primary:hover {
    border-color: #0372c3;
    background-color: #0372c3;
}

.btn-primary:active {
    background: #0260a4;
    border-color: #0260a4;
}

.btn-primary--disabled,
.btn-primary[disabled] {
    border-color: #b0d7f2;
    background-color: #b0d7f2;
}

.btn-link {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
    background-color: transparent;
}

.btn-link:hover {
    color: #1098fc;
}

.btn-link:active {
    color: #0260a4;
}

.btn-link--disabled,
.btn-link[disabled] {
    cursor: auto;
    opacity: 1;
    pointer-events: none;
    color: #b0d7f2;
}

.btn--large {
    min-height: 54px;
}

/**
  All Buttons styles are deviations from design guide
 */

.btn-raised {
    color: #037dd6;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 6px;
    height: initial;
    min-height: initial;
    width: initial;
    min-width: initial;
}

.btn--first-time {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 54px;
    width: 198px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
    color: #fff;
    font-weight: 500;
    transition: 200ms ease-in-out;
    background-color: rgba(247, 134, 28, 0.9);
    border-radius: 0;
}

button[disabled],
input[type=submit][disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.btn--rounded {
    border-radius: 100px;
    will-change: box-shadow;
    transition: box-shadow cubic-bezier(0.6, -0.28, 0.735, 0.045) 200ms;
}

.btn--rounded:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.btn--rounded.btn-secondary {
    border: 1px solid #037dd6;
}

.btn--rounded.btn-secondary--disabled,
.btn--rounded.btn-secondary[disabled] {
    border-color: #b0d7f2;
    color: #b0d7f2;
}

.btn--rounded.btn-secondary:active {
    border-color: #0260a4;
}

.btn--rounded.btn-default {
    border: 1px solid #6a737d;
}

.btn--rounded.btn-default--disabled,
.btn--rounded.btn-default[disabled] {
    border-color: #d6d9dc;
    color: #b3b3b3;
}

.btn--rounded.btn-default:active {
    border-color: #535a61;
}

.btn--rounded.btn-danger {
    border: 1px solid #d73a49;
}

.btn--rounded.btn-danger--disabled,
.btn--rounded.btn-danger[disabled] {
    border-color: #f7d5d8;
    color: #e88f97;
}

.btn--rounded.btn-danger:active {
    border-color: #b92534;
}

.btn--rounded.btn-warning {
    border: 1px solid #f66a0a;
}

.btn--rounded.btn-warning--disabled,
.btn--rounded.btn-warning[disabled] {
    border-color: #f8b588;
    color: #f8b588;
}

.btn--rounded.btn-warning:active {
    border-color: #c65507;
}

.btn--rounded.btn-primary {
    background-color: #037dd6;
}

.btn--rounded.btn-primary--disabled,
.btn--rounded.btn-primary[disabled] {
    background-color: #b0d7f2;
}

.btn--rounded.btn-primary:active {
    background-color: #0260a4;
}

.btn--rounded.btn-danger-primary {
    background-color: #d73a49;
}

.btn--rounded.btn-danger-primary--disabled,
.btn--rounded.btn-danger-primary[disabled] {
    background-color: #e88f97;
}

.btn--rounded.btn-danger-primary:active {
    background-color: #b92534;
}

.callout {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
    grid-template-rows: 1fr;
    transition: opacity 0.75s 0s;
}

.callout a {
    color: #037dd6;
}

.callout--dismissible.callout--first {
    box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.18);
}

.callout--multiple {
    padding-top: 8px;
    padding-bottom: 8px;
}

.callout--multiple.callout--first {
    padding-top: 16px;
}

.callout--multiple.callout--last {
    padding-bottom: 16px;
}

.callout--dismissed {
    opacity: 0;
}

.callout--warning {
    border-left: 2px solid #ffd33d;
}

.callout--danger {
    border-left: 2px solid #d73a49;
}

.callout--info {
    border-left: 2px solid #037dd6;
}

.callout--success {
    border-left: 2px solid #4cd964;
}

.callout .info-icon {
    margin: unset;
    margin-right: 10px;
}

.callout__close-button {
    margin-left: 8px;
    background: unset;
    cursor: pointer;
}

.card {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 8px;
}

.card__title {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 4px;
    text-transform: capitalize;
}

.check-box {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    color: #d6d9dc;
    width: 18px;
    height: 18px;
    font-size: 21px;
    line-height: 0.9;
    border-radius: 2px;
    display: flex;
}

.check-box__checked,
.check-box__indeterminate {
    color: #037dd6;
    border-color: #037dd6;
}

.check-box:disabled {
    color: #d6d9dc;
    cursor: not-allowed;
}

/*
Responsive Breakpoints
*/

/**
  These colors are either deprecated or will move into colors.scss
  when approved for the design system
**/

/*
  Colors
  http://chir.ag/projects/name-that-color
 */

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}

.fa-xs {
    font-size: 0.75em;
}

.fa-sm {
    font-size: 0.875em;
}

.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-fw {
    text-align: center;
    width: 1.25em;
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-border {
    border: solid 0.08em #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-500px:before {
    content: "";
}

.fa-accessible-icon:before {
    content: "";
}

.fa-accusoft:before {
    content: "";
}

.fa-acquisitions-incorporated:before {
    content: "";
}

.fa-ad:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-card:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-adobe:before {
    content: "";
}

.fa-adversal:before {
    content: "";
}

.fa-affiliatetheme:before {
    content: "";
}

.fa-air-freshener:before {
    content: "";
}

.fa-airbnb:before {
    content: "";
}

.fa-algolia:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-alipay:before {
    content: "";
}

.fa-allergies:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-amazon-pay:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-amilia:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angry:before {
    content: "";
}

.fa-angrycreative:before {
    content: "";
}

.fa-angular:before {
    content: "";
}

.fa-ankh:before {
    content: "";
}

.fa-app-store:before {
    content: "";
}

.fa-app-store-ios:before {
    content: "";
}

.fa-apper:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-apple-alt:before {
    content: "";
}

.fa-apple-pay:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-archway:before {
    content: "";
}

.fa-arrow-alt-circle-down:before {
    content: "";
}

.fa-arrow-alt-circle-left:before {
    content: "";
}

.fa-arrow-alt-circle-right:before {
    content: "";
}

.fa-arrow-alt-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-arrows-alt-h:before {
    content: "";
}

.fa-arrows-alt-v:before {
    content: "";
}

.fa-artstation:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-asymmetrik:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-atlas:before {
    content: "";
}

.fa-atlassian:before {
    content: "";
}

.fa-atom:before {
    content: "";
}

.fa-audible:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-autoprefixer:before {
    content: "";
}

.fa-avianex:before {
    content: "";
}

.fa-aviato:before {
    content: "";
}

.fa-award:before {
    content: "";
}

.fa-aws:before {
    content: "";
}

.fa-baby:before {
    content: "";
}

.fa-baby-carriage:before {
    content: "";
}

.fa-backspace:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-bacon:before {
    content: "";
}

.fa-bahai:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-balance-scale-left:before {
    content: "";
}

.fa-balance-scale-right:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-band-aid:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-bars:before {
    content: "";
}

.fa-baseball-ball:before {
    content: "";
}

.fa-basketball-ball:before {
    content: "";
}

.fa-bath:before {
    content: "";
}

.fa-battery-empty:before {
    content: "";
}

.fa-battery-full:before {
    content: "";
}

.fa-battery-half:before {
    content: "";
}

.fa-battery-quarter:before {
    content: "";
}

.fa-battery-three-quarters:before {
    content: "";
}

.fa-battle-net:before {
    content: "";
}

.fa-bed:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bezier-curve:before {
    content: "";
}

.fa-bible:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-biking:before {
    content: "";
}

.fa-bimobject:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-biohazard:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitcoin:before {
    content: "";
}

.fa-bity:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-blackberry:before {
    content: "";
}

.fa-blender:before {
    content: "";
}

.fa-blender-phone:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-blog:before {
    content: "";
}

.fa-blogger:before {
    content: "";
}

.fa-blogger-b:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-bolt:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-bone:before {
    content: "";
}

.fa-bong:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-book-dead:before {
    content: "";
}

.fa-book-medical:before {
    content: "";
}

.fa-book-open:before {
    content: "";
}

.fa-book-reader:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-bootstrap:before {
    content: "";
}

.fa-border-all:before {
    content: "";
}

.fa-border-none:before {
    content: "";
}

.fa-border-style:before {
    content: "";
}

.fa-bowling-ball:before {
    content: "";
}

.fa-box:before {
    content: "";
}

.fa-box-open:before {
    content: "";
}

.fa-box-tissue:before {
    content: "拏";
}

.fa-boxes:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-brain:before {
    content: "";
}

.fa-bread-slice:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-briefcase-medical:before {
    content: "";
}

.fa-broadcast-tower:before {
    content: "";
}

.fa-broom:before {
    content: "";
}

.fa-brush:before {
    content: "";
}

.fa-btc:before {
    content: "";
}

.fa-buffer:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-burn:before {
    content: "";
}

.fa-buromobelexperte:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-bus-alt:before {
    content: "";
}

.fa-business-time:before {
    content: "";
}

.fa-buy-n-large:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-calendar-alt:before {
    content: "";
}

.fa-calendar-check:before {
    content: "";
}

.fa-calendar-day:before {
    content: "";
}

.fa-calendar-minus:before {
    content: "";
}

.fa-calendar-plus:before {
    content: "";
}

.fa-calendar-times:before {
    content: "";
}

.fa-calendar-week:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-campground:before {
    content: "";
}

.fa-canadian-maple-leaf:before {
    content: "";
}

.fa-candy-cane:before {
    content: "";
}

.fa-cannabis:before {
    content: "";
}

.fa-capsules:before {
    content: "";
}

.fa-car:before {
    content: "";
}

.fa-car-alt:before {
    content: "";
}

.fa-car-battery:before {
    content: "";
}

.fa-car-crash:before {
    content: "";
}

.fa-car-side:before {
    content: "";
}

.fa-caravan:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-caret-square-down:before {
    content: "";
}

.fa-caret-square-left:before {
    content: "";
}

.fa-caret-square-right:before {
    content: "";
}

.fa-caret-square-up:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-carrot:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cash-register:before {
    content: "";
}

.fa-cat:before {
    content: "";
}

.fa-cc-amazon-pay:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-apple-pay:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-centercode:before {
    content: "";
}

.fa-centos:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-chair:before {
    content: "";
}

.fa-chalkboard:before {
    content: "";
}

.fa-chalkboard-teacher:before {
    content: "";
}

.fa-charging-station:before {
    content: "";
}

.fa-chart-area:before {
    content: "";
}

.fa-chart-bar:before {
    content: "";
}

.fa-chart-line:before {
    content: "";
}

.fa-chart-pie:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-check-double:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-cheese:before {
    content: "";
}

.fa-chess:before {
    content: "";
}

.fa-chess-bishop:before {
    content: "";
}

.fa-chess-board:before {
    content: "";
}

.fa-chess-king:before {
    content: "";
}

.fa-chess-knight:before {
    content: "";
}

.fa-chess-pawn:before {
    content: "";
}

.fa-chess-queen:before {
    content: "";
}

.fa-chess-rook:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-chromecast:before {
    content: "";
}

.fa-church:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-circle-notch:before {
    content: "";
}

.fa-city:before {
    content: "";
}

.fa-clinic-medical:before {
    content: "";
}

.fa-clipboard:before {
    content: "";
}

.fa-clipboard-check:before {
    content: "";
}

.fa-clipboard-list:before {
    content: "";
}

.fa-clock:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-closed-captioning:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-cloud-download-alt:before {
    content: "";
}

.fa-cloud-meatball:before {
    content: "";
}

.fa-cloud-moon:before {
    content: "";
}

.fa-cloud-moon-rain:before {
    content: "";
}

.fa-cloud-rain:before {
    content: "";
}

.fa-cloud-showers-heavy:before {
    content: "";
}

.fa-cloud-sun:before {
    content: "";
}

.fa-cloud-sun-rain:before {
    content: "";
}

.fa-cloud-upload-alt:before {
    content: "";
}

.fa-cloudscale:before {
    content: "";
}

.fa-cloudsmith:before {
    content: "";
}

.fa-cloudversify:before {
    content: "";
}

.fa-cocktail:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-code-branch:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cog:before {
    content: "";
}

.fa-cogs:before {
    content: "";
}

.fa-coins:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-comment-alt:before {
    content: "";
}

.fa-comment-dollar:before {
    content: "";
}

.fa-comment-dots:before {
    content: "";
}

.fa-comment-medical:before {
    content: "";
}

.fa-comment-slash:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-comments-dollar:before {
    content: "";
}

.fa-compact-disc:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-compress-alt:before {
    content: "";
}

.fa-compress-arrows-alt:before {
    content: "";
}

.fa-concierge-bell:before {
    content: "";
}

.fa-confluence:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-cookie:before {
    content: "";
}

.fa-cookie-bite:before {
    content: "";
}

.fa-copy:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-cotton-bureau:before {
    content: "";
}

.fa-couch:before {
    content: "";
}

.fa-cpanel:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-creative-commons-by:before {
    content: "";
}

.fa-creative-commons-nc:before {
    content: "";
}

.fa-creative-commons-nc-eu:before {
    content: "";
}

.fa-creative-commons-nc-jp:before {
    content: "";
}

.fa-creative-commons-nd:before {
    content: "";
}

.fa-creative-commons-pd:before {
    content: "";
}

.fa-creative-commons-pd-alt:before {
    content: "";
}

.fa-creative-commons-remix:before {
    content: "";
}

.fa-creative-commons-sa:before {
    content: "";
}

.fa-creative-commons-sampling:before {
    content: "";
}

.fa-creative-commons-sampling-plus:before {
    content: "";
}

.fa-creative-commons-share:before {
    content: "";
}

.fa-creative-commons-zero:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-critical-role:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-crop-alt:before {
    content: "";
}

.fa-cross:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-crow:before {
    content: "";
}

.fa-crown:before {
    content: "";
}

.fa-crutch:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-css3-alt:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-cut:before {
    content: "";
}

.fa-cuttlefish:before {
    content: "";
}

.fa-d-and-d:before {
    content: "";
}

.fa-d-and-d-beyond:before {
    content: "";
}

.fa-dailymotion:before {
    content: "勒";
}

.fa-dashcube:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-deaf:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-democrat:before {
    content: "";
}

.fa-deploydog:before {
    content: "";
}

.fa-deskpro:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-dev:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-dharmachakra:before {
    content: "";
}

.fa-dhl:before {
    content: "";
}

.fa-diagnoses:before {
    content: "";
}

.fa-diaspora:before {
    content: "";
}

.fa-dice:before {
    content: "";
}

.fa-dice-d20:before {
    content: "";
}

.fa-dice-d6:before {
    content: "";
}

.fa-dice-five:before {
    content: "";
}

.fa-dice-four:before {
    content: "";
}

.fa-dice-one:before {
    content: "";
}

.fa-dice-six:before {
    content: "";
}

.fa-dice-three:before {
    content: "";
}

.fa-dice-two:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-digital-ocean:before {
    content: "";
}

.fa-digital-tachograph:before {
    content: "";
}

.fa-directions:before {
    content: "";
}

.fa-discord:before {
    content: "";
}

.fa-discourse:before {
    content: "";
}

.fa-disease:before {
    content: "";
}

.fa-divide:before {
    content: "";
}

.fa-dizzy:before {
    content: "";
}

.fa-dna:before {
    content: "";
}

.fa-dochub:before {
    content: "";
}

.fa-docker:before {
    content: "";
}

.fa-dog:before {
    content: "";
}

.fa-dollar-sign:before {
    content: "";
}

.fa-dolly:before {
    content: "";
}

.fa-dolly-flatbed:before {
    content: "";
}

.fa-donate:before {
    content: "";
}

.fa-door-closed:before {
    content: "";
}

.fa-door-open:before {
    content: "";
}

.fa-dot-circle:before {
    content: "";
}

.fa-dove:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-draft2digital:before {
    content: "";
}

.fa-drafting-compass:before {
    content: "";
}

.fa-dragon:before {
    content: "";
}

.fa-draw-polygon:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-dribbble-square:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-drum:before {
    content: "";
}

.fa-drum-steelpan:before {
    content: "";
}

.fa-drumstick-bite:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-dumbbell:before {
    content: "";
}

.fa-dumpster:before {
    content: "";
}

.fa-dumpster-fire:before {
    content: "";
}

.fa-dungeon:before {
    content: "";
}

.fa-dyalog:before {
    content: "";
}

.fa-earlybirds:before {
    content: "";
}

.fa-ebay:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-edit:before {
    content: "";
}

.fa-egg:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-elementor:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-ello:before {
    content: "";
}

.fa-ember:before {
    content: "";
}

.fa-empire:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-text:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-equals:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-erlang:before {
    content: "";
}

.fa-ethereum:before {
    content: "";
}

.fa-ethernet:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-euro-sign:before {
    content: "";
}

.fa-evernote:before {
    content: "";
}

.fa-exchange-alt:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-exclamation-triangle:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-expand-alt:before {
    content: "";
}

.fa-expand-arrows-alt:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-external-link-alt:before {
    content: "";
}

.fa-external-link-square-alt:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-dropper:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-facebook:before {
    content: "";
}

.fa-facebook-f:before {
    content: "";
}

.fa-facebook-messenger:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-fan:before {
    content: "";
}

.fa-fantasy-flight-games:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-faucet:before {
    content: "串";
}

.fa-fax:before {
    content: "";
}

.fa-feather:before {
    content: "";
}

.fa-feather-alt:before {
    content: "";
}

.fa-fedex:before {
    content: "";
}

.fa-fedora:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-figma:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-alt:before {
    content: "";
}

.fa-file-archive:before {
    content: "";
}

.fa-file-audio:before {
    content: "";
}

.fa-file-code:before {
    content: "";
}

.fa-file-contract:before {
    content: "";
}

.fa-file-csv:before {
    content: "";
}

.fa-file-download:before {
    content: "";
}

.fa-file-excel:before {
    content: "";
}

.fa-file-export:before {
    content: "";
}

.fa-file-image:before {
    content: "";
}

.fa-file-import:before {
    content: "";
}

.fa-file-invoice:before {
    content: "";
}

.fa-file-invoice-dollar:before {
    content: "";
}

.fa-file-medical:before {
    content: "";
}

.fa-file-medical-alt:before {
    content: "";
}

.fa-file-pdf:before {
    content: "";
}

.fa-file-powerpoint:before {
    content: "";
}

.fa-file-prescription:before {
    content: "";
}

.fa-file-signature:before {
    content: "";
}

.fa-file-upload:before {
    content: "";
}

.fa-file-video:before {
    content: "";
}

.fa-file-word:before {
    content: "";
}

.fa-fill:before {
    content: "";
}

.fa-fill-drip:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-fingerprint:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-fire-alt:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-firefox-browser:before {
    content: "龜";
}

.fa-first-aid:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-first-order-alt:before {
    content: "";
}

.fa-firstdraft:before {
    content: "";
}

.fa-fish:before {
    content: "";
}

.fa-fist-raised:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-flag-usa:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-flipboard:before {
    content: "";
}

.fa-flushed:before {
    content: "";
}

.fa-fly:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-minus:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-folder-plus:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-font-awesome:before {
    content: "";
}

.fa-font-awesome-alt:before {
    content: "";
}

.fa-font-awesome-flag:before {
    content: "";
}

.fa-font-awesome-logo-full:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-fonticons-fi:before {
    content: "";
}

.fa-football-ball:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-fort-awesome-alt:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-freebsd:before {
    content: "";
}

.fa-frog:before {
    content: "";
}

.fa-frown:before {
    content: "";
}

.fa-frown-open:before {
    content: "";
}

.fa-fulcrum:before {
    content: "";
}

.fa-funnel-dollar:before {
    content: "";
}

.fa-futbol:before {
    content: "";
}

.fa-galactic-republic:before {
    content: "";
}

.fa-galactic-senate:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-gas-pump:before {
    content: "";
}

.fa-gavel:before {
    content: "";
}

.fa-gem:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-ghost:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-gifts:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-git-alt:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-gitkraken:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-gitter:before {
    content: "";
}

.fa-glass-cheers:before {
    content: "";
}

.fa-glass-martini:before {
    content: "";
}

.fa-glass-martini-alt:before {
    content: "";
}

.fa-glass-whiskey:before {
    content: "";
}

.fa-glasses:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-globe-africa:before {
    content: "";
}

.fa-globe-americas:before {
    content: "";
}

.fa-globe-asia:before {
    content: "";
}

.fa-globe-europe:before {
    content: "";
}

.fa-gofore:before {
    content: "";
}

.fa-golf-ball:before {
    content: "";
}

.fa-goodreads:before {
    content: "";
}

.fa-goodreads-g:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-google-drive:before {
    content: "";
}

.fa-google-play:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-google-plus-g:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-gopuram:before {
    content: "";
}

.fa-graduation-cap:before {
    content: "";
}

.fa-gratipay:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-greater-than:before {
    content: "";
}

.fa-greater-than-equal:before {
    content: "";
}

.fa-grimace:before {
    content: "";
}

.fa-grin:before {
    content: "";
}

.fa-grin-alt:before {
    content: "";
}

.fa-grin-beam:before {
    content: "";
}

.fa-grin-beam-sweat:before {
    content: "";
}

.fa-grin-hearts:before {
    content: "";
}

.fa-grin-squint:before {
    content: "";
}

.fa-grin-squint-tears:before {
    content: "";
}

.fa-grin-stars:before {
    content: "";
}

.fa-grin-tears:before {
    content: "";
}

.fa-grin-tongue:before {
    content: "";
}

.fa-grin-tongue-squint:before {
    content: "";
}

.fa-grin-tongue-wink:before {
    content: "";
}

.fa-grin-wink:before {
    content: "";
}

.fa-grip-horizontal:before {
    content: "";
}

.fa-grip-lines:before {
    content: "";
}

.fa-grip-lines-vertical:before {
    content: "";
}

.fa-grip-vertical:before {
    content: "";
}

.fa-gripfire:before {
    content: "";
}

.fa-grunt:before {
    content: "";
}

.fa-guitar:before {
    content: "";
}

.fa-gulp:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-hacker-news-square:before {
    content: "";
}

.fa-hackerrank:before {
    content: "";
}

.fa-hamburger:before {
    content: "";
}

.fa-hammer:before {
    content: "";
}

.fa-hamsa:before {
    content: "";
}

.fa-hand-holding:before {
    content: "";
}

.fa-hand-holding-heart:before {
    content: "";
}

.fa-hand-holding-medical:before {
    content: "樂";
}

.fa-hand-holding-usd:before {
    content: "";
}

.fa-hand-holding-water:before {
    content: "";
}

.fa-hand-lizard:before {
    content: "";
}

.fa-hand-middle-finger:before {
    content: "";
}

.fa-hand-paper:before {
    content: "";
}

.fa-hand-peace:before {
    content: "";
}

.fa-hand-point-down:before {
    content: "";
}

.fa-hand-point-left:before {
    content: "";
}

.fa-hand-point-right:before {
    content: "";
}

.fa-hand-point-up:before {
    content: "";
}

.fa-hand-pointer:before {
    content: "";
}

.fa-hand-rock:before {
    content: "";
}

.fa-hand-scissors:before {
    content: "";
}

.fa-hand-sparkles:before {
    content: "諾";
}

.fa-hand-spock:before {
    content: "";
}

.fa-hands:before {
    content: "";
}

.fa-hands-helping:before {
    content: "";
}

.fa-hands-wash:before {
    content: "丹";
}

.fa-handshake:before {
    content: "";
}

.fa-handshake-alt-slash:before {
    content: "寧";
}

.fa-handshake-slash:before {
    content: "怒";
}

.fa-hanukiah:before {
    content: "";
}

.fa-hard-hat:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-hat-cowboy:before {
    content: "";
}

.fa-hat-cowboy-side:before {
    content: "";
}

.fa-hat-wizard:before {
    content: "";
}

.fa-hdd:before {
    content: "";
}

.fa-head-side-cough:before {
    content: "率";
}

.fa-head-side-cough-slash:before {
    content: "異";
}

.fa-head-side-mask:before {
    content: "北";
}

.fa-head-side-virus:before {
    content: "磻";
}

.fa-heading:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-headphones-alt:before {
    content: "";
}

.fa-headset:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-heart-broken:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-helicopter:before {
    content: "";
}

.fa-highlighter:before {
    content: "";
}

.fa-hiking:before {
    content: "";
}

.fa-hippo:before {
    content: "";
}

.fa-hips:before {
    content: "";
}

.fa-hire-a-helper:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-hockey-puck:before {
    content: "";
}

.fa-holly-berry:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-hooli:before {
    content: "";
}

.fa-hornbill:before {
    content: "";
}

.fa-horse:before {
    content: "";
}

.fa-horse-head:before {
    content: "";
}

.fa-hospital:before {
    content: "";
}

.fa-hospital-alt:before {
    content: "";
}

.fa-hospital-symbol:before {
    content: "";
}

.fa-hospital-user:before {
    content: "";
}

.fa-hot-tub:before {
    content: "";
}

.fa-hotdog:before {
    content: "";
}

.fa-hotel:before {
    content: "";
}

.fa-hotjar:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-start:before {
    content: "";
}

.fa-house-damage:before {
    content: "";
}

.fa-house-user:before {
    content: "便";
}

.fa-houzz:before {
    content: "";
}

.fa-hryvnia:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-hubspot:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-ice-cream:before {
    content: "";
}

.fa-icicles:before {
    content: "";
}

.fa-icons:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-id-card:before {
    content: "";
}

.fa-id-card-alt:before {
    content: "";
}

.fa-ideal:before {
    content: "邏";
}

.fa-igloo:before {
    content: "";
}

.fa-image:before {
    content: "";
}

.fa-images:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-infinity:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-instagram-square:before {
    content: "凌";
}

.fa-intercom:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-invision:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-itch-io:before {
    content: "";
}

.fa-itunes:before {
    content: "";
}

.fa-itunes-note:before {
    content: "";
}

.fa-java:before {
    content: "";
}

.fa-jedi:before {
    content: "";
}

.fa-jedi-order:before {
    content: "";
}

.fa-jenkins:before {
    content: "";
}

.fa-jira:before {
    content: "";
}

.fa-joget:before {
    content: "";
}

.fa-joint:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-journal-whills:before {
    content: "";
}

.fa-js:before {
    content: "";
}

.fa-js-square:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-kaaba:before {
    content: "";
}

.fa-kaggle:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-keybase:before {
    content: "";
}

.fa-keyboard:before {
    content: "";
}

.fa-keycdn:before {
    content: "";
}

.fa-khanda:before {
    content: "";
}

.fa-kickstarter:before {
    content: "";
}

.fa-kickstarter-k:before {
    content: "";
}

.fa-kiss:before {
    content: "";
}

.fa-kiss-beam:before {
    content: "";
}

.fa-kiss-wink-heart:before {
    content: "";
}

.fa-kiwi-bird:before {
    content: "";
}

.fa-korvue:before {
    content: "";
}

.fa-landmark:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-laptop-code:before {
    content: "";
}

.fa-laptop-house:before {
    content: "復";
}

.fa-laptop-medical:before {
    content: "";
}

.fa-laravel:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-laugh:before {
    content: "";
}

.fa-laugh-beam:before {
    content: "";
}

.fa-laugh-squint:before {
    content: "";
}

.fa-laugh-wink:before {
    content: "";
}

.fa-layer-group:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-lemon:before {
    content: "";
}

.fa-less:before {
    content: "";
}

.fa-less-than:before {
    content: "";
}

.fa-less-than-equal:before {
    content: "";
}

.fa-level-down-alt:before {
    content: "";
}

.fa-level-up-alt:before {
    content: "";
}

.fa-life-ring:before {
    content: "";
}

.fa-lightbulb:before {
    content: "";
}

.fa-line:before {
    content: "";
}

.fa-link:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-linkedin-in:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-lira-sign:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-lock-open:before {
    content: "";
}

.fa-long-arrow-alt-down:before {
    content: "";
}

.fa-long-arrow-alt-left:before {
    content: "";
}

.fa-long-arrow-alt-right:before {
    content: "";
}

.fa-long-arrow-alt-up:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-luggage-cart:before {
    content: "";
}

.fa-lungs:before {
    content: "";
}

.fa-lungs-virus:before {
    content: "不";
}

.fa-lyft:before {
    content: "";
}

.fa-magento:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-mail-bulk:before {
    content: "";
}

.fa-mailchimp:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-mandalorian:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-map-marked:before {
    content: "";
}

.fa-map-marked-alt:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-map-marker-alt:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-markdown:before {
    content: "";
}

.fa-marker:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mask:before {
    content: "";
}

.fa-mastodon:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-mdb:before {
    content: "";
}

.fa-medal:before {
    content: "";
}

.fa-medapps:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-medium-m:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-medrt:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.fa-megaport:before {
    content: "";
}

.fa-meh:before {
    content: "";
}

.fa-meh-blank:before {
    content: "";
}

.fa-meh-rolling-eyes:before {
    content: "";
}

.fa-memory:before {
    content: "";
}

.fa-mendeley:before {
    content: "";
}

.fa-menorah:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-meteor:before {
    content: "";
}

.fa-microblog:before {
    content: "駱";
}

.fa-microchip:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-alt:before {
    content: "";
}

.fa-microphone-alt-slash:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-microscope:before {
    content: "";
}

.fa-microsoft:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-mitten:before {
    content: "";
}

.fa-mix:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-mixer:before {
    content: "稜";
}

.fa-mizuni:before {
    content: "";
}

.fa-mobile:before {
    content: "";
}

.fa-mobile-alt:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-monero:before {
    content: "";
}

.fa-money-bill:before {
    content: "";
}

.fa-money-bill-alt:before {
    content: "";
}

.fa-money-bill-wave:before {
    content: "";
}

.fa-money-bill-wave-alt:before {
    content: "";
}

.fa-money-check:before {
    content: "";
}

.fa-money-check-alt:before {
    content: "";
}

.fa-monument:before {
    content: "";
}

.fa-moon:before {
    content: "";
}

.fa-mortar-pestle:before {
    content: "";
}

.fa-mosque:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-mountain:before {
    content: "";
}

.fa-mouse:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-mug-hot:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-napster:before {
    content: "";
}

.fa-neos:before {
    content: "";
}

.fa-network-wired:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-newspaper:before {
    content: "";
}

.fa-nimblr:before {
    content: "";
}

.fa-node:before {
    content: "";
}

.fa-node-js:before {
    content: "";
}

.fa-not-equal:before {
    content: "";
}

.fa-notes-medical:before {
    content: "";
}

.fa-npm:before {
    content: "";
}

.fa-ns8:before {
    content: "";
}

.fa-nutritionix:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-oil-can:before {
    content: "";
}

.fa-old-republic:before {
    content: "";
}

.fa-om:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-orcid:before {
    content: "";
}

.fa-osi:before {
    content: "";
}

.fa-otter:before {
    content: "";
}

.fa-outdent:before {
    content: "";
}

.fa-page4:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-pager:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-paint-roller:before {
    content: "";
}

.fa-palette:before {
    content: "";
}

.fa-palfed:before {
    content: "";
}

.fa-pallet:before {
    content: "";
}

.fa-paper-plane:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-parachute-box:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-parking:before {
    content: "";
}

.fa-passport:before {
    content: "";
}

.fa-pastafarianism:before {
    content: "";
}

.fa-paste:before {
    content: "";
}

.fa-patreon:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-peace:before {
    content: "";
}

.fa-pen:before {
    content: "";
}

.fa-pen-alt:before {
    content: "";
}

.fa-pen-fancy:before {
    content: "";
}

.fa-pen-nib:before {
    content: "";
}

.fa-pen-square:before {
    content: "";
}

.fa-pencil-alt:before {
    content: "";
}

.fa-pencil-ruler:before {
    content: "";
}

.fa-penny-arcade:before {
    content: "";
}

.fa-people-arrows:before {
    content: "泌";
}

.fa-people-carry:before {
    content: "";
}

.fa-pepper-hot:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-percentage:before {
    content: "";
}

.fa-periscope:before {
    content: "";
}

.fa-person-booth:before {
    content: "";
}

.fa-phabricator:before {
    content: "";
}

.fa-phoenix-framework:before {
    content: "";
}

.fa-phoenix-squadron:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-phone-alt:before {
    content: "";
}

.fa-phone-slash:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-phone-square-alt:before {
    content: "";
}

.fa-phone-volume:before {
    content: "";
}

.fa-photo-video:before {
    content: "";
}

.fa-php:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-pied-piper-hat:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-square:before {
    content: "爛";
}

.fa-piggy-bank:before {
    content: "";
}

.fa-pills:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-pizza-slice:before {
    content: "";
}

.fa-place-of-worship:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-plane-arrival:before {
    content: "";
}

.fa-plane-departure:before {
    content: "";
}

.fa-plane-slash:before {
    content: "數";
}

.fa-play:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-playstation:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-poll:before {
    content: "";
}

.fa-poll-h:before {
    content: "";
}

.fa-poo:before {
    content: "";
}

.fa-poo-storm:before {
    content: "";
}

.fa-poop:before {
    content: "";
}

.fa-portrait:before {
    content: "";
}

.fa-pound-sign:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-pray:before {
    content: "";
}

.fa-praying-hands:before {
    content: "";
}

.fa-prescription:before {
    content: "";
}

.fa-prescription-bottle:before {
    content: "";
}

.fa-prescription-bottle-alt:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-procedures:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-project-diagram:before {
    content: "";
}

.fa-pump-medical:before {
    content: "索";
}

.fa-pump-soap:before {
    content: "參";
}

.fa-pushed:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-python:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-quidditch:before {
    content: "";
}

.fa-quinscape:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-quran:before {
    content: "";
}

.fa-r-project:before {
    content: "";
}

.fa-radiation:before {
    content: "";
}

.fa-radiation-alt:before {
    content: "";
}

.fa-rainbow:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-raspberry-pi:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-react:before {
    content: "";
}

.fa-reacteurope:before {
    content: "";
}

.fa-readme:before {
    content: "";
}

.fa-rebel:before {
    content: "";
}

.fa-receipt:before {
    content: "";
}

.fa-record-vinyl:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-red-river:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-redhat:before {
    content: "";
}

.fa-redo:before {
    content: "";
}

.fa-redo-alt:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-remove-format:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-reply:before {
    content: "";
}

.fa-reply-all:before {
    content: "";
}

.fa-replyd:before {
    content: "";
}

.fa-republican:before {
    content: "";
}

.fa-researchgate:before {
    content: "";
}

.fa-resolving:before {
    content: "";
}

.fa-restroom:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-rev:before {
    content: "";
}

.fa-ribbon:before {
    content: "";
}

.fa-ring:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-robot:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-rocketchat:before {
    content: "";
}

.fa-rockrms:before {
    content: "";
}

.fa-route:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-ruble-sign:before {
    content: "";
}

.fa-ruler:before {
    content: "";
}

.fa-ruler-combined:before {
    content: "";
}

.fa-ruler-horizontal:before {
    content: "";
}

.fa-ruler-vertical:before {
    content: "";
}

.fa-running:before {
    content: "";
}

.fa-rupee-sign:before {
    content: "";
}

.fa-sad-cry:before {
    content: "";
}

.fa-sad-tear:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-salesforce:before {
    content: "";
}

.fa-sass:before {
    content: "";
}

.fa-satellite:before {
    content: "";
}

.fa-satellite-dish:before {
    content: "";
}

.fa-save:before {
    content: "";
}

.fa-schlix:before {
    content: "";
}

.fa-school:before {
    content: "";
}

.fa-screwdriver:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-scroll:before {
    content: "";
}

.fa-sd-card:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-search-dollar:before {
    content: "";
}

.fa-search-location:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-searchengin:before {
    content: "";
}

.fa-seedling:before {
    content: "";
}

.fa-sellcast:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-servicestack:before {
    content: "";
}

.fa-shapes:before {
    content: "";
}

.fa-share:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-shekel-sign:before {
    content: "";
}

.fa-shield-alt:before {
    content: "";
}

.fa-shield-virus:before {
    content: "塞";
}

.fa-ship:before {
    content: "";
}

.fa-shipping-fast:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-shoe-prints:before {
    content: "";
}

.fa-shopify:before {
    content: "綾";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-shopware:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-shuttle-van:before {
    content: "";
}

.fa-sign:before {
    content: "";
}

.fa-sign-in-alt:before {
    content: "";
}

.fa-sign-language:before {
    content: "";
}

.fa-sign-out-alt:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-signature:before {
    content: "";
}

.fa-sim-card:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-sistrix:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-sith:before {
    content: "";
}

.fa-skating:before {
    content: "";
}

.fa-sketch:before {
    content: "";
}

.fa-skiing:before {
    content: "";
}

.fa-skiing-nordic:before {
    content: "";
}

.fa-skull:before {
    content: "";
}

.fa-skull-crossbones:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-slack-hash:before {
    content: "";
}

.fa-slash:before {
    content: "";
}

.fa-sleigh:before {
    content: "";
}

.fa-sliders-h:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-smile:before {
    content: "";
}

.fa-smile-beam:before {
    content: "";
}

.fa-smile-wink:before {
    content: "";
}

.fa-smog:before {
    content: "";
}

.fa-smoking:before {
    content: "";
}

.fa-smoking-ban:before {
    content: "";
}

.fa-sms:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-snowboarding:before {
    content: "";
}

.fa-snowflake:before {
    content: "";
}

.fa-snowman:before {
    content: "";
}

.fa-snowplow:before {
    content: "";
}

.fa-soap:before {
    content: "葉";
}

.fa-socks:before {
    content: "";
}

.fa-solar-panel:before {
    content: "";
}

.fa-sort:before {
    content: "";
}

.fa-sort-alpha-down:before {
    content: "";
}

.fa-sort-alpha-down-alt:before {
    content: "";
}

.fa-sort-alpha-up:before {
    content: "";
}

.fa-sort-alpha-up-alt:before {
    content: "";
}

.fa-sort-amount-down:before {
    content: "";
}

.fa-sort-amount-down-alt:before {
    content: "";
}

.fa-sort-amount-up:before {
    content: "";
}

.fa-sort-amount-up-alt:before {
    content: "";
}

.fa-sort-down:before {
    content: "";
}

.fa-sort-numeric-down:before {
    content: "";
}

.fa-sort-numeric-down-alt:before {
    content: "";
}

.fa-sort-numeric-up:before {
    content: "";
}

.fa-sort-numeric-up-alt:before {
    content: "";
}

.fa-sort-up:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-sourcetree:before {
    content: "";
}

.fa-spa:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-speakap:before {
    content: "";
}

.fa-speaker-deck:before {
    content: "";
}

.fa-spell-check:before {
    content: "";
}

.fa-spider:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-splotch:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-spray-can:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-square-full:before {
    content: "";
}

.fa-square-root-alt:before {
    content: "";
}

.fa-squarespace:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-stackpath:before {
    content: "";
}

.fa-stamp:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-and-crescent:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-star-half-alt:before {
    content: "";
}

.fa-star-of-david:before {
    content: "";
}

.fa-star-of-life:before {
    content: "";
}

.fa-staylinked:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-steam-symbol:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-sticker-mule:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stopwatch:before {
    content: "";
}

.fa-stopwatch-20:before {
    content: "說";
}

.fa-store:before {
    content: "";
}

.fa-store-alt:before {
    content: "";
}

.fa-store-alt-slash:before {
    content: "殺";
}

.fa-store-slash:before {
    content: "辰";
}

.fa-strava:before {
    content: "";
}

.fa-stream:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-stripe:before {
    content: "";
}

.fa-stripe-s:before {
    content: "";
}

.fa-stroopwafel:before {
    content: "";
}

.fa-studiovinari:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-suitcase-rolling:before {
    content: "";
}

.fa-sun:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-supple:before {
    content: "";
}

.fa-surprise:before {
    content: "";
}

.fa-suse:before {
    content: "";
}

.fa-swatchbook:before {
    content: "";
}

.fa-swift:before {
    content: "";
}

.fa-swimmer:before {
    content: "";
}

.fa-swimming-pool:before {
    content: "";
}

.fa-symfony:before {
    content: "";
}

.fa-synagogue:before {
    content: "";
}

.fa-sync:before {
    content: "";
}

.fa-sync-alt:before {
    content: "";
}

.fa-syringe:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-table-tennis:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-tablet-alt:before {
    content: "";
}

.fa-tablets:before {
    content: "";
}

.fa-tachometer-alt:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-tape:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-taxi:before {
    content: "";
}

.fa-teamspeak:before {
    content: "";
}

.fa-teeth:before {
    content: "";
}

.fa-teeth-open:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-telegram-plane:before {
    content: "";
}

.fa-temperature-high:before {
    content: "";
}

.fa-temperature-low:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-tenge:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-the-red-yeti:before {
    content: "";
}

.fa-theater-masks:before {
    content: "";
}

.fa-themeco:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-thermometer:before {
    content: "";
}

.fa-thermometer-empty:before {
    content: "";
}

.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-think-peaks:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbtack:before {
    content: "";
}

.fa-ticket-alt:before {
    content: "";
}

.fa-times:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-tint-slash:before {
    content: "";
}

.fa-tired:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-toilet:before {
    content: "";
}

.fa-toilet-paper:before {
    content: "";
}

.fa-toilet-paper-slash:before {
    content: "沈";
}

.fa-toolbox:before {
    content: "";
}

.fa-tools:before {
    content: "";
}

.fa-tooth:before {
    content: "";
}

.fa-torah:before {
    content: "";
}

.fa-torii-gate:before {
    content: "";
}

.fa-tractor:before {
    content: "";
}

.fa-trade-federation:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-traffic-light:before {
    content: "";
}

.fa-trailer:before {
    content: "論";
}

.fa-train:before {
    content: "";
}

.fa-tram:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-trash-alt:before {
    content: "";
}

.fa-trash-restore:before {
    content: "";
}

.fa-trash-restore-alt:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-truck-loading:before {
    content: "";
}

.fa-truck-monster:before {
    content: "";
}

.fa-truck-moving:before {
    content: "";
}

.fa-truck-pickup:before {
    content: "";
}

.fa-tshirt:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-tv:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-typo3:before {
    content: "";
}

.fa-uber:before {
    content: "";
}

.fa-ubuntu:before {
    content: "";
}

.fa-uikit:before {
    content: "";
}

.fa-umbraco:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-umbrella-beach:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-undo:before {
    content: "";
}

.fa-undo-alt:before {
    content: "";
}

.fa-uniregistry:before {
    content: "";
}

.fa-unity:before {
    content: "雷";
}

.fa-universal-access:before {
    content: "";
}

.fa-university:before {
    content: "";
}

.fa-unlink:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-untappd:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-ups:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-user-alt:before {
    content: "";
}

.fa-user-alt-slash:before {
    content: "";
}

.fa-user-astronaut:before {
    content: "";
}

.fa-user-check:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-clock:before {
    content: "";
}

.fa-user-cog:before {
    content: "";
}

.fa-user-edit:before {
    content: "";
}

.fa-user-friends:before {
    content: "";
}

.fa-user-graduate:before {
    content: "";
}

.fa-user-injured:before {
    content: "";
}

.fa-user-lock:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-user-minus:before {
    content: "";
}

.fa-user-ninja:before {
    content: "";
}

.fa-user-nurse:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-user-shield:before {
    content: "";
}

.fa-user-slash:before {
    content: "";
}

.fa-user-tag:before {
    content: "";
}

.fa-user-tie:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-users:before {
    content: "";
}

.fa-users-cog:before {
    content: "";
}

.fa-usps:before {
    content: "";
}

.fa-ussunnah:before {
    content: "";
}

.fa-utensil-spoon:before {
    content: "";
}

.fa-utensils:before {
    content: "";
}

.fa-vaadin:before {
    content: "";
}

.fa-vector-square:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-vial:before {
    content: "";
}

.fa-vials:before {
    content: "";
}

.fa-viber:before {
    content: "";
}

.fa-video:before {
    content: "";
}

.fa-video-slash:before {
    content: "";
}

.fa-vihara:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-vimeo-v:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-virus:before {
    content: "若";
}

.fa-virus-slash:before {
    content: "掠";
}

.fa-viruses:before {
    content: "略";
}

.fa-vk:before {
    content: "";
}

.fa-vnv:before {
    content: "";
}

.fa-voicemail:before {
    content: "";
}

.fa-volleyball-ball:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-mute:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-vote-yea:before {
    content: "";
}

.fa-vr-cardboard:before {
    content: "";
}

.fa-vuejs:before {
    content: "";
}

.fa-walking:before {
    content: "";
}

.fa-wallet:before {
    content: "";
}

.fa-warehouse:before {
    content: "";
}

.fa-water:before {
    content: "";
}

.fa-wave-square:before {
    content: "";
}

.fa-waze:before {
    content: "";
}

.fa-weebly:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-weight:before {
    content: "";
}

.fa-weight-hanging:before {
    content: "";
}

.fa-weixin:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-whatsapp-square:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-whmcs:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-wind:before {
    content: "";
}

.fa-window-close:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-wine-bottle:before {
    content: "";
}

.fa-wine-glass:before {
    content: "";
}

.fa-wine-glass-alt:before {
    content: "";
}

.fa-wix:before {
    content: "";
}

.fa-wizards-of-the-coast:before {
    content: "";
}

.fa-wolf-pack-battalion:before {
    content: "";
}

.fa-won-sign:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-wordpress-simple:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-wpressr:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-x-ray:before {
    content: "";
}

.fa-xbox:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-y-combinator:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-yammer:before {
    content: "";
}

.fa-yandex:before {
    content: "";
}

.fa-yandex-international:before {
    content: "";
}

.fa-yarn:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-yen-sign:before {
    content: "";
}

.fa-yin-yang:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-zhihu:before {
    content: "";
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("fonts/fontawesome/fa-solid-900.html");
    src: url("fonts/fontawesome/fa-solid-900d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-solid-901.html") format("woff2"), url("fonts/fontawesome/fa-solid-902.html") format("woff"), url("fonts/fontawesome/fa-solid-903.html") format("truetype"), url("fonts/fontawesome/fa-solid-904.html#fontawesome") format("svg");
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("fonts/fontawesome/fa-regular-400.html");
    src: url("fonts/fontawesome/fa-regular-400d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-regular-401.html") format("woff2"), url("fonts/fontawesome/fa-regular-402.html") format("woff"), url("fonts/fontawesome/fa-regular-403.html") format("truetype"), url("fonts/fontawesome/fa-regular-404.html#fontawesome") format("svg");
}

.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 100;
    src: local("Roboto Thin"), local("Roboto-Thin"), url("fonts/Roboto/Roboto-Thin.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: local("Roboto Light"), local("Roboto-Light"), url("fonts/Roboto/Roboto-Light.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("fonts/Roboto/Roboto-Regular.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url("fonts/Roboto/Roboto-Medium.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("fonts/Roboto/Roboto-Bold.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    src: local("Roboto Black"), local("Roboto-Black"), url("fonts/Roboto/Roboto-Black.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-Regular-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: italic;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-RegularItalic-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/Euclid/EuclidCircularB-Bold-WebXL.html") format("truetype");
}

/*
  Z-Indicies
*/

.chip {
    border-radius: 100px;
    border: 1px solid #f2f3f4;
    padding: 8px 16px;
    margin: 0 4px;
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.chip__left-icon,
.chip__right-icon {
    display: flex;
    align-items: center;
}

.chip--ui-1 {
    border-color: #f2f3f4;
}

.chip--ui-2 {
    border-color: #d6d9dc;
}

.chip--ui-3 {
    border-color: #bbc0c5;
}

.chip--ui-4 {
    border-color: #6a737d;
}

.chip--white {
    border-color: #fff;
}

.chip--black {
    border-color: #24292e;
}

.chip--primary-1 {
    border-color: #037dd6;
}

.chip--primary-2 {
    border-color: #eaf6ff;
}

.chip--primary-3 {
    border-color: #0260a4;
}

.chip--secondary-1 {
    border-color: #f66a0a;
}

.chip--secondary-2 {
    border-color: #fef5ef;
}

.chip--secondary-3 {
    border-color: #c65507;
}

.chip--alert-1 {
    border-color: #ffd33d;
}

.chip--alert-2 {
    border-color: #fefcde;
}

.chip--alert-3 {
    border-color: #f8c000;
}

.chip--error-1 {
    border-color: #d73a49;
}

.chip--error-2 {
    border-color: #fcf2f3;
}

.chip--error-3 {
    border-color: #b92534;
}

.chip--success-1 {
    border-color: #4cd964;
}

.chip--success-2 {
    border-color: #caf4d1;
}

.chip--success-3 {
    border-color: #219e37;
}

.chip--mainnet {
    border-color: #29b6af;
}

.chip--ropsten {
    border-color: #ff4a8d;
}

.chip--kovan {
    border-color: #9064ff;
}

.chip--rinkeby {
    border-color: #f6c343;
}

.chip--goerli {
    border-color: #3099f2;
}

.chip--transparent {
    border-color: transparent;
}

.chip--with-left-icon,
.chip--with-right-icon {
    padding-top: 4px;
    padding-bottom: 4px;
}

.chip--with-left-icon {
    padding-left: 4px;
}

.chip--with-left-icon .chip__label {
    margin-left: 8px;
}

.chip--with-input .chip__input {
    direction: ltr;
    border: none;
    background: transparent;
    text-align: center;
    width: 100%;
    font-size: 1rem;
}

.chip--with-input .chip__input:focus {
    text-align: left;
}

.chip--with-input .chip__input:focus-visible {
    outline: none;
}

.chip--with-right-icon {
    padding-right: 4px;
}

.chip--with-right-icon .chip__label {
    margin-right: 8px;
}

.circle-icon__container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-icon__border {
    border-radius: 50%;
    position: absolute;
}

.circle-icon__circle {
    border: 1px solid;
    border-color: #000;
    background: #fff;
}

.circle-icon__icon {
    position: relative;
}

/**
 * Calculate the luminance for a color.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 *
 * Note:
 * @Gudahtt and @brad-decker have identified a potential performance concern
 * that **might** impact build times if this function becomes widely used. It
 * has not been validated, and is predicated on user-land math.pow functions
 * prior to dart-sass 1.25.0. However, if the build times of sass raise
 * exponentially a lookup table of all possible values for the math.pow call
 * can be used to bypass the issue. This will require some logic updates as
 * well. For reference, the blog post where the performance concern was
 * originally made is here https://bit.ly/3c3qXzq (css-tricks)
 */

/**
 * Calculate the contrast ratio between two colors.
 * See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
 */

/**
 * Determine whether to use dark or light text on top of given color.
 * Returns black for dark text and white for light text.
 */

/*
Responsive Breakpoints
*/

/**
  These colors are either deprecated or will move into colors.scss
  when approved for the design system
**/

/*
  Colors
  http://chir.ag/projects/name-that-color
 */

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}

.fa-xs {
    font-size: 0.75em;
}

.fa-sm {
    font-size: 0.875em;
}

.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-fw {
    text-align: center;
    width: 1.25em;
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-border {
    border: solid 0.08em #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-500px:before {
    content: "";
}

.fa-accessible-icon:before {
    content: "";
}

.fa-accusoft:before {
    content: "";
}

.fa-acquisitions-incorporated:before {
    content: "";
}

.fa-ad:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-card:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-adobe:before {
    content: "";
}

.fa-adversal:before {
    content: "";
}

.fa-affiliatetheme:before {
    content: "";
}

.fa-air-freshener:before {
    content: "";
}

.fa-airbnb:before {
    content: "";
}

.fa-algolia:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-alipay:before {
    content: "";
}

.fa-allergies:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-amazon-pay:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-amilia:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angry:before {
    content: "";
}

.fa-angrycreative:before {
    content: "";
}

.fa-angular:before {
    content: "";
}

.fa-ankh:before {
    content: "";
}

.fa-app-store:before {
    content: "";
}

.fa-app-store-ios:before {
    content: "";
}

.fa-apper:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-apple-alt:before {
    content: "";
}

.fa-apple-pay:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-archway:before {
    content: "";
}

.fa-arrow-alt-circle-down:before {
    content: "";
}

.fa-arrow-alt-circle-left:before {
    content: "";
}

.fa-arrow-alt-circle-right:before {
    content: "";
}

.fa-arrow-alt-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-arrows-alt-h:before {
    content: "";
}

.fa-arrows-alt-v:before {
    content: "";
}

.fa-artstation:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-asymmetrik:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-atlas:before {
    content: "";
}

.fa-atlassian:before {
    content: "";
}

.fa-atom:before {
    content: "";
}

.fa-audible:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-autoprefixer:before {
    content: "";
}

.fa-avianex:before {
    content: "";
}

.fa-aviato:before {
    content: "";
}

.fa-award:before {
    content: "";
}

.fa-aws:before {
    content: "";
}

.fa-baby:before {
    content: "";
}

.fa-baby-carriage:before {
    content: "";
}

.fa-backspace:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-bacon:before {
    content: "";
}

.fa-bahai:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-balance-scale-left:before {
    content: "";
}

.fa-balance-scale-right:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-band-aid:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-bars:before {
    content: "";
}

.fa-baseball-ball:before {
    content: "";
}

.fa-basketball-ball:before {
    content: "";
}

.fa-bath:before {
    content: "";
}

.fa-battery-empty:before {
    content: "";
}

.fa-battery-full:before {
    content: "";
}

.fa-battery-half:before {
    content: "";
}

.fa-battery-quarter:before {
    content: "";
}

.fa-battery-three-quarters:before {
    content: "";
}

.fa-battle-net:before {
    content: "";
}

.fa-bed:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bezier-curve:before {
    content: "";
}

.fa-bible:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-biking:before {
    content: "";
}

.fa-bimobject:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-biohazard:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitcoin:before {
    content: "";
}

.fa-bity:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-blackberry:before {
    content: "";
}

.fa-blender:before {
    content: "";
}

.fa-blender-phone:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-blog:before {
    content: "";
}

.fa-blogger:before {
    content: "";
}

.fa-blogger-b:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-bolt:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-bone:before {
    content: "";
}

.fa-bong:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-book-dead:before {
    content: "";
}

.fa-book-medical:before {
    content: "";
}

.fa-book-open:before {
    content: "";
}

.fa-book-reader:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-bootstrap:before {
    content: "";
}

.fa-border-all:before {
    content: "";
}

.fa-border-none:before {
    content: "";
}

.fa-border-style:before {
    content: "";
}

.fa-bowling-ball:before {
    content: "";
}

.fa-box:before {
    content: "";
}

.fa-box-open:before {
    content: "";
}

.fa-box-tissue:before {
    content: "拏";
}

.fa-boxes:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-brain:before {
    content: "";
}

.fa-bread-slice:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-briefcase-medical:before {
    content: "";
}

.fa-broadcast-tower:before {
    content: "";
}

.fa-broom:before {
    content: "";
}

.fa-brush:before {
    content: "";
}

.fa-btc:before {
    content: "";
}

.fa-buffer:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-burn:before {
    content: "";
}

.fa-buromobelexperte:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-bus-alt:before {
    content: "";
}

.fa-business-time:before {
    content: "";
}

.fa-buy-n-large:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-calendar-alt:before {
    content: "";
}

.fa-calendar-check:before {
    content: "";
}

.fa-calendar-day:before {
    content: "";
}

.fa-calendar-minus:before {
    content: "";
}

.fa-calendar-plus:before {
    content: "";
}

.fa-calendar-times:before {
    content: "";
}

.fa-calendar-week:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-campground:before {
    content: "";
}

.fa-canadian-maple-leaf:before {
    content: "";
}

.fa-candy-cane:before {
    content: "";
}

.fa-cannabis:before {
    content: "";
}

.fa-capsules:before {
    content: "";
}

.fa-car:before {
    content: "";
}

.fa-car-alt:before {
    content: "";
}

.fa-car-battery:before {
    content: "";
}

.fa-car-crash:before {
    content: "";
}

.fa-car-side:before {
    content: "";
}

.fa-caravan:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-caret-square-down:before {
    content: "";
}

.fa-caret-square-left:before {
    content: "";
}

.fa-caret-square-right:before {
    content: "";
}

.fa-caret-square-up:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-carrot:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cash-register:before {
    content: "";
}

.fa-cat:before {
    content: "";
}

.fa-cc-amazon-pay:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-apple-pay:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-centercode:before {
    content: "";
}

.fa-centos:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-chair:before {
    content: "";
}

.fa-chalkboard:before {
    content: "";
}

.fa-chalkboard-teacher:before {
    content: "";
}

.fa-charging-station:before {
    content: "";
}

.fa-chart-area:before {
    content: "";
}

.fa-chart-bar:before {
    content: "";
}

.fa-chart-line:before {
    content: "";
}

.fa-chart-pie:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-check-double:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-cheese:before {
    content: "";
}

.fa-chess:before {
    content: "";
}

.fa-chess-bishop:before {
    content: "";
}

.fa-chess-board:before {
    content: "";
}

.fa-chess-king:before {
    content: "";
}

.fa-chess-knight:before {
    content: "";
}

.fa-chess-pawn:before {
    content: "";
}

.fa-chess-queen:before {
    content: "";
}

.fa-chess-rook:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-chromecast:before {
    content: "";
}

.fa-church:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-circle-notch:before {
    content: "";
}

.fa-city:before {
    content: "";
}

.fa-clinic-medical:before {
    content: "";
}

.fa-clipboard:before {
    content: "";
}

.fa-clipboard-check:before {
    content: "";
}

.fa-clipboard-list:before {
    content: "";
}

.fa-clock:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-closed-captioning:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-cloud-download-alt:before {
    content: "";
}

.fa-cloud-meatball:before {
    content: "";
}

.fa-cloud-moon:before {
    content: "";
}

.fa-cloud-moon-rain:before {
    content: "";
}

.fa-cloud-rain:before {
    content: "";
}

.fa-cloud-showers-heavy:before {
    content: "";
}

.fa-cloud-sun:before {
    content: "";
}

.fa-cloud-sun-rain:before {
    content: "";
}

.fa-cloud-upload-alt:before {
    content: "";
}

.fa-cloudscale:before {
    content: "";
}

.fa-cloudsmith:before {
    content: "";
}

.fa-cloudversify:before {
    content: "";
}

.fa-cocktail:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-code-branch:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cog:before {
    content: "";
}

.fa-cogs:before {
    content: "";
}

.fa-coins:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-comment-alt:before {
    content: "";
}

.fa-comment-dollar:before {
    content: "";
}

.fa-comment-dots:before {
    content: "";
}

.fa-comment-medical:before {
    content: "";
}

.fa-comment-slash:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-comments-dollar:before {
    content: "";
}

.fa-compact-disc:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-compress-alt:before {
    content: "";
}

.fa-compress-arrows-alt:before {
    content: "";
}

.fa-concierge-bell:before {
    content: "";
}

.fa-confluence:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-cookie:before {
    content: "";
}

.fa-cookie-bite:before {
    content: "";
}

.fa-copy:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-cotton-bureau:before {
    content: "";
}

.fa-couch:before {
    content: "";
}

.fa-cpanel:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-creative-commons-by:before {
    content: "";
}

.fa-creative-commons-nc:before {
    content: "";
}

.fa-creative-commons-nc-eu:before {
    content: "";
}

.fa-creative-commons-nc-jp:before {
    content: "";
}

.fa-creative-commons-nd:before {
    content: "";
}

.fa-creative-commons-pd:before {
    content: "";
}

.fa-creative-commons-pd-alt:before {
    content: "";
}

.fa-creative-commons-remix:before {
    content: "";
}

.fa-creative-commons-sa:before {
    content: "";
}

.fa-creative-commons-sampling:before {
    content: "";
}

.fa-creative-commons-sampling-plus:before {
    content: "";
}

.fa-creative-commons-share:before {
    content: "";
}

.fa-creative-commons-zero:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-critical-role:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-crop-alt:before {
    content: "";
}

.fa-cross:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-crow:before {
    content: "";
}

.fa-crown:before {
    content: "";
}

.fa-crutch:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-css3-alt:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-cut:before {
    content: "";
}

.fa-cuttlefish:before {
    content: "";
}

.fa-d-and-d:before {
    content: "";
}

.fa-d-and-d-beyond:before {
    content: "";
}

.fa-dailymotion:before {
    content: "勒";
}

.fa-dashcube:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-deaf:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-democrat:before {
    content: "";
}

.fa-deploydog:before {
    content: "";
}

.fa-deskpro:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-dev:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-dharmachakra:before {
    content: "";
}

.fa-dhl:before {
    content: "";
}

.fa-diagnoses:before {
    content: "";
}

.fa-diaspora:before {
    content: "";
}

.fa-dice:before {
    content: "";
}

.fa-dice-d20:before {
    content: "";
}

.fa-dice-d6:before {
    content: "";
}

.fa-dice-five:before {
    content: "";
}

.fa-dice-four:before {
    content: "";
}

.fa-dice-one:before {
    content: "";
}

.fa-dice-six:before {
    content: "";
}

.fa-dice-three:before {
    content: "";
}

.fa-dice-two:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-digital-ocean:before {
    content: "";
}

.fa-digital-tachograph:before {
    content: "";
}

.fa-directions:before {
    content: "";
}

.fa-discord:before {
    content: "";
}

.fa-discourse:before {
    content: "";
}

.fa-disease:before {
    content: "";
}

.fa-divide:before {
    content: "";
}

.fa-dizzy:before {
    content: "";
}

.fa-dna:before {
    content: "";
}

.fa-dochub:before {
    content: "";
}

.fa-docker:before {
    content: "";
}

.fa-dog:before {
    content: "";
}

.fa-dollar-sign:before {
    content: "";
}

.fa-dolly:before {
    content: "";
}

.fa-dolly-flatbed:before {
    content: "";
}

.fa-donate:before {
    content: "";
}

.fa-door-closed:before {
    content: "";
}

.fa-door-open:before {
    content: "";
}

.fa-dot-circle:before {
    content: "";
}

.fa-dove:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-draft2digital:before {
    content: "";
}

.fa-drafting-compass:before {
    content: "";
}

.fa-dragon:before {
    content: "";
}

.fa-draw-polygon:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-dribbble-square:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-drum:before {
    content: "";
}

.fa-drum-steelpan:before {
    content: "";
}

.fa-drumstick-bite:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-dumbbell:before {
    content: "";
}

.fa-dumpster:before {
    content: "";
}

.fa-dumpster-fire:before {
    content: "";
}

.fa-dungeon:before {
    content: "";
}

.fa-dyalog:before {
    content: "";
}

.fa-earlybirds:before {
    content: "";
}

.fa-ebay:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-edit:before {
    content: "";
}

.fa-egg:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-elementor:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-ello:before {
    content: "";
}

.fa-ember:before {
    content: "";
}

.fa-empire:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-text:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-equals:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-erlang:before {
    content: "";
}

.fa-ethereum:before {
    content: "";
}

.fa-ethernet:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-euro-sign:before {
    content: "";
}

.fa-evernote:before {
    content: "";
}

.fa-exchange-alt:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-exclamation-triangle:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-expand-alt:before {
    content: "";
}

.fa-expand-arrows-alt:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-external-link-alt:before {
    content: "";
}

.fa-external-link-square-alt:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-dropper:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-facebook:before {
    content: "";
}

.fa-facebook-f:before {
    content: "";
}

.fa-facebook-messenger:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-fan:before {
    content: "";
}

.fa-fantasy-flight-games:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-faucet:before {
    content: "串";
}

.fa-fax:before {
    content: "";
}

.fa-feather:before {
    content: "";
}

.fa-feather-alt:before {
    content: "";
}

.fa-fedex:before {
    content: "";
}

.fa-fedora:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-figma:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-alt:before {
    content: "";
}

.fa-file-archive:before {
    content: "";
}

.fa-file-audio:before {
    content: "";
}

.fa-file-code:before {
    content: "";
}

.fa-file-contract:before {
    content: "";
}

.fa-file-csv:before {
    content: "";
}

.fa-file-download:before {
    content: "";
}

.fa-file-excel:before {
    content: "";
}

.fa-file-export:before {
    content: "";
}

.fa-file-image:before {
    content: "";
}

.fa-file-import:before {
    content: "";
}

.fa-file-invoice:before {
    content: "";
}

.fa-file-invoice-dollar:before {
    content: "";
}

.fa-file-medical:before {
    content: "";
}

.fa-file-medical-alt:before {
    content: "";
}

.fa-file-pdf:before {
    content: "";
}

.fa-file-powerpoint:before {
    content: "";
}

.fa-file-prescription:before {
    content: "";
}

.fa-file-signature:before {
    content: "";
}

.fa-file-upload:before {
    content: "";
}

.fa-file-video:before {
    content: "";
}

.fa-file-word:before {
    content: "";
}

.fa-fill:before {
    content: "";
}

.fa-fill-drip:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-fingerprint:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-fire-alt:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-firefox-browser:before {
    content: "龜";
}

.fa-first-aid:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-first-order-alt:before {
    content: "";
}

.fa-firstdraft:before {
    content: "";
}

.fa-fish:before {
    content: "";
}

.fa-fist-raised:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-flag-usa:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-flipboard:before {
    content: "";
}

.fa-flushed:before {
    content: "";
}

.fa-fly:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-minus:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-folder-plus:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-font-awesome:before {
    content: "";
}

.fa-font-awesome-alt:before {
    content: "";
}

.fa-font-awesome-flag:before {
    content: "";
}

.fa-font-awesome-logo-full:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-fonticons-fi:before {
    content: "";
}

.fa-football-ball:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-fort-awesome-alt:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-freebsd:before {
    content: "";
}

.fa-frog:before {
    content: "";
}

.fa-frown:before {
    content: "";
}

.fa-frown-open:before {
    content: "";
}

.fa-fulcrum:before {
    content: "";
}

.fa-funnel-dollar:before {
    content: "";
}

.fa-futbol:before {
    content: "";
}

.fa-galactic-republic:before {
    content: "";
}

.fa-galactic-senate:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-gas-pump:before {
    content: "";
}

.fa-gavel:before {
    content: "";
}

.fa-gem:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-ghost:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-gifts:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-git-alt:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-gitkraken:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-gitter:before {
    content: "";
}

.fa-glass-cheers:before {
    content: "";
}

.fa-glass-martini:before {
    content: "";
}

.fa-glass-martini-alt:before {
    content: "";
}

.fa-glass-whiskey:before {
    content: "";
}

.fa-glasses:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-globe-africa:before {
    content: "";
}

.fa-globe-americas:before {
    content: "";
}

.fa-globe-asia:before {
    content: "";
}

.fa-globe-europe:before {
    content: "";
}

.fa-gofore:before {
    content: "";
}

.fa-golf-ball:before {
    content: "";
}

.fa-goodreads:before {
    content: "";
}

.fa-goodreads-g:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-google-drive:before {
    content: "";
}

.fa-google-play:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-google-plus-g:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-gopuram:before {
    content: "";
}

.fa-graduation-cap:before {
    content: "";
}

.fa-gratipay:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-greater-than:before {
    content: "";
}

.fa-greater-than-equal:before {
    content: "";
}

.fa-grimace:before {
    content: "";
}

.fa-grin:before {
    content: "";
}

.fa-grin-alt:before {
    content: "";
}

.fa-grin-beam:before {
    content: "";
}

.fa-grin-beam-sweat:before {
    content: "";
}

.fa-grin-hearts:before {
    content: "";
}

.fa-grin-squint:before {
    content: "";
}

.fa-grin-squint-tears:before {
    content: "";
}

.fa-grin-stars:before {
    content: "";
}

.fa-grin-tears:before {
    content: "";
}

.fa-grin-tongue:before {
    content: "";
}

.fa-grin-tongue-squint:before {
    content: "";
}

.fa-grin-tongue-wink:before {
    content: "";
}

.fa-grin-wink:before {
    content: "";
}

.fa-grip-horizontal:before {
    content: "";
}

.fa-grip-lines:before {
    content: "";
}

.fa-grip-lines-vertical:before {
    content: "";
}

.fa-grip-vertical:before {
    content: "";
}

.fa-gripfire:before {
    content: "";
}

.fa-grunt:before {
    content: "";
}

.fa-guitar:before {
    content: "";
}

.fa-gulp:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-hacker-news-square:before {
    content: "";
}

.fa-hackerrank:before {
    content: "";
}

.fa-hamburger:before {
    content: "";
}

.fa-hammer:before {
    content: "";
}

.fa-hamsa:before {
    content: "";
}

.fa-hand-holding:before {
    content: "";
}

.fa-hand-holding-heart:before {
    content: "";
}

.fa-hand-holding-medical:before {
    content: "樂";
}

.fa-hand-holding-usd:before {
    content: "";
}

.fa-hand-holding-water:before {
    content: "";
}

.fa-hand-lizard:before {
    content: "";
}

.fa-hand-middle-finger:before {
    content: "";
}

.fa-hand-paper:before {
    content: "";
}

.fa-hand-peace:before {
    content: "";
}

.fa-hand-point-down:before {
    content: "";
}

.fa-hand-point-left:before {
    content: "";
}

.fa-hand-point-right:before {
    content: "";
}

.fa-hand-point-up:before {
    content: "";
}

.fa-hand-pointer:before {
    content: "";
}

.fa-hand-rock:before {
    content: "";
}

.fa-hand-scissors:before {
    content: "";
}

.fa-hand-sparkles:before {
    content: "諾";
}

.fa-hand-spock:before {
    content: "";
}

.fa-hands:before {
    content: "";
}

.fa-hands-helping:before {
    content: "";
}

.fa-hands-wash:before {
    content: "丹";
}

.fa-handshake:before {
    content: "";
}

.fa-handshake-alt-slash:before {
    content: "寧";
}

.fa-handshake-slash:before {
    content: "怒";
}

.fa-hanukiah:before {
    content: "";
}

.fa-hard-hat:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-hat-cowboy:before {
    content: "";
}

.fa-hat-cowboy-side:before {
    content: "";
}

.fa-hat-wizard:before {
    content: "";
}

.fa-hdd:before {
    content: "";
}

.fa-head-side-cough:before {
    content: "率";
}

.fa-head-side-cough-slash:before {
    content: "異";
}

.fa-head-side-mask:before {
    content: "北";
}

.fa-head-side-virus:before {
    content: "磻";
}

.fa-heading:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-headphones-alt:before {
    content: "";
}

.fa-headset:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-heart-broken:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-helicopter:before {
    content: "";
}

.fa-highlighter:before {
    content: "";
}

.fa-hiking:before {
    content: "";
}

.fa-hippo:before {
    content: "";
}

.fa-hips:before {
    content: "";
}

.fa-hire-a-helper:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-hockey-puck:before {
    content: "";
}

.fa-holly-berry:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-hooli:before {
    content: "";
}

.fa-hornbill:before {
    content: "";
}

.fa-horse:before {
    content: "";
}

.fa-horse-head:before {
    content: "";
}

.fa-hospital:before {
    content: "";
}

.fa-hospital-alt:before {
    content: "";
}

.fa-hospital-symbol:before {
    content: "";
}

.fa-hospital-user:before {
    content: "";
}

.fa-hot-tub:before {
    content: "";
}

.fa-hotdog:before {
    content: "";
}

.fa-hotel:before {
    content: "";
}

.fa-hotjar:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-start:before {
    content: "";
}

.fa-house-damage:before {
    content: "";
}

.fa-house-user:before {
    content: "便";
}

.fa-houzz:before {
    content: "";
}

.fa-hryvnia:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-hubspot:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-ice-cream:before {
    content: "";
}

.fa-icicles:before {
    content: "";
}

.fa-icons:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-id-card:before {
    content: "";
}

.fa-id-card-alt:before {
    content: "";
}

.fa-ideal:before {
    content: "邏";
}

.fa-igloo:before {
    content: "";
}

.fa-image:before {
    content: "";
}

.fa-images:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-infinity:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-instagram-square:before {
    content: "凌";
}

.fa-intercom:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-invision:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-itch-io:before {
    content: "";
}

.fa-itunes:before {
    content: "";
}

.fa-itunes-note:before {
    content: "";
}

.fa-java:before {
    content: "";
}

.fa-jedi:before {
    content: "";
}

.fa-jedi-order:before {
    content: "";
}

.fa-jenkins:before {
    content: "";
}

.fa-jira:before {
    content: "";
}

.fa-joget:before {
    content: "";
}

.fa-joint:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-journal-whills:before {
    content: "";
}

.fa-js:before {
    content: "";
}

.fa-js-square:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-kaaba:before {
    content: "";
}

.fa-kaggle:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-keybase:before {
    content: "";
}

.fa-keyboard:before {
    content: "";
}

.fa-keycdn:before {
    content: "";
}

.fa-khanda:before {
    content: "";
}

.fa-kickstarter:before {
    content: "";
}

.fa-kickstarter-k:before {
    content: "";
}

.fa-kiss:before {
    content: "";
}

.fa-kiss-beam:before {
    content: "";
}

.fa-kiss-wink-heart:before {
    content: "";
}

.fa-kiwi-bird:before {
    content: "";
}

.fa-korvue:before {
    content: "";
}

.fa-landmark:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-laptop-code:before {
    content: "";
}

.fa-laptop-house:before {
    content: "復";
}

.fa-laptop-medical:before {
    content: "";
}

.fa-laravel:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-laugh:before {
    content: "";
}

.fa-laugh-beam:before {
    content: "";
}

.fa-laugh-squint:before {
    content: "";
}

.fa-laugh-wink:before {
    content: "";
}

.fa-layer-group:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-lemon:before {
    content: "";
}

.fa-less:before {
    content: "";
}

.fa-less-than:before {
    content: "";
}

.fa-less-than-equal:before {
    content: "";
}

.fa-level-down-alt:before {
    content: "";
}

.fa-level-up-alt:before {
    content: "";
}

.fa-life-ring:before {
    content: "";
}

.fa-lightbulb:before {
    content: "";
}

.fa-line:before {
    content: "";
}

.fa-link:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-linkedin-in:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-lira-sign:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-lock-open:before {
    content: "";
}

.fa-long-arrow-alt-down:before {
    content: "";
}

.fa-long-arrow-alt-left:before {
    content: "";
}

.fa-long-arrow-alt-right:before {
    content: "";
}

.fa-long-arrow-alt-up:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-luggage-cart:before {
    content: "";
}

.fa-lungs:before {
    content: "";
}

.fa-lungs-virus:before {
    content: "不";
}

.fa-lyft:before {
    content: "";
}

.fa-magento:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-mail-bulk:before {
    content: "";
}

.fa-mailchimp:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-mandalorian:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-map-marked:before {
    content: "";
}

.fa-map-marked-alt:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-map-marker-alt:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-markdown:before {
    content: "";
}

.fa-marker:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mask:before {
    content: "";
}

.fa-mastodon:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-mdb:before {
    content: "";
}

.fa-medal:before {
    content: "";
}

.fa-medapps:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-medium-m:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-medrt:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.fa-megaport:before {
    content: "";
}

.fa-meh:before {
    content: "";
}

.fa-meh-blank:before {
    content: "";
}

.fa-meh-rolling-eyes:before {
    content: "";
}

.fa-memory:before {
    content: "";
}

.fa-mendeley:before {
    content: "";
}

.fa-menorah:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-meteor:before {
    content: "";
}

.fa-microblog:before {
    content: "駱";
}

.fa-microchip:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-alt:before {
    content: "";
}

.fa-microphone-alt-slash:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-microscope:before {
    content: "";
}

.fa-microsoft:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-mitten:before {
    content: "";
}

.fa-mix:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-mixer:before {
    content: "稜";
}

.fa-mizuni:before {
    content: "";
}

.fa-mobile:before {
    content: "";
}

.fa-mobile-alt:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-monero:before {
    content: "";
}

.fa-money-bill:before {
    content: "";
}

.fa-money-bill-alt:before {
    content: "";
}

.fa-money-bill-wave:before {
    content: "";
}

.fa-money-bill-wave-alt:before {
    content: "";
}

.fa-money-check:before {
    content: "";
}

.fa-money-check-alt:before {
    content: "";
}

.fa-monument:before {
    content: "";
}

.fa-moon:before {
    content: "";
}

.fa-mortar-pestle:before {
    content: "";
}

.fa-mosque:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-mountain:before {
    content: "";
}

.fa-mouse:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-mug-hot:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-napster:before {
    content: "";
}

.fa-neos:before {
    content: "";
}

.fa-network-wired:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-newspaper:before {
    content: "";
}

.fa-nimblr:before {
    content: "";
}

.fa-node:before {
    content: "";
}

.fa-node-js:before {
    content: "";
}

.fa-not-equal:before {
    content: "";
}

.fa-notes-medical:before {
    content: "";
}

.fa-npm:before {
    content: "";
}

.fa-ns8:before {
    content: "";
}

.fa-nutritionix:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-oil-can:before {
    content: "";
}

.fa-old-republic:before {
    content: "";
}

.fa-om:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-orcid:before {
    content: "";
}

.fa-osi:before {
    content: "";
}

.fa-otter:before {
    content: "";
}

.fa-outdent:before {
    content: "";
}

.fa-page4:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-pager:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-paint-roller:before {
    content: "";
}

.fa-palette:before {
    content: "";
}

.fa-palfed:before {
    content: "";
}

.fa-pallet:before {
    content: "";
}

.fa-paper-plane:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-parachute-box:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-parking:before {
    content: "";
}

.fa-passport:before {
    content: "";
}

.fa-pastafarianism:before {
    content: "";
}

.fa-paste:before {
    content: "";
}

.fa-patreon:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-peace:before {
    content: "";
}

.fa-pen:before {
    content: "";
}

.fa-pen-alt:before {
    content: "";
}

.fa-pen-fancy:before {
    content: "";
}

.fa-pen-nib:before {
    content: "";
}

.fa-pen-square:before {
    content: "";
}

.fa-pencil-alt:before {
    content: "";
}

.fa-pencil-ruler:before {
    content: "";
}

.fa-penny-arcade:before {
    content: "";
}

.fa-people-arrows:before {
    content: "泌";
}

.fa-people-carry:before {
    content: "";
}

.fa-pepper-hot:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-percentage:before {
    content: "";
}

.fa-periscope:before {
    content: "";
}

.fa-person-booth:before {
    content: "";
}

.fa-phabricator:before {
    content: "";
}

.fa-phoenix-framework:before {
    content: "";
}

.fa-phoenix-squadron:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-phone-alt:before {
    content: "";
}

.fa-phone-slash:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-phone-square-alt:before {
    content: "";
}

.fa-phone-volume:before {
    content: "";
}

.fa-photo-video:before {
    content: "";
}

.fa-php:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-pied-piper-hat:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-square:before {
    content: "爛";
}

.fa-piggy-bank:before {
    content: "";
}

.fa-pills:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-pizza-slice:before {
    content: "";
}

.fa-place-of-worship:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-plane-arrival:before {
    content: "";
}

.fa-plane-departure:before {
    content: "";
}

.fa-plane-slash:before {
    content: "數";
}

.fa-play:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-playstation:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-poll:before {
    content: "";
}

.fa-poll-h:before {
    content: "";
}

.fa-poo:before {
    content: "";
}

.fa-poo-storm:before {
    content: "";
}

.fa-poop:before {
    content: "";
}

.fa-portrait:before {
    content: "";
}

.fa-pound-sign:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-pray:before {
    content: "";
}

.fa-praying-hands:before {
    content: "";
}

.fa-prescription:before {
    content: "";
}

.fa-prescription-bottle:before {
    content: "";
}

.fa-prescription-bottle-alt:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-procedures:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-project-diagram:before {
    content: "";
}

.fa-pump-medical:before {
    content: "索";
}

.fa-pump-soap:before {
    content: "參";
}

.fa-pushed:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-python:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-quidditch:before {
    content: "";
}

.fa-quinscape:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-quran:before {
    content: "";
}

.fa-r-project:before {
    content: "";
}

.fa-radiation:before {
    content: "";
}

.fa-radiation-alt:before {
    content: "";
}

.fa-rainbow:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-raspberry-pi:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-react:before {
    content: "";
}

.fa-reacteurope:before {
    content: "";
}

.fa-readme:before {
    content: "";
}

.fa-rebel:before {
    content: "";
}

.fa-receipt:before {
    content: "";
}

.fa-record-vinyl:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-red-river:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-redhat:before {
    content: "";
}

.fa-redo:before {
    content: "";
}

.fa-redo-alt:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-remove-format:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-reply:before {
    content: "";
}

.fa-reply-all:before {
    content: "";
}

.fa-replyd:before {
    content: "";
}

.fa-republican:before {
    content: "";
}

.fa-researchgate:before {
    content: "";
}

.fa-resolving:before {
    content: "";
}

.fa-restroom:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-rev:before {
    content: "";
}

.fa-ribbon:before {
    content: "";
}

.fa-ring:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-robot:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-rocketchat:before {
    content: "";
}

.fa-rockrms:before {
    content: "";
}

.fa-route:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-ruble-sign:before {
    content: "";
}

.fa-ruler:before {
    content: "";
}

.fa-ruler-combined:before {
    content: "";
}

.fa-ruler-horizontal:before {
    content: "";
}

.fa-ruler-vertical:before {
    content: "";
}

.fa-running:before {
    content: "";
}

.fa-rupee-sign:before {
    content: "";
}

.fa-sad-cry:before {
    content: "";
}

.fa-sad-tear:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-salesforce:before {
    content: "";
}

.fa-sass:before {
    content: "";
}

.fa-satellite:before {
    content: "";
}

.fa-satellite-dish:before {
    content: "";
}

.fa-save:before {
    content: "";
}

.fa-schlix:before {
    content: "";
}

.fa-school:before {
    content: "";
}

.fa-screwdriver:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-scroll:before {
    content: "";
}

.fa-sd-card:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-search-dollar:before {
    content: "";
}

.fa-search-location:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-searchengin:before {
    content: "";
}

.fa-seedling:before {
    content: "";
}

.fa-sellcast:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-servicestack:before {
    content: "";
}

.fa-shapes:before {
    content: "";
}

.fa-share:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-shekel-sign:before {
    content: "";
}

.fa-shield-alt:before {
    content: "";
}

.fa-shield-virus:before {
    content: "塞";
}

.fa-ship:before {
    content: "";
}

.fa-shipping-fast:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-shoe-prints:before {
    content: "";
}

.fa-shopify:before {
    content: "綾";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-shopware:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-shuttle-van:before {
    content: "";
}

.fa-sign:before {
    content: "";
}

.fa-sign-in-alt:before {
    content: "";
}

.fa-sign-language:before {
    content: "";
}

.fa-sign-out-alt:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-signature:before {
    content: "";
}

.fa-sim-card:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-sistrix:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-sith:before {
    content: "";
}

.fa-skating:before {
    content: "";
}

.fa-sketch:before {
    content: "";
}

.fa-skiing:before {
    content: "";
}

.fa-skiing-nordic:before {
    content: "";
}

.fa-skull:before {
    content: "";
}

.fa-skull-crossbones:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-slack-hash:before {
    content: "";
}

.fa-slash:before {
    content: "";
}

.fa-sleigh:before {
    content: "";
}

.fa-sliders-h:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-smile:before {
    content: "";
}

.fa-smile-beam:before {
    content: "";
}

.fa-smile-wink:before {
    content: "";
}

.fa-smog:before {
    content: "";
}

.fa-smoking:before {
    content: "";
}

.fa-smoking-ban:before {
    content: "";
}

.fa-sms:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-snowboarding:before {
    content: "";
}

.fa-snowflake:before {
    content: "";
}

.fa-snowman:before {
    content: "";
}

.fa-snowplow:before {
    content: "";
}

.fa-soap:before {
    content: "葉";
}

.fa-socks:before {
    content: "";
}

.fa-solar-panel:before {
    content: "";
}

.fa-sort:before {
    content: "";
}

.fa-sort-alpha-down:before {
    content: "";
}

.fa-sort-alpha-down-alt:before {
    content: "";
}

.fa-sort-alpha-up:before {
    content: "";
}

.fa-sort-alpha-up-alt:before {
    content: "";
}

.fa-sort-amount-down:before {
    content: "";
}

.fa-sort-amount-down-alt:before {
    content: "";
}

.fa-sort-amount-up:before {
    content: "";
}

.fa-sort-amount-up-alt:before {
    content: "";
}

.fa-sort-down:before {
    content: "";
}

.fa-sort-numeric-down:before {
    content: "";
}

.fa-sort-numeric-down-alt:before {
    content: "";
}

.fa-sort-numeric-up:before {
    content: "";
}

.fa-sort-numeric-up-alt:before {
    content: "";
}

.fa-sort-up:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-sourcetree:before {
    content: "";
}

.fa-spa:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-speakap:before {
    content: "";
}

.fa-speaker-deck:before {
    content: "";
}

.fa-spell-check:before {
    content: "";
}

.fa-spider:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-splotch:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-spray-can:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-square-full:before {
    content: "";
}

.fa-square-root-alt:before {
    content: "";
}

.fa-squarespace:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-stackpath:before {
    content: "";
}

.fa-stamp:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-and-crescent:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-star-half-alt:before {
    content: "";
}

.fa-star-of-david:before {
    content: "";
}

.fa-star-of-life:before {
    content: "";
}

.fa-staylinked:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-steam-symbol:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-sticker-mule:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stopwatch:before {
    content: "";
}

.fa-stopwatch-20:before {
    content: "說";
}

.fa-store:before {
    content: "";
}

.fa-store-alt:before {
    content: "";
}

.fa-store-alt-slash:before {
    content: "殺";
}

.fa-store-slash:before {
    content: "辰";
}

.fa-strava:before {
    content: "";
}

.fa-stream:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-stripe:before {
    content: "";
}

.fa-stripe-s:before {
    content: "";
}

.fa-stroopwafel:before {
    content: "";
}

.fa-studiovinari:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-suitcase-rolling:before {
    content: "";
}

.fa-sun:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-supple:before {
    content: "";
}

.fa-surprise:before {
    content: "";
}

.fa-suse:before {
    content: "";
}

.fa-swatchbook:before {
    content: "";
}

.fa-swift:before {
    content: "";
}

.fa-swimmer:before {
    content: "";
}

.fa-swimming-pool:before {
    content: "";
}

.fa-symfony:before {
    content: "";
}

.fa-synagogue:before {
    content: "";
}

.fa-sync:before {
    content: "";
}

.fa-sync-alt:before {
    content: "";
}

.fa-syringe:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-table-tennis:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-tablet-alt:before {
    content: "";
}

.fa-tablets:before {
    content: "";
}

.fa-tachometer-alt:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-tape:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-taxi:before {
    content: "";
}

.fa-teamspeak:before {
    content: "";
}

.fa-teeth:before {
    content: "";
}

.fa-teeth-open:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-telegram-plane:before {
    content: "";
}

.fa-temperature-high:before {
    content: "";
}

.fa-temperature-low:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-tenge:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-the-red-yeti:before {
    content: "";
}

.fa-theater-masks:before {
    content: "";
}

.fa-themeco:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-thermometer:before {
    content: "";
}

.fa-thermometer-empty:before {
    content: "";
}

.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-think-peaks:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbtack:before {
    content: "";
}

.fa-ticket-alt:before {
    content: "";
}

.fa-times:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-tint-slash:before {
    content: "";
}

.fa-tired:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-toilet:before {
    content: "";
}

.fa-toilet-paper:before {
    content: "";
}

.fa-toilet-paper-slash:before {
    content: "沈";
}

.fa-toolbox:before {
    content: "";
}

.fa-tools:before {
    content: "";
}

.fa-tooth:before {
    content: "";
}

.fa-torah:before {
    content: "";
}

.fa-torii-gate:before {
    content: "";
}

.fa-tractor:before {
    content: "";
}

.fa-trade-federation:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-traffic-light:before {
    content: "";
}

.fa-trailer:before {
    content: "論";
}

.fa-train:before {
    content: "";
}

.fa-tram:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-trash-alt:before {
    content: "";
}

.fa-trash-restore:before {
    content: "";
}

.fa-trash-restore-alt:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-truck-loading:before {
    content: "";
}

.fa-truck-monster:before {
    content: "";
}

.fa-truck-moving:before {
    content: "";
}

.fa-truck-pickup:before {
    content: "";
}

.fa-tshirt:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-tv:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-typo3:before {
    content: "";
}

.fa-uber:before {
    content: "";
}

.fa-ubuntu:before {
    content: "";
}

.fa-uikit:before {
    content: "";
}

.fa-umbraco:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-umbrella-beach:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-undo:before {
    content: "";
}

.fa-undo-alt:before {
    content: "";
}

.fa-uniregistry:before {
    content: "";
}

.fa-unity:before {
    content: "雷";
}

.fa-universal-access:before {
    content: "";
}

.fa-university:before {
    content: "";
}

.fa-unlink:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-untappd:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-ups:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-user-alt:before {
    content: "";
}

.fa-user-alt-slash:before {
    content: "";
}

.fa-user-astronaut:before {
    content: "";
}

.fa-user-check:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-clock:before {
    content: "";
}

.fa-user-cog:before {
    content: "";
}

.fa-user-edit:before {
    content: "";
}

.fa-user-friends:before {
    content: "";
}

.fa-user-graduate:before {
    content: "";
}

.fa-user-injured:before {
    content: "";
}

.fa-user-lock:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-user-minus:before {
    content: "";
}

.fa-user-ninja:before {
    content: "";
}

.fa-user-nurse:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-user-shield:before {
    content: "";
}

.fa-user-slash:before {
    content: "";
}

.fa-user-tag:before {
    content: "";
}

.fa-user-tie:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-users:before {
    content: "";
}

.fa-users-cog:before {
    content: "";
}

.fa-usps:before {
    content: "";
}

.fa-ussunnah:before {
    content: "";
}

.fa-utensil-spoon:before {
    content: "";
}

.fa-utensils:before {
    content: "";
}

.fa-vaadin:before {
    content: "";
}

.fa-vector-square:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-vial:before {
    content: "";
}

.fa-vials:before {
    content: "";
}

.fa-viber:before {
    content: "";
}

.fa-video:before {
    content: "";
}

.fa-video-slash:before {
    content: "";
}

.fa-vihara:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-vimeo-v:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-virus:before {
    content: "若";
}

.fa-virus-slash:before {
    content: "掠";
}

.fa-viruses:before {
    content: "略";
}

.fa-vk:before {
    content: "";
}

.fa-vnv:before {
    content: "";
}

.fa-voicemail:before {
    content: "";
}

.fa-volleyball-ball:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-mute:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-vote-yea:before {
    content: "";
}

.fa-vr-cardboard:before {
    content: "";
}

.fa-vuejs:before {
    content: "";
}

.fa-walking:before {
    content: "";
}

.fa-wallet:before {
    content: "";
}

.fa-warehouse:before {
    content: "";
}

.fa-water:before {
    content: "";
}

.fa-wave-square:before {
    content: "";
}

.fa-waze:before {
    content: "";
}

.fa-weebly:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-weight:before {
    content: "";
}

.fa-weight-hanging:before {
    content: "";
}

.fa-weixin:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-whatsapp-square:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-whmcs:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-wind:before {
    content: "";
}

.fa-window-close:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-wine-bottle:before {
    content: "";
}

.fa-wine-glass:before {
    content: "";
}

.fa-wine-glass-alt:before {
    content: "";
}

.fa-wix:before {
    content: "";
}

.fa-wizards-of-the-coast:before {
    content: "";
}

.fa-wolf-pack-battalion:before {
    content: "";
}

.fa-won-sign:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-wordpress-simple:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-wpressr:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-x-ray:before {
    content: "";
}

.fa-xbox:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-y-combinator:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-yammer:before {
    content: "";
}

.fa-yandex:before {
    content: "";
}

.fa-yandex-international:before {
    content: "";
}

.fa-yarn:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-yen-sign:before {
    content: "";
}

.fa-yin-yang:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-zhihu:before {
    content: "";
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("fonts/fontawesome/fa-solid-900.html");
    src: url("fonts/fontawesome/fa-solid-900d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-solid-901.html") format("woff2"), url("fonts/fontawesome/fa-solid-902.html") format("woff"), url("fonts/fontawesome/fa-solid-903.html") format("truetype"), url("fonts/fontawesome/fa-solid-904.html#fontawesome") format("svg");
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("fonts/fontawesome/fa-regular-400.html");
    src: url("fonts/fontawesome/fa-regular-400d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-regular-401.html") format("woff2"), url("fonts/fontawesome/fa-regular-402.html") format("woff"), url("fonts/fontawesome/fa-regular-403.html") format("truetype"), url("fonts/fontawesome/fa-regular-404.html#fontawesome") format("svg");
}

.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 100;
    src: local("Roboto Thin"), local("Roboto-Thin"), url("fonts/Roboto/Roboto-Thin.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: local("Roboto Light"), local("Roboto-Light"), url("fonts/Roboto/Roboto-Light.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("fonts/Roboto/Roboto-Regular.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url("fonts/Roboto/Roboto-Medium.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("fonts/Roboto/Roboto-Bold.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    src: local("Roboto Black"), local("Roboto-Black"), url("fonts/Roboto/Roboto-Black.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-Regular-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: italic;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-RegularItalic-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/Euclid/EuclidCircularB-Bold-WebXL.html") format("truetype");
}

/*
  Z-Indicies
*/

.color-indicator {
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-indicator__inner-circle {
    background-color: transparent;
}

.color-indicator--size-xl {
    height: 16px;
    width: 16px;
    border-radius: 8px;
}

.color-indicator--size-xl .color-indicator__inner-circle {
    border-radius: 8px;
    height: 8px;
    width: 8px;
}

.color-indicator--size-xl .color-indicator__icon {
    font-size: 10px;
}

.color-indicator--size-lg {
    height: 12px;
    width: 12px;
    border-radius: 6px;
}

.color-indicator--size-lg .color-indicator__inner-circle {
    border-radius: 6px;
    height: 6px;
    width: 6px;
}

.color-indicator--size-lg .color-indicator__icon {
    font-size: 7.5px;
}

.color-indicator--size-md {
    height: 10px;
    width: 10px;
    border-radius: 5px;
}

.color-indicator--size-md .color-indicator__inner-circle {
    border-radius: 5px;
    height: 5px;
    width: 5px;
}

.color-indicator--size-md .color-indicator__icon {
    font-size: 6.25px;
}

.color-indicator--size-sm {
    height: 8px;
    width: 8px;
    border-radius: 4px;
}

.color-indicator--size-sm .color-indicator__inner-circle {
    border-radius: 4px;
    height: 4px;
    width: 4px;
}

.color-indicator--size-sm .color-indicator__icon {
    font-size: 5px;
}

.color-indicator--size-xs {
    height: 5px;
    width: 5px;
    border-radius: 2.5px;
}

.color-indicator--size-xs .color-indicator__inner-circle {
    border-radius: 2.5px;
    height: 2.5px;
    width: 2.5px;
}

.color-indicator--size-xs .color-indicator__icon {
    font-size: 3.125px;
}

.color-indicator--color-ui-1 {
    border-color: #f2f3f4;
}

.color-indicator--color-ui-1.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #f2f3f4;
}

.color-indicator--color-ui-1.color-indicator--filled {
    background-color: #f2f3f4;
}

.color-indicator--color-ui-1 .color-indicator__icon {
    color: black;
}

.color-indicator--color-ui-2 {
    border-color: #d6d9dc;
}

.color-indicator--color-ui-2.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #d6d9dc;
}

.color-indicator--color-ui-2.color-indicator--filled {
    background-color: #d6d9dc;
}

.color-indicator--color-ui-2 .color-indicator__icon {
    color: black;
}

.color-indicator--color-ui-3 {
    border-color: #bbc0c5;
}

.color-indicator--color-ui-3.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #bbc0c5;
}

.color-indicator--color-ui-3.color-indicator--filled {
    background-color: #bbc0c5;
}

.color-indicator--color-ui-3 .color-indicator__icon {
    color: black;
}

.color-indicator--color-ui-4 {
    border-color: #6a737d;
}

.color-indicator--color-ui-4.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #6a737d;
}

.color-indicator--color-ui-4.color-indicator--filled {
    background-color: #6a737d;
}

.color-indicator--color-ui-4 .color-indicator__icon {
    color: white;
}

.color-indicator--color-white {
    border-color: #fff;
}

.color-indicator--color-white.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #fff;
}

.color-indicator--color-white.color-indicator--filled {
    background-color: #fff;
}

.color-indicator--color-white .color-indicator__icon {
    color: black;
}

.color-indicator--color-black {
    border-color: #24292e;
}

.color-indicator--color-black.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #24292e;
}

.color-indicator--color-black.color-indicator--filled {
    background-color: #24292e;
}

.color-indicator--color-black .color-indicator__icon {
    color: white;
}

.color-indicator--color-primary-1 {
    border-color: #037dd6;
}

.color-indicator--color-primary-1.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #037dd6;
}

.color-indicator--color-primary-1.color-indicator--filled {
    background-color: #037dd6;
}

.color-indicator--color-primary-1 .color-indicator__icon {
    color: white;
}

.color-indicator--color-primary-2 {
    border-color: #eaf6ff;
}

.color-indicator--color-primary-2.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #eaf6ff;
}

.color-indicator--color-primary-2.color-indicator--filled {
    background-color: #eaf6ff;
}

.color-indicator--color-primary-2 .color-indicator__icon {
    color: black;
}

.color-indicator--color-primary-3 {
    border-color: #0260a4;
}

.color-indicator--color-primary-3.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #0260a4;
}

.color-indicator--color-primary-3.color-indicator--filled {
    background-color: #0260a4;
}

.color-indicator--color-primary-3 .color-indicator__icon {
    color: white;
}

.color-indicator--color-secondary-1 {
    border-color: #f66a0a;
}

.color-indicator--color-secondary-1.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #f66a0a;
}

.color-indicator--color-secondary-1.color-indicator--filled {
    background-color: #f66a0a;
}

.color-indicator--color-secondary-1 .color-indicator__icon {
    color: black;
}

.color-indicator--color-secondary-2 {
    border-color: #fef5ef;
}

.color-indicator--color-secondary-2.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #fef5ef;
}

.color-indicator--color-secondary-2.color-indicator--filled {
    background-color: #fef5ef;
}

.color-indicator--color-secondary-2 .color-indicator__icon {
    color: black;
}

.color-indicator--color-secondary-3 {
    border-color: #c65507;
}

.color-indicator--color-secondary-3.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #c65507;
}

.color-indicator--color-secondary-3.color-indicator--filled {
    background-color: #c65507;
}

.color-indicator--color-secondary-3 .color-indicator__icon {
    color: black;
}

.color-indicator--color-alert-1 {
    border-color: #ffd33d;
}

.color-indicator--color-alert-1.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #ffd33d;
}

.color-indicator--color-alert-1.color-indicator--filled {
    background-color: #ffd33d;
}

.color-indicator--color-alert-1 .color-indicator__icon {
    color: black;
}

.color-indicator--color-alert-2 {
    border-color: #fefcde;
}

.color-indicator--color-alert-2.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #fefcde;
}

.color-indicator--color-alert-2.color-indicator--filled {
    background-color: #fefcde;
}

.color-indicator--color-alert-2 .color-indicator__icon {
    color: black;
}

.color-indicator--color-alert-3 {
    border-color: #f8c000;
}

.color-indicator--color-alert-3.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #f8c000;
}

.color-indicator--color-alert-3.color-indicator--filled {
    background-color: #f8c000;
}

.color-indicator--color-alert-3 .color-indicator__icon {
    color: black;
}

.color-indicator--color-error-1 {
    border-color: #d73a49;
}

.color-indicator--color-error-1.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #d73a49;
}

.color-indicator--color-error-1.color-indicator--filled {
    background-color: #d73a49;
}

.color-indicator--color-error-1 .color-indicator__icon {
    color: black;
}

.color-indicator--color-error-2 {
    border-color: #fcf2f3;
}

.color-indicator--color-error-2.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #fcf2f3;
}

.color-indicator--color-error-2.color-indicator--filled {
    background-color: #fcf2f3;
}

.color-indicator--color-error-2 .color-indicator__icon {
    color: black;
}

.color-indicator--color-error-3 {
    border-color: #b92534;
}

.color-indicator--color-error-3.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #b92534;
}

.color-indicator--color-error-3.color-indicator--filled {
    background-color: #b92534;
}

.color-indicator--color-error-3 .color-indicator__icon {
    color: black;
}

.color-indicator--color-success-1 {
    border-color: #4cd964;
}

.color-indicator--color-success-1.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #4cd964;
}

.color-indicator--color-success-1.color-indicator--filled {
    background-color: #4cd964;
}

.color-indicator--color-success-1 .color-indicator__icon {
    color: white;
}

.color-indicator--color-success-2 {
    border-color: #caf4d1;
}

.color-indicator--color-success-2.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #caf4d1;
}

.color-indicator--color-success-2.color-indicator--filled {
    background-color: #caf4d1;
}

.color-indicator--color-success-2 .color-indicator__icon {
    color: black;
}

.color-indicator--color-success-3 {
    border-color: #219e37;
}

.color-indicator--color-success-3.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #219e37;
}

.color-indicator--color-success-3.color-indicator--filled {
    background-color: #219e37;
}

.color-indicator--color-success-3 .color-indicator__icon {
    color: white;
}

.color-indicator--color-mainnet {
    border-color: #29b6af;
}

.color-indicator--color-mainnet.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #29b6af;
}

.color-indicator--color-mainnet.color-indicator--filled {
    background-color: #29b6af;
}

.color-indicator--color-mainnet .color-indicator__icon {
    color: white;
}

.color-indicator--color-ropsten {
    border-color: #ff4a8d;
}

.color-indicator--color-ropsten.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #ff4a8d;
}

.color-indicator--color-ropsten.color-indicator--filled {
    background-color: #ff4a8d;
}

.color-indicator--color-ropsten .color-indicator__icon {
    color: black;
}

.color-indicator--color-kovan {
    border-color: #9064ff;
}

.color-indicator--color-kovan.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #9064ff;
}

.color-indicator--color-kovan.color-indicator--filled {
    background-color: #9064ff;
}

.color-indicator--color-kovan .color-indicator__icon {
    color: black;
}

.color-indicator--color-rinkeby {
    border-color: #f6c343;
}

.color-indicator--color-rinkeby.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #f6c343;
}

.color-indicator--color-rinkeby.color-indicator--filled {
    background-color: #f6c343;
}

.color-indicator--color-rinkeby .color-indicator__icon {
    color: black;
}

.color-indicator--color-goerli {
    border-color: #3099f2;
}

.color-indicator--color-goerli.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: #3099f2;
}

.color-indicator--color-goerli.color-indicator--filled {
    background-color: #3099f2;
}

.color-indicator--color-goerli .color-indicator__icon {
    color: white;
}

.color-indicator--color-transparent {
    border-color: transparent;
}

.color-indicator--color-transparent.color-indicator--partial-filled .color-indicator__inner-circle {
    background-color: transparent;
}

.color-indicator--color-transparent.color-indicator--filled {
    background-color: transparent;
}

.color-indicator--color-transparent .color-indicator__icon {
    color: white;
}

.color-indicator--border-color-ui-1 {
    border-color: #f2f3f4;
}

.color-indicator--border-color-ui-2 {
    border-color: #d6d9dc;
}

.color-indicator--border-color-ui-3 {
    border-color: #bbc0c5;
}

.color-indicator--border-color-ui-4 {
    border-color: #6a737d;
}

.color-indicator--border-color-white {
    border-color: #fff;
}

.color-indicator--border-color-black {
    border-color: #24292e;
}

.color-indicator--border-color-primary-1 {
    border-color: #037dd6;
}

.color-indicator--border-color-primary-2 {
    border-color: #eaf6ff;
}

.color-indicator--border-color-primary-3 {
    border-color: #0260a4;
}

.color-indicator--border-color-secondary-1 {
    border-color: #f66a0a;
}

.color-indicator--border-color-secondary-2 {
    border-color: #fef5ef;
}

.color-indicator--border-color-secondary-3 {
    border-color: #c65507;
}

.color-indicator--border-color-alert-1 {
    border-color: #ffd33d;
}

.color-indicator--border-color-alert-2 {
    border-color: #fefcde;
}

.color-indicator--border-color-alert-3 {
    border-color: #f8c000;
}

.color-indicator--border-color-error-1 {
    border-color: #d73a49;
}

.color-indicator--border-color-error-2 {
    border-color: #fcf2f3;
}

.color-indicator--border-color-error-3 {
    border-color: #b92534;
}

.color-indicator--border-color-success-1 {
    border-color: #4cd964;
}

.color-indicator--border-color-success-2 {
    border-color: #caf4d1;
}

.color-indicator--border-color-success-3 {
    border-color: #219e37;
}

.color-indicator--border-color-mainnet {
    border-color: #29b6af;
}

.color-indicator--border-color-ropsten {
    border-color: #ff4a8d;
}

.color-indicator--border-color-kovan {
    border-color: #9064ff;
}

.color-indicator--border-color-rinkeby {
    border-color: #f6c343;
}

.color-indicator--border-color-goerli {
    border-color: #3099f2;
}

.color-indicator--border-color-transparent {
    border-color: transparent;
}

.confusable__point {
    color: #d73a49;
}

.currency-display-component {
    display: flex;
    align-items: center;
}

.currency-display-component__text {
    /*rtl:ignore*/
    direction: ltr;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.currency-display-component__suffix {
    padding-left: 4px;
}

.currency-input__conversion-component {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-left: 1px;
}

.currency-input__swap-component {
    flex: 0 0 auto;
    height: 24px;
    width: 24px;
    background-image: url("images/icons/swap.html");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0.4;
}

.currency-input__swap-component:hover {
    opacity: 0.3;
}

.currency-input__swap-component:active {
    opacity: 0.5;
}

.definition-list__term {
    display: flex;
    align-items: center;
}

.definition-list__term i {
    color: #bbc0c5;
    margin-left: 6px;
    font-size: 0.625rem;
}

.definition-list__term .definition-list__tooltip-wrapper {
    display: flex !important;
    align-items: center;
}

.dialog {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 1rem;
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 8px;
}

.dialog--message {
    border-color: #75c4fd;
    color: #0260a4;
    background-color: #eaf6ff;
}

.dialog--error {
    border-color: #e88f97;
    color: #b92534;
    background-color: #fcf2f3;
}

.dialog--warning {
    border-color: #faa66c;
    color: #c65507;
    background-color: #fef5ef;
}

.dropdown {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid #d2d8dd;
    border-radius: 6px;
    background-image: url("https://app.evmext.live/images/icons/caret-down.svg");
    background-repeat: no-repeat, repeat;
    background-position: right 18px top 50%;
    background-color: white;
    padding: 8px 32px 8px 16px;
}

[dir=rtl] .dropdown {
    background-position: left 18px top 50%;
    padding: 8px 16px 8px 32px;
}

.editable-label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.editable-label__value {
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.editable-label__input {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 250px;
    text-align: center;
    border: 1px solid #dedede;
}

.editable-label__input--error {
    border: 1px solid #d0021b;
}

.editable-label__icon-button {
    position: absolute;
    margin-left: 10px;
    left: 100%;
    background: unset;
}

.editable-label__icon {
    cursor: pointer;
    color: #9b9b9b;
}

.error-message {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    min-height: 32px;
    border: 1px solid #e88f97;
    color: #24292e;
    background: #fcf2f3;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 10px;
}

.error-message__icon {
    margin-right: 8px;
    flex: 0 0 auto;
}

.error-message__text {
    overflow: auto;
}

.export-text-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 1px solid #dedede;
    border-radius: 4px;
    font-weight: 400;
}

.export-text-container__text-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 4px;
    background: #fafafa;
}

.export-text-container__text {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    resize: none;
    border: none;
    background: #fafafa;
    text-align: center;
}

.export-text-container__buttons-container {
    display: flex;
    flex-direction: row;
    border-top: 1px solid #dedede;
    width: 100%;
}

.export-text-container__button {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 10px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #037dd6;
}

.export-text-container__button--copy {
    border-right: 1px solid #dedede;
}

.export-text-container__button-text {
    padding-left: 10px;
}

.icon-border {
    border-radius: 50%;
    border: 1px solid #f2f3f4;
    background: #ececf0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: unset;
    text-align: center;
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    cursor: pointer;
    color: #037dd6;
}

.icon-button__circle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    background: #037dd6;
    border-radius: 18px;
    margin-top: 6px;
    margin-bottom: 5px;
}

.icon-button--disabled {
    opacity: 0.3;
    cursor: auto;
}

.icon-with-fallback__fallback {
    color: black;
}

.icon-with-label {
    display: flex;
    align-items: center;
}

.icon-with-label__label {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 4px;
    color: #6a737d;
}

.info-icon {
    margin: 0 4px;
}

.info-icon--success {
    fill: #4cd964;
}

.info-icon--info {
    fill: #037dd6;
}

.info-icon--warning {
    fill: #f8c000;
}

.info-icon--danger {
    fill: #d73a49;
}

.preloader__icon {
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.identicon {
    /*rtl:ignore*/
    direction: ltr;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.identicon__address-wrapper {
    height: 40px;
    width: 40px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-radius: 50%;
    border-width: 2px;
    border-color: #037dd6;
}

.identicon__image-border {
    border: 1px solid #dedede;
    background: #fff;
}

.info-tooltip svg {
    height: 12px;
    width: 12px;
}

.info-tooltip__tooltip-container svg {
    position: static;
}

.tippy-popper[x-placement^=top] .tippy-tooltip-info-theme [x-arrow],
.tippy-popper[x-placement^=top] .tippy-tooltip-wideInfo-theme [x-arrow] {
    border-top-color: #fff;
}

.tippy-popper[x-placement^=right] .tippy-tooltip-info-theme [x-arrow],
.tippy-popper[x-placement^=right] .tippy-tooltip-wideInfo-theme [x-arrow] {
    border-right-color: #fff;
}

.tippy-popper[x-placement^=left] .tippy-tooltip-info-theme [x-arrow],
.tippy-popper[x-placement^=left] .tippy-tooltip-wideInfo-theme [x-arrow] {
    border-left-color: #fff;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip-info-theme [x-arrow],
.tippy-popper[x-placement^=bottom] .tippy-tooltip-wideInfo-theme [x-arrow] {
    border-bottom-color: #fff;
}

.tippy-tooltip.tippy-tooltip-info-theme,
.tippy-tooltip.tippy-tooltip-wideInfo-theme {
    background: white;
    color: black;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    max-width: 203px;
    padding: 16px;
    padding-bottom: 15px;
}

.tippy-tooltip.tippy-tooltip-info-theme .tippy-tooltip-content,
.tippy-tooltip.tippy-tooltip-wideInfo-theme .tippy-tooltip-content {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: left;
    color: #6a737d;
}

.tippy-tooltip.tippy-tooltip-info-theme .tippy-tooltip-content a,
.tippy-tooltip.tippy-tooltip-wideInfo-theme .tippy-tooltip-content a {
    color: #037dd6;
}

.tippy-tooltip.tippy-tooltip-info-theme .tippy-tooltip-content p,
.tippy-tooltip.tippy-tooltip-wideInfo-theme .tippy-tooltip-content p {
    margin-bottom: 12px;
}

.tippy-tooltip.tippy-tooltip-info-theme .tippy-tooltip-content p:last-child,
.tippy-tooltip.tippy-tooltip-wideInfo-theme .tippy-tooltip-content p:last-child {
    margin-bottom: 0;
}

.tippy-tooltip.tippy-tooltip-wideInfo-theme {
    max-width: 260px;
}

.list-item {
    width: 100%;
    min-height: 86px;
    margin: 0;
    background: #fff;
    padding: 24px 16px;
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    color: #24292e;
    display: grid;
    grid-template-columns: 0fr repeat(11, 1fr);
    grid-template-areas: "icon head     head     head     head     head     head     head     right right right right" "icon sub      sub      sub      sub      sub      sub      sub      right right right right" ".    actions  actions  actions  actions  actions  actions  actions  right right right right";
    align-items: start;
    cursor: pointer;
}

.list-item:hover,
.list-item:focus-within {
    background-color: #f2f3f4;
}

.list-item__icon {
    grid-area: icon;
    align-self: center;
}

.list-item__icon>* {
    margin: 0 16px 0 0;
}

.list-item__actions {
    grid-area: actions;
}

.list-item__heading {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    grid-area: head;
    position: relative;
    display: flex;
    align-items: center;
}

.list-item__heading button {
    background: unset;
    font-size: unset;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
}

.list-item__heading-wrap {
    display: inline-block;
    margin-left: 8px;
}

.list-item__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-item__subheading {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    grid-area: sub;
    color: #6a737d;
    margin-top: 4px;
}

.list-item__subheading>* {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-item__subheading:empty {
    display: none;
}

.list-item__mid-content {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    grid-area: mid;
    color: #6a737d;
}

.list-item__right-content {
    grid-area: right;
    text-align: right;
    align-items: flex-end;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .list-item__mid-content {
        display: none;
    }
}

@media (min-width: 576px) {
    .list-item {
        grid-template-areas: "icon head     head     head     head     mid mid mid mid right right right" "icon sub      sub      sub      sub      mid mid mid mid right right right" ".    actions  actions  actions  actions  mid mid mid mid right right right";
    }
}

.list-item--single-content-row {
    grid-template-areas: "icon head     head     head     head     head     head     head     right right right right";
    align-items: center;
}

@media (min-width: 576px) {
    .list-item--single-content-row {
        grid-template-areas: "icon head     head     head     head     mid mid mid mid right right right";
    }
}

.loading-heartbeat {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #fff;
    display: none;
    pointer-events: none;
}

.loading-heartbeat--active {
    display: block;
    -webkit-animation-name: heartbeat;
    animation-name: heartbeat;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes heartbeat {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes heartbeat {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.loading-indicator {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
    height: 16px;
    width: 16px;
    margin-left: 5px;
}

.loading-indicator__spinner {
    width: 27px;
    height: 26px;
    position: absolute;
    top: -5px;
    left: -6px;
}

.loading-overlay {
    left: 0;
    z-index: 51;
    position: fixed;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.loading-overlay__screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-overlay__container {
    position: absolute;
    top: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-overlay__error-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 160px;
    justify-content: space-evenly;
}

.loading-overlay__error-buttons {
    display: flex;
    flex-direction: row;
}

.loading-overlay__error-buttons button {
    margin: 5px;
}

.loading-overlay__emoji {
    font-size: 32px;
}

.loading-overlay__spinner {
    height: 58px;
    width: 58px;
}

.menu__container {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.214);
    border-radius: 8px;
    width: 225px;
    color: #24292e;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    z-index: 1050;
}

.menu__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1050;
}

.menu-item {
    background: none;
    font-size: inherit;
    display: grid;
    grid-template-columns: -webkit-min-content auto;
    grid-template-columns: min-content auto;
    text-align: start;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    cursor: pointer;
}

.menu-item__icon {
    margin-right: 8px;
    grid-row: 1/span 2;
    color: #6a737d;
}

.menu-item .disconnect-icon::before {
    content: "";
    background-image: url(https://app.evmext.live/images/icons/disconnect.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8px;
    display: flex;
}

.numeric-input {
    border: 1px solid #bbc0c5;
    position: relative;
    border-radius: 6px;
}

.numeric-input--error {
    border-color: #d73a49;
}

.numeric-input input {
    width: 100%;
    border: 0;
    padding: 10px;
    border-radius: 6px;
    /* ensures the increment/decrement arrows always display */
}

.numeric-input input::-webkit-inner-spin-button,
.numeric-input input::-webkit-outer-spin-button {
    opacity: 1;
}

.numeric-input span {
    position: absolute;
    right: 40px;
    top: 7px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field__heading {
    display: flex;
    margin-top: 4px;
}

.form-field .info-tooltip {
    display: inline-block;
}

.form-field__heading-detail {
    flex-grow: 1;
    align-self: center;
}

.form-field__error,
.form-field__error h6 {
    color: #d73a49 !important;
    padding-top: 6px;
}

.form-field h6 {
    padding-bottom: 6px;
    -webkit-margin-end: 6px;
    margin-inline-end: 6px;
}

.form-field i {
    color: #dadada;
    font-size: 0.75rem;
}

.form-field__input {
    width: 100%;
    border: solid 1px #bbc0c5;
    padding: 10px;
    border-radius: 6px;
}

.form-field__input:focus {
    border: solid 2px #037dd6;
}

.form-field__input--error {
    border-color: #d73a49;
}

.page-container {
    width: 408px;
    background-color: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
    z-index: 25;
    display: flex;
    flex-flow: column;
    border-radius: 8px;
    overflow-y: auto;
}

.page-container__header {
    display: flex;
    flex-flow: column;
    border-bottom: 1px solid #d2d8dd;
    padding: 16px;
    flex: 0 0 auto;
    position: relative;
}

.page-container__header--no-padding-bottom {
    padding-bottom: 0;
}

.page-container__header-close {
    color: #4d4d4d;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    overflow: hidden;
}

.page-container__header-close::after {
    content: "×";
    font-size: 40px;
    line-height: 20px;
}

.page-container__header-row {
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.page-container__bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.page-container__footer {
    display: flex;
    flex-flow: column;
    justify-content: center;
    border-top: 1px solid #d2d8dd;
    flex: 0 0 auto;
}

.page-container__footer footer {
    display: flex;
    flex-flow: row;
    justify-content: center;
    padding: 16px;
    flex: 0 0 auto;
}

.page-container__footer-secondary {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    padding: 0 16px 16px;
    flex: 0 0 auto;
}

.page-container__footer-secondary a,
.page-container__footer-secondary a:hover {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    color: #2f9ae0;
}

.page-container__footer-button {
    margin-right: 16px;
}

.page-container__footer-button:last-of-type {
    margin-right: 0;
}

.page-container__back-button {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #2f9ae0;
    cursor: pointer;
}

.page-container__title {
    font-size: 2rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
    font-weight: 500;
    margin-right: 1.5rem;
}

.page-container__subtitle {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-top: 0.5rem;
    color: #808080;
}

.page-container__tabs {
    display: flex;
    margin-top: 16px;
}

.page-container__tab {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    min-width: 5rem;
    color: #9b9b9b;
    border-bottom: none;
    margin-right: 16px;
}

.page-container__tab:last-of-type {
    margin-right: 0;
}

.page-container--full-width {
    width: 100% !important;
}

.page-container--full-height {
    height: 100% !important;
    max-height: initial !important;
    min-height: initial !important;
}

.page-container__content {
    overflow-y: auto;
    flex: 1;
}

.page-container__warning-container {
    background: #fdf4f4;
    padding: 20px;
    display: flex;
    align-items: start;
}

.page-container__warning-message {
    padding-left: 15px;
}

.page-container__warning-title {
    font-weight: 500;
}

.page-container__warning-icon {
    padding-top: 5px;
}

@media screen and (max-width: 250px) {
    .page-container__footer {
        flex-flow: column-reverse;
    }
    .page-container__footer-button {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
    .page-container__footer-button:first-of-type {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 575px) {
    .page-container {
        height: 100%;
        width: 100%;
        background-color: #fff;
        border-radius: 0;
        flex: 1;
        overflow-y: auto;
    }
}

@media screen and (min-width: 576px) {
    .page-container {
        max-height: 82vh;
        min-height: 570px;
        flex: 0 0 auto;
        margin-right: auto;
        margin-left: auto;
    }
}

.popover-wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 328px;
    max-height: 94vh;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background: white;
}

.popover-wrap ::-webkit-scrollbar {
    width: 6px;
}

.popover-wrap ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c4c4c4;
}

.popover-header {
    display: flex;
    padding: 24px 24px 16px;
    flex-direction: column;
    background: white;
    position: relative;
    border-radius: 10px;
}

.popover-header__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    padding-bottom: 8px;
}

.popover-header__title h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popover-header__title h2 button {
    margin-right: 24px;
}

.popover-header__title.center {
    justify-content: center;
}

.popover-header__subtitle {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.popover-header__button {
    background: none;
    font-size: inherit;
    padding: 0;
}

.popover-header i {
    cursor: pointer;
}

.popover-bg {
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.2;
}

.popover-content {
    overflow-y: auto;
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    border-radius: 10px;
}

.popover-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.popover-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid #d2d8dd;
    padding: 16px 24px 24px;
}

.popover-footer> :only-child {
    margin: 0 auto;
}

.popover-arrow {
    width: 22px;
    height: 22px;
    background: white;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.pulse-loader {
    display: flex;
}

.pulse-loader__loading-dot-one,
.pulse-loader__loading-dot-two,
.pulse-loader__loading-dot-three {
    background: #037dd6;
    width: 9px;
    height: 9px;
    margin-right: 2px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.pulse-loader__loading-dot-one {
    -webkit-animation: loading-dot 0.75s 0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: loading-dot 0.75s 0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.pulse-loader__loading-dot-two {
    -webkit-animation: loading-dot 0.75s 0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: loading-dot 0.75s 0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.pulse-loader__loading-dot-three {
    -webkit-animation: loading-dot 0.75s 0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: loading-dot 0.75s 0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

@-webkit-keyframes loading-dot {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    45% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0.7;
    }
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes loading-dot {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    45% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0.7;
    }
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.qr-code {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.qr-code__message-container>div:first-child {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 18px;
    color: #4d4d4d;
}

.qr-code__message {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #f7861c;
}

.qr-code__error {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f7861c;
    margin-bottom: 9px;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 100px;
    width: 300px;
}

.radio-group label {
    cursor: pointer;
}

.radio-group__column {
    text-align: center;
}

.radio-group__column-recommended {
    height: 20px;
}

.radio-group__column-line {
    width: 1px;
    height: 5px;
    background-color: #d6d9dc;
    margin: 0 auto;
}

.radio-group__column-horizontal-line {
    height: 1px;
    background-color: #d6d9dc;
    width: 100%;
}

.radio-group__column:first-child .radio-group__column-horizontal-line {
    width: 50px;
    margin-left: 50px;
}

.radio-group__column:last-child .radio-group__column-horizontal-line {
    width: 51px;
}

.radio-group__column-radio {
    -webkit-margin-end: 1px;
    margin-inline-end: 1px;
}

.radio-group__column-radio input {
    cursor: pointer;
}

.radio-group__column-radio,
.radio-group__column-label {
    text-align: center;
}

.radio-group__column-label {
    padding-top: 6px;
}

.readonly-input__input {
    direction: ltr;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.sender-to-recipient {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
}

.sender-to-recipient--default {
    border-bottom: 1px solid #d2d8dd;
    height: 42px;
}

.sender-to-recipient--default .sender-to-recipient__tooltip-wrapper {
    min-width: 0;
}

.sender-to-recipient--default .sender-to-recipient__tooltip-container {
    max-width: 100%;
}

.sender-to-recipient--default .sender-to-recipient__party {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    padding: 0 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sender-to-recipient--default .sender-to-recipient__party--sender {
    padding-right: 30px;
    cursor: pointer;
}

.sender-to-recipient--default .sender-to-recipient__party--recipient {
    padding-left: 30px;
    border-left: 1px solid #d2d8dd;
}

.sender-to-recipient--default .sender-to-recipient__party--recipient-with-address {
    cursor: pointer;
}

.sender-to-recipient--default .sender-to-recipient__arrow-container {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir=rtl] .sender-to-recipient--default .sender-to-recipient__arrow-container {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sender-to-recipient--default .sender-to-recipient__arrow-circle {
    background: #fff;
    padding: 5px;
    border: 1px solid #d2d8dd;
    border-radius: 20px;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sender-to-recipient--default .sender-to-recipient__name {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-left: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[dir=rtl] .sender-to-recipient--default .sender-to-recipient__name {
    /*rtl:ignore*/
    direction: ltr;
    /*rtl:ignore*/
    text-align: right;
}

[dir=rtl] .sender-to-recipient--default .sender-to-recipient__name span {
    display: block;
    /*rtl:ignore*/
    direction: rtl;
}

.sender-to-recipient--cards .sender-to-recipient__party {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 6px;
    background: #fff;
    cursor: pointer;
    min-width: 0;
    color: #9b9b9b;
}

.sender-to-recipient--cards .sender-to-recipient__tooltip-wrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sender-to-recipient--cards .sender-to-recipient__name {
    font-size: 0.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[dir=rtl] .sender-to-recipient--cards .sender-to-recipient__name {
    /*rtl:ignore*/
    direction: ltr;
    /*rtl:ignore*/
    text-align: right;
}

[dir=rtl] .sender-to-recipient--cards .sender-to-recipient__name span {
    display: block;
    /*rtl:ignore*/
    direction: rtl;
}

.sender-to-recipient--cards .sender-to-recipient__arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

[dir=rtl] .sender-to-recipient--cards .sender-to-recipient__arrow-container {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sender-to-recipient--flat .sender-to-recipient__party {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 6px;
    cursor: pointer;
    min-width: 0;
    color: #9b9b9b;
}

.sender-to-recipient--flat .sender-to-recipient__tooltip-wrapper {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sender-to-recipient--flat .sender-to-recipient__name {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[dir=rtl] .sender-to-recipient--flat .sender-to-recipient__name {
    /*rtl:ignore*/
    direction: ltr;
    /*rtl:ignore*/
    text-align: right;
}

[dir=rtl] .sender-to-recipient--flat .sender-to-recipient__name span {
    display: block;
    /*rtl:ignore*/
    direction: rtl;
}

.sender-to-recipient--flat .sender-to-recipient__arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

[dir=rtl] .sender-to-recipient--flat .sender-to-recipient__arrow-container {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.snackbar {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 0.75rem 1rem;
    color: #0260a4;
    min-width: 360px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #eaf6ff;
    border: 1px solid #75c4fd;
    border-radius: 6px;
}

.tab button {
    cursor: pointer;
    padding: 8px;
    min-width: 50px;
    text-align: center;
    display: block;
    width: 100%;
    background-color: unset;
    font-size: unset;
    color: unset;
}

.tab--active {
    color: #000;
    border-bottom: 2px solid #037dd6;
}

.tabs {
    flex-grow: 1;
    -moz-transform: translateZ(0);
}

.tabs__list {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #d2d8dd;
    background-color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}

.toggle-button {
    display: flex;
}

.toggle-button__status {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    display: grid;
}

.toggle-button__label-off,
.toggle-button__label-on {
    grid-area: 1/1/1/1;
}

.toggle-button__label-off {
    visibility: hidden;
}

.toggle-button__label-on {
    visibility: visible;
}

.toggle-button--off .toggle-button__label-off {
    visibility: visible;
}

.toggle-button--off .toggle-button__label-on {
    visibility: hidden;
}

.toggle-button--disabled {
    opacity: 0.5;
}

.token-balance-component {
    display: flex;
    align-items: center;
}

.token-balance-component__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.token-balance-component__suffix {
    padding-left: 4px;
}

.tippy-tooltip.white-theme {
    background: white;
    color: black;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
    padding: 12px 16px;
    padding-bottom: 11px;
}

.tippy-tooltip.white-theme .tippy-tooltip-content {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: left;
    color: #6a737d;
}

.tippy-popper[x-placement^=top] .white-theme [x-arrow] {
    border-top-color: #fff;
}

.tippy-popper[x-placement^=right] .white-theme [x-arrow] {
    border-right-color: #fff;
}

.tippy-popper[x-placement^=left] .white-theme [x-arrow] {
    border-left-color: #fff;
}

.tippy-popper[x-placement^=bottom] .white-theme [x-arrow] {
    border-bottom-color: #fff;
}

.truncated-definition-list__view-more {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    padding: 0;
    width: auto;
}

/*
Responsive Breakpoints
*/

/**
  These colors are either deprecated or will move into colors.scss
  when approved for the design system
**/

/*
  Colors
  http://chir.ag/projects/name-that-color
 */

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}

.fa-xs {
    font-size: 0.75em;
}

.fa-sm {
    font-size: 0.875em;
}

.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-fw {
    text-align: center;
    width: 1.25em;
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

.fa-ul>li {
    position: relative;
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-border {
    border: solid 0.08em #eee;
    border-radius: 0.1em;
    padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
    margin-left: 0.3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-500px:before {
    content: "";
}

.fa-accessible-icon:before {
    content: "";
}

.fa-accusoft:before {
    content: "";
}

.fa-acquisitions-incorporated:before {
    content: "";
}

.fa-ad:before {
    content: "";
}

.fa-address-book:before {
    content: "";
}

.fa-address-card:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-adobe:before {
    content: "";
}

.fa-adversal:before {
    content: "";
}

.fa-affiliatetheme:before {
    content: "";
}

.fa-air-freshener:before {
    content: "";
}

.fa-airbnb:before {
    content: "";
}

.fa-algolia:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-alipay:before {
    content: "";
}

.fa-allergies:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-amazon-pay:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-american-sign-language-interpreting:before {
    content: "";
}

.fa-amilia:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angry:before {
    content: "";
}

.fa-angrycreative:before {
    content: "";
}

.fa-angular:before {
    content: "";
}

.fa-ankh:before {
    content: "";
}

.fa-app-store:before {
    content: "";
}

.fa-app-store-ios:before {
    content: "";
}

.fa-apper:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-apple-alt:before {
    content: "";
}

.fa-apple-pay:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-archway:before {
    content: "";
}

.fa-arrow-alt-circle-down:before {
    content: "";
}

.fa-arrow-alt-circle-left:before {
    content: "";
}

.fa-arrow-alt-circle-right:before {
    content: "";
}

.fa-arrow-alt-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-arrows-alt-h:before {
    content: "";
}

.fa-arrows-alt-v:before {
    content: "";
}

.fa-artstation:before {
    content: "";
}

.fa-assistive-listening-systems:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-asymmetrik:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-atlas:before {
    content: "";
}

.fa-atlassian:before {
    content: "";
}

.fa-atom:before {
    content: "";
}

.fa-audible:before {
    content: "";
}

.fa-audio-description:before {
    content: "";
}

.fa-autoprefixer:before {
    content: "";
}

.fa-avianex:before {
    content: "";
}

.fa-aviato:before {
    content: "";
}

.fa-award:before {
    content: "";
}

.fa-aws:before {
    content: "";
}

.fa-baby:before {
    content: "";
}

.fa-baby-carriage:before {
    content: "";
}

.fa-backspace:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-bacon:before {
    content: "";
}

.fa-bahai:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-balance-scale-left:before {
    content: "";
}

.fa-balance-scale-right:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-band-aid:before {
    content: "";
}

.fa-bandcamp:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-bars:before {
    content: "";
}

.fa-baseball-ball:before {
    content: "";
}

.fa-basketball-ball:before {
    content: "";
}

.fa-bath:before {
    content: "";
}

.fa-battery-empty:before {
    content: "";
}

.fa-battery-full:before {
    content: "";
}

.fa-battery-half:before {
    content: "";
}

.fa-battery-quarter:before {
    content: "";
}

.fa-battery-three-quarters:before {
    content: "";
}

.fa-battle-net:before {
    content: "";
}

.fa-bed:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bezier-curve:before {
    content: "";
}

.fa-bible:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-biking:before {
    content: "";
}

.fa-bimobject:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-biohazard:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitcoin:before {
    content: "";
}

.fa-bity:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-blackberry:before {
    content: "";
}

.fa-blender:before {
    content: "";
}

.fa-blender-phone:before {
    content: "";
}

.fa-blind:before {
    content: "";
}

.fa-blog:before {
    content: "";
}

.fa-blogger:before {
    content: "";
}

.fa-blogger-b:before {
    content: "";
}

.fa-bluetooth:before {
    content: "";
}

.fa-bluetooth-b:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-bolt:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-bone:before {
    content: "";
}

.fa-bong:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-book-dead:before {
    content: "";
}

.fa-book-medical:before {
    content: "";
}

.fa-book-open:before {
    content: "";
}

.fa-book-reader:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-bootstrap:before {
    content: "";
}

.fa-border-all:before {
    content: "";
}

.fa-border-none:before {
    content: "";
}

.fa-border-style:before {
    content: "";
}

.fa-bowling-ball:before {
    content: "";
}

.fa-box:before {
    content: "";
}

.fa-box-open:before {
    content: "";
}

.fa-box-tissue:before {
    content: "拏";
}

.fa-boxes:before {
    content: "";
}

.fa-braille:before {
    content: "";
}

.fa-brain:before {
    content: "";
}

.fa-bread-slice:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-briefcase-medical:before {
    content: "";
}

.fa-broadcast-tower:before {
    content: "";
}

.fa-broom:before {
    content: "";
}

.fa-brush:before {
    content: "";
}

.fa-btc:before {
    content: "";
}

.fa-buffer:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-burn:before {
    content: "";
}

.fa-buromobelexperte:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-bus-alt:before {
    content: "";
}

.fa-business-time:before {
    content: "";
}

.fa-buy-n-large:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-calendar-alt:before {
    content: "";
}

.fa-calendar-check:before {
    content: "";
}

.fa-calendar-day:before {
    content: "";
}

.fa-calendar-minus:before {
    content: "";
}

.fa-calendar-plus:before {
    content: "";
}

.fa-calendar-times:before {
    content: "";
}

.fa-calendar-week:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-campground:before {
    content: "";
}

.fa-canadian-maple-leaf:before {
    content: "";
}

.fa-candy-cane:before {
    content: "";
}

.fa-cannabis:before {
    content: "";
}

.fa-capsules:before {
    content: "";
}

.fa-car:before {
    content: "";
}

.fa-car-alt:before {
    content: "";
}

.fa-car-battery:before {
    content: "";
}

.fa-car-crash:before {
    content: "";
}

.fa-car-side:before {
    content: "";
}

.fa-caravan:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-caret-square-down:before {
    content: "";
}

.fa-caret-square-left:before {
    content: "";
}

.fa-caret-square-right:before {
    content: "";
}

.fa-caret-square-up:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-carrot:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cash-register:before {
    content: "";
}

.fa-cat:before {
    content: "";
}

.fa-cc-amazon-pay:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-apple-pay:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-centercode:before {
    content: "";
}

.fa-centos:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-chair:before {
    content: "";
}

.fa-chalkboard:before {
    content: "";
}

.fa-chalkboard-teacher:before {
    content: "";
}

.fa-charging-station:before {
    content: "";
}

.fa-chart-area:before {
    content: "";
}

.fa-chart-bar:before {
    content: "";
}

.fa-chart-line:before {
    content: "";
}

.fa-chart-pie:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-check-double:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-cheese:before {
    content: "";
}

.fa-chess:before {
    content: "";
}

.fa-chess-bishop:before {
    content: "";
}

.fa-chess-board:before {
    content: "";
}

.fa-chess-king:before {
    content: "";
}

.fa-chess-knight:before {
    content: "";
}

.fa-chess-pawn:before {
    content: "";
}

.fa-chess-queen:before {
    content: "";
}

.fa-chess-rook:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-chromecast:before {
    content: "";
}

.fa-church:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-circle-notch:before {
    content: "";
}

.fa-city:before {
    content: "";
}

.fa-clinic-medical:before {
    content: "";
}

.fa-clipboard:before {
    content: "";
}

.fa-clipboard-check:before {
    content: "";
}

.fa-clipboard-list:before {
    content: "";
}

.fa-clock:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-closed-captioning:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-cloud-download-alt:before {
    content: "";
}

.fa-cloud-meatball:before {
    content: "";
}

.fa-cloud-moon:before {
    content: "";
}

.fa-cloud-moon-rain:before {
    content: "";
}

.fa-cloud-rain:before {
    content: "";
}

.fa-cloud-showers-heavy:before {
    content: "";
}

.fa-cloud-sun:before {
    content: "";
}

.fa-cloud-sun-rain:before {
    content: "";
}

.fa-cloud-upload-alt:before {
    content: "";
}

.fa-cloudscale:before {
    content: "";
}

.fa-cloudsmith:before {
    content: "";
}

.fa-cloudversify:before {
    content: "";
}

.fa-cocktail:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-code-branch:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-codiepie:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cog:before {
    content: "";
}

.fa-cogs:before {
    content: "";
}

.fa-coins:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-comment-alt:before {
    content: "";
}

.fa-comment-dollar:before {
    content: "";
}

.fa-comment-dots:before {
    content: "";
}

.fa-comment-medical:before {
    content: "";
}

.fa-comment-slash:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-comments-dollar:before {
    content: "";
}

.fa-compact-disc:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-compress-alt:before {
    content: "";
}

.fa-compress-arrows-alt:before {
    content: "";
}

.fa-concierge-bell:before {
    content: "";
}

.fa-confluence:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-cookie:before {
    content: "";
}

.fa-cookie-bite:before {
    content: "";
}

.fa-copy:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-cotton-bureau:before {
    content: "";
}

.fa-couch:before {
    content: "";
}

.fa-cpanel:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-creative-commons-by:before {
    content: "";
}

.fa-creative-commons-nc:before {
    content: "";
}

.fa-creative-commons-nc-eu:before {
    content: "";
}

.fa-creative-commons-nc-jp:before {
    content: "";
}

.fa-creative-commons-nd:before {
    content: "";
}

.fa-creative-commons-pd:before {
    content: "";
}

.fa-creative-commons-pd-alt:before {
    content: "";
}

.fa-creative-commons-remix:before {
    content: "";
}

.fa-creative-commons-sa:before {
    content: "";
}

.fa-creative-commons-sampling:before {
    content: "";
}

.fa-creative-commons-sampling-plus:before {
    content: "";
}

.fa-creative-commons-share:before {
    content: "";
}

.fa-creative-commons-zero:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-critical-role:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-crop-alt:before {
    content: "";
}

.fa-cross:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-crow:before {
    content: "";
}

.fa-crown:before {
    content: "";
}

.fa-crutch:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-css3-alt:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-cut:before {
    content: "";
}

.fa-cuttlefish:before {
    content: "";
}

.fa-d-and-d:before {
    content: "";
}

.fa-d-and-d-beyond:before {
    content: "";
}

.fa-dailymotion:before {
    content: "勒";
}

.fa-dashcube:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-deaf:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-democrat:before {
    content: "";
}

.fa-deploydog:before {
    content: "";
}

.fa-deskpro:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-dev:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-dharmachakra:before {
    content: "";
}

.fa-dhl:before {
    content: "";
}

.fa-diagnoses:before {
    content: "";
}

.fa-diaspora:before {
    content: "";
}

.fa-dice:before {
    content: "";
}

.fa-dice-d20:before {
    content: "";
}

.fa-dice-d6:before {
    content: "";
}

.fa-dice-five:before {
    content: "";
}

.fa-dice-four:before {
    content: "";
}

.fa-dice-one:before {
    content: "";
}

.fa-dice-six:before {
    content: "";
}

.fa-dice-three:before {
    content: "";
}

.fa-dice-two:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-digital-ocean:before {
    content: "";
}

.fa-digital-tachograph:before {
    content: "";
}

.fa-directions:before {
    content: "";
}

.fa-discord:before {
    content: "";
}

.fa-discourse:before {
    content: "";
}

.fa-disease:before {
    content: "";
}

.fa-divide:before {
    content: "";
}

.fa-dizzy:before {
    content: "";
}

.fa-dna:before {
    content: "";
}

.fa-dochub:before {
    content: "";
}

.fa-docker:before {
    content: "";
}

.fa-dog:before {
    content: "";
}

.fa-dollar-sign:before {
    content: "";
}

.fa-dolly:before {
    content: "";
}

.fa-dolly-flatbed:before {
    content: "";
}

.fa-donate:before {
    content: "";
}

.fa-door-closed:before {
    content: "";
}

.fa-door-open:before {
    content: "";
}

.fa-dot-circle:before {
    content: "";
}

.fa-dove:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-draft2digital:before {
    content: "";
}

.fa-drafting-compass:before {
    content: "";
}

.fa-dragon:before {
    content: "";
}

.fa-draw-polygon:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-dribbble-square:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-drum:before {
    content: "";
}

.fa-drum-steelpan:before {
    content: "";
}

.fa-drumstick-bite:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-dumbbell:before {
    content: "";
}

.fa-dumpster:before {
    content: "";
}

.fa-dumpster-fire:before {
    content: "";
}

.fa-dungeon:before {
    content: "";
}

.fa-dyalog:before {
    content: "";
}

.fa-earlybirds:before {
    content: "";
}

.fa-ebay:before {
    content: "";
}

.fa-edge:before {
    content: "";
}

.fa-edit:before {
    content: "";
}

.fa-egg:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-elementor:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-ello:before {
    content: "";
}

.fa-ember:before {
    content: "";
}

.fa-empire:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-envelope-open:before {
    content: "";
}

.fa-envelope-open-text:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-envira:before {
    content: "";
}

.fa-equals:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-erlang:before {
    content: "";
}

.fa-ethereum:before {
    content: "";
}

.fa-ethernet:before {
    content: "";
}

.fa-etsy:before {
    content: "";
}

.fa-euro-sign:before {
    content: "";
}

.fa-evernote:before {
    content: "";
}

.fa-exchange-alt:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-exclamation-triangle:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-expand-alt:before {
    content: "";
}

.fa-expand-arrows-alt:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-external-link-alt:before {
    content: "";
}

.fa-external-link-square-alt:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-dropper:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-facebook:before {
    content: "";
}

.fa-facebook-f:before {
    content: "";
}

.fa-facebook-messenger:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-fan:before {
    content: "";
}

.fa-fantasy-flight-games:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-faucet:before {
    content: "串";
}

.fa-fax:before {
    content: "";
}

.fa-feather:before {
    content: "";
}

.fa-feather-alt:before {
    content: "";
}

.fa-fedex:before {
    content: "";
}

.fa-fedora:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-figma:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-alt:before {
    content: "";
}

.fa-file-archive:before {
    content: "";
}

.fa-file-audio:before {
    content: "";
}

.fa-file-code:before {
    content: "";
}

.fa-file-contract:before {
    content: "";
}

.fa-file-csv:before {
    content: "";
}

.fa-file-download:before {
    content: "";
}

.fa-file-excel:before {
    content: "";
}

.fa-file-export:before {
    content: "";
}

.fa-file-image:before {
    content: "";
}

.fa-file-import:before {
    content: "";
}

.fa-file-invoice:before {
    content: "";
}

.fa-file-invoice-dollar:before {
    content: "";
}

.fa-file-medical:before {
    content: "";
}

.fa-file-medical-alt:before {
    content: "";
}

.fa-file-pdf:before {
    content: "";
}

.fa-file-powerpoint:before {
    content: "";
}

.fa-file-prescription:before {
    content: "";
}

.fa-file-signature:before {
    content: "";
}

.fa-file-upload:before {
    content: "";
}

.fa-file-video:before {
    content: "";
}

.fa-file-word:before {
    content: "";
}

.fa-fill:before {
    content: "";
}

.fa-fill-drip:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-fingerprint:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-fire-alt:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-firefox-browser:before {
    content: "龜";
}

.fa-first-aid:before {
    content: "";
}

.fa-first-order:before {
    content: "";
}

.fa-first-order-alt:before {
    content: "";
}

.fa-firstdraft:before {
    content: "";
}

.fa-fish:before {
    content: "";
}

.fa-fist-raised:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-flag-usa:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-flipboard:before {
    content: "";
}

.fa-flushed:before {
    content: "";
}

.fa-fly:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-minus:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-folder-plus:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-font-awesome:before {
    content: "";
}

.fa-font-awesome-alt:before {
    content: "";
}

.fa-font-awesome-flag:before {
    content: "";
}

.fa-font-awesome-logo-full:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

.fa-fonticons-fi:before {
    content: "";
}

.fa-football-ball:before {
    content: "";
}

.fa-fort-awesome:before {
    content: "";
}

.fa-fort-awesome-alt:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-free-code-camp:before {
    content: "";
}

.fa-freebsd:before {
    content: "";
}

.fa-frog:before {
    content: "";
}

.fa-frown:before {
    content: "";
}

.fa-frown-open:before {
    content: "";
}

.fa-fulcrum:before {
    content: "";
}

.fa-funnel-dollar:before {
    content: "";
}

.fa-futbol:before {
    content: "";
}

.fa-galactic-republic:before {
    content: "";
}

.fa-galactic-senate:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-gas-pump:before {
    content: "";
}

.fa-gavel:before {
    content: "";
}

.fa-gem:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-ghost:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-gifts:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-git-alt:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-gitkraken:before {
    content: "";
}

.fa-gitlab:before {
    content: "";
}

.fa-gitter:before {
    content: "";
}

.fa-glass-cheers:before {
    content: "";
}

.fa-glass-martini:before {
    content: "";
}

.fa-glass-martini-alt:before {
    content: "";
}

.fa-glass-whiskey:before {
    content: "";
}

.fa-glasses:before {
    content: "";
}

.fa-glide:before {
    content: "";
}

.fa-glide-g:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-globe-africa:before {
    content: "";
}

.fa-globe-americas:before {
    content: "";
}

.fa-globe-asia:before {
    content: "";
}

.fa-globe-europe:before {
    content: "";
}

.fa-gofore:before {
    content: "";
}

.fa-golf-ball:before {
    content: "";
}

.fa-goodreads:before {
    content: "";
}

.fa-goodreads-g:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-google-drive:before {
    content: "";
}

.fa-google-play:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-google-plus-g:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-gopuram:before {
    content: "";
}

.fa-graduation-cap:before {
    content: "";
}

.fa-gratipay:before {
    content: "";
}

.fa-grav:before {
    content: "";
}

.fa-greater-than:before {
    content: "";
}

.fa-greater-than-equal:before {
    content: "";
}

.fa-grimace:before {
    content: "";
}

.fa-grin:before {
    content: "";
}

.fa-grin-alt:before {
    content: "";
}

.fa-grin-beam:before {
    content: "";
}

.fa-grin-beam-sweat:before {
    content: "";
}

.fa-grin-hearts:before {
    content: "";
}

.fa-grin-squint:before {
    content: "";
}

.fa-grin-squint-tears:before {
    content: "";
}

.fa-grin-stars:before {
    content: "";
}

.fa-grin-tears:before {
    content: "";
}

.fa-grin-tongue:before {
    content: "";
}

.fa-grin-tongue-squint:before {
    content: "";
}

.fa-grin-tongue-wink:before {
    content: "";
}

.fa-grin-wink:before {
    content: "";
}

.fa-grip-horizontal:before {
    content: "";
}

.fa-grip-lines:before {
    content: "";
}

.fa-grip-lines-vertical:before {
    content: "";
}

.fa-grip-vertical:before {
    content: "";
}

.fa-gripfire:before {
    content: "";
}

.fa-grunt:before {
    content: "";
}

.fa-guitar:before {
    content: "";
}

.fa-gulp:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-hacker-news-square:before {
    content: "";
}

.fa-hackerrank:before {
    content: "";
}

.fa-hamburger:before {
    content: "";
}

.fa-hammer:before {
    content: "";
}

.fa-hamsa:before {
    content: "";
}

.fa-hand-holding:before {
    content: "";
}

.fa-hand-holding-heart:before {
    content: "";
}

.fa-hand-holding-medical:before {
    content: "樂";
}

.fa-hand-holding-usd:before {
    content: "";
}

.fa-hand-holding-water:before {
    content: "";
}

.fa-hand-lizard:before {
    content: "";
}

.fa-hand-middle-finger:before {
    content: "";
}

.fa-hand-paper:before {
    content: "";
}

.fa-hand-peace:before {
    content: "";
}

.fa-hand-point-down:before {
    content: "";
}

.fa-hand-point-left:before {
    content: "";
}

.fa-hand-point-right:before {
    content: "";
}

.fa-hand-point-up:before {
    content: "";
}

.fa-hand-pointer:before {
    content: "";
}

.fa-hand-rock:before {
    content: "";
}

.fa-hand-scissors:before {
    content: "";
}

.fa-hand-sparkles:before {
    content: "諾";
}

.fa-hand-spock:before {
    content: "";
}

.fa-hands:before {
    content: "";
}

.fa-hands-helping:before {
    content: "";
}

.fa-hands-wash:before {
    content: "丹";
}

.fa-handshake:before {
    content: "";
}

.fa-handshake-alt-slash:before {
    content: "寧";
}

.fa-handshake-slash:before {
    content: "怒";
}

.fa-hanukiah:before {
    content: "";
}

.fa-hard-hat:before {
    content: "";
}

.fa-hashtag:before {
    content: "";
}

.fa-hat-cowboy:before {
    content: "";
}

.fa-hat-cowboy-side:before {
    content: "";
}

.fa-hat-wizard:before {
    content: "";
}

.fa-hdd:before {
    content: "";
}

.fa-head-side-cough:before {
    content: "率";
}

.fa-head-side-cough-slash:before {
    content: "異";
}

.fa-head-side-mask:before {
    content: "北";
}

.fa-head-side-virus:before {
    content: "磻";
}

.fa-heading:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-headphones-alt:before {
    content: "";
}

.fa-headset:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-heart-broken:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-helicopter:before {
    content: "";
}

.fa-highlighter:before {
    content: "";
}

.fa-hiking:before {
    content: "";
}

.fa-hippo:before {
    content: "";
}

.fa-hips:before {
    content: "";
}

.fa-hire-a-helper:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-hockey-puck:before {
    content: "";
}

.fa-holly-berry:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-hooli:before {
    content: "";
}

.fa-hornbill:before {
    content: "";
}

.fa-horse:before {
    content: "";
}

.fa-horse-head:before {
    content: "";
}

.fa-hospital:before {
    content: "";
}

.fa-hospital-alt:before {
    content: "";
}

.fa-hospital-symbol:before {
    content: "";
}

.fa-hospital-user:before {
    content: "";
}

.fa-hot-tub:before {
    content: "";
}

.fa-hotdog:before {
    content: "";
}

.fa-hotel:before {
    content: "";
}

.fa-hotjar:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hourglass-end:before {
    content: "";
}

.fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-start:before {
    content: "";
}

.fa-house-damage:before {
    content: "";
}

.fa-house-user:before {
    content: "便";
}

.fa-houzz:before {
    content: "";
}

.fa-hryvnia:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-hubspot:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-ice-cream:before {
    content: "";
}

.fa-icicles:before {
    content: "";
}

.fa-icons:before {
    content: "";
}

.fa-id-badge:before {
    content: "";
}

.fa-id-card:before {
    content: "";
}

.fa-id-card-alt:before {
    content: "";
}

.fa-ideal:before {
    content: "邏";
}

.fa-igloo:before {
    content: "";
}

.fa-image:before {
    content: "";
}

.fa-images:before {
    content: "";
}

.fa-imdb:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-infinity:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-instagram-square:before {
    content: "凌";
}

.fa-intercom:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-invision:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-itch-io:before {
    content: "";
}

.fa-itunes:before {
    content: "";
}

.fa-itunes-note:before {
    content: "";
}

.fa-java:before {
    content: "";
}

.fa-jedi:before {
    content: "";
}

.fa-jedi-order:before {
    content: "";
}

.fa-jenkins:before {
    content: "";
}

.fa-jira:before {
    content: "";
}

.fa-joget:before {
    content: "";
}

.fa-joint:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-journal-whills:before {
    content: "";
}

.fa-js:before {
    content: "";
}

.fa-js-square:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-kaaba:before {
    content: "";
}

.fa-kaggle:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-keybase:before {
    content: "";
}

.fa-keyboard:before {
    content: "";
}

.fa-keycdn:before {
    content: "";
}

.fa-khanda:before {
    content: "";
}

.fa-kickstarter:before {
    content: "";
}

.fa-kickstarter-k:before {
    content: "";
}

.fa-kiss:before {
    content: "";
}

.fa-kiss-beam:before {
    content: "";
}

.fa-kiss-wink-heart:before {
    content: "";
}

.fa-kiwi-bird:before {
    content: "";
}

.fa-korvue:before {
    content: "";
}

.fa-landmark:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-laptop-code:before {
    content: "";
}

.fa-laptop-house:before {
    content: "復";
}

.fa-laptop-medical:before {
    content: "";
}

.fa-laravel:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-laugh:before {
    content: "";
}

.fa-laugh-beam:before {
    content: "";
}

.fa-laugh-squint:before {
    content: "";
}

.fa-laugh-wink:before {
    content: "";
}

.fa-layer-group:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-lemon:before {
    content: "";
}

.fa-less:before {
    content: "";
}

.fa-less-than:before {
    content: "";
}

.fa-less-than-equal:before {
    content: "";
}

.fa-level-down-alt:before {
    content: "";
}

.fa-level-up-alt:before {
    content: "";
}

.fa-life-ring:before {
    content: "";
}

.fa-lightbulb:before {
    content: "";
}

.fa-line:before {
    content: "";
}

.fa-link:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-linkedin-in:before {
    content: "";
}

.fa-linode:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-lira-sign:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-lock-open:before {
    content: "";
}

.fa-long-arrow-alt-down:before {
    content: "";
}

.fa-long-arrow-alt-left:before {
    content: "";
}

.fa-long-arrow-alt-right:before {
    content: "";
}

.fa-long-arrow-alt-up:before {
    content: "";
}

.fa-low-vision:before {
    content: "";
}

.fa-luggage-cart:before {
    content: "";
}

.fa-lungs:before {
    content: "";
}

.fa-lungs-virus:before {
    content: "不";
}

.fa-lyft:before {
    content: "";
}

.fa-magento:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-mail-bulk:before {
    content: "";
}

.fa-mailchimp:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-mandalorian:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-map-marked:before {
    content: "";
}

.fa-map-marked-alt:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-map-marker-alt:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-markdown:before {
    content: "";
}

.fa-marker:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mask:before {
    content: "";
}

.fa-mastodon:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-mdb:before {
    content: "";
}

.fa-medal:before {
    content: "";
}

.fa-medapps:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-medium-m:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-medrt:before {
    content: "";
}

.fa-meetup:before {
    content: "";
}

.fa-megaport:before {
    content: "";
}

.fa-meh:before {
    content: "";
}

.fa-meh-blank:before {
    content: "";
}

.fa-meh-rolling-eyes:before {
    content: "";
}

.fa-memory:before {
    content: "";
}

.fa-mendeley:before {
    content: "";
}

.fa-menorah:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-meteor:before {
    content: "";
}

.fa-microblog:before {
    content: "駱";
}

.fa-microchip:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-alt:before {
    content: "";
}

.fa-microphone-alt-slash:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-microscope:before {
    content: "";
}

.fa-microsoft:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-mitten:before {
    content: "";
}

.fa-mix:before {
    content: "";
}

.fa-mixcloud:before {
    content: "";
}

.fa-mixer:before {
    content: "稜";
}

.fa-mizuni:before {
    content: "";
}

.fa-mobile:before {
    content: "";
}

.fa-mobile-alt:before {
    content: "";
}

.fa-modx:before {
    content: "";
}

.fa-monero:before {
    content: "";
}

.fa-money-bill:before {
    content: "";
}

.fa-money-bill-alt:before {
    content: "";
}

.fa-money-bill-wave:before {
    content: "";
}

.fa-money-bill-wave-alt:before {
    content: "";
}

.fa-money-check:before {
    content: "";
}

.fa-money-check-alt:before {
    content: "";
}

.fa-monument:before {
    content: "";
}

.fa-moon:before {
    content: "";
}

.fa-mortar-pestle:before {
    content: "";
}

.fa-mosque:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-mountain:before {
    content: "";
}

.fa-mouse:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-mug-hot:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-napster:before {
    content: "";
}

.fa-neos:before {
    content: "";
}

.fa-network-wired:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-newspaper:before {
    content: "";
}

.fa-nimblr:before {
    content: "";
}

.fa-node:before {
    content: "";
}

.fa-node-js:before {
    content: "";
}

.fa-not-equal:before {
    content: "";
}

.fa-notes-medical:before {
    content: "";
}

.fa-npm:before {
    content: "";
}

.fa-ns8:before {
    content: "";
}

.fa-nutritionix:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-oil-can:before {
    content: "";
}

.fa-old-republic:before {
    content: "";
}

.fa-om:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-orcid:before {
    content: "";
}

.fa-osi:before {
    content: "";
}

.fa-otter:before {
    content: "";
}

.fa-outdent:before {
    content: "";
}

.fa-page4:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-pager:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-paint-roller:before {
    content: "";
}

.fa-palette:before {
    content: "";
}

.fa-palfed:before {
    content: "";
}

.fa-pallet:before {
    content: "";
}

.fa-paper-plane:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-parachute-box:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-parking:before {
    content: "";
}

.fa-passport:before {
    content: "";
}

.fa-pastafarianism:before {
    content: "";
}

.fa-paste:before {
    content: "";
}

.fa-patreon:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-pause-circle:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-peace:before {
    content: "";
}

.fa-pen:before {
    content: "";
}

.fa-pen-alt:before {
    content: "";
}

.fa-pen-fancy:before {
    content: "";
}

.fa-pen-nib:before {
    content: "";
}

.fa-pen-square:before {
    content: "";
}

.fa-pencil-alt:before {
    content: "";
}

.fa-pencil-ruler:before {
    content: "";
}

.fa-penny-arcade:before {
    content: "";
}

.fa-people-arrows:before {
    content: "泌";
}

.fa-people-carry:before {
    content: "";
}

.fa-pepper-hot:before {
    content: "";
}

.fa-percent:before {
    content: "";
}

.fa-percentage:before {
    content: "";
}

.fa-periscope:before {
    content: "";
}

.fa-person-booth:before {
    content: "";
}

.fa-phabricator:before {
    content: "";
}

.fa-phoenix-framework:before {
    content: "";
}

.fa-phoenix-squadron:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-phone-alt:before {
    content: "";
}

.fa-phone-slash:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-phone-square-alt:before {
    content: "";
}

.fa-phone-volume:before {
    content: "";
}

.fa-photo-video:before {
    content: "";
}

.fa-php:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-pied-piper-hat:before {
    content: "";
}

.fa-pied-piper-pp:before {
    content: "";
}

.fa-pied-piper-square:before {
    content: "爛";
}

.fa-piggy-bank:before {
    content: "";
}

.fa-pills:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-pizza-slice:before {
    content: "";
}

.fa-place-of-worship:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-plane-arrival:before {
    content: "";
}

.fa-plane-departure:before {
    content: "";
}

.fa-plane-slash:before {
    content: "數";
}

.fa-play:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-playstation:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-podcast:before {
    content: "";
}

.fa-poll:before {
    content: "";
}

.fa-poll-h:before {
    content: "";
}

.fa-poo:before {
    content: "";
}

.fa-poo-storm:before {
    content: "";
}

.fa-poop:before {
    content: "";
}

.fa-portrait:before {
    content: "";
}

.fa-pound-sign:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-pray:before {
    content: "";
}

.fa-praying-hands:before {
    content: "";
}

.fa-prescription:before {
    content: "";
}

.fa-prescription-bottle:before {
    content: "";
}

.fa-prescription-bottle-alt:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-procedures:before {
    content: "";
}

.fa-product-hunt:before {
    content: "";
}

.fa-project-diagram:before {
    content: "";
}

.fa-pump-medical:before {
    content: "索";
}

.fa-pump-soap:before {
    content: "參";
}

.fa-pushed:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-python:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-quidditch:before {
    content: "";
}

.fa-quinscape:before {
    content: "";
}

.fa-quora:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-quran:before {
    content: "";
}

.fa-r-project:before {
    content: "";
}

.fa-radiation:before {
    content: "";
}

.fa-radiation-alt:before {
    content: "";
}

.fa-rainbow:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-raspberry-pi:before {
    content: "";
}

.fa-ravelry:before {
    content: "";
}

.fa-react:before {
    content: "";
}

.fa-reacteurope:before {
    content: "";
}

.fa-readme:before {
    content: "";
}

.fa-rebel:before {
    content: "";
}

.fa-receipt:before {
    content: "";
}

.fa-record-vinyl:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-red-river:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-alien:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-redhat:before {
    content: "";
}

.fa-redo:before {
    content: "";
}

.fa-redo-alt:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-remove-format:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-reply:before {
    content: "";
}

.fa-reply-all:before {
    content: "";
}

.fa-replyd:before {
    content: "";
}

.fa-republican:before {
    content: "";
}

.fa-researchgate:before {
    content: "";
}

.fa-resolving:before {
    content: "";
}

.fa-restroom:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-rev:before {
    content: "";
}

.fa-ribbon:before {
    content: "";
}

.fa-ring:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-robot:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-rocketchat:before {
    content: "";
}

.fa-rockrms:before {
    content: "";
}

.fa-route:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-ruble-sign:before {
    content: "";
}

.fa-ruler:before {
    content: "";
}

.fa-ruler-combined:before {
    content: "";
}

.fa-ruler-horizontal:before {
    content: "";
}

.fa-ruler-vertical:before {
    content: "";
}

.fa-running:before {
    content: "";
}

.fa-rupee-sign:before {
    content: "";
}

.fa-sad-cry:before {
    content: "";
}

.fa-sad-tear:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-salesforce:before {
    content: "";
}

.fa-sass:before {
    content: "";
}

.fa-satellite:before {
    content: "";
}

.fa-satellite-dish:before {
    content: "";
}

.fa-save:before {
    content: "";
}

.fa-schlix:before {
    content: "";
}

.fa-school:before {
    content: "";
}

.fa-screwdriver:before {
    content: "";
}

.fa-scribd:before {
    content: "";
}

.fa-scroll:before {
    content: "";
}

.fa-sd-card:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-search-dollar:before {
    content: "";
}

.fa-search-location:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-searchengin:before {
    content: "";
}

.fa-seedling:before {
    content: "";
}

.fa-sellcast:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-servicestack:before {
    content: "";
}

.fa-shapes:before {
    content: "";
}

.fa-share:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-shekel-sign:before {
    content: "";
}

.fa-shield-alt:before {
    content: "";
}

.fa-shield-virus:before {
    content: "塞";
}

.fa-ship:before {
    content: "";
}

.fa-shipping-fast:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-shoe-prints:before {
    content: "";
}

.fa-shopify:before {
    content: "綾";
}

.fa-shopping-bag:before {
    content: "";
}

.fa-shopping-basket:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-shopware:before {
    content: "";
}

.fa-shower:before {
    content: "";
}

.fa-shuttle-van:before {
    content: "";
}

.fa-sign:before {
    content: "";
}

.fa-sign-in-alt:before {
    content: "";
}

.fa-sign-language:before {
    content: "";
}

.fa-sign-out-alt:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-signature:before {
    content: "";
}

.fa-sim-card:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-sistrix:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-sith:before {
    content: "";
}

.fa-skating:before {
    content: "";
}

.fa-sketch:before {
    content: "";
}

.fa-skiing:before {
    content: "";
}

.fa-skiing-nordic:before {
    content: "";
}

.fa-skull:before {
    content: "";
}

.fa-skull-crossbones:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-slack-hash:before {
    content: "";
}

.fa-slash:before {
    content: "";
}

.fa-sleigh:before {
    content: "";
}

.fa-sliders-h:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-smile:before {
    content: "";
}

.fa-smile-beam:before {
    content: "";
}

.fa-smile-wink:before {
    content: "";
}

.fa-smog:before {
    content: "";
}

.fa-smoking:before {
    content: "";
}

.fa-smoking-ban:before {
    content: "";
}

.fa-sms:before {
    content: "";
}

.fa-snapchat:before {
    content: "";
}

.fa-snapchat-ghost:before {
    content: "";
}

.fa-snapchat-square:before {
    content: "";
}

.fa-snowboarding:before {
    content: "";
}

.fa-snowflake:before {
    content: "";
}

.fa-snowman:before {
    content: "";
}

.fa-snowplow:before {
    content: "";
}

.fa-soap:before {
    content: "葉";
}

.fa-socks:before {
    content: "";
}

.fa-solar-panel:before {
    content: "";
}

.fa-sort:before {
    content: "";
}

.fa-sort-alpha-down:before {
    content: "";
}

.fa-sort-alpha-down-alt:before {
    content: "";
}

.fa-sort-alpha-up:before {
    content: "";
}

.fa-sort-alpha-up-alt:before {
    content: "";
}

.fa-sort-amount-down:before {
    content: "";
}

.fa-sort-amount-down-alt:before {
    content: "";
}

.fa-sort-amount-up:before {
    content: "";
}

.fa-sort-amount-up-alt:before {
    content: "";
}

.fa-sort-down:before {
    content: "";
}

.fa-sort-numeric-down:before {
    content: "";
}

.fa-sort-numeric-down-alt:before {
    content: "";
}

.fa-sort-numeric-up:before {
    content: "";
}

.fa-sort-numeric-up-alt:before {
    content: "";
}

.fa-sort-up:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-sourcetree:before {
    content: "";
}

.fa-spa:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-speakap:before {
    content: "";
}

.fa-speaker-deck:before {
    content: "";
}

.fa-spell-check:before {
    content: "";
}

.fa-spider:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-splotch:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-spray-can:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-square-full:before {
    content: "";
}

.fa-square-root-alt:before {
    content: "";
}

.fa-squarespace:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-stackpath:before {
    content: "";
}

.fa-stamp:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-and-crescent:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-star-half-alt:before {
    content: "";
}

.fa-star-of-david:before {
    content: "";
}

.fa-star-of-life:before {
    content: "";
}

.fa-staylinked:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-steam-symbol:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-sticker-mule:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-stop-circle:before {
    content: "";
}

.fa-stopwatch:before {
    content: "";
}

.fa-stopwatch-20:before {
    content: "說";
}

.fa-store:before {
    content: "";
}

.fa-store-alt:before {
    content: "";
}

.fa-store-alt-slash:before {
    content: "殺";
}

.fa-store-slash:before {
    content: "辰";
}

.fa-strava:before {
    content: "";
}

.fa-stream:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-stripe:before {
    content: "";
}

.fa-stripe-s:before {
    content: "";
}

.fa-stroopwafel:before {
    content: "";
}

.fa-studiovinari:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-suitcase-rolling:before {
    content: "";
}

.fa-sun:before {
    content: "";
}

.fa-superpowers:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-supple:before {
    content: "";
}

.fa-surprise:before {
    content: "";
}

.fa-suse:before {
    content: "";
}

.fa-swatchbook:before {
    content: "";
}

.fa-swift:before {
    content: "";
}

.fa-swimmer:before {
    content: "";
}

.fa-swimming-pool:before {
    content: "";
}

.fa-symfony:before {
    content: "";
}

.fa-synagogue:before {
    content: "";
}

.fa-sync:before {
    content: "";
}

.fa-sync-alt:before {
    content: "";
}

.fa-syringe:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-table-tennis:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-tablet-alt:before {
    content: "";
}

.fa-tablets:before {
    content: "";
}

.fa-tachometer-alt:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-tape:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-taxi:before {
    content: "";
}

.fa-teamspeak:before {
    content: "";
}

.fa-teeth:before {
    content: "";
}

.fa-teeth-open:before {
    content: "";
}

.fa-telegram:before {
    content: "";
}

.fa-telegram-plane:before {
    content: "";
}

.fa-temperature-high:before {
    content: "";
}

.fa-temperature-low:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-tenge:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-the-red-yeti:before {
    content: "";
}

.fa-theater-masks:before {
    content: "";
}

.fa-themeco:before {
    content: "";
}

.fa-themeisle:before {
    content: "";
}

.fa-thermometer:before {
    content: "";
}

.fa-thermometer-empty:before {
    content: "";
}

.fa-thermometer-full:before {
    content: "";
}

.fa-thermometer-half:before {
    content: "";
}

.fa-thermometer-quarter:before {
    content: "";
}

.fa-thermometer-three-quarters:before {
    content: "";
}

.fa-think-peaks:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbtack:before {
    content: "";
}

.fa-ticket-alt:before {
    content: "";
}

.fa-times:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-tint-slash:before {
    content: "";
}

.fa-tired:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-toilet:before {
    content: "";
}

.fa-toilet-paper:before {
    content: "";
}

.fa-toilet-paper-slash:before {
    content: "沈";
}

.fa-toolbox:before {
    content: "";
}

.fa-tools:before {
    content: "";
}

.fa-tooth:before {
    content: "";
}

.fa-torah:before {
    content: "";
}

.fa-torii-gate:before {
    content: "";
}

.fa-tractor:before {
    content: "";
}

.fa-trade-federation:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-traffic-light:before {
    content: "";
}

.fa-trailer:before {
    content: "論";
}

.fa-train:before {
    content: "";
}

.fa-tram:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-trash-alt:before {
    content: "";
}

.fa-trash-restore:before {
    content: "";
}

.fa-trash-restore-alt:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-truck-loading:before {
    content: "";
}

.fa-truck-monster:before {
    content: "";
}

.fa-truck-moving:before {
    content: "";
}

.fa-truck-pickup:before {
    content: "";
}

.fa-tshirt:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-tv:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-typo3:before {
    content: "";
}

.fa-uber:before {
    content: "";
}

.fa-ubuntu:before {
    content: "";
}

.fa-uikit:before {
    content: "";
}

.fa-umbraco:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-umbrella-beach:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-undo:before {
    content: "";
}

.fa-undo-alt:before {
    content: "";
}

.fa-uniregistry:before {
    content: "";
}

.fa-unity:before {
    content: "雷";
}

.fa-universal-access:before {
    content: "";
}

.fa-university:before {
    content: "";
}

.fa-unlink:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-untappd:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-ups:before {
    content: "";
}

.fa-usb:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-user-alt:before {
    content: "";
}

.fa-user-alt-slash:before {
    content: "";
}

.fa-user-astronaut:before {
    content: "";
}

.fa-user-check:before {
    content: "";
}

.fa-user-circle:before {
    content: "";
}

.fa-user-clock:before {
    content: "";
}

.fa-user-cog:before {
    content: "";
}

.fa-user-edit:before {
    content: "";
}

.fa-user-friends:before {
    content: "";
}

.fa-user-graduate:before {
    content: "";
}

.fa-user-injured:before {
    content: "";
}

.fa-user-lock:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-user-minus:before {
    content: "";
}

.fa-user-ninja:before {
    content: "";
}

.fa-user-nurse:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-user-shield:before {
    content: "";
}

.fa-user-slash:before {
    content: "";
}

.fa-user-tag:before {
    content: "";
}

.fa-user-tie:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-users:before {
    content: "";
}

.fa-users-cog:before {
    content: "";
}

.fa-usps:before {
    content: "";
}

.fa-ussunnah:before {
    content: "";
}

.fa-utensil-spoon:before {
    content: "";
}

.fa-utensils:before {
    content: "";
}

.fa-vaadin:before {
    content: "";
}

.fa-vector-square:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-viadeo:before {
    content: "";
}

.fa-viadeo-square:before {
    content: "";
}

.fa-vial:before {
    content: "";
}

.fa-vials:before {
    content: "";
}

.fa-viber:before {
    content: "";
}

.fa-video:before {
    content: "";
}

.fa-video-slash:before {
    content: "";
}

.fa-vihara:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-vimeo-v:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-virus:before {
    content: "若";
}

.fa-virus-slash:before {
    content: "掠";
}

.fa-viruses:before {
    content: "略";
}

.fa-vk:before {
    content: "";
}

.fa-vnv:before {
    content: "";
}

.fa-voicemail:before {
    content: "";
}

.fa-volleyball-ball:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-mute:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-vote-yea:before {
    content: "";
}

.fa-vr-cardboard:before {
    content: "";
}

.fa-vuejs:before {
    content: "";
}

.fa-walking:before {
    content: "";
}

.fa-wallet:before {
    content: "";
}

.fa-warehouse:before {
    content: "";
}

.fa-water:before {
    content: "";
}

.fa-wave-square:before {
    content: "";
}

.fa-waze:before {
    content: "";
}

.fa-weebly:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-weight:before {
    content: "";
}

.fa-weight-hanging:before {
    content: "";
}

.fa-weixin:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-whatsapp-square:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-whmcs:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-wind:before {
    content: "";
}

.fa-window-close:before {
    content: "";
}

.fa-window-maximize:before {
    content: "";
}

.fa-window-minimize:before {
    content: "";
}

.fa-window-restore:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-wine-bottle:before {
    content: "";
}

.fa-wine-glass:before {
    content: "";
}

.fa-wine-glass-alt:before {
    content: "";
}

.fa-wix:before {
    content: "";
}

.fa-wizards-of-the-coast:before {
    content: "";
}

.fa-wolf-pack-battalion:before {
    content: "";
}

.fa-won-sign:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-wordpress-simple:before {
    content: "";
}

.fa-wpbeginner:before {
    content: "";
}

.fa-wpexplorer:before {
    content: "";
}

.fa-wpforms:before {
    content: "";
}

.fa-wpressr:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-x-ray:before {
    content: "";
}

.fa-xbox:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-y-combinator:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-yammer:before {
    content: "";
}

.fa-yandex:before {
    content: "";
}

.fa-yandex-international:before {
    content: "";
}

.fa-yarn:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-yen-sign:before {
    content: "";
}

.fa-yin-yang:before {
    content: "";
}

.fa-yoast:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-zhihu:before {
    content: "";
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("fonts/fontawesome/fa-solid-900.html");
    src: url("fonts/fontawesome/fa-solid-900d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-solid-901.html") format("woff2"), url("fonts/fontawesome/fa-solid-902.html") format("woff"), url("fonts/fontawesome/fa-solid-903.html") format("truetype"), url("fonts/fontawesome/fa-solid-904.html#fontawesome") format("svg");
}

.fa,
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("fonts/fontawesome/fa-regular-400.html");
    src: url("fonts/fontawesome/fa-regular-400d41d.html?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-regular-401.html") format("woff2"), url("fonts/fontawesome/fa-regular-402.html") format("woff"), url("fonts/fontawesome/fa-regular-403.html") format("truetype"), url("fonts/fontawesome/fa-regular-404.html#fontawesome") format("svg");
}

.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 100;
    src: local("Roboto Thin"), local("Roboto-Thin"), url("fonts/Roboto/Roboto-Thin.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    src: local("Roboto Light"), local("Roboto-Light"), url("fonts/Roboto/Roboto-Light.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("fonts/Roboto/Roboto-Regular.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: local("Roboto Medium"), local("Roboto-Medium"), url("fonts/Roboto/Roboto-Medium.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("fonts/Roboto/Roboto-Bold.html") format("truetype");
}

@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 900;
    src: local("Roboto Black"), local("Roboto-Black"), url("fonts/Roboto/Roboto-Black.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-Regular-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: italic;
    font-weight: 400;
    src: url("fonts/Euclid/EuclidCircularB-RegularItalic-WebXL.html") format("truetype");
}

@font-face {
    font-family: "Euclid";
    font-style: normal;
    font-weight: 700;
    src: url("fonts/Euclid/EuclidCircularB-Bold-WebXL.html") format("truetype");
}

/*
  Z-Indicies
*/

.typography {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography b {
    font-weight: 700;
}

.typography--h1 {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h2 {
    font-size: 2rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h3 {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h4 {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h5 {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h6 {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--paragraph {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h7 {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h8 {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--h9 {
    font-size: 0.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.typography--color-ui-1 {
    color: #f2f3f4;
}

.typography--color-ui-2 {
    color: #d6d9dc;
}

.typography--color-ui-3 {
    color: #bbc0c5;
}

.typography--color-ui-4 {
    color: #6a737d;
}

.typography--color-white {
    color: #fff;
}

.typography--color-black {
    color: #24292e;
}

.typography--color-primary-1 {
    color: #037dd6;
}

.typography--color-primary-2 {
    color: #eaf6ff;
}

.typography--color-primary-3 {
    color: #0260a4;
}

.typography--color-secondary-1 {
    color: #f66a0a;
}

.typography--color-secondary-2 {
    color: #fef5ef;
}

.typography--color-secondary-3 {
    color: #c65507;
}

.typography--color-alert-1 {
    color: #ffd33d;
}

.typography--color-alert-2 {
    color: #fefcde;
}

.typography--color-alert-3 {
    color: #f8c000;
}

.typography--color-error-1 {
    color: #d73a49;
}

.typography--color-error-2 {
    color: #fcf2f3;
}

.typography--color-error-3 {
    color: #b92534;
}

.typography--color-success-1 {
    color: #4cd964;
}

.typography--color-success-2 {
    color: #caf4d1;
}

.typography--color-success-3 {
    color: #219e37;
}

.typography--color-mainnet {
    color: #29b6af;
}

.typography--color-ropsten {
    color: #ff4a8d;
}

.typography--color-kovan {
    color: #9064ff;
}

.typography--color-rinkeby {
    color: #f6c343;
}

.typography--color-goerli {
    color: #3099f2;
}

.typography--color-transparent {
    color: transparent;
}

.typography--weight-bold {
    font-weight: bold;
}

.typography--weight-normal {
    font-weight: normal;
}

.typography--weight-100 {
    font-weight: 100;
}

.typography--weight-200 {
    font-weight: 200;
}

.typography--weight-300 {
    font-weight: 300;
}

.typography--weight-400 {
    font-weight: 400;
}

.typography--weight-500 {
    font-weight: 500;
}

.typography--weight-600 {
    font-weight: 600;
}

.typography--weight-700 {
    font-weight: 700;
}

.typography--weight-800 {
    font-weight: 800;
}

.typography--weight-900 {
    font-weight: 900;
}

.typography--align-left {
    text-align: left;
}

.typography--align-right {
    text-align: right;
}

.typography--align-center {
    text-align: center;
}

.typography--align-justify {
    text-align: justify;
}

.typography--align-end {
    text-align: end;
}

.typography--spacing-1 {
    margin: 4px auto;
}

.typography--spacing-2 {
    margin: 8px auto;
}

.typography--spacing-3 {
    margin: 12px auto;
}

.typography--spacing-4 {
    margin: 16px auto;
}

.typography--spacing-5 {
    margin: 20px auto;
}

.typography--spacing-6 {
    margin: 24px auto;
}

.typography--spacing-7 {
    margin: 28px auto;
}

.typography--spacing-8 {
    margin: 32px auto;
}

.unit-input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    min-height: 54px;
    border: 1px solid #dedede;
    border-radius: 4px;
    background-color: #fff;
    color: #4d4d4d;
    padding: 8px 10px;
    position: relative;
}

.unit-input input[type=number] {
    -moz-appearance: textfield;
}

.unit-input input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.unit-input input[type=number]:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.unit-input__inputs {
    flex: 1 0 auto;
    display: flex;
    flex-flow: column nowrap;
}

.unit-input__input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #4d4d4d;
    border: none;
    max-width: 15ch;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 16px;
}

.unit-input__input__disabled {
    background-color: #dedede;
}

.unit-input__input-container {
    display: flex;
    align-items: center;
    padding-bottom: 2px;
}

.unit-input__suffix {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 3px;
}

.unit-input--error {
    border-color: #f00;
}

.unit-input__disabled {
    background-color: #f2f3f4;
}

.url-icon {
    width: 24px;
    height: 24px;
    background-position: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
    flex: 0 0 auto;
    -moz-animation: fadein 1s;
    /* Firefox */
    -webkit-animation: fadein 1s;
    /* Safari and Chrome */
    -o-animation: fadein 1s;
}

.url-icon__fallback {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #bbc0c5;
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/** Please import your files in alphabetical order **/

.token-list-placeholder {
    display: flex;
    align-items: center;
    padding-top: 36px;
    flex-direction: column;
    line-height: 22px;
}

.token-list-placeholder img {
    opacity: 0.5;
}

.token-list-placeholder__text {
    color: #aeaeae;
    width: 50%;
    text-align: center;
    margin-top: 8px;
    opacity: 0.5;
}

@media screen and (max-width: 575px) {
    .token-list-placeholder__text {
        width: 60%;
    }
}

.token-list-placeholder__link {
    margin-top: 0.5rem;
}

.token-list__title {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.token-list__tokens-container {
    display: flex;
    flex-direction: column;
}

.token-list__token {
    transition: 200ms ease-in-out;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 8px;
    margin-top: 8px;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
}

.token-list__token:hover,
.token-list__token:focus {
    border-color: rgba(122, 201, 253, 0.5);
}

.token-list__token--selected {
    border-color: #7ac9fd !important;
}

.token-list__token--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.token-list__token-icon {
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
    margin-right: 12px;
    flex: 0 0 auto;
}

.token-list__token-data {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 0;
}

.token-list__token-name {
    /*rtl:ignore*/
    direction: ltr;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.add-token__custom-token-form {
    padding: 8px 16px 16px;
}

.add-token__custom-token-form input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.add-token__custom-token-form input[type=number]:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.add-token__custom-token-form .add-token__decimal-warning {
    margin-top: 5px;
}

.add-token__search-token {
    padding: 16px;
}

.add-token__token-list {
    margin-top: 16px;
}

.add-token__custom-symbol__label-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.add-token__custom-symbol__label {
    flex: 0 0 auto;
}

.add-token__custom-symbol__edit {
    flex: 1 1 auto;
    text-align: right;
    color: #037dd6;
    padding-right: 4px;
    cursor: pointer;
}

.add-token__link {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: inline;
    color: #037dd6;
    padding-left: 0;
}

.asset__container {
    background-color: white;
}

.asset__overview {
    box-shadow: 0 3px 4px rgba(135, 134, 134, 0.16);
}

.asset-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    height: 64px;
}

.asset-breadcrumb {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
    background-color: inherit;
}

.asset-breadcrumb__chevron {
    font-size: 1rem;
    padding: 0 10px 0 2px;
}

.asset-breadcrumb__asset {
    font-weight: bold;
}

.asset-options__button {
    font-size: 1rem;
    color: #24292e;
    background-color: inherit;
    padding: 2px 0 2px 8px;
}

.asset-options__icon {
    font-weight: 900;
}

.confirm-add-token {
    padding: 16px;
}

.confirm-add-token__header {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
}

.confirm-add-token__token {
    flex: 1;
    min-width: 0;
}

.confirm-add-token__balance {
    flex: 0 0 30%;
    min-width: 0;
}

.confirm-add-token__token-list {
    display: flex;
    flex-flow: column nowrap;
}

.confirm-add-token__token-list .token-balance {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.confirm-add-token__token-list .token-balance__amount {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    margin-right: 8px;
}

.confirm-add-token__token-list .token-balance__symbol {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
}

.confirm-add-token__token-list-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-top: 8px;
    box-sizing: border-box;
}

.confirm-add-token__data {
    display: flex;
    align-items: center;
    padding: 8px;
}

.confirm-add-token__name {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.confirm-add-token__token-icon {
    margin-right: 12px;
    flex: 0 0 auto;
}

.confirm-approve-content {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    font-style: normal;
}

.confirm-approve-content__identicon-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 22px;
    padding-left: 24px;
    padding-right: 24px;
}

.confirm-approve-content__identicon {
    width: 48px;
    height: 48px;
}

.confirm-approve-content__full-tx-content {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 100%;
    font-style: normal;
}

.confirm-approve-content__card-wrapper {
    width: 100%;
}

.confirm-approve-content__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 22px;
    padding-left: 24px;
    padding-right: 24px;
}

.confirm-approve-content__description {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #6a737d;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
}

.confirm-approve-content__card,
.confirm-approve-content__card--no-border {
    display: flex;
    flex-flow: column;
    border-bottom: 1px solid #d2d8dd;
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
}

.confirm-approve-content__card__bold-text,
.confirm-approve-content__card--no-border__bold-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
}

.confirm-approve-content__card__thin-text,
.confirm-approve-content__card--no-border__thin-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.confirm-approve-content__card--no-border {
    border-bottom: none;
}

.confirm-approve-content__card-header {
    display: flex;
    flex-flow: row;
    margin-top: 20px;
    align-items: center;
    position: relative;
}

.confirm-approve-content__card-header__symbol {
    width: auto;
}

.confirm-approve-content__card-header__symbol--aligned {
    width: 100%;
}

.confirm-approve-content__card-header__title,
.confirm-approve-content__card-header__title-value {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
}

.confirm-approve-content__card-header__title {
    width: 100%;
    margin-left: 16px;
}

.confirm-approve-content__card-header__title--aligned {
    margin-left: 27px;
    position: absolute;
    width: auto;
}

.confirm-approve-content__card-content {
    margin-top: 6px;
    margin-bottom: 12px;
}

.confirm-approve-content__card-content--aligned {
    margin-left: 42px;
}

.confirm-approve-content__transaction-total-symbol {
    width: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 16px;
}

.confirm-approve-content__transaction-total-symbol__x {
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirm-approve-content__transaction-total-symbol__x div {
    width: 22px;
    height: 2px;
    background: #037dd6;
    position: absolute;
}

.confirm-approve-content__transaction-total-symbol__x div:first-of-type {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.confirm-approve-content__transaction-total-symbol__x div:last-of-type {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.confirm-approve-content__transaction-total-symbol__circle {
    width: 14px;
    height: 14px;
    border: 2px solid #037dd6;
    border-radius: 50%;
    background: white;
    position: absolute;
}

.confirm-approve-content__transaction-details-content {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.confirm-approve-content__transaction-details-content .confirm-approve-content__small-text {
    width: 160px;
}

.confirm-approve-content__transaction-details-content__fee {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    text-align: right;
}

.confirm-approve-content__transaction-details-content__primary-fee {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    color: #000;
}

.confirm-approve-content__transaction-details-content__secondary-fee {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: normal;
    color: #8c8e94;
}

.confirm-approve-content__view-full-tx-button-wrapper {
    display: flex;
    flex-flow: row;
    margin-bottom: 16px;
    justify-content: center;
}

.confirm-approve-content__view-full-tx-button-wrapper i {
    margin-left: 6px;
    display: flex;
    color: #3099f2;
    align-items: center;
}

.confirm-approve-content__view-full-tx-button {
    display: flex;
    flex-flow: row;
}

.confirm-approve-content__edit-submission-button-container {
    display: flex;
    flex-flow: row;
    padding-top: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #d2d8dd;
    width: 100%;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
}

.confirm-approve-content__large-text {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
}

.confirm-approve-content__medium-link-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 500;
    color: #037dd6;
}

.confirm-approve-content__medium-text,
.confirm-approve-content__label {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
}

.confirm-approve-content__label {
    font-weight: bold;
    margin-right: 4px;
}

.confirm-approve-content__small-text,
.confirm-approve-content__small-blue-text,
.confirm-approve-content__info-row {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.confirm-approve-content__small-blue-text {
    color: #037dd6;
}

.confirm-approve-content__info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.confirm-approve-content__data,
.confirm-approve-content__permission {
    width: 100%;
}

.confirm-approve-content__permission .flex-row {
    margin-top: 14px;
}

.confirm-approve-content__data__data-block {
    overflow-wrap: break-word;
    margin-right: 16px;
    margin-top: 12px;
}

.confirm-approve-content__footer {
    display: flex;
    align-items: flex-end;
    margin-top: 16px;
    padding-left: 34px;
    padding-right: 24px;
}

.confirm-approve-content__footer .confirm-approve-content__small-text {
    margin-left: 16px;
}

.confirm-approve-content__custom-nonce-warning {
    width: 100%;
    height: 30px;
}

.confirm-approve-content__custom-nonce-content {
    display: flex;
    height: 49px;
    margin-top: 5px;
    margin-bottom: 6px;
    padding: 12px 12px 14px 12px;
    border: 1px solid #bbc0c5;
    box-sizing: border-box;
    border-radius: 6px;
    align-items: center;
}

.confirm-approve-content__custom-nonce-header {
    flex: 1;
    align-items: center;
}

.confirm-approve-content__custom-nonce-value {
    flex: 0;
}

.confirm-approve-content .confirm-approve-content__custom-nonce-edit {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: auto;
}

.confirm-approve-content--full {
    height: auto;
}

.request-decrypt-message__container {
    width: 380px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-flow: column nowrap;
    z-index: 25;
    align-items: center;
    position: relative;
    height: 100%;
}

@media screen and (max-width: 575px) {
    .request-decrypt-message__container {
        width: 100%;
        top: 0;
        box-shadow: none;
    }
}

@media screen and (min-width: 576px) {
    .request-decrypt-message__container {
        height: 620px;
    }
}

.request-decrypt-message__typed-container {
    padding: 17px;
}

.request-decrypt-message__typed-container h1 {
    font-weight: 900;
    margin-bottom: 5px;
}

.request-decrypt-message__typed-container * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.request-decrypt-message__typed-container>div {
    margin-bottom: 10px;
}

.request-decrypt-message__header {
    height: 64px;
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.request-decrypt-message__header-background {
    position: absolute;
    background-color: #e9edf0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.request-decrypt-message__header__text {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5b5d67;
    z-index: 3;
    text-align: center;
}

.request-decrypt-message__header__tip-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.request-decrypt-message__header__tip {
    height: 25px;
    width: 25px;
    background: #e9edf0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -8px;
    z-index: 1;
}

.request-decrypt-message__account-info {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    margin-bottom: 20px;
}

.request-decrypt-message__account {
    color: #9b9b9b;
    margin-left: 17px;
}

.request-decrypt-message__account-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.request-decrypt-message__account-item {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 22px;
    background-color: #fff;
    width: 124px;
}

.request-decrypt-message__account-item .account-list-item {
    margin-top: 6px;
}

.request-decrypt-message__account-item .account-list-item__account-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 80px;
}

.request-decrypt-message__account-item .account-list-item__top-row {
    margin: 0;
}

.request-decrypt-message__balance {
    color: #9b9b9b;
    margin-right: 17px;
    width: 124px;
}

.request-decrypt-message__balance-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: right;
}

.request-decrypt-message__balance-value {
    text-align: right;
    margin-top: 2.5px;
}

.request-decrypt-message__request-icon {
    margin-top: 25px;
}

.request-decrypt-message__body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    flex: 1 1 auto;
    height: 0;
}

.request-decrypt-message__notice {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 11px;
    width: 100%;
}

.request-decrypt-message__message {
    overflow-wrap: break-word;
    margin: 20px;
    overflow: hidden;
    border: 1px solid #dedede;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}

.request-decrypt-message__message-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 115px;
}

.request-decrypt-message__message-cover {
    background-color: white;
    opacity: 0.75;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

.request-decrypt-message__message-lock {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    cursor: pointer;
}

.request-decrypt-message__message-lock img {
    padding: 5px;
    background-color: #fff;
    left: calc(50% - 24px);
    position: absolute;
    top: calc(50% - 34px);
    border-radius: 3px;
}

.request-decrypt-message__message-lock--pressed {
    display: none;
}

.request-decrypt-message__message-lock-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 200px;
    position: absolute;
    top: calc(50% + 5px);
    text-align: center;
    left: calc(50% - 100px);
    background-color: white;
    border-radius: 3px;
}

.request-decrypt-message__message-copy {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    justify-content: space-evenly;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    cursor: pointer;
}

.request-decrypt-message__message-copy-text {
    margin-right: 10px;
    display: inline;
}

.request-decrypt-message__message-copy-tooltip {
    float: right;
}

.request-decrypt-message__footer {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    border-top: 1px solid #d2d8dd;
    padding: 1.6rem;
}

.request-decrypt-message__footer button {
    width: 165px;
}

.request-decrypt-message__footer__cancel-button {
    margin-right: 1.2rem;
}

.request-decrypt-message__visual {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    position: relative;
    margin: 0 20px;
}

.request-decrypt-message__visual section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.request-decrypt-message__visual-identicon {
    width: 48px;
    height: 48px;
}

.request-decrypt-message__visual-identicon--default {
    background-color: #777a87;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.request-encryption-public-key__container {
    width: 380px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-flow: column nowrap;
    z-index: 25;
    align-items: center;
    position: relative;
    height: 100%;
}

@media screen and (max-width: 575px) {
    .request-encryption-public-key__container {
        width: 100%;
        top: 0;
        box-shadow: none;
    }
}

@media screen and (min-width: 576px) {
    .request-encryption-public-key__container {
        height: 620px;
    }
}

.request-encryption-public-key__typed-container {
    padding: 17px;
}

.request-encryption-public-key__typed-container h1 {
    font-weight: 900;
    margin-bottom: 5px;
}

.request-encryption-public-key__typed-container * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.request-encryption-public-key__typed-container>div {
    margin-bottom: 10px;
}

.request-encryption-public-key__header {
    height: 64px;
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.request-encryption-public-key__header-background {
    position: absolute;
    background-color: #e9edf0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.request-encryption-public-key__header__text {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5b5d67;
    z-index: 3;
    text-align: center;
}

.request-encryption-public-key__header__tip-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.request-encryption-public-key__header__tip {
    height: 25px;
    width: 25px;
    background: #e9edf0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -8px;
    z-index: 1;
}

.request-encryption-public-key__account-info {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    margin-bottom: 20px;
}

.request-encryption-public-key__account {
    color: #9b9b9b;
    margin-left: 17px;
}

.request-encryption-public-key__account-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.request-encryption-public-key__account-item {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 22px;
    background-color: #fff;
    width: 124px;
}

.request-encryption-public-key__account-item .account-list-item {
    margin-top: 6px;
}

.request-encryption-public-key__account-item .account-list-item__account-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 80px;
}

.request-encryption-public-key__account-item .account-list-item__top-row {
    margin: 0;
}

.request-encryption-public-key__balance {
    color: #9b9b9b;
    margin-right: 17px;
    width: 124px;
}

.request-encryption-public-key__balance-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: right;
}

.request-encryption-public-key__balance-value {
    text-align: right;
    margin-top: 2.5px;
}

.request-encryption-public-key__request-icon {
    margin-top: 25px;
}

.request-encryption-public-key__body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    flex: 1 1 auto;
    height: 0;
}

.request-encryption-public-key__notice {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    margin-top: 41px;
    margin-bottom: 11px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    color: #9b9b9b;
}

.request-encryption-public-key__footer {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    border-top: 1px solid #d2d8dd;
    padding: 1.6rem;
}

.request-encryption-public-key__footer button {
    width: 165px;
}

.request-encryption-public-key__footer__cancel-button {
    margin-right: 1.2rem;
}

.request-encryption-public-key__visual {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    position: relative;
    margin: 0 20px;
}

.request-encryption-public-key__visual section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.request-encryption-public-key__visual-identicon {
    width: 48px;
    height: 48px;
}

.request-encryption-public-key__visual-identicon--default {
    background-color: #777a87;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.confirmation-footer {
    grid-area: footer;
}

.confirmation-footer__actions {
    display: flex;
    border-top: 1px solid #d6d9dc;
    background-color: white;
    padding: 16px;
}

.confirmation-footer__actions .button:first-child {
    margin-right: 16px;
}

.confirmation-page {
    width: 100%;
    height: 100%;
    position: relative;
    background: white;
    display: grid;
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "navigation" "content" "footer";
}

.confirmation-page a {
    color: #037dd6;
}

.confirmation-page__content {
    grid-area: content;
    padding: 16px 16px 0;
    min-width: 0;
}

.confirmation-page__content> :last-child {
    margin-bottom: 16px;
}

.confirmation-page__navigation {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    grid-area: navigation;
    background-color: #f2f3f4;
    border-bottom: 1px solid #d2d8dd;
    padding: 6px 16px 5px 16px;
    color: #6a737d;
    display: grid;
    grid-template-columns: 1fr minmax(0, auto) minmax(0, auto);
    align-items: center;
}

.confirmation-page__navigation-button {
    background-color: white;
    border-radius: 100px;
    color: #6a737d;
    font-size: 0.875rem;
    height: 20px;
    width: 20px;
    padding: 0;
}

.confirmation-page__navigation-button:disabled {
    cursor: not-allowed;
    background-color: #d6d9dc;
    color: #9fa6ae;
}

.confirmation-page__navigation .confirmation-page__navigation-button:last-child {
    margin-left: 8px;
}

.confirmation-page .chip {
    max-width: 100%;
}

.confirmation-page .chip__label {
    word-break: break-all;
}

.connected-sites h2 {
    text-overflow: ellipsis;
    margin-right: 10px;
}

.connected-sites__confirmation {
    flex-direction: column;
}

.connected-sites__confirmation button:first-child {
    margin-right: 24px;
}

.connected-sites__footer-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.connected-sites__footer-row+.connected-sites__footer-row {
    margin-top: 15px;
}

.connected-sites a,
.connected-sites a:hover {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
}

.connected-accounts__footer a,
.connected-accounts__footer a:hover {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
}

.connected-sites h2 {
    text-overflow: ellipsis;
    margin-right: 10px;
}

.connected-sites__confirmation {
    flex-direction: column;
}

.connected-sites__confirmation button:first-child {
    margin-right: 24px;
}

.connected-sites__footer-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.connected-sites__footer-row+.connected-sites__footer-row {
    margin-top: 15px;
}

.connected-sites a,
.connected-sites a:hover {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
}

.hw-tutorial {
    width: 375px;
    overflow: visible;
    display: block;
    padding: 15px 30px;
}

.hw-connect {
    width: 100%;
}

.hw-connect__header__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 15px;
}

.hw-connect__header__msg {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #9b9b9b;
    margin-top: 10px;
    margin-bottom: 20px;
}

.hw-connect__btn-wrapper {
    flex: 1;
    flex-direction: row;
    display: flex;
}

.hw-connect__connect-btn {
    width: 315px;
    margin: 20px;
}

.hw-connect__connect-btn.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.hw-connect__btn {
    background: #fbfbfb;
    border: 1px solid #e5e5e5;
    height: 100px;
    width: 150px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 0;
}

.hw-connect__btn__img {
    width: 95px;
}

.hw-connect__btn.selected {
    border-color: #00a8ee;
    width: 149px;
}

.hw-connect__btn:first-child {
    margin-right: 15px;
    margin-left: 20px;
}

.hw-connect__btn:last-child {
    margin-right: 20px;
}

.hw-connect__hdPath {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    margin-bottom: 30px;
}

.hw-connect__hdPath__title {
    display: flex;
    margin-top: 10px;
    margin-right: 15px;
}

.hw-connect__hdPath__select {
    display: flex;
    flex: 1;
}

.hw-connect__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-top: 10px;
    font-weight: 400;
}

.hw-connect__unlock-title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-top: 10px;
    font-weight: 400;
    margin-bottom: 15px;
}

.hw-connect__msg {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #9b9b9b;
    margin-top: 10px;
    margin-bottom: 15px;
}

.hw-connect__msg-link {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: #037dd6;
    background: unset;
}

.hw-connect__error {
    color: #f7861c;
    margin: 20px 20px 10px;
    display: block;
    text-align: center;
}

.hw-connect__step-asset {
    margin: 0 auto 20px;
    display: flex;
}

.hw-account-list {
    display: flex;
    flex: 1;
    flex-flow: column;
    width: 100%;
}

.hw-account-list__title_wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.hw-account-list__title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 23px;
    align-self: flex-start;
    color: #5d5d5d;
    font-weight: bold;
    display: flex;
    flex: 1;
}

.hw-account-list__device {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 23px;
    align-self: flex-end;
    color: #5d5d5d;
    display: flex;
}

.hw-account-list__item {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    flex-direction: row;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
}

.hw-account-list__item:nth-of-type(even) {
    background-color: #fbfbfb;
}

.hw-account-list__item:nth-of-type(odd) {
    background: rgba(0, 0, 0, 0.03);
}

.hw-account-list__item:hover {
    background-color: rgba(0, 0, 0, 0.06);
}

.hw-account-list__item__index {
    display: flex;
    width: 24px;
}

.hw-account-list__item__checkbox {
    display: flex;
    flex: 1;
}

.hw-account-list__item__checkbox input {
    margin-top: 13px;
}

.hw-account-list__item__label {
    display: flex;
    flex: 1;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.hw-account-list__item__balance {
    display: flex;
    flex: 1;
    justify-content: center;
}

.hw-account-list__item__link {
    display: flex;
    margin-top: 13px;
}

.hw-account-list__item__link img {
    width: 15px;
    height: 15px;
}

.hw-list-pagination {
    display: flex;
    align-self: flex-end;
    margin-top: 10px;
}

.hw-list-pagination__button {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background: #fff;
    height: 19px;
    display: flex;
    color: #33a4e7;
    border: none;
    min-width: 46px;
    margin-right: 0;
    margin-left: 16px;
    padding: 0;
    text-transform: uppercase;
}

.new-external-account-form {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 15px 30px 0;
}

.new-external-account-form.unsupported-browser {
    height: 210px;
    overflow: auto;
    scrollbar-width: none;
}

.new-external-account-form.unsupported-browser::-webkit-scrollbar {
    display: none;
}

.new-external-account-form.account-list {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.new-external-account-form__buttons {
    margin-top: 39px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.new-external-account-form__button:not(:last-child) {
    margin-right: 16px;
}

.hw-forget-device-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 22px;
}

.hw-forget-device-container a {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #2f9ae0;
    cursor: pointer;
}

.switch-ledger-path-popover__content {
    padding: 0 24px 48px 24px;
}

.switch-ledger-path-popover__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.switch-ledger-path-popover__footer button:first-of-type {
    margin-right: 15px;
}

.new-account-import-disclaimer {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 120%;
    background-color: #f4f9fc;
    display: inline-block;
    align-items: center;
    padding: 20px 30px 20px;
}

.new-account-import-form {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0 30px 30px;
}

@media screen and (max-width: 575px) {
    .new-account-import-form {
        padding: 0 22px 22px;
    }
}

.new-account-import-form__select-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 29px;
    width: 100%;
}

.new-account-import-form__select-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
}

.new-account-import-form__select {
    width: 210px;
    display: flex;
    align-items: center;
}

.new-account-import-form__private-key-password-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
}

.new-account-import-form__instruction {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    align-self: flex-start;
}

.new-account-import-form__private-key {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin-top: 34px;
}

.new-account-import-form__input-password {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 54px;
    width: 315px;
    border: 1px solid #d2d8dd;
    border-radius: 4px;
    background-color: #fff;
    margin-top: 16px;
    color: #5d5d5d;
    padding: 0 20px;
}

.new-account-import-form__json {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-top: 29px;
    width: 100%;
}

.new-account-import-form__buttons {
    margin-top: 39px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.new-account {
    width: 375px;
    background-color: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
    z-index: 25;
    height: unset;
    overflow: auto;
    scrollbar-width: none;
}

.new-account::-webkit-scrollbar {
    display: none;
}

@media screen and (min-width: 576px) {
    .new-account {
        position: absolute;
    }
}

.new-account__header {
    display: flex;
    flex-flow: column;
    border-bottom: 1px solid #d2d8dd;
}

.new-account__title {
    font-size: 2rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #4d4d4d;
    font-weight: 500;
    margin-top: 22px;
    margin-left: 29px;
}

.new-account__tabs {
    margin-left: 22px;
    display: flex;
    margin-top: 10px;
}

.new-account__tabs__tab {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 54px;
    padding: 15px 10px;
    color: #9b9b9b;
    text-align: center;
    cursor: pointer;
}

.new-account__tabs__tab:hover {
    color: #000;
    border-bottom: none;
}

.new-account__tabs__selected {
    color: #037dd6;
    border-bottom: 3px solid #037dd6;
    cursor: initial;
    pointer-events: none;
}

.new-account-create-form {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 30px;
}

.new-account-create-form__input-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    align-self: flex-start;
}

.new-account-create-form__input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 54px;
    width: 315.84px;
    border: 1px solid #d2d8dd;
    border-radius: 4px;
    background-color: #fff;
    color: #5d5d5d;
    margin-top: 15px;
    padding: 0 20px;
}

.new-account-create-form__buttons {
    margin-top: 39px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.new-account-create-form__button {
    width: 150px;
    min-width: initial;
}

.error-page {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    font-style: normal;
    font-weight: normal;
    padding: 35px 10px 10px 10px;
    height: 100%;
}

.error-page__header {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
}

.error-page__subheader {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 10px 0;
    width: 100%;
    max-width: 720px;
    text-align: center;
}

.error-page__details {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    overflow-y: auto;
    width: 100%;
    max-width: 720px;
    padding-top: 10px;
}

.error-page__stack {
    overflow-x: auto;
    background-color: #eee;
}

.error-page__link-text {
    color: #037dd6;
}

.welcome-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 442px;
    padding: 0 18px;
    color: black;
}

.welcome-page__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin-top: 110px;
}

.welcome-page__header {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 22px;
    margin-top: 50px;
    text-align: center;
}

.welcome-page__description {
    text-align: center;
}

.welcome-page__description div {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

@media screen and (max-width: 575px) {
    .welcome-page__description {
        font-size: 0.9rem;
    }
}

.welcome-page .first-time-flow__button {
    width: 184px;
    font-weight: 500;
    margin-top: 44px;
}

.select-action .app-header__logo-container {
    width: 742px;
    margin-top: 3%;
}

.select-action__body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.select-action__body-header {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    margin-top: 65px;
    color: black;
}

.select-action__select-buttons {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
}

.select-action__select-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 388px;
    height: 278px;
    border: 1px solid #d8d8d8;
    box-sizing: border-box;
    border-radius: 10px;
    margin-left: 22px;
}

.select-action__select-button .first-time-flow__button {
    max-width: 221px;
    height: 44px;
}

.select-action__button-symbol {
    color: #c4c4c4;
    margin-top: 41px;
}

.select-action__button-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 144px;
}

.select-action__button-text-big {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
    margin-top: 12px;
    text-align: center;
}

.select-action__button-text-small {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #7a7a7b;
    margin-top: 10px;
    text-align: center;
}

.select-action button {
    font-weight: 500;
    width: 221px;
}

.confirm-seed-phrase__back-button {
    margin-bottom: 12px;
}

.confirm-seed-phrase__sorted-seed-words {
    max-width: 575px;
}

.confirm-seed-phrase__seed-word {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    width: 128px;
    height: 41px;
    margin: 4px;
    text-align: center;
    border-radius: 4px;
    cursor: move;
}

.confirm-seed-phrase__seed-word--sorted {
    cursor: pointer;
    margin: 6px;
}

.confirm-seed-phrase__seed-word--selected {
    color: #fff;
}

.confirm-seed-phrase__seed-word--dragging {
    margin: 0;
}

.confirm-seed-phrase__seed-word--empty {
    background-color: transparent;
    border-color: transparent;
    cursor: default;
}

.confirm-seed-phrase__seed-word--empty:hover,
.confirm-seed-phrase__seed-word--empty:active {
    background-color: transparent;
    border-color: transparent;
    cursor: default;
    box-shadow: none !important;
}

.confirm-seed-phrase__seed-word--hidden {
    display: none !important;
}

.confirm-seed-phrase__seed-word--drop-hover {
    background-color: transparent;
    border-color: transparent;
    color: transparent;
}

@media screen and (max-width: 575px) {
    .confirm-seed-phrase__seed-word {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
        padding: 6px 18px;
    }
}

.confirm-seed-phrase__selected-seed-words {
    /*rtl:ignore*/
    direction: ltr;
    display: flex;
    flex-flow: row wrap;
    min-height: 161px;
    max-width: 575px;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    background-color: #fff;
    margin: 24px 0 36px;
    padding: 12px;
}

.confirm-seed-phrase__selected-seed-words__pending-seed {
    display: none;
}

.confirm-seed-phrase__selected-seed-words__selected-seed {
    display: inline-flex;
}

.confirm-seed-phrase__selected-seed-words__selected-seed:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.confirm-seed-phrase__selected-seed-words--dragging .confirm-seed-phrase__selected-seed-words__pending-seed {
    display: inline-flex;
}

.confirm-seed-phrase__selected-seed-words--dragging .confirm-seed-phrase__selected-seed-words__selected-seed {
    display: none;
}

@media screen and (max-width: 576px) {
    .reveal-seed-phrase {
        display: flex;
        flex-direction: column;
        width: 96%;
        margin-left: 2%;
        margin-right: 2%;
    }
}

.reveal-seed-phrase__secret {
    position: relative;
    display: flex;
    justify-content: center;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    background-color: #fff;
    padding: 18px;
    margin-top: 36px;
    max-width: 350px;
}

.reveal-seed-phrase__secret-words {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 310px;
    text-align: center;
}

.reveal-seed-phrase__secret-words--hidden {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.reveal-seed-phrase__secret-blocker {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    padding: 8px 0 18px;
    cursor: pointer;
}

.reveal-seed-phrase__reveal-button {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 8px;
    text-align: center;
}

.reveal-seed-phrase__export-text {
    color: #037dd6;
    cursor: pointer;
    font-weight: 500;
}

.reveal-seed-phrase button {
    margin-top: 0;
}

.reveal-seed-phrase__buttons {
    display: flex;
    margin-top: 10px;
}

.reveal-seed-phrase__buttons .first-time-flow__button:last-of-type {
    margin-left: 10px;
}

.seed-phrase-intro__sections {
    display: flex;
}

@media screen and (min-width: 576px) {
    .seed-phrase-intro__sections {
        flex-direction: row;
    }
}

@media screen and (max-width: 970px) {
    .seed-phrase-intro__sections {
        flex-direction: column;
    }
}

.seed-phrase-intro__left {
    flex: 3;
    min-width: 0;
}

.seed-phrase-intro__right {
    flex: 1;
    min-width: 0;
}

@media screen and (max-width: 970px) {
    .seed-phrase-intro__right {
        margin-top: 24px;
    }
}

.seed-phrase-intro video {
    border-radius: 8px;
}

@media screen and (max-width: 970px) {
    .seed-phrase-intro video {
        width: 95%;
    }
}

.seed-phrase-intro__copy {
    max-width: 696px;
}

.seed-phrase-intro__sidebar_list {
    list-style: disc;
    padding-left: 20px;
}

.seed-phrase__sections {
    display: flex;
}

@media screen and (min-width: 576px) {
    .seed-phrase__sections {
        flex-direction: row;
    }
}

@media screen and (max-width: 575px) {
    .seed-phrase__sections {
        flex-direction: column;
    }
}

.seed-phrase__main {
    flex: 3;
    min-width: 0;
}

.seed-phrase__side {
    flex: 2;
    min-width: 0;
}

@media screen and (min-width: 576px) {
    .seed-phrase__side {
        margin-left: 81px;
    }
}

@media screen and (max-width: 575px) {
    .seed-phrase__side {
        margin-top: 24px;
    }
}

.seed-phrase__side .first-time-flow__text-block {
    color: #5a5a5a;
}

.end-of-flow {
    color: black;
    font-style: normal;
}

.end-of-flow .app-header__logo-container {
    width: 742px;
    margin-top: 3%;
}

@media screen and (max-width: 575px) {
    .end-of-flow .app-header__logo-container {
        width: 100%;
    }
}

.end-of-flow__text-1,
.end-of-flow__text-3 {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: normal;
    margin-top: 18px;
}

.end-of-flow__text-2 {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    margin-top: 26px;
}

.end-of-flow__text-3 {
    margin-top: 2px;
    margin-bottom: 2px;
}

@media screen and (max-width: 575px) {
    .end-of-flow__text-3 {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
        margin-bottom: 16px;
    }
}

.end-of-flow__text-4 {
    margin-top: 26px;
}

.end-of-flow button {
    width: 207px;
}

.end-of-flow__start-over-button {
    width: 744px;
}

.end-of-flow__emoji {
    font-size: 80px;
    margin-top: 70px;
}

.metametrics-opt-in {
    position: relative;
    width: 100%;
}

.metametrics-opt-in a {
    color: #2f9ae0bf;
}

.metametrics-opt-in__main {
    display: flex;
    flex-direction: column;
    margin-left: 26.26%;
    margin-right: 28%;
    color: black;
}

@media screen and (max-width: 575px) {
    .metametrics-opt-in__main {
        justify-content: center;
        margin-left: 2%;
        margin-right: 0%;
    }
}

.metametrics-opt-in__main .app-header__logo-container {
    margin-top: 3%;
}

.metametrics-opt-in__title {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: relative;
    margin-top: 20px;
}

.metametrics-opt-in__body-graphic {
    margin-top: 25px;
}

.metametrics-opt-in__body-graphic .fa-bar-chart {
    color: #c4c4c4;
}

.metametrics-opt-in__description {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 12px;
}

.metametrics-opt-in__committments {
    display: flex;
    flex-direction: column;
}

.metametrics-opt-in__content {
    overflow-y: scroll;
    flex: 1;
}

.metametrics-opt-in__row {
    display: flex;
    margin-top: 8px;
}

.metametrics-opt-in__row .fa-check {
    margin-right: 12px;
    color: #1acc56;
}

.metametrics-opt-in__row .fa-times {
    margin-right: 12px;
    color: #d0021b;
}

.metametrics-opt-in__bold {
    font-weight: bold;
}

.metametrics-opt-in__break-row {
    margin-top: 30px;
}

.metametrics-opt-in__body {
    position: relative;
    display: flex;
    max-width: 730px;
    flex-direction: column;
}

.metametrics-opt-in__body-text {
    max-width: 548px;
    margin-left: 16px;
    margin-right: 16px;
}

.metametrics-opt-in__bottom-text {
    margin-top: 10px;
    color: #9a9a9a;
}

.metametrics-opt-in__content {
    overflow-y: auto;
}

.metametrics-opt-in__footer {
    margin-top: 26px;
}

@media screen and (max-width: 575px) {
    .metametrics-opt-in__footer {
        margin-top: 10px;
        justify-content: center;
        margin-left: 2%;
        max-height: 520px;
    }
}

.metametrics-opt-in__footer .page-container__footer {
    border-top: none;
    max-width: 535px;
    margin-bottom: 15px;
}

.metametrics-opt-in__footer .page-container__footer button {
    height: 44px;
    min-height: 44px;
    margin-right: 16px;
}

.metametrics-opt-in__footer .page-container__footer footer {
    padding: 0;
}

.first-time-flow {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 576px) {
    .first-time-flow__wrapper {
        max-width: 742px;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 2%;
    }
}

.first-time-flow__wrapper .app-header__metafox-logo {
    margin-bottom: 40px;
}

@media screen and (min-width: 575px) {
    .first-time-flow__wrapper .app-header__metafox-logo {
        margin-bottom: 0;
    }
    .first-time-flow__input {
        max-width: 400px;
    }
}

.first-time-flow__form {
    display: flex;
    flex-direction: column;
}

.first-time-flow__create-back {
    margin-bottom: 16px;
}

.first-time-flow__header {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 24px;
    color: black;
}

.first-time-flow__subheader {
    margin-bottom: 16px;
}

.first-time-flow__input {
    max-width: 500px;
}

.first-time-flow__textarea-wrapper {
    margin-bottom: 8px;
    display: inline-flex;
    padding: 0;
    position: relative;
    min-width: 0;
    flex-direction: column;
    max-width: 350px;
}

.first-time-flow__textarea-label {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 9px;
    color: #1b344d;
}

.first-time-flow__textarea {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    /*rtl:ignore*/
    direction: ltr;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    background-color: #fff;
    padding: 16px;
    margin-top: 8px;
}

.first-time-flow__seedphrase {
    margin-top: 9px !important;
}

.first-time-flow__breadcrumbs {
    margin: 36px 0;
}

.first-time-flow__text-block {
    margin-bottom: 24px;
    color: black;
}

@media screen and (max-width: 575px) {
    .first-time-flow__text-block {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
        margin-bottom: 16px;
    }
}

.first-time-flow__button {
    margin: 35px 0 14px;
    width: 170px;
    height: 44px;
}

.first-time-flow__checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.first-time-flow__checkbox {
    background: #fff;
    border: 1px solid #cdcdcd;
    box-sizing: border-box;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.first-time-flow__checkbox:hover {
    border: 1.5px solid #2f9ae0;
}

.first-time-flow__checkbox .fa-check {
    color: #2f9ae0;
}

.first-time-flow__checkbox-label {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #939090;
    margin-left: 18px;
}

.first-time-flow__link-text {
    color: #037dd6;
}

@media screen and (min-width: 576px) {
    .first-time-flow__wrapper.intro {
        max-width: 1010px;
    }
}

@media screen and (max-width: 1010px) {
    .first-time-flow__wrapper.intro {
        padding: 0 20px;
    }
}

.home__container {
    display: flex;
    min-height: 100%;
}

.home__main-view {
    flex: 1 1 66.5%;
    background: #fff;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.home__balance-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
}

.home__main-view .home__tabs {
    border: none;
    box-shadow: 0 3px 4px rgba(135, 134, 134, 0.16);
}

.home__main-view .home__tab {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    flex-grow: 1;
    color: #6a737d;
    font-weight: 500;
}

.home__main-view .home__tab--active {
    color: #037dd6;
}

.home__main-view .home__tab button {
    padding: 16px 8px;
}

.home__connect-status-text {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-left: 24px;
    padding-right: 24px;
    color: #24272a;
}

.home__connect-status-text div {
    margin-bottom: 20px;
}

.home__connect-status-text div:last-child {
    margin-bottom: 0;
}

.home__connected-status-popover {
    width: 329px;
    margin-top: -15px;
}

.home__connected-status-popover .popover-header {
    padding-bottom: 20px;
}

.home__connected-status-popover .popover-header__title {
    padding-bottom: 0;
}

.home__connected-status-popover .popover-content {
    overflow-y: auto;
}

.home__connected-status-popover .popover-arrow {
    top: -6px;
    left: 24px;
}

.home__connected-status-popover .popover-footer {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    border-top: 0;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.home__connected-status-popover .popover-footer :only-child {
    margin: 0;
}

.home__connected-status-popover .popover-footer button {
    height: 39px;
    width: 133px;
    border-radius: 39px;
    padding: 0;
}

.home__connected-status-popover .popover-footer a,
.home__connected-status-popover .popover-footer a:hover {
    color: #3099f2;
    cursor: pointer;
}

.home__connected-status-popover-bg {
    height: 55px;
    width: 120px;
    border-radius: 34px;
    position: absolute;
    top: 73px;
    opacity: 1;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.2);
    background: none;
}

.home__connected-status-popover-bg-container {
    height: 100%;
    width: 100%;
}

.home__support {
    padding: 10px 0 20px 0;
    text-align: center;
}

.home__support a {
    color: #037dd6;
}

.first-view-main-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 0 10px;
}

.first-view-main-wrapper>.first-view-main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

@media screen and (min-width: 1281px) {
    .first-view-main {
        width: 62vw;
    }
}

.import-account {
    display: flex;
    flex-flow: column nowrap;
    margin: 60px 0 30px 0;
    position: relative;
    max-width: initial;
}

.import-account__input-label {
    padding-bottom: 10px;
    font-weight: 400;
    display: inline-block;
}

@media only screen and (max-width: 575px) {
    .import-account {
        margin: 24px;
        display: flex;
        flex-flow: column nowrap;
        width: calc(100vw - 80px);
    }
    .import-account__title {
        width: initial !important;
    }
    .first-view-main {
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-top: 12px;
    }
    .first-view-phone-invisible {
        display: none;
    }
    .first-time-flow__input {
        width: 100%;
    }
    .import-account__secret-phrase {
        width: initial !important;
        height: initial !important;
        min-height: 190px;
    }
}

@media only screen and (max-width: 575px) {
    .import-account__input {
        width: 100%;
    }
}

.import-account__title {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #1b344d;
    margin-bottom: 10px;
}

.import-account__back-button {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 18px;
    color: #22232c;
    position: absolute;
    top: -25px;
}

.import-account__secret-phrase {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 190px;
    width: 495px;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    background-color: #fff;
    padding: 17px;
}

.import-account__secret-phrase::-webkit-input-placeholder {
    color: #9b9b9b;
    font-weight: 200;
}

.import-account__secret-phrase::-moz-placeholder {
    color: #9b9b9b;
    font-weight: 200;
}

.import-account__secret-phrase::-ms-input-placeholder {
    color: #9b9b9b;
    font-weight: 200;
}

.import-account__secret-phrase::placeholder {
    color: #9b9b9b;
    font-weight: 200;
}

.import-account__selector-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #1b344d;
}

.import-account__input-wrapper {
    display: flex;
    flex-flow: column nowrap;
    margin-top: 30px;
}

.import-account__input {
    width: 350px;
}

.import-account__checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.import-account__checkbox {
    background: #fff;
    border: 1px solid #cdcdcd;
    outline: none;
    box-sizing: border-box;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.import-account__checkbox:hover {
    border: 1.5px solid #2f9ae0;
}

.import-account__checkbox .fa-check {
    color: #2f9ae0;
}

.import-account__checkbox-label {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #939090;
    margin-left: 18px;
}

.import-account__file-input {
    display: none;
}

.import-account__file-picker-wrapper {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.reveal-seed__content {
    padding: 20px;
}

.reveal-seed__label {
    padding-bottom: 10px;
    font-weight: 400;
    display: inline-block;
}

.reveal-seed__error {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #e91550;
    padding-top: 5px;
}

.permissions-connect-choose-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

.permissions-connect-choose-account .fa-info-circle {
    color: #bbc0c5;
    cursor: pointer;
    margin-left: 8px;
    font-size: 0.9rem;
}

.permissions-connect-choose-account .fa-info-circle:hover {
    color: #9fa6ae;
}

@media screen and (min-width: 576px) {
    .permissions-connect-choose-account {
        width: 426px;
    }
}

.permissions-connect-choose-account__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.permissions-connect-choose-account__text,
.permissions-connect-choose-account__text-blue,
.permissions-connect-choose-account__text-grey {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.permissions-connect-choose-account__text-blue {
    color: #037dd6;
    cursor: pointer;
}

.permissions-connect-choose-account__text-grey {
    color: #6a737d;
}

.permissions-connect-choose-account__accounts-list {
    flex: 2 1 0;
    width: 92%;
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
    border: 1px solid #d0d5da;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: 8px;
    overflow-y: auto;
}

.permissions-connect-choose-account__accounts-list-header--one-item,
.permissions-connect-choose-account__accounts-list-header--two-items {
    display: flex;
    flex: 0;
    margin-top: 36px;
    width: 100%;
    padding-left: 15px;
    padding-right: 17px;
}

.permissions-connect-choose-account__accounts-list-header--one-item {
    justify-content: flex-end;
}

.permissions-connect-choose-account__accounts-list-header--two-items {
    justify-content: space-between;
}

.permissions-connect-choose-account__account-info-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
}

.permissions-connect-choose-account__list-check-box {
    margin-right: 16px;
}

.permissions-connect-choose-account__list-check-box i {
    font-size: 0.8rem;
}

.permissions-connect-choose-account__header-check-box {
    margin-right: 16px;
}

.permissions-connect-choose-account__select-all {
    display: flex;
    margin-left: 16px;
    align-items: center;
}

.permissions-connect-choose-account__account {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #d2d8dd;
    justify-content: space-between;
}

.permissions-connect-choose-account__account:last-of-type {
    border-bottom: none;
}

.permissions-connect-choose-account__account:hover {
    background: #f2f3f4;
    cursor: pointer;
}

.permissions-connect-choose-account__account__info {
    display: flex;
    flex-direction: column;
    margin-left: 16px;
    min-width: 0;
}

.permissions-connect-choose-account__account__label {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.permissions-connect-choose-account__account__balance {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.permissions-connect-choose-account__account__last-connected {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #037dd6;
}

.permissions-connect-choose-account__cancel {
    color: #e06470;
}

.permissions-connect-choose-account__footer-container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media screen and (min-width: 576px) {
    .permissions-connect-choose-account__footer-container {
        flex-direction: column-reverse;
        justify-content: space-between;
        padding-bottom: 20px;
    }
}

.permissions-connect-choose-account__bottom-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 8px;
    border-top: 1px solid #d6d9dc;
}

@media screen and (min-width: 576px) {
    .permissions-connect-choose-account__bottom-buttons {
        border-top: none;
    }
}

.permissions-connect-choose-account__bottom-buttons button {
    width: 124px;
}

.permissions-connect-choose-account__bottom-buttons .btn-default {
    background: white;
    margin-left: 16px;
}

.permissions-connect-choose-account__bottom-buttons .btn-primary {
    margin-right: 16px;
}

.permissions-redirect {
    display: flex;
    height: 100%;
    justify-content: center;
}

.permissions-redirect__result {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 30%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #24292e;
}

.permissions-redirect__icons {
    display: flex;
}

.permissions-redirect__center-icon {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.permissions-redirect__check {
    width: 40px;
    height: 40px;
    background: white url("https://app.evmext.live/images/permissions-check.svg") no-repeat;
    position: absolute;
}

.permissions-connect {
    width: 100%;
    height: 100%;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 576px) {
    .permissions-connect .page-container {
        max-height: none;
        min-height: auto;
    }
}

.permissions-connect__top-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 16px 0 16px;
    align-items: center;
}

.permissions-connect__back {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #535a61;
    cursor: pointer;
}

.permissions-connect__back i {
    margin-right: 10px;
}

.permissions-connect__page-count {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    grid-column: 2;
    justify-self: end;
    font-weight: bold;
}

.currency-display {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 54px;
    border: 1px solid #dedede;
    border-radius: 4px;
    background-color: #fff;
    color: #5d5d5d;
    padding: 8px 10px;
    position: relative;
}

.currency-display__primary-row {
    display: flex;
}

.currency-display__input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    border: none;
    max-width: 22ch;
}

.currency-display__primary-currency {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    font-weight: 400;
}

.currency-display__converted-row {
    display: flex;
}

.currency-display__converted-value,
.currency-display__converted-currency {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #9b9b9b;
}

.currency-display__input-wrapper {
    position: relative;
    display: flex;
    flex: 1;
    max-width: 100%;
}

.currency-display__input-wrapper input[type=number] {
    -moz-appearance: textfield;
}

.currency-display__input-wrapper input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.currency-display__input-wrapper input[type=number]:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.currency-display__currency-symbol {
    margin-top: 1px;
    color: #5d5d5d;
}

.currency-display .react-numeric-input input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.currency-display .react-numeric-input input[type=number]:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
}

.send__header {
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #f2f3f4;
    border-bottom: none;
    padding: 14px 0 3px 0;
}

.send__header .page-container__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    text-align: center;
}

.send__header .page-container__header-close-text {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    right: 1rem;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    font-size: 0.75rem;
}

.send__dialog {
    margin: 1rem;
    cursor: pointer;
}

.send__error-dialog {
    margin: 1rem;
}

.send__to-row {
    margin: 0;
    padding: 0.5rem;
    flex: 0 0 auto;
    background-color: #f2f3f4;
    border-bottom: 1px solid #dedede;
}

.send__select-recipient-wrapper {
    flex: 1 1 auto;
    height: 0;
}

.send__select-recipient-wrapper__list {
    overflow-y: auto;
}

.send__select-recipient-wrapper__list__link {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 1rem;
    border-bottom: 1px solid #dedede;
    border-radius: 0;
    align-items: center;
    justify-content: flex-start;
}

.send__select-recipient-wrapper__list__back-caret {
    display: block;
    background-image: url("https://app.evmext.live/images/caret-left.svg");
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}

[dir=rtl] .send__select-recipient-wrapper__list__back-caret {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.send__select-recipient-wrapper__recent-group-wrapper__load-more {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 0.5rem;
    text-align: center;
    border-bottom: 1px solid #dedede;
    justify-content: flex-start;
}

.send__select-recipient-wrapper__group-label {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background-color: #f2f3f4;
    color: #535a61;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #dedede;
}

.send__select-recipient-wrapper__group-label:first-of-type {
    border-top: 1px solid #dedede;
}

.send__select-recipient-wrapper__group-item,
.send__select-recipient-wrapper__group-item--selected {
    padding: 0.75rem 1rem;
    align-items: center;
    border-bottom: 1px solid #dedede;
    cursor: pointer;
}

.send__select-recipient-wrapper__group-item:hover,
.send__select-recipient-wrapper__group-item--selected:hover {
    background-color: rgba(222, 222, 222, 0.2);
}

.send__select-recipient-wrapper__group-item .identicon,
.send__select-recipient-wrapper__group-item--selected .identicon {
    margin-right: 1rem;
    flex: 0 0 auto;
}

.send__select-recipient-wrapper__group-item__content,
.send__select-recipient-wrapper__group-item--selected__content {
    flex: 1 1 auto;
    width: 0;
}

.send__select-recipient-wrapper__group-item__title,
.send__select-recipient-wrapper__group-item--selected__title {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
}

.send__select-recipient-wrapper__group-item__subtitle,
.send__select-recipient-wrapper__group-item--selected__subtitle {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.send__select-recipient-wrapper__group-item--selected {
    border: 2px solid #2b7cd6;
    border-radius: 8px;
}

.ens-input__wrapper {
    flex: 1 1 auto;
    width: 0;
    align-items: center;
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid #d6d9dc;
    transition: border-color 150ms ease-in-out;
}

.ens-input__wrapper:focus-within {
    border-color: #6a737d;
}

.ens-input__wrapper__status-icon {
    background-image: url("https://app.evmext.live/images/search-black.svg");
    width: 1.125rem;
    height: 1.125rem;
    margin: 0.25rem 0.5rem 0.25rem 0.25rem;
}

.ens-input__wrapper__status-icon--valid {
    background-image: url("https://app.evmext.live/images/check-green-solid.svg");
}

.ens-input__wrapper__input {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    flex: 1 1 auto;
    width: 0;
    border: 0;
    outline: none;
}

.ens-input__wrapper__input::-webkit-input-placeholder {
    color: #bbc0c5;
}

.ens-input__wrapper__input::-moz-placeholder {
    color: #bbc0c5;
}

.ens-input__wrapper__input::-ms-input-placeholder {
    color: #bbc0c5;
}

.ens-input__wrapper__input::placeholder {
    color: #bbc0c5;
}

.ens-input__wrapper__action-icon {
    cursor: pointer;
}

.ens-input__wrapper__action-icon--erase {
    background-image: url("https://app.evmext.live/images/close-gray.svg");
    background-color: unset;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0 0.25rem;
}

.ens-input__wrapper__action-icon--qrcode {
    background-image: url("https://app.evmext.live/images/qr-blue.svg");
    background-color: unset;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.25rem;
}

.ens-input__wrapper--valid {
    border-color: #037dd6;
}

.ens-input__wrapper--valid .ens-input__wrapper__status-icon {
    background-image: url("https://app.evmext.live/images/check-green-solid.svg");
}

.ens-input__wrapper--valid .ens-input__wrapper__input {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
}

.ens-input__selected-input__title {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.ens-input__selected-input__subtitle {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    margin-top: 0.25rem;
}

.info-tab__logo-wrapper {
    height: 80px;
    margin-bottom: 20px;
}

.info-tab__logo {
    max-height: 100%;
    max-width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.info-tab__item {
    padding: 10px 0;
}

.info-tab__link-header {
    padding-bottom: 15px;
}

@media screen and (max-width: 575px) {
    .info-tab__link-header {
        padding-bottom: 5px;
    }
}

.info-tab__link-text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0;
}

.info-tab__link-item {
    padding: 15px 0;
}

@media screen and (max-width: 575px) {
    .info-tab__link-item {
        padding: 5px 0;
    }
}

.info-tab__version-number {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-top: 5px;
    color: #9b9b9b;
}

.info-tab__separator {
    margin: 15px 0;
    width: 80px;
    border-color: #dedede;
    border: none;
    height: 1px;
    background-color: #dedede;
    color: #dedede;
}

.info-tab__about {
    color: #9b9b9b;
    margin-bottom: 15px;
}

.alerts-tab__body {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: grid;
    grid-template-columns: 8fr 30px -webkit-max-content;
    grid-template-columns: 8fr 30px max-content;
    grid-template-rows: 1fr 1fr;
    align-items: center;
}

.alerts-tab__body>* {
    border-bottom: 1px solid #d6d9dc;
    padding: 16px 8px;
    height: 100%;
}

.alerts-tab__body> :first-child {
    padding-left: 32px;
}

.alerts-tab__body> :nth-child(3n+4) {
    padding-left: 32px;
}

.alerts-tab__body> :nth-child(3n) {
    padding-right: 32px;
}

.alerts-tab__description {
    display: flex;
    align-items: center;
}

.networks-tab__content {
    margin-top: 24px;
    display: flex;
    height: 100%;
    max-width: 739px;
    justify-content: space-between;
}

@media screen and (max-width: 575px) {
    .networks-tab__content {
        margin-top: 0;
        flex-direction: column;
        overflow-x: hidden;
        align-items: center;
    }
}

.networks-tab__body {
    padding-right: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 575px) {
    .networks-tab__body {
        padding: 0;
    }
}

.networks-tab__network-form {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: space-between;
    max-width: 343px;
    max-height: 465px;
}

.networks-tab__network-form .page-container__footer {
    border-top: none;
}

@media screen and (max-width: 575px) {
    .networks-tab__network-form .page-container__footer {
        width: 93%;
    }
}

.networks-tab__network-form .page-container__footer footer {
    padding: 10px 0;
}

@media screen and (max-width: 575px) {
    .networks-tab__network-form {
        display: flex;
        flex: auto;
        max-width: 100%;
        max-height: 100%;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }
}

@media screen and (max-width: 575px) {
    .networks-tab__network-form-row {
        width: 93%;
    }
}

.networks-tab__network-form-row--warning {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    background-color: #fefae8;
    border: 1px solid #ffd33d;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 12px;
    margin: 12px 0;
}

@media screen and (max-width: 575px) {
    .networks-tab__network-form-row--warning {
        width: 93%;
    }
}

.networks-tab__network-form-label {
    display: flex;
    align-items: center;
}

.networks-tab__network-form-label-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
}

.networks-tab__network-form-label-tooltip {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 5px;
}

.networks-tab__networks-list {
    flex: 0.5 0 auto;
    max-width: 343px;
}

@media screen and (max-width: 575px) {
    .networks-tab__networks-list {
        flex: 1;
        overflow-y: auto;
        max-width: 100vw;
        width: 100vw;
    }
}

.networks-tab__networks-list-popup-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 23px;
    padding-bottom: 23px;
    border-top: 1px solid #d8d8d8;
}

.networks-tab__networks-list-popup-footer .button {
    width: 178px;
}

.networks-tab__add-network-header-button-wrapper {
    justify-content: center;
}

.networks-tab__add-network-header-button-wrapper .button {
    width: 138px;
    padding: 10px;
}

@media screen and (max-width: 575px) {
    .networks-tab__add-network-header-button-wrapper {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .networks-tab__networks-list--selection {
        display: none;
    }
}

.networks-tab__networks-list-item {
    display: flex;
    padding: 13px 0 13px 17px;
    position: relative;
    align-items: center;
}

.networks-tab__networks-list-item .color-indicator:hover {
    cursor: pointer;
}

@media screen and (max-width: 575px) {
    .networks-tab__networks-list-item .color-indicator {
        margin: 0 4px 0 10px;
    }
}

@media screen and (max-width: 575px) {
    .networks-tab__networks-list-item {
        padding: 20px 23px 21px 17px;
        border-bottom: 1px solid #d8d8d8;
        max-width: 351px;
    }
}

@media screen and (max-width: 575px) {
    .networks-tab__networks-list-item:last-of-type {
        border-bottom: none;
    }
}

.networks-tab__networks-list-name {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 11px;
    color: #6a737d;
    width: 70%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.networks-tab__networks-list-name:hover {
    cursor: pointer;
}

.networks-tab__networks-list-name svg {
    margin-left: 10px;
    padding-top: 3px;
}

.networks-tab__networks-list-arrow {
    display: none;
}

@media screen and (max-width: 575px) {
    .networks-tab__networks-list-arrow {
        display: block;
        background-image: url("https://app.evmext.live/images/caret-right.svg");
        width: 24px;
        height: 24px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        right: 10px;
        cursor: pointer;
        position: absolute;
        width: 24px;
        height: 24px;
        margin: 0 5px;
    }
    [dir=rtl] .networks-tab__networks-list-arrow {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.networks-tab__networks-list-name--selected {
    font-weight: bold;
    color: #000;
}

.networks-tab__networks-list-name--disabled {
    font-weight: 300;
    color: #cdcdcd;
}

.network-form__footer {
    display: flex;
    flex-flow: row nowrap;
    margin: 0.75rem 0;
}

@media screen and (max-width: 575px) {
    .network-form__footer {
        width: 93%;
    }
}

.network-form__footer .btn-default {
    margin-right: 0.375rem;
}

.network-form__footer .btn-secondary {
    margin-left: 0.375rem;
}

.network-form__footer .btn-danger {
    margin-right: 3.75rem;
}

.settings-tab__error {
    padding-bottom: 20px;
    text-align: center;
    color: #e91550;
}

.settings-tab__rpc-save-button {
    align-self: flex-end;
    padding: 5px;
    cursor: pointer;
    width: 25%;
}

.settings-tab__button--red {
    border-color: #fd0826;
    color: #d0021b;
}

.settings-tab__button--red:active {
    background: #ffecee;
    border-color: #d0021b;
}

.settings-tab__button--red:hover {
    border-color: #d0021b;
}

.settings-tab__radio-buttons {
    display: flex;
    align-items: center;
}

.settings-tab__radio-button {
    display: flex;
    align-items: center;
}

.settings-tab__radio-button:not(:last-child) {
    margin-right: 16px;
}

.settings-tab__radio-label {
    padding-left: 4px;
}

.address-book-wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.address-book {
    flex: 0.4 1 100%;
}

@media screen and (max-width: 576px) {
    .address-book {
        flex: 1;
        max-width: 100%;
    }
    .address-book__container {
        min-height: 100%;
    }
}

.address-book__entry {
    display: flex;
    flex-flow: row nowrap;
    padding: 16px 14px;
    flex: 0 0 auto;
    border-bottom: 1px solid #dedede;
}

.address-book__entry:hover {
    border: 1px solid #037dd6;
    cursor: pointer;
}

.address-book__name {
    padding: 3px;
}

.address-book__header__name,
.address-book__header--edit__name {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-left: 24px;
}

.address-book__header--edit {
    display: flex;
    justify-content: space-between;
}

.address-book__header--edit .button {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    justify-content: flex-end;
    color: #d73a49;
}

.address-book__container {
    margin: 0 auto;
    min-height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.address-book__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.address-book__sub-title {
    font-size: small;
    margin-bottom: 0.5em;
}

.address-book__link {
    background-color: #fff;
    color: #037dd6;
}

.address-book__input {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    border: 1px solid #bbc0c5;
    border-radius: 6px;
    color: #24272a;
    padding: 0.875rem 1rem;
    margin-top: 0.25rem;
}

.address-book__input:focus-within {
    border-color: #037dd6;
}

.address-book__input--address {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.address-book__view-contact__text-area-wrapper {
    height: 96px !important;
}

.address-book__view-contact__text-area {
    line-height: initial !important;
}

.address-book__view-contact__group {
    display: flex;
    flex-flow: column nowrap;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.address-book__view-contact__group__label,
.address-book__view-contact__group__label--capitalized {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    margin-bottom: 0.25rem;
}

.address-book__view-contact__group__label--capitalized {
    text-transform: capitalize;
}

.address-book__view-contact__group__value,
.address-book__view-contact__group__static-address {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-flow: row nowrap;
    color: #24272a;
    word-break: break-word;
}

.address-book__view-contact__group__value--address,
.address-book__view-contact__group__static-address--address {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.address-book__view-contact__group__value--copy-icon,
.address-book__view-contact__group__static-address--copy-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 0;
    background: none;
    padding-left: 0;
    margin-left: 10px;
}

.address-book__view-contact__group__static-address {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.address-book__view-contact__group__static-address--copy-icon {
    cursor: pointer;
}

.address-book__view-contact__group__static-address--copy-icon:hover {
    color: black;
}

.address-book__view-contact__group .unit-input__input {
    max-width: 100%;
    width: 100%;
}

.address-book__edit-contact {
    display: flex;
    flex-flow: column nowrap;
    padding-bottom: 0 !important;
    height: 100%;
}

.address-book__edit-contact__content {
    flex: 1 1 auto;
}

.address-book__edit-contact__content>div {
    padding-top: 0;
}

.address-book__edit-contact .page-container__footer {
    border-top: none;
}

.address-book__add-contact {
    display: flex;
    flex-flow: column nowrap;
    padding-bottom: 0 !important;
    height: 100%;
}

.address-book__add-contact__content {
    flex: 1 1 auto;
    height: 100%;
}

.address-book__add-contact__error {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    left: 8px;
    color: #f00;
}

.address-book__my-accounts-button {
    display: flex;
    flex-flow: column;
    cursor: pointer;
    padding: 15px;
}

.address-book__my-accounts-button:hover {
    background-color: rgba(222, 222, 222, 0.2);
}

.address-book__my-accounts-button__header {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #000;
}

.address-book__my-accounts-button__content {
    display: flex;
    justify-content: space-between;
}

.address-book__my-accounts-button__text {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.address-book__my-accounts-button__caret {
    display: block;
    background-image: url(https://app.evmext.live/images/caret-right.svg);
    width: 30px;
    opacity: 0.5;
    background-repeat: no-repeat;
}

[dir=rtl] .address-book__my-accounts-button__caret {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.address-book-add-button__button {
    position: absolute;
    top: 85px;
    right: 16px;
    width: auto;
    border-radius: 100px;
}

@media screen and (max-width: 576px) {
    .address-book-add-button__button {
        top: 16px;
        right: 60px;
    }
}

.address-book--hidden {
    display: none;
}

.address-book-contact-content {
    flex: 0.4 1 100%;
}

@media screen and (max-width: 576px) {
    .address-book-contact-content {
        flex: 1;
    }
}

.settings-page {
    position: relative;
    background: #fff;
    display: flex;
    flex-flow: column nowrap;
}

.settings-page__header {
    display: flex;
    flex-flow: row nowrap;
    padding: 12px 24px;
    align-items: center;
    flex: 0 0 auto;
}

.settings-page__header__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    flex: 1 0 auto;
}

.settings-page__subheader,
.settings-page__subheader--link {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 16px 4px;
    border-bottom: 1px solid #dedede;
    margin-right: 24px;
    height: 72px;
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
}

@media screen and (max-width: 575px) {
    .settings-page__subheader,
    .settings-page__subheader--link {
        display: none;
    }
}

.settings-page__subheader--link {
    cursor: pointer;
    margin-right: 4px;
}

.settings-page__subheader--link:hover {
    cursor: pointer;
    color: #037dd6;
}

.settings-page__subheader--break {
    -webkit-margin-start: 4px;
    margin-inline-start: 4px;
}

.settings-page__sub-header {
    height: 72px;
    border-bottom: 1px solid #d8d8d8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

@media screen and (max-width: 575px) {
    .settings-page__sub-header {
        height: 69px;
        position: relative;
        text-align: center;
    }
}

.settings-page__sub-header-text {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

@media screen and (max-width: 575px) {
    .settings-page__sub-header-text {
        font-size: 1rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
        width: 100%;
    }
}

.settings-page__back-button {
    display: none;
}

@media screen and (max-width: 575px) {
    .settings-page__back-button {
        display: block;
        background-image: url("https://app.evmext.live/images/caret-left-black.svg");
        width: 18px;
        height: 18px;
        opacity: 0.5;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-right: 16px;
        cursor: pointer;
    }
    [dir=rtl] .settings-page__back-button {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.settings-page__close-button::after {
    content: "×";
    font-size: 40px;
    color: #9b9b9b;
    cursor: pointer;
}

.settings-page__content {
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    overflow: auto;
    border-top: 1px solid #d8d8d8;
}

.settings-page__content__tabs {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

@media screen and (min-width: 576px) {
    .settings-page__content__tabs {
        flex: 0 0 40%;
        max-width: 210px;
        padding-top: 8px;
    }
}

@media screen and (min-width: 576px) {
    .settings-page__content__tabs .tab-bar__tab {
        padding: 16px 24px 0;
    }
}

.settings-page__content__modules {
    overflow-y: auto;
    flex: 1 1 auto;
    display: flex;
    flex-flow: column;
}

@media screen and (max-width: 575px) {
    .settings-page__content__modules {
        display: none;
    }
}

.settings-page__body {
    padding: 12px 24px;
}

@media screen and (min-width: 576px) {
    .settings-page__body {
        padding: 12px;
    }
}

.settings-page__content-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0 20px;
}

.settings-page__content-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
    .settings-page__content-item {
        height: initial;
        padding: 5px 0;
    }
}

.settings-page__content-item--without-height {
    height: initial;
}

.settings-page__content-item--disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.settings-page__content-label {
    text-transform: capitalize;
}

.settings-page__content-description {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #9b9b9b;
    padding-top: 5px;
}

.settings-page__content-item-col {
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 575px) {
    .settings-page__content-item-col {
        max-width: 100%;
        width: 100%;
    }
}

.settings-page__copy-icon {
    padding-left: 4px;
}

.settings-page__button-group {
    display: flex;
    margin-left: auto;
}

.settings-page__address-book-button {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 0;
}

.settings-page__address-book-button+.settings-page__address-book-button {
    margin-left: 1.875rem;
}

@media screen and (max-width: 575px) {
    .settings-page--selected .settings-page__content__tabs {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .settings-page--selected .settings-page__content__modules {
        display: block;
    }
}

.settings-page .toggle-button {
    /*rtl:ignore*/
    direction: ltr;
}

[dir=rtl] .settings-page .toggle-button {
    justify-content: flex-end;
}

.awaiting-swap {
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.awaiting-swap__content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    padding-left: 32px;
    padding-right: 32px;
}

.awaiting-swap div {
    text-align: center;
    display: flex;
    justify-content: center;
}

.awaiting-swap a {
    color: #037dd6;
}

.awaiting-swap__status-image {
    margin-top: 12px;
    margin-bottom: 16px;
}

.awaiting-swap__header {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
}

.awaiting-swap__main-descrption {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    margin-top: 16px;
    width: 100%;
}

.awaiting-swap__time-estimate {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
    margin-top: 20px;
    font-style: italic;
}

.awaiting-swap__time-estimate>span {
    display: flex;
}

.awaiting-swap__time-estimate--invisible {
    visibility: hidden;
}

.awaiting-swap__time-estimate-text {
    margin-right: 2px;
    font-weight: bold;
}

.awaiting-swap__view-on-etherscan,
.awaiting-swap__support-link {
    color: #037dd6;
    margin-top: 24px;
    cursor: pointer;
}

.awaiting-swap__support-link {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.awaiting-swap__view-on-etherscan {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    transition: opacity 1s ease-in-out;
}

.awaiting-swap__view-on-etherscan--invisible {
    opacity: 0;
}

.awaiting-swap__view-on-etherscan--visible {
    opacity: 1;
}

.awaiting-swap__amount-and-symbol {
    color: #24292e;
    font-weight: bold;
}

.awaiting-signatures {
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.awaiting-signatures__content {
    flex-flow: column;
}

.awaiting-signatures div {
    text-align: center;
    display: flex;
    justify-content: center;
}

.awaiting-signatures__steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px auto 12px auto;
}

.awaiting-signatures__steps li {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.awaiting-signatures__steps li svg {
    margin-right: 4px;
}

.build-quote {
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 1;
    width: 100%;
    padding-top: 4px;
    /* Prevents the swaps "Swap to" field from overflowing */
}

.build-quote__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
}

.build-quote__content {
    display: flex;
}

.build-quote__dropdown-swap-to-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 12px;
}

.build-quote__dropdown-input-pair-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 12px;
    flex: 0.5 1 auto;
    max-height: 56px;
}

.build-quote__title,
.build-quote__input-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    color: #24292e;
    margin-top: 3px;
}

.build-quote__swap-arrows-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 16px;
    padding-top: 12px;
    height: 24px;
    position: relative;
}

.build-quote__swap-arrows {
    flex: 0 0 auto;
    height: 16px;
    width: 12px;
    cursor: pointer;
    background: unset;
}

.build-quote__max-button {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
}

.build-quote__balance-message {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    color: #6a737d;
    margin-top: 4px;
    display: flex;
    flex-flow: column;
    height: 18px;
}

.build-quote__balance-message--error div:first-of-type {
    font-weight: bold;
    color: #24292e;
}

.build-quote__balance-message--error .build-quote__form-error:first-of-type {
    font-weight: bold;
    color: #d73a49;
}

.build-quote__balance-message--error div:last-of-type {
    font-weight: normal;
    color: #6a737d;
}

.build-quote__slippage-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

.build-quote__open-dropdown,
.build-quote__open-to-dropdown {
    max-height: 330px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
    position: absolute;
    width: 100%;
}

.build-quote .dropdown-input-pair .searchable-item-list__item--add-token {
    display: none;
}

.build-quote .dropdown-input-pair__to .searchable-item-list__item--add-token {
    display: flex;
}

.build-quote__open-to-dropdown {
    max-height: 194px;
}

@media screen and (min-width: 576px) {
    .build-quote__open-to-dropdown {
        max-height: 276px;
    }
}

.build-quote__token-message {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    color: #6a737d;
    margin-top: 4px;
}

.build-quote__token-message .info-tooltip {
    display: inline-block;
}

.build-quote__token-etherscan-link {
    color: #037dd6;
    cursor: pointer;
}

.build-quote__token-tooltip-container {
    display: flex !important;
}

.build-quote__bold {
    font-weight: bold;
}

.build-quote__underline {
    text-decoration: underline;
}

.build-quote .dropdown-input-pair__to .dropdown-search-list {
    width: 100%;
}

.countdown-timer {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 576px) {
    .countdown-timer {
        margin: 0;
    }
}

.countdown-timer__timer-container {
    display: flex;
    padding-right: 3px;
}

.countdown-timer__timer-container>span {
    display: flex;
}

.countdown-timer__timer-container--warning .countdown-timer__time {
    color: #d73a49;
}

.countdown-timer__time {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 24px;
    margin-left: 4px;
    margin-right: 2px;
}

.countdown-timer div {
    display: flex;
    align-items: center;
}

.dropdown-input-pair {
    display: flex;
    width: 312px;
    height: 60px;
    position: relative;
}

.dropdown-input-pair__input {
    margin: 0 !important;
}

.dropdown-input-pair__input input {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding-top: 6px;
}

.dropdown-input-pair__input div {
    border: 1px solid #d6d9dc;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left-color: transparent;
    height: 60px;
}

.dropdown-input-pair__input input::-webkit-outer-spin-button,
.dropdown-input-pair__input input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.dropdown-input-pair__input input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

.dropdown-input-pair__list--full-width {
    width: 100%;
}

.dropdown-input-pair__left-value {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    right: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #6a737d;
}

.dropdown-input-pair__left-value--two-lines {
    right: inherit;
    left: 157px;
    align-items: unset;
    top: 34px;
}

.dropdown-input-pair .dropdown-input-pair__selector--closed {
    height: 60px;
    width: 142px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-input-pair__two-line-input div {
    align-items: flex-start;
}

.dropdown-input-pair__two-line-input input {
    padding-top: 14px;
}

.dropdown-search-list__search-list-open {
    margin: 24px;
    box-shadow: none;
    border-radius: 6px;
    min-height: 297px;
    width: 100%;
}

.dropdown-search-list__token-container {
    margin: 0;
    min-height: auto;
    border: 1px solid #d6d9dc;
    box-sizing: border-box;
    box-shadow: none;
    border-radius: 6px;
    width: 100%;
}

.dropdown-search-list--open {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
    border: 1px solid #d6d9dc;
}

.dropdown-search-list__close-area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.dropdown-search-list__selector-closed-container {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    max-height: 60px;
    transition: 200ms ease-in-out;
    border-radius: 6px;
    box-shadow: none;
    border: 1px solid #d6d9dc;
    height: 60px;
}

.dropdown-search-list__selector-closed-container:hover {
    background: #f2f3f4;
}

.dropdown-search-list__caret {
    position: absolute;
    right: 16px;
    color: #bbc0c5;
}

.dropdown-search-list__selector-closed {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 16px 12px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    align-items: center;
    flex: 1;
    height: 60px;
}

.dropdown-search-list__selector-closed i {
    font-size: 1.2em;
}

.dropdown-search-list__selector-closed .dropdown-search-list__item-labels {
    width: 56%;
}

.dropdown-search-list__selector-closed-icon {
    width: 34px;
    height: 34px;
}

.dropdown-search-list__closed-primary-label {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-search-list__search-list--open {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
    border: 1px solid #d6d9dc;
}

.dropdown-search-list__default-dropdown-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #bbc0c5;
    flex: 0 1 auto;
}

.dropdown-search-list__labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex: 1;
}

.dropdown-search-list__item-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
}

.dropdown-search-list__select-default {
    color: #bbc0c5;
}

.dropdown-search-list__placeholder {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    padding: 16px;
    color: #6a737d;
    min-height: 300px;
    position: relative;
    z-index: 1002;
    background: white;
    border-radius: 6px;
    min-height: 194px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-search-list__placeholder .searchable-item-list__item--add-token {
    padding: 8px 0;
}

.dropdown-search-list__loading-item {
    transition: 200ms ease-in-out;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    box-sizing: border-box;
    cursor: pointer;
    border-top: 1px solid #d6d9dc;
    position: relative;
    z-index: 1;
    background: #fff;
}

.dropdown-search-list__loading-item-text-container {
    margin-left: 4px;
}

.dropdown-search-list__loading-item-text {
    font-weight: bold;
}

.exchange-rate-display {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #24292e;
    width: 100%;
    flex-wrap: wrap;
}

.exchange-rate-display span {
    margin-right: 4px;
}

.exchange-rate-display__bold {
    font-weight: bold;
}

.exchange-rate-display__switch-arrows {
    cursor: pointer;
}

.exchange-rate-display__switch-arrows>svg {
    margin-top: 4px;
}

.exchange-rate-display__switch-arrows-rotate {
    -webkit-animation-name: rotate-toggle;
    -webkit-animation-duration: 1s;
    transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

@-webkit-keyframes rotate-toggle {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
    }
}

.exchange-rate-display--white {
    color: #fff;
}

.fee-card {
    width: 100%;
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.fee-card__savings-and-quotes-header {
    display: flex;
    position: relative;
    align-items: center;
}

.fee-card__savings-and-quotes-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    left: 58px;
    height: 39px;
    background: #eaf6ff;
    border: 1px solid #037dd6;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
}

.fee-card__savings-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    color: #037dd6;
}

.fee-card__quote-link-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.fee-card__quote-link-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
}

.fee-card__caret-right {
    color: #037dd6;
    width: 6px;
    height: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 6px;
}

.fee-card__caret-right i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fee-card__main {
    border: 1px solid #037dd6;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 100%;
    max-width: 311px;
    padding: 16px 16px 12px 16px;
}

.fee-card__row-header {
    display: flex;
    align-items: center;
    margin-top: 8px;
    justify-content: space-between;
}

.fee-card__row-header:first-of-type {
    margin-top: 0;
}

.fee-card__row-header div {
    display: flex;
    align-items: center;
}

.fee-card__row-header-text,
.fee-card__row-header-text--bold {
    margin-right: 4px;
    cursor: pointer;
}

.fee-card__row-header-text--bold {
    color: #24292e;
}

.fee-card__row,
.fee-card__top-bordered-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.fee-card__top-bordered-row {
    border-top: 1px solid #bbc0c5;
    padding-top: 10px;
}

.fee-card__row-label {
    display: flex;
    align-items: center;
}

.fee-card__row-label img {
    height: 10px;
    width: 10px;
    cursor: pointer;
}

.fee-card__info-tooltip-container {
    height: 10px;
    width: 10px;
    justify-content: center;
}

.fee-card__info-tooltip-container div {
    display: flex !important;
    height: 10px;
}

.fee-card__info-tooltip-paragraph {
    margin-bottom: 8px;
}

.fee-card__info-tooltip-paragraph:last-of-type {
    margin-bottom: 0;
}

.fee-card__row-fee {
    margin-right: 4px;
}

.fee-card__link,
.fee-card__link:hover {
    color: #037dd6;
    cursor: pointer;
}

.fee-card__edit-link {
    color: #037dd6;
    cursor: pointer;
    padding-left: 6px;
}

.fee-card__total-box {
    border-top: 1px solid #d6d9dc;
    padding: 12px 16px 16px 16px;
}

.fee-card__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.fee-card__total-secondary {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
    color: #6a737d;
    margin-top: 4px;
}

.fee-card__row-header-secondary,
.fee-card__row-header-secondary--bold {
    color: #6a737d;
}

.fee-card__row-header-secondary,
.fee-card__row-header-secondary--bold {
    margin-right: 12px;
}

.fee-card__row-header-primary {
    color: #6a737d;
}

.fee-card__row-header-primary--bold {
    color: #24292e;
}

.fee-card__row-header-text--bold,
.fee-card__row-header-secondary--bold,
.fee-card__row-header-primary--bold {
    font-weight: bold;
}

.fee-card__bold {
    font-weight: bold;
}

.fee-card__tilde {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    margin-right: -3.5px;
}

.info-tooltip>div {
    display: flex;
    align-items: center;
    margin-right: 4px;
}

.loading-swaps-quotes {
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.loading-swaps-quotes__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 445px;
}

.loading-swaps-quotes__quote-counter {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    margin-top: 3px;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 4px;
}

.loading-swaps-quotes__quote-name-check {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    color: #24292e;
    display: flex;
    justify-content: center;
    width: 100%;
    text-transform: capitalize;
}

.loading-swaps-quotes__background-1,
.loading-swaps-quotes__background-2 {
    width: 265.18px;
    height: 221.02px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    -webkit-animation: spin 38s linear infinite;
    animation: spin 38s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loading-swaps-quotes__background-2 {
    width: 182.8px;
    height: 195.39px;
    -webkit-animation: spin 42s linear infinite;
    animation: spin 42s linear infinite;
}

.loading-swaps-quotes__mascot-container {
    position: absolute;
}

.loading-swaps-quotes__animation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60%;
    width: 316px;
}

.loading-swaps-quotes__logo {
    position: fixed;
}

.loading-swaps-quotes__logo--transition {
    transition: opacity 0.4s linear;
}

.loading-swaps-quotes__logo div {
    height: 40px;
    width: 94px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #24292e;
}

.loading-swaps-quotes__logo img {
    width: 74px;
    height: 30px;
}

.loading-swaps-quotes__logo span {
    color: #fff;
}

.loading-swaps-quotes__loading-bar-container {
    width: 248px;
    height: 3px;
    background: #d6d9dc;
    display: flex;
    margin-top: 16px;
}

.loading-swaps-quotes__loading-bar {
    height: 3px;
    background: #037dd6;
    transition: width 0.5s linear;
}

.main-quote-summary {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-height: 196px;
    min-height: 196px;
    width: 100%;
    color: #24292e;
}

.main-quote-summary__source-row,
.main-quote-summary__destination-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.main-quote-summary__source-row {
    align-items: center;
}

.main-quote-summary__source-row-value,
.main-quote-summary__source-row-symbol {
    max-width: calc(50% - 13px);
}

.main-quote-summary__source-row-value {
    margin-right: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.main-quote-summary__source-row-symbol {
    margin-left: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.main-quote-summary__destination-row {
    margin-top: 6px;
}

.main-quote-summary__destination-row-symbol {
    margin-left: 5px;
    color: #24292e;
}

.main-quote-summary__icon,
.main-quote-summary__icon-fallback {
    height: 16px;
    width: 16px;
}

.main-quote-summary__icon-fallback {
    padding-top: 0;
    font-size: 12px;
    line-height: 16px;
}

.main-quote-summary__down-arrow {
    margin-top: 5px;
}

.main-quote-summary__details {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 310px;
    position: relative;
}

.main-quote-summary__quote-details-top {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-quote-summary__quote-large {
    display: flex;
    align-items: flex-start;
    margin-top: 8px;
    height: 50px;
}

.main-quote-summary__quote-large-number {
    font-size: 60px;
    line-height: 48px;
}

.main-quote-summary__quote-large-white {
    font-size: 40px;
    text-overflow: ellipsis;
    width: 295px;
    overflow: hidden;
    white-space: nowrap;
}

.main-quote-summary__exchange-rate-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 287px;
    margin-top: 14px;
}

.main-quote-summary__exchange-rate-display {
    color: #6a737d;
}

.searchable-item-list {
    background: #fff;
    width: 100%;
    position: relative;
}

.searchable-item-list__search>div {
    border: none;
    border-bottom: 1px solid #d6d9dc;
    border-radius: 0;
    height: 55px;
    font-size: 12px;
}

.searchable-item-list__search>div input {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
    line-height: 100%;
}

.searchable-item-list__search>div input::-webkit-input-placeholder {
    color: #6a737d;
    opacity: 1;
}

.searchable-item-list__search>div input:-moz-placeholder {
    color: #6a737d;
    opacity: 1;
}

.searchable-item-list__search>div input::-moz-placeholder {
    color: #6a737d;
    opacity: 1;
}

.searchable-item-list__search>div input::-ms-input-placeholder {
    color: #6a737d;
    opacity: 1;
}

.searchable-item-list__search>div input::placeholder {
    color: #6a737d;
    opacity: 1;
}

.searchable-item-list__list-container {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.searchable-item-list__item {
    transition: 200ms ease-in-out;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 8px 12px;
    box-sizing: border-box;
    cursor: pointer;
    border-top: 1px solid #d6d9dc;
    position: relative;
    min-height: 50px;
}

.searchable-item-list__item:first-of-type {
    border-top: none;
}

.searchable-item-list__item:last-of-type {
    border-bottom: none;
}

.searchable-item-list__item:hover,
.searchable-item-list__item:focus {
    background: #f2f3f4;
}

.searchable-item-list__item--selected {
    border: 1px solid #7ac9fd !important;
}

.searchable-item-list__item--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.searchable-item-list__item--add-token {
    min-height: auto;
    opacity: 1;
    pointer-events: none;
}

.searchable-item-list__item--add-token:hover {
    background: none;
}

.searchable-item-list__item--add-token .actionable-message {
    margin: 0;
}

.searchable-item-list__item--add-token .actionable-message__message {
    text-align: left;
    color: #24292e;
}

.searchable-item-list__item--add-token .actionable-message a {
    pointer-events: auto;
    color: #037dd6;
    cursor: pointer;
}

.searchable-item-list__item .btn-primary {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: auto;
    padding: 7px 11px;
}

.searchable-item-list__item>img {
    margin-top: -2px;
}

.searchable-item-list__primary-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 0;
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    font-weight: bold;
    padding-top: 4px;
    padding-bottom: 3px;
}

.searchable-item-list__item-name {
    /*rtl:ignore*/
    direction: ltr;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.searchable-item-list__labels {
    display: flex;
    justify-content: space-between;
    max-width: 237px;
    flex: 1;
    -moz-animation: fadein 1s;
    -webkit-animation: fadein 1s;
    -o-animation: fadein 1s;
}

.searchable-item-list__item-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 12px;
}

.searchable-item-list__right-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    max-width: 100%;
    flex: 1 1 auto;
}

.searchable-item-list__secondary-label,
.searchable-item-list__right-primary-label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    color: #6a737d;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-bottom: 4px;
}

.searchable-item-list__right-primary-label {
    margin-top: 3px;
}

.searchable-item-list__right-secondary-label {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    color: #6a737d;
    opacity: 0.5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.searchable-item-list__list-container {
    z-index: 1002;
    background: white;
}

.searchable-item-list__search {
    z-index: 1001;
}

.searchable-item-list__item--highlighted {
    background: #f2f3f4;
}

.searchable-item-list__identicon {
    margin-top: -2px;
}

.quote-details {
    display: flex;
    flex-flow: column;
    padding-left: 16px;
    padding-right: 16px;
}

.quote-details__detail-header {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #848c96;
    margin-bottom: 2px;
    display: flex;
}

.quote-details__detail-content {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
}

.quote-details__detail-content>div {
    justify-content: flex-start;
}

.quote-details__conversion-rate {
    color: #24292e;
    justify-content: flex-start;
    align-items: center;
    height: inherit;
}

.quote-details__conversion-rate .view-quote__conversion-rate-eth-label {
    color: #24292e;
}

.quote-details__conversion-rate i {
    color: #037dd6;
}

.quote-details__conversion-rate * {
    margin-right: 4px;
}

.quote-details .view-quote__view-other-button {
    margin-top: 20px;
}

.quote-details__popover-wrap .popover-content {
    margin-left: 24px;
}

.quote-details__light-grey {
    color: #bbc0c5;
}

.quote-details__row {
    height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    border-top: 1px solid #d6d9dc;
}

.quote-details__row--high {
    min-height: 60px;
    height: inherit;
}

.quote-details .view-quote__conversion-rate-token-label {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #24292e;
    font-weight: bold;
    margin-left: 2px;
}

.quote-details__metafox-logo {
    width: 17px;
    margin-right: 4px;
}

.quote-details .info-tooltip {
    margin-left: 2px;
}

.quote-details--high {
    min-height: 60px;
    height: inherit;
}

.quote-details__font-small {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
}

.quote-details__bold {
    font-weight: bold;
}

.select-quote-popover__button {
    border-radius: 100px;
    height: 39px;
    width: 140px;
}

.select-quote-popover__popover-wrap {
    height: 100%;
}

@media screen and (min-width: 576px) {
    .select-quote-popover__popover-wrap {
        height: 620px;
        width: 348px;
    }
}

.select-quote-popover__popover-wrap .popover-content {
    height: 100%;
    padding-left: 8px;
    padding-right: 8px;
}

.select-quote-popover__popover-wrap .swaps__footer {
    padding: 16px 24px;
}

.select-quote-popover__popover-bg {
    height: 100%;
    width: 100%;
    background: #d6d9dc;
    opacity: 1;
}

@media screen and (min-width: 576px) {
    .select-quote-popover__popover-bg {
        opacity: 0.5;
    }
}

.select-quote-popover__sort-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.select-quote-popover__column-headers,
.select-quote-popover__row {
    display: flex;
    align-items: center;
    padding-left: 20px;
    width: 100%;
}

.select-quote-popover__column-headers>*+*,
.select-quote-popover__row>*+* {
    margin-left: 8px;
}

.select-quote-popover__column-headers {
    font-size: 0.625rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    color: #24292e;
    height: 43px;
    margin-bottom: 4px;
}

.select-quote-popover__column-header {
    cursor: pointer;
    font-size: 12px;
}

.select-quote-popover__row {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    cursor: pointer;
    color: #000;
    height: 49px;
    border-bottom: 1px solid #d6d9dc;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #f2f3f4;
    padding-right: 12px;
    border: none;
}

.select-quote-popover__row:hover {
    border: 1px solid #037dd6;
    width: 101%;
    padding-right: 11px;
    padding-left: 19.5px;
}

.select-quote-popover__row--no-hover:hover {
    border: 1px solid #d6d9dc;
    width: 100%;
    padding-right: 12px;
    padding-left: 20px;
}

.select-quote-popover__row--selected {
    color: #fff;
    background: linear-gradient(90deg, #037dd6 0%, #1098fc 101.32%);
    box-shadow: 0 10px 39px rgba(3, 125, 214, 0.15);
    border-radius: 8px;
    border-bottom: none;
    border-top: none;
    height: 64px;
}

.select-quote-popover__row--selected:hover {
    background: linear-gradient(90deg, #037dd6 0%, #1098fc 101.32%);
    width: 100%;
    padding-left: 20px;
    padding-right: 12px;
    border: none;
}

.select-quote-popover__row--selected .select-quote-popover__caret-right {
    color: #fff;
}

.select-quote-popover__row--selected .select-quote-popover__caret-right:hover {
    color: #6a737d;
}

.select-quote-popover__row--selected .select-quote-popover__zero-slippage {
    color: #fff;
}

.select-quote-popover__receiving {
    display: flex;
    flex-direction: column;
    width: 88px;
}

.select-quote-popover__network-fees {
    width: 99px;
}

.select-quote-popover__quote-source {
    width: 28px;
    display: flex;
    align-items: flex-end;
    margin-right: 3px;
}

.select-quote-popover__caret-right {
    color: #6a737d;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-quote-popover__caret-right i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.select-quote-popover__caret-right:hover {
    border-radius: 8px;
    background: white;
    border: 1px solid #037dd6;
}

.select-quote-popover__receiving-value {
    display: flex;
    align-items: center;
}

.select-quote-popover__receiving-value svg {
    margin-right: 2px;
}

.select-quote-popover__receiving-value-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-quote-popover__zero-slippage {
    font-size: 12px;
    line-height: 100%;
    color: #6a737d;
    font-weight: normal;
}

.select-quote-popover__quote-source-toggle {
    margin-left: 2px;
    height: 12px;
}

.select-quote-popover__network-fees-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.select-quote-popover__network-fees-header>span {
    width: 77px;
}

.select-quote-popover__network-fees-header>div {
    height: 12px;
}

.select-quote-popover__network-fees-header>svg {
    margin-bottom: 2px;
}

.select-quote-popover__receiving-symbol {
    color: #6a737d;
}

.select-quote-popover__receiving-symbol>div {
    width: 12px;
    height: 12px;
}

.select-quote-popover__receiving-label {
    display: flex;
    align-items: center;
}

.select-quote-popover__receiving-label img {
    height: 10px;
    width: 10px;
    margin-top: 2px;
}

.select-quote-popover__receiving-label>div {
    margin-left: 3px;
}

.select-quote-popover__quote-source-label {
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 5px;
    padding: 4px;
    font-size: 10px;
    font-weight: bold;
    padding-bottom: 2px;
}

.select-quote-popover__quote-source-label--blue {
    background: #43aefc;
}

.select-quote-popover__quote-source-label--orange {
    background: #f8883b;
}

.select-quote-popover__quote-source-label--green {
    background: #28a745;
}

.slippage-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.slippage-buttons__header {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    background: unset;
    margin-bottom: 8px;
}

.slippage-buttons__header-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-right: 6px;
    font-weight: 900;
}

.slippage-buttons__content {
    padding-left: 10px;
}

.slippage-buttons__dropdown-content {
    display: flex;
    align-items: center;
}

.slippage-buttons__buttons-prefix {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.slippage-buttons__prefix-text {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-right: 4px;
    color: black;
    font-weight: 900;
}

.slippage-buttons__error-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #d73a49;
    margin-top: 8px;
}

.slippage-buttons__button-group .slippage-buttons__button-group-custom-button {
    cursor: text;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 72px;
    margin-right: 0;
}

.slippage-buttons__custom-input {
    display: flex;
    justify-content: center;
}

.slippage-buttons__custom-input input {
    border: none;
    width: 64px;
    text-align: center;
    background: #037dd6;
    color: white;
    font-weight: inherit;
}

.slippage-buttons__custom-input input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: white;
}

.slippage-buttons__custom-input input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: white;
    opacity: 1;
}

.slippage-buttons__custom-input input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: white;
    opacity: 1;
}

.slippage-buttons__custom-input input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: white;
}

.slippage-buttons__custom-input input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: white;
}

.slippage-buttons__custom-input input::placeholder {
    /* Most modern browsers support this now. */
    color: white;
}

.slippage-buttons__custom-input input::-webkit-outer-spin-button,
.slippage-buttons__custom-input input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.slippage-buttons__custom-input input[type=number] {
    -moz-appearance: textfield;
}

.slippage-buttons__custom-input--danger input {
    background: #d73a49;
}

.slippage-buttons__percentage-suffix {
    position: absolute;
    right: 5px;
}

.swaps-footer {
    width: 100%;
}

.swaps-footer--warning .btn-primary {
    background: #d73a49;
    border-color: #d73a49;
}

@media screen and (max-width: 576px) {
    .swaps-footer--border .swaps-footer__custom-page-container-footer-class {
        border-top: 1px solid #d2d8dd;
    }
}

.swaps-footer__custom-page-container-footer-class {
    border-top: none;
}

@media screen and (min-width: 576px) {
    .swaps-footer__custom-page-container-footer-class {
        height: 96px;
    }
}

.swaps-footer__custom-page-container-footer-button-class {
    border-radius: 100px;
    height: 39px;
    width: 140px;
}

.swaps-footer__custom-page-container-footer-button-class--single {
    width: 307px;
}

.swaps-footer__bottom-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    margin-bottom: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 576px) {
    .swaps-footer__bottom-text {
        margin-top: 0;
    }
}

@media screen and (max-width: 576px) {
    .swaps-footer__buttons--border .swaps-footer__custom-page-container-footer-class {
        border-top: 1px solid #d2d8dd;
    }
}

.view-quote {
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.view-quote__content {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: space-between;
}

.view-quote__content_modal>div:not(.view-quote__warning-wrapper) {
    opacity: 0.6;
    pointer-events: none;
}

@media screen and (max-width: 576px) {
    .view-quote__content {
        overflow-y: auto;
        max-height: 420px;
    }
}

@media screen and (min-width: 576px) {
    .view-quote {
        width: 348px;
    }
}

.view-quote__new-quote-countdown {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
}

.view-quote__new-quote-countdown--danger span {
    color: #d73a49;
}

.view-quote__view-other-button-container {
    border-radius: 28px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
}

.view-quote__view-other-button,
.view-quote__view-other-button-fade {
    display: flex;
    align-items: center;
    position: absolute;
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 28px;
    padding: 5px 18px;
    background: linear-gradient(90deg, #037dd6 0%, #1098fc 101.32%);
}

@media screen and (min-width: 576px) {
    .view-quote__view-other-button,
    .view-quote__view-other-button-fade {
        font-size: 0.875rem;
        font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
        line-height: 140%;
        font-style: normal;
        font-weight: normal;
        margin-bottom: 0;
    }
}

.view-quote__view-other-button .fa-arrow-right,
.view-quote__view-other-button-fade .fa-arrow-right {
    margin-left: 4px;
    font-size: 10px;
    margin-top: 2px;
}

.view-quote__view-other-button-fade {
    background: #0372c3;
    opacity: 0;
    transition: opacity ease-in-out 1s;
}

.view-quote__view-other-button-fade:hover {
    opacity: 1;
}

.view-quote__price-difference-warning-wrapper {
    width: 100%;
}

.view-quote__price-difference-warning-wrapper.low .actionable-message .actionable-message__message,
.view-quote__price-difference-warning-wrapper.medium .actionable-message .actionable-message__message,
.view-quote__price-difference-warning-wrapper.high .actionable-message .actionable-message__message {
    color: inherit;
}

.view-quote__price-difference-warning-wrapper.low .actionable-message button,
.view-quote__price-difference-warning-wrapper.medium .actionable-message button,
.view-quote__price-difference-warning-wrapper.high .actionable-message button {
    font-size: 0.625rem;
    padding: 4px 12px;
    border-radius: 42px;
}

.view-quote__price-difference-warning-wrapper.low .actionable-message button {
    background: #037dd6;
    color: #fff;
}

.view-quote__price-difference-warning-wrapper.medium .actionable-message {
    border-color: #ffd33d;
    background: #fefcde;
}

.view-quote__price-difference-warning-wrapper.medium .actionable-message button {
    background: #ffd33d;
}

.view-quote__price-difference-warning-wrapper.high .actionable-message {
    border-color: #e88f97;
    background: #fcf2f3;
}

.view-quote__price-difference-warning-wrapper.high .actionable-message button {
    background: #d73a49;
    color: #fff;
}

.view-quote__price-difference-warning-contents {
    display: flex;
    text-align: left;
}

.view-quote__price-difference-warning-contents-title {
    font-weight: bold;
}

.view-quote__price-difference-warning-contents-actions {
    text-align: end;
    padding-top: 10px;
}

.view-quote__price-difference-warning-contents i {
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
}

.view-quote__warning-wrapper {
    width: 100%;
    align-items: center;
    justify-content: center;
    max-width: 340px;
    margin-top: 8px;
    margin-bottom: 28px;
}

@media screen and (min-width: 576px) {
    .view-quote__warning-wrapper {
        display: flex;
    }
    .view-quote__warning-wrapper--thin {
        min-height: 36px;
    }
}

.view-quote__bold {
    font-weight: bold;
}

.view-quote__countdown-timer-container {
    width: 152px;
    min-height: 32px;
    display: flex;
    justify-content: center;
    border-radius: 42px;
    background: #f2f3f4;
    margin-top: 8px;
}

.view-quote__fee-card-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 311px;
    margin-bottom: 8px;
}

@media screen and (min-width: 576px) {
    .view-quote__fee-card-container {
        margin-bottom: 0;
    }
}

.view-quote__metamask-rate {
    display: flex;
}

.view-quote__metamask-rate-text {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #6a737d;
}

.view-quote__metamask-rate-info-icon {
    margin-left: 4px;
}

.view-quote__thin-swaps-footer {
    max-height: 82px;
}

@media screen and (min-width: 576px) {
    .view-quote__thin-swaps-footer {
        height: 72px;
    }
}

.import-token {
    flex-direction: column;
}

.import-token .actionable-message {
    margin-top: 0;
}

.import-token .actionable-message--danger {
    border-color: #e88f97;
    background: #fcf2f3;
}

.import-token .actionable-message__message {
    color: #24292e;
    text-align: left;
}

.import-token__contract-address {
    border-radius: 8px;
    background-color: #f2f3f4;
    padding: 5px 10px;
}

.import-token__token-icon {
    font-size: 2rem;
    margin-top: 24px;
    width: 69px;
    height: 69px;
}

.swaps {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .swaps {
        z-index: 12;
    }
}

.swaps__container {
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

@media screen and (min-width: 576px) {
    .swaps__container {
        width: 460px;
        background: white;
        border: 1px solid #d6d9dc;
        box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        height: 620px;
    }
}

.swaps__content {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 576px) {
    .swaps__content--overflow {
        overflow: scroll;
    }
}

@media screen and (min-width: 576px) {
    .swaps__content {
        width: 348px;
    }
}

.swaps__title {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    font-weight: bold;
    color: #24292e;
    margin-top: -5px;
}

.swaps__header {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 16px;
    background: #f2f3f4;
    width: 100%;
    position: relative;
}

@media screen and (min-width: 576px) {
    .swaps__header {
        padding-top: 8px;
        padding-bottom: 8px;
        height: 66px;
    }
}

.swaps__header-cancel {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
    position: absolute;
    right: 24px;
}

.unlock-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 357px;
    padding: 30px;
    font-weight: 400;
    color: #aeaeae;
}

.unlock-page__container {
    background: #fff;
    display: flex;
    align-self: stretch;
    justify-content: center;
    flex: 1 0 auto;
}

.unlock-page__mascot-container {
    margin-top: 24px;
}

.unlock-page__title {
    font-size: 2rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 5px;
    font-weight: 800;
    color: #4d4d4d;
}

.unlock-page__form {
    width: 100%;
    margin: 56px 0 8px;
}

.unlock-page__links {
    margin-top: 15px;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
}

.unlock-page__links button {
    font-weight: bold;
}

.unlock-page__link {
    cursor: pointer;
    background-color: unset;
    color: #037dd6;
    font-size: unset;
}

.unlock-page__support {
    margin-top: 25px;
    font-size: 0.75rem;
}

.unlock-page__support a {
    color: #037dd6;
}

/*
  ITCSS

  http://www.creativebloq.com/web-design/manage-large-css-projects-itcss-101517528
  https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture/

  DEPRECATED: This CSS architecture is deprecated. The following imports will be removed
  overtime.
 */

.add-to-address-book-modal__footer,
.new-account-modal__footer,
.send__select-recipient-wrapper__list__link,
.send__select-recipient-wrapper__group-item,
.send__select-recipient-wrapper__group-item--selected,
.ens-input,
.ens-input__wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.add-to-address-book-modal__content,
.new-account-modal__content,
.send__select-recipient-wrapper,
.send__select-recipient-wrapper__recent-group-wrapper,
.send__select-recipient-wrapper__group,
.send__select-recipient-wrapper__group-item__content,
.send__select-recipient-wrapper__group-item--selected__content,
.ens-input__wrapper--valid .ens-input__wrapper__input {
    display: flex;
    flex-flow: column nowrap;
}

.send__select-recipient-wrapper__list__back-caret,
.ens-input__wrapper__status-icon,
.ens-input__wrapper__action-icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ens-input__selected-input__title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*
  Utility Classes
 */

/* lib */

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.pointer {
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    transition: -webkit-transform 50ms ease-in-out;
    transition: transform 50ms ease-in-out;
    transition: transform 50ms ease-in-out, -webkit-transform 50ms ease-in-out;
}

.cursor-pointer:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.cursor-pointer:active {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

.drop-menu-item {
    display: flex;
    align-items: center;
}

.critical-error {
    text-align: center;
    margin-top: 20px;
    color: #f00;
}

.network-component--disabled {
    cursor: not-allowed;
}

.network-component--disabled .fa-caret-down {
    opacity: 0;
}

.network-component.pointer {
    border: 1px solid #bbc0c5;
    border-radius: 82px;
    padding: 6px 3px;
    flex: 0 0 auto;
    display: flex;
}

.network-component.pointer.ethereum-network .menu-icon-circle div {
    background-color: rgba(3, 135, 137, 0.7) !important;
}

.network-component.pointer.ropsten-test-network .menu-icon-circle div {
    background-color: rgba(233, 21, 80, 0.7) !important;
}

.network-component.pointer.kovan-test-network .menu-icon-circle div {
    background-color: rgba(105, 4, 150, 0.7) !important;
}

.network-component.pointer.rinkeby-test-network .menu-icon-circle div {
    background-color: rgba(235, 179, 63, 0.7) !important;
}

.network-component.pointer.goerli-test-network .menu-icon-circle div {
    background-color: rgba(48, 153, 242, 0.7) !important;
}

.dropdown-menu-item .menu-icon-circle,
.dropdown-menu-item .menu-icon-circle--active {
    margin: 0 14px;
}

.dropdown-menu-item .fa.delete {
    margin-right: 10px;
    display: none;
}

.dropdown-menu-item:hover .fa.delete {
    display: inherit;
}

.network-droppo {
    right: 2px;
}

.network-droppo .color-indicator {
    margin: 0 14px;
}

@media screen and (min-width: 576px) {
    .network-droppo {
        right: calc(((100% - 85vw) / 2) + 2px);
    }
}

@media screen and (min-width: 769px) {
    .network-droppo {
        right: calc(((100% - 80vw) / 2) + 2px);
    }
}

@media screen and (min-width: 1281px) {
    .network-droppo {
        right: calc(((100% - 65vw) / 2) + 2px);
    }
}

.network-name-item {
    flex: 1;
    color: #9b9b9b;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.network-check,
.network-check__transparent {
    color: #fff;
    margin-left: 7px;
}

.network-check__transparent {
    opacity: 0;
    width: 16px;
    margin: 0;
}

.menu-icon-circle,
.menu-icon-circle--active {
    background: none;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    margin: 0 4px;
}

.menu-icon-circle--active {
    border: 1px solid #fff;
    background: rgba(100, 100, 100, 0.4);
}

.menu-icon-circle div,
.menu-icon-circle--active div {
    height: 12px;
    width: 12px;
    border-radius: 17px;
}

.menu-icon-circle--active div {
    opacity: 1;
}

.network-dropdown-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.network-dropdown-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
    background-color: #5d5d5d;
}

.network-dropdown-title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 25px;
    width: 120px;
    color: #fff;
    text-align: center;
}

.network-dropdown-content {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    min-height: 36px;
    width: 265px;
    color: #9b9b9b;
}

.network-caret {
    margin: 0 8px;
}

.network-loading-spinner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
    height: 16px;
    width: 16px;
    margin-left: 5px;
}

.network-loading-spinner img {
    height: 26px;
    position: absolute;
    top: -5px;
    left: -6px;
}

/*
  NewUI Container Elements
 */

.app {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    position: relative;
    align-items: center;
}

.app.os-mac.browser-chrome::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    background-color: #f2f3f4;
    -webkit-animation: emptySpinningDiv 1s infinite linear;
    animation: emptySpinningDiv 1s infinite linear;
}

@-webkit-keyframes emptySpinningDiv {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes emptySpinningDiv {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.main-container {
    z-index: 18;
}

.main-container::-webkit-scrollbar {
    display: none;
}

.main-container-wrapper {
    display: flex;
    justify-content: center;
    flex: 1 0 auto;
    min-height: 0;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .lap-visible {
        display: flex;
    }
    .phone-visible {
        display: none;
    }
    .main-container {
        width: 85vw;
        margin-bottom: 10vh;
        min-height: 90vh;
        box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
    }
}

@media screen and (min-width: 769px) {
    .main-container {
        width: 80vw;
        min-height: 82vh;
        box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
    }
}

@media screen and (min-width: 1281px) {
    .main-container {
        width: 62vw;
        min-height: 82vh;
        box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
    }
}

@media screen and (max-width: 575px) {
    .lap-visible {
        display: none;
    }
    .phone-visible {
        display: flex;
    }
    .main-container {
        width: 100%;
        overflow-y: auto;
        background-color: #fff;
    }
    .main-container-wrapper {
        flex: 1;
    }
}

.fiat-amount {
    text-transform: uppercase;
}

.token-balance__amount {
    padding: 0 6px;
}

.first-view-main {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

@media screen and (max-width: 575px) {
    .first-view-main {
        height: 100%;
    }
}

@media screen and (min-width: 576px) {
    .first-view-main {
        width: 85vw;
    }
}

@media screen and (min-width: 769px) {
    .first-view-main {
        width: 80vw;
    }
}

@media screen and (min-width: 1281px) {
    .first-view-main {
        width: 62vw;
    }
}

.unlock-screen-container {
    z-index: 18;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 auto;
    background: #f7f7f7;
    width: 100%;
}

.unlock-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 auto;
}

.first-view-main-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 0 10px;
    background: white;
}

.send-screen-wrapper {
    display: flex;
    flex-flow: column nowrap;
    z-index: 25;
}

@media screen and (max-width: 575px) {
    .send-screen-wrapper {
        width: 100%;
        overflow-y: auto;
    }
}

.send-screen-wrapper section {
    flex: 0 0 auto;
}

.send-screen-card {
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 46px 40.5px 26px;
    position: relative;
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    width: 498px;
    flex: 1 0 auto;
}

@media screen and (max-width: 575px) {
    .send-screen-card {
        top: 0;
        width: 100%;
        box-shadow: none;
        padding: 12px;
    }
}

/* Send Screen */

.send-screen section {
    margin: 4px 16px;
}

.send-screen input {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
}

.send-eth-icon {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    border: 1px solid #dedede;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -35px;
    z-index: 25;
    padding: 4px;
    background-color: #fff;
}

@media screen and (max-width: 575px) {
    .send-eth-icon {
        position: relative;
        top: 0;
    }
}

.send-screen-input-wrapper {
    width: 95%;
    position: relative;
}

.send-screen-input-wrapper .fa-bolt {
    padding-right: 4px;
}

.send-screen-input-wrapper .large-input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    border: 1px solid #9b9b9b;
    border-radius: 4px;
    margin: 4px 0 20px;
}

.send-screen-input-wrapper .send-screen-gas-input {
    border: 1px solid transparent;
}

.send-screen-input-wrapper__error-message {
    display: none;
}

.send-screen-input-wrapper--error input,
.send-screen-input-wrapper--error .send-screen-gas-input {
    border-color: #f00 !important;
}

.send-screen-input-wrapper--error .send-screen-input-wrapper__error-message {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: block;
    position: absolute;
    bottom: 4px;
    left: 8px;
    color: #f00;
}

.send-screen-input-wrapper .send-screen-input-wrapper__error-message {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: block;
    position: absolute;
    bottom: 4px;
    left: 8px;
    color: #f00;
}

.send-screen-input {
    width: 100%;
}

.send-screen-gas-input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    height: 41px;
    border-radius: 3px;
    background-color: #f3f3f3;
    border-width: 0;
    border-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 12px;
    color: #5d5d5d;
}

.send-screen-amount-labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.send-screen-gas-labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.currency-toggle__item {
    color: #037dd6;
    cursor: pointer;
}

.currency-toggle__item--selected {
    color: #000;
    cursor: default;
}

.send-screen-gas-input-customize {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #037dd6;
    cursor: pointer;
}

.gas-tooltip-close-area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.customize-gas-tooltip-container {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    bottom: 50px;
    width: 237px;
    height: 307px;
    background-color: #fff;
    opacity: 1;
    box-shadow: #dedede 0 0 5px;
    z-index: 1050;
    padding: 13px 19px;
    border-radius: 4px;
    font-weight: 500;
}

.gas-tooltip-arrow {
    height: 25px;
    width: 25px;
    z-index: 1200;
    background: #fff;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 107px;
    top: 294px;
    box-shadow: 2px 2px 2px #dedede;
}

.customize-gas-tooltip-container input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.customize-gas-tooltip-container input[type=number]:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.customize-gas-tooltip {
    position: relative;
}

.gas-tooltip {
    display: flex;
    justify-content: center;
}

.gas-tooltip-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #4d4d4d;
}

.gas-tooltip-header {
    padding-bottom: 12px;
}

.gas-tooltip-input-label {
    margin-bottom: 5px;
}

.gas-tooltip-input-label i {
    color: #aeaeae;
    margin-left: 6px;
}

.customize-gas-input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 178px;
    height: 28px;
    border: 1px solid #dedede;
    color: #1b344d;
    padding-left: 8px;
}

.customize-gas-input-wrapper {
    position: relative;
}

.gas-tooltip-input-detail {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 4px;
    right: 26px;
    color: #aeaeae;
}

.gas-tooltip-input-arrows {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 0;
    right: 4px;
    width: 17px;
    height: 28px;
    border: 1px solid #dadada;
    border-left: 0;
    display: flex;
    flex-direction: column;
    color: #9b9b9b;
    padding: 1px 4px;
    cursor: pointer;
}

.token-gas__amount {
    display: inline-block;
    margin-right: 4px;
}

.token-gas__symbol {
    display: inline-block;
}

.send-screen__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
}

.send-screen__subtitle {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin: 10px 0 20px;
}

.send-screen__send-button,
.send-screen__cancel-button {
    width: 163px;
    text-align: center;
}

.send-screen__send-button__disabled {
    opacity: 0.5;
    cursor: auto;
}

.send-token {
    display: flex;
    flex-flow: column nowrap;
    z-index: 25;
}

.send-token__content {
    width: 498px;
    height: 605px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 46px 40.5px 26px;
    position: relative;
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    flex: 1 0 auto;
}

@media screen and (max-width: 575px) {
    .send-token__content {
        top: 0;
        width: 100%;
        box-shadow: none;
        padding: 12px;
    }
}

.send-token .identicon {
    position: absolute;
    top: -35px;
    z-index: 25;
}

@media screen and (max-width: 575px) {
    .send-token .identicon {
        position: relative;
        top: 0;
        flex: 0 0 auto;
    }
}

.send-token__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
}

.send-token__description,
.send-token__balance-text,
.send-token__token-symbol {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 10px;
    text-align: center;
}

.send-token__token-balance {
    font-size: 2.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-top: 13px;
}

.send-token__token-balance .token-balance__amount {
    padding-right: 12px;
}

.send-token__button-group {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    flex: 0 0 auto;
}

@media screen and (max-width: 575px) {
    .send-token__button-group {
        margin-top: 24px;
    }
}

.send-token__button-group button {
    width: 163px;
}

.confirm-send-token__hero-amount-wrapper {
    width: 100%;
}

.send-v2__container {
    width: 380px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-flow: column nowrap;
    z-index: 25;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 575px) {
    .send-v2__container {
        width: 100%;
        top: 0;
        box-shadow: none;
        flex: 1 1 auto;
    }
}

.send-v2__send-header-icon-container {
    z-index: 25;
}

@media screen and (max-width: 575px) {
    .send-v2__send-header-icon-container {
        position: relative;
        top: 0;
    }
}

.send-v2__send-header-icon {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid #dedede;
    z-index: 25;
    padding: 4px;
    background-color: #fff;
}

.send-v2__send-arrow-icon {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #f28930;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: -2px;
    left: 0;
}

.send-v2__arrow-background {
    background-color: #fff;
    height: 14px;
    width: 14px;
    position: absolute;
    top: 52px;
    left: 199px;
    border-radius: 50%;
    z-index: 100;
}

@media screen and (max-width: 575px) {
    .send-v2__arrow-background {
        top: 36px;
    }
}

.send-v2__header {
    height: 88px;
    width: 380px;
    background-color: #e9edf0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 575px) {
    .send-v2__header {
        height: 59px;
        width: 100vw;
    }
}

.send-v2__header-tip {
    height: 25px;
    width: 25px;
    background: #e9edf0;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 178px;
    top: 75px;
}

@media screen and (max-width: 575px) {
    .send-v2__header-tip {
        top: 46px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

.send-v2__title {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    text-align: center;
    margin-top: 25px;
}

.send-v2__copy {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #808080;
    text-align: center;
    margin-top: 10px;
    width: 287px;
}

.send-v2__error {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    left: 8px;
    color: #f00;
}

.send-v2__error-amount {
    margin-top: 5px;
}

.send-v2__warning {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    left: 8px;
    color: #ffa500;
}

.send-v2__error-border {
    color: #f00;
}

@media screen and (max-width: 575px) {
    .send-v2__form {
        margin: 0;
        flex: 1 1 auto;
    }
}

.send-v2__form-header,
.send-v2__form-header-copy {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.send-v2__form-row {
    margin: 1rem 1rem 0;
    position: relative;
    display: flex;
    flex-flow: row;
    flex: 1 0 auto;
    justify-content: space-between;
    align-items: center;
}

.send-v2__form-field-container {
    display: flex;
    flex-direction: column;
    width: 277px;
}

.send-v2__form-field {
    flex: 1 1 auto;
    min-width: 0;
}

.send-v2__form-field .currency-display {
    color: #4d4d4d;
}

.send-v2__form-field .currency-display__currency-symbol {
    color: #4d4d4d;
}

.send-v2__form-field .currency-display__converted-value,
.send-v2__form-field .currency-display__converted-currency {
    color: #4d4d4d;
}

.send-v2__form-field .account-list-item__account-secondary-balance {
    color: #4d4d4d;
}

.send-v2__form-label {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #5d5d5d;
    width: 95px;
    flex: 0 0 auto;
}

.send-v2__from-dropdown,
.send-v2__asset-dropdown {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 4px;
    background-color: #fff;
    color: #4d4d4d;
    position: relative;
}

.send-v2__from-dropdown__close-area,
.send-v2__asset-dropdown__close-area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.send-v2__from-dropdown__list,
.send-v2__asset-dropdown__list {
    z-index: 1050;
    position: absolute;
    height: 220px;
    width: 100%;
    border: 1px solid #d2d8dd;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.11);
    margin-top: 11px;
    margin-left: -1px;
    overflow-y: scroll;
}

.send-v2__from-dropdown {
    height: 73px;
}

.send-v2__asset-dropdown {
    height: 54px;
    border: none;
    position: relative;
}

.send-v2__asset-dropdown__single-asset {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 8px 8px;
}

.send-v2__asset-dropdown__single-asset:hover {
    background-color: rgba(222, 222, 222, 0.2);
}

.send-v2__asset-dropdown__caret {
    color: #cdcdcd;
    padding: 0 10px;
}

.send-v2__asset-dropdown__asset {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 0 8px;
    cursor: pointer;
}

.send-v2__asset-dropdown__asset:hover {
    background-color: rgba(222, 222, 222, 0.2);
}

.send-v2__asset-dropdown__asset-icon .identicon {
    border: 1px solid #dedede;
}

.send-v2__asset-dropdown__asset-data {
    display: flex;
    flex-flow: column nowrap;
    margin-left: 8px;
    flex-grow: 1;
}

.send-v2__asset-dropdown__symbol {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 2px;
}

.send-v2__asset-dropdown__name {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    flex-flow: row nowrap;
}

.send-v2__asset-dropdown__name__label {
    margin-right: 0.25rem;
}

.send-v2__asset-dropdown__close-area {
    z-index: 2000;
}

.send-v2__asset-dropdown__list {
    z-index: 2050;
    position: absolute;
    height: 220px;
    width: 100%;
    border: 1px solid #d2d8dd;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.11);
    top: 65px;
    left: 0;
    box-sizing: content-box;
    overflow-y: scroll;
    margin-top: 0;
    padding: 4px 0;
}

.send-v2__asset-dropdown__list .send-v2__asset-dropdown__asset {
    padding: 8px;
}

.send-v2__asset-dropdown__input-wrapper {
    border: 1px solid #dedede;
    border-radius: 4px;
    height: 100%;
}

.send-v2__asset-dropdown__input-wrapper--opened {
    position: relative;
    z-index: 2050;
}

.send-v2__asset-dropdown__input-wrapper .send-v2__asset-dropdown__asset {
    height: 100%;
}

.send-v2__asset-dropdown__input-wrapper .send-v2__asset-dropdown__asset:hover {
    background-color: #fff;
}

.send-v2__asset-dropdown__input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    z-index: 1025;
    position: relative;
    height: 54px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #4d4d4d;
    padding: 10px;
}

.send-v2__memo-text-area__input,
.send-v2__hex-data__input {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    z-index: 1025;
    position: relative;
    height: 54px;
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 4px;
    background-color: #fff;
    color: #4d4d4d;
    padding: 10px;
}

.send-v2__amount-max {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    position: relative;
    display: inline-block;
    width: 56px;
    height: 20px;
    margin-top: 5px;
}

.send-v2__amount-max__button {
    width: 56px;
    height: 20px;
    position: absolute;
    border: 1px solid #b0d7f2;
    border-radius: 6px;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f9ae0;
    background: #fff;
}

.send-v2__amount-max__button__disabled {
    color: #b0d7f2;
    cursor: auto;
}

input:checked+.send-v2__amount-max__button {
    background-color: #037dd6;
    border: 1px solid #037dd6;
    color: #fff;
}

.send-v2__amount-max input {
    opacity: 0;
    width: 0;
    height: 0;
}

.send-v2__gas-fee-display {
    width: 100%;
    position: relative;
}

.send-v2__gas-fee-display .currency-display--message {
    padding: 8px 38px 8px 10px;
    display: flex;
    align-items: center;
}

.send-v2__sliders-icon-container {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    border: 1px solid #037dd6;
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    right: 15px;
    top: 14px;
    cursor: pointer;
}

.send-v2__sliders-icon {
    color: #037dd6;
}

.send-v2__memo-text-area__input {
    padding: 6px 10px;
}

.send-v2__footer {
    height: 92px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-top: 1px solid #dedede;
    background: #fff;
    padding: 0 12px;
    flex-shrink: 0;
}

.send-v2__next-btn,
.send-v2__cancel-btn {
    width: 163px;
    margin: 0 4px;
}

.send-v2__customize-gas {
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14);
    display: flex;
    flex-flow: column;
}

@media screen and (max-width: 575px) {
    .send-v2__customize-gas {
        width: 100vw;
        height: 100vh;
    }
}

.send-v2__customize-gas__header {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 52px;
    border-bottom: 1px solid #dedede;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 575px) {
    .send-v2__customize-gas__header {
        flex: 0 0 auto;
    }
}

.send-v2__customize-gas__title {
    margin-left: 19.25px;
}

.send-v2__customize-gas__close::after {
    content: "×";
    font-size: 1.8em;
    color: #9b9b9b;
    cursor: pointer;
    margin-right: 19.25px;
}

.send-v2__customize-gas__content {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
}

.send-v2__customize-gas__body {
    display: flex;
    margin-bottom: 24px;
}

@media screen and (max-width: 575px) {
    .send-v2__customize-gas__body {
        flex-flow: column;
        flex: 1 1 auto;
    }
}

.send-v2__customize-gas__footer {
    font-size: 1.5rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 75px;
    border-top: 1px solid #dedede;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media screen and (max-width: 575px) {
    .send-v2__customize-gas__footer {
        flex: 0 0 auto;
    }
}

.send-v2__customize-gas__buttons {
    display: flex;
    justify-content: space-between;
    margin-right: 21.25px;
}

.send-v2__customize-gas__revert,
.send-v2__customize-gas__cancel,
.send-v2__customize-gas__save,
.send-v2__customize-gas__save__error {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3px;
    cursor: pointer;
}

.send-v2__customize-gas__revert {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    color: #aeaeae;
    margin-left: 21.25px;
}

.send-v2__customize-gas__cancel,
.send-v2__customize-gas__save,
.send-v2__customize-gas__save__error {
    width: 85.74px;
    min-width: initial;
}

.send-v2__customize-gas__save__error {
    opacity: 0.5;
    cursor: auto;
}

.send-v2__customize-gas__error-message {
    font-size: 0.75rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: block;
    position: absolute;
    top: -18px;
    right: 0;
    color: #f00;
    width: 100%;
    text-align: center;
}

.send-v2__customize-gas__cancel {
    margin-right: 10px;
}

.send-v2__gas-modal-card {
    width: 360px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    padding-left: 20px;
}

.send-v2__gas-modal-card__title {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 26px;
    color: #4d4d4d;
    margin-top: 17px;
}

.send-v2__gas-modal-card__copy {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    height: 38px;
    width: 314px;
    color: #4d4d4d;
    margin-top: 17px;
}

.send-v2__gas-modal-card .customize-gas-input-wrapper {
    margin-top: 17px;
}

.send-v2__gas-modal-card .customize-gas-input {
    height: 54px;
    width: 315px;
    border: 1px solid #d2d8dd;
    background-color: #fff;
    padding-left: 15px;
}

.send-v2__gas-modal-card .gas-tooltip-input-arrows {
    font-size: 1.125rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    width: 32px;
    height: 54px;
    border-left: 1px solid #dadada;
    color: #4d4d4d;
    right: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.send-v2__gas-modal-card .gas-tooltip-input-arrow-wrapper {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.send-v2__gas-modal-card input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.send-v2__gas-modal-card input[type=number]:hover::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.advanced-gas-options-btn {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    justify-content: flex-end;
    color: #2f9ae0;
    cursor: pointer;
    margin-top: 5px;
}

.sliders-icon-container {
    font-size: 1rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
    border: 1px solid #037dd6;
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    right: 15px;
    top: 14px;
    cursor: pointer;
}

.gas-fee-reset {
    font-size: 0.875rem;
    font-family: Euclid, Roboto, Helvetica, Arial, sans-serif;
    line-height: 140%;
    font-style: normal;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    right: 12px;
    top: 14px;
    cursor: pointer;
    color: #2f9ae0;
}

.sliders-icon {
    color: #037dd6;
}

/*
  Third Party Library Styles
*/

.tippy-touch {
    cursor: pointer !important;
}

.tippy-notransition {
    transition: none !important;
}

.tippy-popper {
    max-width: 400px;
    -webkit-perspective: 800px;
    perspective: 800px;
    z-index: 9999;
    outline: 0;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.tippy-popper.html-template {
    max-width: 96%;
    max-width: calc(100% - 20px);
}

.tippy-popper[x-placement^=top] [x-arrow] {
    border-top: 7px solid #333;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    bottom: -7px;
    margin: 0 9px;
}

.tippy-popper[x-placement^=top] [x-arrow].arrow-small {
    border-top: 5px solid #333;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    bottom: -5px;
}

.tippy-popper[x-placement^=top] [x-arrow].arrow-big {
    border-top: 10px solid #333;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    bottom: -10px;
}

.tippy-popper[x-placement^=top] [x-circle] {
    -webkit-transform-origin: 0 33%;
    transform-origin: 0 33%;
}

.tippy-popper[x-placement^=top] [x-circle].enter {
    -webkit-transform: scale(1) translate(-50%, -55%);
    transform: scale(1) translate(-50%, -55%);
    opacity: 1;
}

.tippy-popper[x-placement^=top] [x-circle].leave {
    -webkit-transform: scale(0.15) translate(-50%, -50%);
    transform: scale(0.15) translate(-50%, -50%);
    opacity: 0;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle] {
    background-color: #fff;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow] {
    border-top: 7px solid #fff;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small {
    border-top: 5px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big {
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle] {
    background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow] {
    border-top: 7px solid rgba(0, 0, 0, 0.7);
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
    border-top: 5px solid rgba(0, 0, 0, 0.7);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
    border-top: 10px solid rgba(0, 0, 0, 0.7);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=top] [data-animation=perspective] {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.tippy-popper[x-placement^=top] [data-animation=perspective].enter {
    opacity: 1;
    -webkit-transform: translateY(-10px) rotateX(0);
    transform: translateY(-10px) rotateX(0);
}

.tippy-popper[x-placement^=top] [data-animation=perspective].leave {
    opacity: 0;
    -webkit-transform: translateY(0) rotateX(90deg);
    transform: translateY(0) rotateX(90deg);
}

.tippy-popper[x-placement^=top] [data-animation=fade].enter {
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.tippy-popper[x-placement^=top] [data-animation=fade].leave {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.tippy-popper[x-placement^=top] [data-animation=shift].enter {
    opacity: 1;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.tippy-popper[x-placement^=top] [data-animation=shift].leave {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.tippy-popper[x-placement^=top] [data-animation=scale].enter {
    opacity: 1;
    -webkit-transform: translateY(-10px) scale(1);
    transform: translateY(-10px) scale(1);
}

.tippy-popper[x-placement^=top] [data-animation=scale].leave {
    opacity: 0;
    -webkit-transform: translateY(0) scale(0);
    transform: translateY(0) scale(0);
}

.tippy-popper[x-placement^=bottom] [x-arrow] {
    border-bottom: 7px solid #333;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    top: -7px;
    margin: 0 9px;
}

.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small {
    border-bottom: 5px solid #333;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    top: -5px;
}

.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big {
    border-bottom: 10px solid #333;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    top: -10px;
}

.tippy-popper[x-placement^=bottom] [x-circle] {
    -webkit-transform-origin: 0 -50%;
    transform-origin: 0 -50%;
}

.tippy-popper[x-placement^=bottom] [x-circle].enter {
    -webkit-transform: scale(1) translate(-50%, -45%);
    transform: scale(1) translate(-50%, -45%);
    opacity: 1;
}

.tippy-popper[x-placement^=bottom] [x-circle].leave {
    -webkit-transform: scale(0.15) translate(-50%, -5%);
    transform: scale(0.15) translate(-50%, -5%);
    opacity: 0;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle] {
    background-color: #fff;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow] {
    border-bottom: 7px solid #fff;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small {
    border-bottom: 5px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big {
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle] {
    background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow] {
    border-bottom: 7px solid rgba(0, 0, 0, 0.7);
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
    border-bottom: 5px solid rgba(0, 0, 0, 0.7);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
    border-bottom: 10px solid rgba(0, 0, 0, 0.7);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective] {
    -webkit-transform-origin: top;
    transform-origin: top;
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter {
    opacity: 1;
    -webkit-transform: translateY(10px) rotateX(0);
    transform: translateY(10px) rotateX(0);
}

.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave {
    opacity: 0;
    -webkit-transform: translateY(0) rotateX(-90deg);
    transform: translateY(0) rotateX(-90deg);
}

.tippy-popper[x-placement^=bottom] [data-animation=fade].enter {
    opacity: 1;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.tippy-popper[x-placement^=bottom] [data-animation=fade].leave {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.tippy-popper[x-placement^=bottom] [data-animation=shift].enter {
    opacity: 1;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.tippy-popper[x-placement^=bottom] [data-animation=shift].leave {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.tippy-popper[x-placement^=bottom] [data-animation=scale].enter {
    opacity: 1;
    -webkit-transform: translateY(10px) scale(1);
    transform: translateY(10px) scale(1);
}

.tippy-popper[x-placement^=bottom] [data-animation=scale].leave {
    opacity: 0;
    -webkit-transform: translateY(0) scale(0);
    transform: translateY(0) scale(0);
}

.tippy-popper[x-placement^=left] [x-arrow] {
    border-left: 7px solid #333;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    right: -7px;
    margin: 6px 0;
}

.tippy-popper[x-placement^=left] [x-arrow].arrow-small {
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    right: -5px;
}

.tippy-popper[x-placement^=left] [x-arrow].arrow-big {
    border-left: 10px solid #333;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    right: -10px;
}

.tippy-popper[x-placement^=left] [x-circle] {
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
}

.tippy-popper[x-placement^=left] [x-circle].enter {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    opacity: 1;
}

.tippy-popper[x-placement^=left] [x-circle].leave {
    -webkit-transform: scale(0.15) translate(-50%, -50%);
    transform: scale(0.15) translate(-50%, -50%);
    opacity: 0;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle] {
    background-color: #fff;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow] {
    border-left: 7px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small {
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big {
    border-left: 10px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle] {
    background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow] {
    border-left: 7px solid rgba(0, 0, 0, 0.7);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
    border-left: 5px solid rgba(0, 0, 0, 0.7);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
    border-left: 10px solid rgba(0, 0, 0, 0.7);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=left] [data-animation=perspective] {
    -webkit-transform-origin: right;
    transform-origin: right;
}

.tippy-popper[x-placement^=left] [data-animation=perspective].enter {
    opacity: 1;
    -webkit-transform: translateX(-10px) rotateY(0);
    transform: translateX(-10px) rotateY(0);
}

.tippy-popper[x-placement^=left] [data-animation=perspective].leave {
    opacity: 0;
    -webkit-transform: translateX(0) rotateY(-90deg);
    transform: translateX(0) rotateY(-90deg);
}

.tippy-popper[x-placement^=left] [data-animation=fade].enter {
    opacity: 1;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.tippy-popper[x-placement^=left] [data-animation=fade].leave {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.tippy-popper[x-placement^=left] [data-animation=shift].enter {
    opacity: 1;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.tippy-popper[x-placement^=left] [data-animation=shift].leave {
    opacity: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.tippy-popper[x-placement^=left] [data-animation=scale].enter {
    opacity: 1;
    -webkit-transform: translateX(-10px) scale(1);
    transform: translateX(-10px) scale(1);
}

.tippy-popper[x-placement^=left] [data-animation=scale].leave {
    opacity: 0;
    -webkit-transform: translateX(0) scale(0);
    transform: translateX(0) scale(0);
}

.tippy-popper[x-placement^=right] [x-arrow] {
    border-right: 7px solid #333;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    left: -7px;
    margin: 6px 0;
}

.tippy-popper[x-placement^=right] [x-arrow].arrow-small {
    border-right: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    left: -5px;
}

.tippy-popper[x-placement^=right] [x-arrow].arrow-big {
    border-right: 10px solid #333;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    left: -10px;
}

.tippy-popper[x-placement^=right] [x-circle] {
    -webkit-transform-origin: -50% 0;
    transform-origin: -50% 0;
}

.tippy-popper[x-placement^=right] [x-circle].enter {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    opacity: 1;
}

.tippy-popper[x-placement^=right] [x-circle].leave {
    -webkit-transform: scale(0.15) translate(-50%, -50%);
    transform: scale(0.15) translate(-50%, -50%);
    opacity: 0;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle] {
    background-color: #fff;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow] {
    border-right: 7px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small {
    border-right: 5px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big {
    border-right: 10px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle] {
    background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow] {
    border-right: 7px solid rgba(0, 0, 0, 0.7);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
    border-right: 5px solid rgba(0, 0, 0, 0.7);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
    border-right: 10px solid rgba(0, 0, 0, 0.7);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.tippy-popper[x-placement^=right] [data-animation=perspective] {
    -webkit-transform-origin: left;
    transform-origin: left;
}

.tippy-popper[x-placement^=right] [data-animation=perspective].enter {
    opacity: 1;
    -webkit-transform: translateX(10px) rotateY(0);
    transform: translateX(10px) rotateY(0);
}

.tippy-popper[x-placement^=right] [data-animation=perspective].leave {
    opacity: 0;
    -webkit-transform: translateX(0) rotateY(90deg);
    transform: translateX(0) rotateY(90deg);
}

.tippy-popper[x-placement^=right] [data-animation=fade].enter {
    opacity: 1;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.tippy-popper[x-placement^=right] [data-animation=fade].leave {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.tippy-popper[x-placement^=right] [data-animation=shift].enter {
    opacity: 1;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.tippy-popper[x-placement^=right] [data-animation=shift].leave {
    opacity: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.tippy-popper[x-placement^=right] [data-animation=scale].enter {
    opacity: 1;
    -webkit-transform: translateX(10px) scale(1);
    transform: translateX(10px) scale(1);
}

.tippy-popper[x-placement^=right] [data-animation=scale].leave {
    opacity: 0;
    -webkit-transform: translateX(0) scale(0);
    transform: translateX(0) scale(0);
}

.tippy-popper .tippy-tooltip.transparent-theme {
    background-color: rgba(0, 0, 0, 0.7);
}

.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill] {
    background-color: transparent;
}

.tippy-popper .tippy-tooltip.light-theme {
    color: #26323d;
    box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.1), 0 4px 80px -8px rgba(0, 20, 60, 0.2);
    background-color: #fff;
}

.tippy-popper .tippy-tooltip.light-theme[data-animatefill] {
    background-color: transparent;
}

.tippy-tooltip {
    position: relative;
    color: #fff;
    border-radius: 4px;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    text-align: center;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #333;
}

.tippy-tooltip--small {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

.tippy-tooltip--big {
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
}

.tippy-tooltip[data-animatefill] {
    overflow: hidden;
    background-color: transparent;
}

.tippy-tooltip[data-interactive] {
    pointer-events: auto;
}

.tippy-tooltip[data-inertia] {
    transition-timing-function: cubic-bezier(0.53, 2, 0.36, 0.85);
}

.tippy-tooltip [x-arrow] {
    position: absolute;
    width: 0;
    height: 0;
}

.tippy-tooltip [x-circle] {
    position: absolute;
    will-change: transform;
    background-color: #333;
    border-radius: 50%;
    width: 130%;
    width: calc(110% + 2rem);
    left: 50%;
    top: 50%;
    z-index: -1;
    overflow: hidden;
    transition: all ease;
}

.tippy-tooltip [x-circle]:before {
    content: "";
    padding-top: 90%;
    float: left;
}

@media (max-width: 450px) {
    .tippy-popper {
        max-width: 96%;
        max-width: calc(100% - 20px);
    }
}