:root {
    --background: #282a36;
    --comment: #6272a4;
    --foreground: #f8f8f2;
    --selection: #44475a;
    --cyan: #8be9fd;
    --green: #4db040;
    --orange: #ffb86c;
    --pink: #ff79c6;
    --purple: #bd93f9;
    --red: #f55;
    --yellow: #f1fa8c;
    --background-30: #282a3633;
    --comment-30: #6272a433;
    --foreground-30: #f8f8f233;
    --selection-30: #44475a33;
    --cyan-30: #8be9fd33;
    --green-30: #50fa7b33;
    --orange-30: #ffb86c33;
    --pink-30: #ff79c633;
    --purple-30: #bd93f933;
    --red-30: #ff555533;
    --yellow-30: #f1fa8c33;
    --background-40: #282a3666;
    --comment-40: #6272a466;
    --foreground-40: #f8f8f266;
    --selection-40: #44475a66;
    --cyan-40: #8be9fd66;
    --green-40: #50fa7b66;
    --orange-40: #ffb86c66;
    --pink-40: #ff79c666;
    --purple-40: #bd93f966;
    --red-40: #ff555566;
    --yellow-40: #f1fa8c66
}

pre::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

pre::-webkit-scrollbar-track {
    background-color: var(--comment);
    border-radius: 0
}

pre::-webkit-scrollbar-thumb {
    background-color: var(--purple);
    border-radius: 0
}

code[class*=language-] ::-moz-selection,
code[class*=language-]::-moz-selection,
pre[class*=language-] ::-moz-selection,
pre[class*=language-]::-moz-selection {
    text-shadow: none;
    background-color: var(--selection)
}

code[class*=language-] ::selection,
code[class*=language-]::selection,
pre[class*=language-] ::selection,
pre[class*=language-]::selection {
    text-shadow: none;
    background-color: var(--selection)
}

pre.line-numbers {
    position: relative;
    padding-left: 57px;
    counter-reset: linenumber
}

pre.line-numbers>code {
    position: relative;
    white-space: inherit
}

.line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: -57px;
    width: 45px;
    letter-spacing: -1px;
    border-right: 1px solid #999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.line-numbers-rows>span {
    pointer-events: none;
    display: block;
    counter-increment: linenumber
}

.line-numbers-rows>span:before {
    content: counter(linenumber);
    color: #999;
    display: block;
    padding-right: 12px;
    text-align: right
}

div.code-toolbar {
    position: relative
}

div.code-toolbar>.toolbar {
    position: absolute;
    top: 4px;
    right: 3px;
    transition: opacity .3s ease-in-out;
    opacity: 0
}

div.code-toolbar:hover>.toolbar {
    opacity: 1
}

div.code-toolbar>.toolbar .toolbar-item {
    display: inline-block;
    padding-right: 20px
}

div.code-toolbar>.toolbar a {
    cursor: pointer
}

div.code-toolbar>.toolbar button {
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

div.code-toolbar>.toolbar a,
div.code-toolbar>.toolbar button,
div.code-toolbar>.toolbar span {
    color: var(--foreground);
    font-size: 12px;
    padding: 7px;
    background: var(--comment);
    border-radius: 7px
}

div.code-toolbar>.toolbar a:focus,
div.code-toolbar>.toolbar a:hover,
div.code-toolbar>.toolbar button:focus,
div.code-toolbar>.toolbar button:hover,
div.code-toolbar>.toolbar span:focus,
div.code-toolbar>.toolbar span:hover {
    color: inherit;
    text-decoration: none;
    background-color: var(--green)
}

@media print {

    code[class*=language-],
    pre[class*=language-] {
        text-shadow: none
    }
}

code[class*=language-],
pre[class*=language-] {
    color: var(--foreground);
    background: var(--background);
    text-shadow: none;
    font-family: PT Mono, Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

pre[class*=language-] {
    border-radius: 7px;
    padding: 15px;
    margin: 7px 0;
    overflow: auto;
    height: auto
}

:not(pre)>code[class*=language-],
pre[class*=language-] {
    background: var(--background)
}

:not(pre)>code[class*=language-] {
    padding: 4px 7px;
    border-radius: 4px;
    white-space: normal
}

.limit-300 {
    height: 300px !important;
    height: 400px !important
}

.limit-500 {
    height: 500px !important
}

.limit-600 {
    height: 600px !important
}

.limit-700 {
    height: 700px !important
}

.limit-800 {
    height: 800px !important
}

.language-css {
    color: var(--purple)
}

.language-css .token,
.token {
    color: var(--pink)
}

.token.script {
    color: var(--foreground)
}

.token.bold {
    font-weight: 700
}

.token.italic {
    font-style: italic
}

.token.atrule,
.token.attr-name,
.token.attr-value {
    color: var(--green)
}

.language-css .token.atrule {
    color: var(--purple)
}

.language-html .token.attr-value,
.language-markup .token.attr-value {
    color: var(--yellow)
}

.token.boolean {
    color: var(--purple)
}

.token.builtin,
.token.class-name {
    color: var(--cyan)
}

.token.comment {
    color: var(--comment)
}

.token.constant {
    color: var(--purple)
}

.language-javascript .token.constant {
    color: var(--orange);
    font-style: italic
}

.token.entity {
    color: var(--pink)
}

.language-css .token.entity {
    color: var(--green)
}

.language-html .token.entity.named-entity {
    color: var(--purple)
}

.language-html .token.entity:not(.named-entity) {
    color: var(--pink)
}

.language-markup .token.entity.named-entity {
    color: var(--purple)
}

.language-markup .token.entity:not(.named-entity) {
    color: var(--pink)
}

.token.function {
    color: var(--green)
}

.language-css .token.function {
    color: var(--cyan)
}

.token.important,
.token.keyword {
    color: var(--pink)
}

.token.prolog {
    color: var(--foreground)
}

.token.property {
    color: var(--orange)
}

.language-css .token.property {
    color: var(--cyan)
}

.token.punctuation {
    color: var(--pink)
}

.language-css .token.punctuation {
    color: var(--orange)
}

.language-html .token.punctuation,
.language-markup .token.punctuation {
    color: var(--foreground)
}

.token.selector {
    color: var(--pink)
}

.language-css .token.selector {
    color: var(--green)
}

.token.regex {
    color: var(--red)
}

.language-css .token.rule:not(.atrule) {
    color: var(--foreground)
}

.token.string {
    color: var(--yellow)
}

.token.tag {
    color: var(--pink)
}

.token.url {
    color: var(--cyan)
}

.language-css .token.url {
    color: var(--orange)
}

.token.variable {
    color: var(--comment)
}

.token.number {
    color: #bd93f9
}

.token.operator {
    color: #8be9fd
}

.token.char {
    color: #ff879d
}

.token.symbol {
    color: #ffb86c
}

.token.deleted,
.token.namespace {
    color: #e2777a
}

.highlight-line {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    padding: 2px 10px
}

.highlight-line:empty:before {
    content: " "
}

.highlight-line:not(:last-child) {
    min-width: 100%
}

.highlight-line .highlight-line:not(:last-child) {
    min-width: 0
}

.highlight-line-isdir {
    color: var(--foreground);
    background-color: var(--selection-30)
}

.highlight-line-active {
    background-color: var(--comment-30)
}

.highlight-line-add {
    background-color: var(--green-30)
}

.highlight-line-remove {
    background-color: var(--red-30)
}

select {
    -ms-writing-mode: lr-tb !important;
    writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(#000, #fff);
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    box-sizing: border-box;
    align-items: center;
    white-space: pre;
    padding: 5px 12px 5px 5px;
    -webkit-rtl-ordering: logical;
    background-color: var(--background-color);
    color: var(--font-color);
    cursor: default;
    margin: 0;
    border-width: 1px;
    border-style: solid;
    border-color: var(--font-color);
    -o-border-image: none;
    border-image: none;
    -o-border-image: initial;
    border-image: initial;
    border-radius: 0
}

body,
body[data-theme=light] {
    --global-font-size: 15px;
    --global-line-height: 22px;
    --global-space: 10px;
    --background-color: #fff;
    --background-header-color: #ececec;
    --background-header-secondary: #f5f5f5;
    --primary-color: #1a95e0;
    --secondary-color: #727578;
    --font-color: #151515;
    --accent: #9500b7;
    --member: #ff9500;
    --dark-accent: #a780b0;
    --invert-font-color: #fff;
    --input-color: #f5f5f5;
    --input-button-color: #d1d0d0;
    --font-stack: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
    --mono-font-stack: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

body.hidden,
body[data-theme=light].hidden {
    overflow: hidden;
    touch-action: none;
    -ms-touch-action: none
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box
}

body[data-theme=dark] {
    --background-color: #0d0d19;
    --primary-color: #1a95e0;
    --secondary-color: #a3abba;
    --font-color: #e8e9ed;
    --invert-font-color: #0d0d19;
    --background-header-color: #18181a;
    --background-header-secondary: #1c1c1e;
    --input-color: #313135;
    --input-button-color: #1c1c1e;
    --accent: #ff0;
    --dark-accent: #a1a100
}

* {
    text-rendering: geometricPrecision
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--invert-font-color)
}

::selection {
    background: var(--primary-color);
    color: var(--invert-font-color)
}

body {
    font-size: var(--global-font-size);
    color: var(--font-color);
    line-height: var(--global-line-height);
    margin: 0;
    font-family: var(--font-stack);
    word-wrap: break-word;
    background-color: var(--background-color)
}

body.hidden {
    overflow: hidden
}

div {
    display: flex
}

a {
    cursor: pointer;
    color: var(--primary-color);
    text-decoration: none
}

a:hover {
    background-color: var(--primary-color);
    color: var(--invert-font-color)
}

@media(max-width:450px) {
    a:hover {
        background-color: transparent;
        color: var(--primary-color)
    }
}

#__next {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    background-color: var(--background-color)
}

blockquote {
    position: relative;
    padding-left: 2ch;
    overflow: hidden
}

blockquote:after {
    content: ">\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>";
    white-space: pre;
    position: absolute;
    top: 0;
    left: 0;
    line-height: var(--global-line-height);
    color: #9ca2ab
}

pre {
    overflow: auto;
    word-wrap: normal;
    white-space: pre
}

.remark-highlight {
    align-self: stretch
}

.emoji {
    width: 15px;
    height: 15px;
    margin: 2px 2px -2px
}

.grid-container {
    display: grid
}

h1 {
    font-size: 52px;
    line-height: 52px
}

h1,
h2 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: 300
}

h2 {
    font-size: 37px;
    line-height: 40px
}

h3 {
    font-size: 30px;
    line-height: 33px
}

h3,
h4 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: 300
}

h4 {
    font-size: 20px;
    line-height: 21px
}

ol {
    padding-left: 30px
}

ul {
    padding-left: 20px
}

li {
    margin-top: 2px
}

a,
li,
p,
span,
ul {
    max-width: 100%
}

a,
p,
span {
    margin-top: 2px;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis
}

input,
textarea {
    align-self: stretch;
    border-color: var(--secondary-color);
    background-color: var(--background-color);
    border-width: 1px;
    min-height: 48px;
    border-style: solid;
    resize: none;
    color: var(--font-color);
    font-family: var(--font-stack);
    padding: 6px;
    outline: none;
    box-sizing: border-box
}

.button,
button {
    padding: 6px 18px;
    background-color: var(--primary-color);
    color: #fff;
    align-self: center;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer
}

.button:disabled,
button:disabled {
    background-color: var(--secondary-color);
    cursor: default
}

table {
    width: 100%;
    border-collapse: collapse;
    color: var(--font-color);
    font-size: var(--global-font-size)
}

table td,
table th {
    vertical-align: middle;
    border: 1px solid var(--font-color);
    line-height: var(--global-line-height);
    padding: calc(var(--global-space)/2);
    font-size: 15px;
    white-space: nowrap
}

table thead th {
    font-size: 15px
}

table tfoot tr th {
    font-weight: 500
}

table tbody td:first-child {
    font-weight: 700;
    color: var(--secondary-color)
}

.recharts-default-tooltip {
    display: flex;
    flex-direction: column;
    background-color: var(--background-color) !important;
    border: 1px solid var(--font-color) !important
}

.recharts-tooltip-label {
    margin-bottom: 6px !important
}

.recharts-tooltip-item {
    padding: 0 !important
}

.wallet {
    cursor: pointer;
    color: var(--font-color);
    font-size: 16px;
    transition: all .2s;
    position: relative
}

.wallet span {
    opacity: .6
}

.wallet:hover span {
    opacity: .8
}

.wallet[data-remover=v]:before {
    visibility: visible
}

.wallet[data-remover=h]:before,
.wallet[data-remover=v]:before {
    content: attr(data-text);
    position: absolute;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 17px;
    top: -30px;
    color: #fff;
    background-color: rgba(0, 0, 0, .8);
    border-radius: 8px;
    opacity: 0;
    z-index: 5;
    cursor: default;
    transition: opacity .2s
}

.wallet[data-remover=h]:before {
    visibility: hidden
}

.wallet.active[data-remover=v]:before {
    visibility: visible
}

.wallet.active[data-remover=h]:before,
.wallet.active[data-remover=v]:before {
    content: attr(data-text);
    position: absolute;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 17px;
    top: -30px;
    color: #fff;
    background-color: rgba(0, 0, 0, .8);
    border-radius: 8px;
    opacity: 1
}

.wallet.active[data-remover=h]:before {
    visibility: hidden
}

.react-datalist-input__container>* {
    box-sizing: border-box
}

.react-datalist-input__container {
    width: 100%;
    position: relative;
    --padding: 6px;
    --border: 1px solid var(--font-color)
}

.react-datalist-input__container.error .react-datalist-input__textbox {
    border: 1px solid var(--red)
}

.react-datalist-input__textbox {
    width: 100%;
    font-size: .875rem;
    line-height: 1.25rem;
    margin: 0;
    padding: var(--padding);
    border: var(--border)
}

.react-datalist-input__listbox {
    width: 100%;
    position: absolute;
    height: 200px;
    overflow-y: scroll;
    top: 45px;
    margin: 2px 0 0;
    padding: 0;
    border: var(--border);
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    z-index: 10
}

.react-datalist-input__listbox-option {
    width: 100%;
    cursor: pointer;
    margin: 0;
    padding: var(--padding)
}

.react-datalist-input__listbox-option mark {
    background-color: var(--accent)
}

.react-datalist-input__listbox-option:focus,
.react-datalist-input__listbox-option:hover {
    background-color: var(--secondary-color);
    color: var(--invert-font-color)
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-Thin.woff) format("woff2");
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-ThinItalic.woff) format("woff2");
    font-weight: 100;
    font-style: italic
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-ExtraLight.woff) format("woff2");
    font-weight: 200;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-ExtraLightItalic.woff) format("woff2");
    font-weight: 200;
    font-style: italic
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-Light.woff) format("woff2");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-LightItalic.woff) format("woff2");
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-Regular.woff) format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMonoItalic;
    src: url(../../../fonts/JetBrainsMono-Italic.woff) format("woff2");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-Medium.woff) format("woff2");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-MediumItalic.woff) format("woff2");
    font-weight: 500;
    font-style: italic
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-SemiBold.woff) format("woff2");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-SemiBoldItalic.woff) format("woff2");
    font-weight: 600;
    font-style: italic
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-Bold.woff) format("woff2");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-BoldItalic.woff) format("woff2");
    font-weight: 700;
    font-style: italic
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-ExtraBold.woff) format("woff2");
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: JetBrainsMono;
    src: url(../../../fonts/JetBrainsMono-ExtraBoldItalic.woff) format("woff2");
    font-weight: 900;
    font-style: italic
}

section {
    margin-bottom: 56px;
    width: 100%
}

section h2 {
    margin: 0 0 16px
}

section .wrapper {
    min-width: 1600px;
    gap: 16px;
    overflow: hidden
}

@media(max-width:500px) {
    section .wrapper {
        min-width: 650px
    }
}

@keyframes backdropBlur {
    0% {
        opacity: .7
    }

    to {
        opacity: 1
    }
}

.main {
    position: relative;
    flex-direction: row-reverse;
    gap: 50px;
    display: flex;
    height: 270px;
    background-size: cover;
    color: var(--font-color)
}

.main__inner {
    max-width: 325px;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px
}

.main__inner h4 {
    margin-top: 0;
    margin-bottom: 0
}

.main__inner h4 .blur {
    position: relative;
    display: inline-block
}

.main__inner h4 .blur:after {
    content: "";
    -webkit-backdrop-filter: blur(4.5px);
    backdrop-filter: blur(4.5px);
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity .3s;
    cursor: pointer
}

.main__inner h4 .blur.active:after {
    opacity: 0;
    cursor: default
}

.main__inner p {
    margin-bottom: 10px
}

.main__inner span {
    color: var(--font-color)
}

.main__inner button span {
    color: #fff
}

.main__bg {
    position: relative
}

.main__bg,
.main__bg img {
    width: 100%
}

.main__mobile {
    width: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 30px
}

.main__mobile .blur {
    position: relative;
    display: inline-block
}

.main__mobile .blur:after {
    content: "";
    -webkit-backdrop-filter: blur(4.5px);
    backdrop-filter: blur(4.5px);
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity .3s;
    cursor: pointer
}

.main__mobile .blur.active:after {
    opacity: 0;
    cursor: default
}

.advantages {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 25px
}

.advantages__inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: transparent;
    min-width: 165px
}

.advantages__inner div+div {
    max-width: 185px;
    padding: 0 20px;
    text-align: center;
    font-size: 12px;
    line-height: 16px
}

@media(max-width:500px) {
    .advantages__inner div+div {
        padding: 0
    }
}

@keyframes blink {
    0% {
        background-color: transparent
    }

    50% {
        background-color: var(--member)
    }

    to {
        background-color: transparent
    }
}

.advantages__inner.active {
    animation: blink 1s linear
}

.advantages__img {
    width: 90px;
    height: 90px;
    position: relative;
    cursor: pointer
}

.advantages__info {
    flex-direction: column;
    align-items: center
}

.advantages__info a {
    max-width: 125px
}

.advantages__info:hover .animated {
    opacity: 1
}

.advantages__info:hover .static {
    opacity: 0
}

.advantages__info .static {
    height: 90px;
    width: 90px
}

.advantages__info .animated {
    opacity: 0;
    position: absolute;
    height: 90px;
    width: 90px;
    z-index: 2
}

.advantages__info.active .animated {
    opacity: 1
}

.advantages__info.active .static {
    opacity: 0
}

.advantages .tooltip {
    background-color: #1a95e0;
    color: #fff;
    text-align: center;
    width: 250px;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -125px;
    margin-bottom: 12px
}

.mission {
    display: flex;
    justify-content: space-between
}

.mission__text {
    flex-direction: column;
    gap: 25px;
    margin-right: 60px
}

.mission__img {
    width: 220px;
    height: 220px
}

.scrollBox {
    display: flex;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.scrollBox::-webkit-scrollbar {
    display: none
}

.dao {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 25px;
    background-image: url(../media/dao-bg.fa163268.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    color: #fff
}

@media(max-width:500px) {
    .dao {
        padding: 15px
    }
}

.dao img {
    width: 240px
}

.dao>div {
    justify-content: space-between;
    height: 100%
}

.dao div {
    max-width: 530px;
    width: 100%;
    flex-direction: column;
    gap: 15px
}

.dao button {
    position: relative
}

.dao button:after {
    content: attr(data-text);
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    text-transform: none;
    visibility: hidden;
    padding: 5px
}

.dao button:after,
.dao button:disabled:hover:after {
    background-color: #1a95e0;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 0;
    margin-bottom: 12px
}

.dao button:disabled:hover:after {
    visibility: visible;
    padding: 5px 0
}

.ambra {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 25px;
    background-image: url(../media/dao-bg.fa163268.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    color: #fff
}

@media(max-width:500px) {
    .ambra {
        padding: 15px
    }
}

.ambra img {
    width: 40%
}

@media(max-width:500px) {
    .ambra img {
        width: 100%
    }
}

.ambra>div {
    justify-content: space-between;
    height: 100%
}

.ambra div {
    max-width: 530px;
    width: 100%;
    flex-direction: column;
    gap: 15px
}

.ambra button {
    position: relative
}

.ambra button:after {
    content: attr(data-text);
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    text-transform: none;
    visibility: hidden;
    background-color: #1a95e0;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 0;
    margin-bottom: 12px
}

.ambra button:disabled:hover:after {
    visibility: visible
}

.ambra button:disabled:hover:after,
.tooltip {
    background-color: #1a95e0;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 0;
    margin-bottom: 12px
}

.unique {
    margin-bottom: 16px
}

.unique h2 {
    margin-bottom: 0
}

.unique header {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between
}

.unique header h3 {
    max-width: 400px;
    width: 100%
}

.unique h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 4px
}

.unique img {
    width: 222px;
    height: 222px
}

.unique .annotation {
    display: flex;
    gap: 30px;
    margin: 0;
    position: relative
}

.unique .annotation>div {
    position: absolute;
    padding: 10px;
    left: -160%;
    top: auto;
    bottom: -50px;
    width: 300px;
    background-color: var(--background-color);
    border: 1px solid var(--font-color)
}

@media(max-width:500px) {
    .unique .annotation>div {
        width: 100%;
        top: 50px;
        bottom: auto;
        left: 0;
        right: 0
    }
}

.unique>div {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
    gap: 16px
}

.unique>div>div {
    background-color: var(--input-color)
}

.unique article {
    padding: 15px
}

.unique ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.unique ul li {
    font-weight: 700;
    margin: 0;
    padding: 0;
    transition: all .2s
}

.unique ul li.active {
    color: var(--primary-color)
}

.currency {
    background-image: url(../media/currency-bg.3e8d9629.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    color: #fff
}

.currency h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 45px
}

.currency div {
    justify-content: center;
    gap: 27px
}

.currency div button {
    padding: 14px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    background-color: #4395da;
    border-radius: 0;
    color: #fff;
    max-width: 213px;
    width: 100%;
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

.pre-social {
    display: flex;
    justify-content: center;
    width: 100%
}

.pre-social div {
    max-width: 530px;
    gap: 30px
}

.pre-social button {
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

.pre-social button a {
    color: #fff
}

.card__inner {
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    height: 225px;
    justify-content: space-between
}

.card__inner p {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px
}

.card__inner div span {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px
}

.card__inner div img {
    width: 60px;
    height: 60px
}

.card__inner.explr>div {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    background: var(--secondary-color);
    color: var(--invert-font-color);
    border-radius: 10px;
    align-items: center;
    padding: 10px 30px 10px 10px
}

.roadmap {
    width: 100%
}

@keyframes blinking {
    0% {
        background-color: var(--selection)
    }

    to {
        background-color: var(--primary-color)
    }
}

.terminalTimeline {
    width: 83%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-left: 70px
}

.terminalTimeline:before {
    content: " ";
    background: var(--secondary-color);
    display: inline-block;
    position: absolute;
    left: 35px;
    width: 2px;
    height: 100%;
    z-index: 400
}

.terminalCard {
    width: 100%;
    align-self: flex-end;
    display: block
}

.terminalCard>div {
    display: block;
    background-color: var(--input-color);
    padding: 15px;
    flex-direction: column;
    gap: 10px
}

.terminalCard>div div {
    display: block;
    position: relative
}

.terminalCard+.terminalCard {
    margin-top: 30px
}

.terminalCard>span {
    position: absolute;
    left: -150px;
    margin-top: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px
}

.terminalCard>span p {
    margin-top: 10px;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    width: 160px
}

.terminalCard>span span {
    font-weight: 700
}

.terminalCard>header {
    color: var(--invert-font-color);
    text-align: center;
    background-color: var(--secondary-color);
    padding: .5em 0
}

.terminalCard .terminalProgress {
    width: 100%;
    border-bottom: 1px solid var(--secondary-color);
    display: grid;
    grid-template-columns: repeat(40, 1fr);
    grid-gap: 2px;
    gap: 2px;
    height: 40px;
    padding: 2px;
    position: relative
}

.terminalCard .terminalProgress div {
    background-color: var(--selection);
    height: 100%
}

.terminalCard .terminalProgress div.blinking {
    animation: blinking .3s linear infinite alternate
}

.terminalCard .terminalProgress span {
    text-align: center;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    width: 100%
}

.terminalCard:before {
    content: " ";
    background: var(--invert-font-color);
    border: 2px solid var(--secondary-color);
    display: inline-block;
    position: absolute;
    margin-top: 15px;
    left: 26px;
    width: 15px;
    height: 15px;
    z-index: 400
}

.terminalCard.done:before {
    background: var(--secondary-color)
}

.descr {
    background-image: url(../media/descr-bg.3f38b2f3.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    padding: 30px;
    width: 100%;
    color: #fff
}

.descr article {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 640px;
    margin-bottom: 45px
}

.descr div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.descr__img {
    background-color: #3409bc;
    width: 150px;
    height: 150px;
    border: 1px solid #a4abb9 !important
}

.descr__img.last {
    justify-content: center;
    align-items: center;
    text-align: center
}

.social {
    width: 100%
}

.social h5 {
    position: relative;
    font-size: 17px;
    font-weight: 700
}

.social__items {
    display: flex;
    gap: 15px
}

.social__items h5 {
    margin: 18px 0 8px
}

.social__items>div+div {
    width: 55%
}

@media(max-width:500px) {
    .social__items>div+div {
        width: 100%
    }
}

.getGems button {
    padding: 5px 15px;
    font-weight: 600;
    font-size: 18px;
    line-height: 40px;
    background-color: #1a95e0;
    border-radius: 0;
    color: #fff;
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

.getGems button:disabled {
    background-color: var(--secondary-color) !important;
    cursor: default !important
}

.team {
    width: 100%
}

.team>div {
    justify-content: space-between;
    align-items: center
}

.team__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 140px;
    grid-gap: 24px;
    gap: 24px
}

.team__items>div {
    border: 1px solid var(--secondary-color);
    padding: 20px;
    align-items: center;
    gap: 20px
}

.team__item {
    width: 100px;
    height: 100px
}

.team__item-text {
    flex-direction: column
}

.team__item-text h5 {
    font-weight: 700
}

.team__item-text div {
    max-width: 100px;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px
}

.team__item-text button {
    font-weight: 700;
    font-size: 15px;
    line-height: 20px
}

.team__item-text button a {
    color: #fff
}

.faq {
    width: 100%
}

.faq__accordion,
.faq__item {
    width: 100%;
    flex-direction: column
}

.faq__item {
    margin-bottom: 10px;
    cursor: pointer;
    background-color: var(--input-color);
    padding: 15px 15px 10px
}

.faq__item h2 {
    margin-bottom: 0;
    margin-top: 0
}

.faq__item-title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq__item-title h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px
}

.faq__item-title div {
    width: 30px;
    top: -2px;
    height: 30px;
    flex-shrink: 0;
    position: relative;
    margin-left: 10px;
    background-color: var(--secondary-color)
}

.faq__item-title div:after,
.faq__item-title div:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: var(--invert-font-color);
    top: 14.5px;
    left: 8px
}

.faq__item-title div:after {
    transform: rotate(90deg)
}

.faq__item-text-wrapper {
    overflow: hidden;
    position: relative;
    cursor: default;
    max-height: 0
}

.faq__item-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
    text-align: left;
    cursor: default
}

.faq__item.active .faq__item-title div:after {
    transform: rotate(0deg)
}

.faq__item.active .faq__item-text-wrapper {
    max-height: 320px
}

.faq__item.active .faq__item-text {
    top: 0
}

.pre-footer {
    background-image: url(../media/footer-bg.5b9e9192.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center
}

.pre-footer:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .4);
    z-index: 2
}

.pre-footer h3 {
    color: #fff;
    position: relative;
    z-index: 5;
    margin: 0
}

.pre-footer button {
    position: relative;
    z-index: 5;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    background-color: #fff;
    border-radius: 0;
    color: #000;
    max-width: 213px;
    width: 100%;
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

.pre-footer button a {
    color: inherit
}

.pre-footer button a:hover {
    background: transparent
}

.contract {
    gap: 30px
}

.contract,
.walletWrapper {
    justify-content: space-between;
    width: 100%
}

.walletWrapper {
    -moz-column-gap: 60px;
    column-gap: 60px
}

.walletHeader {
    flex-direction: column;
    margin-bottom: 60px
}

.modalScroll {
    -ms-overflow-style: none;
    scrollbar-width: none
}

.modalScroll::-webkit-scrollbar {
    display: none
}

.networking {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 10px;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 80px
}

.networking span {
    margin-top: 0
}

@media(max-width:600px) {
    .networking {
        display: flex;
        flex-direction: column
    }
}

.networking>div {
    text-align: left;
    flex-direction: column;
    gap: 5px;
    transition: all .3s
}

.networking>div .mobile-img span {
    position: absolute;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    color: #fff
}

.networking>div .mobile-img:hover span {
    opacity: 0
}

.networking>div .not_ready {
    position: relative
}

.networking>div .not_ready:after {
    content: attr(data-text);
    position: absolute;
    opacity: 1 !important;
    font-size: 15px;
    opacity: 1;
    top: 0;
    left: -400px;
    width: 380px;
    padding: 5px;
    background-color: var(--background-color);
    color: var(--font-color);
    border: 2px solid var(--font-color);
    display: none
}

.networking>div .not_ready:hover:after {
    display: block
}

@media(max-width:600px) {
    .networking>div .not_ready:after {
        content: attr(data-text);
        position: absolute;
        bottom: 61px;
        opacity: 1;
        top: auto;
        width: auto;
        left: 0;
        right: 0;
        padding: 5px;
        background-color: var(--background-color);
        color: var(--font-color);
        border: none;
        border-top: 1px solid var(--font-color);
        display: none
    }

    .networking>div .not_ready.counter:after {
        bottom: 33px
    }
}

.networking>div .icons:after {
    content: "🎖 Holder of the legendary Whale NFT \a💎 Holder of the rare Whale NFT with a tag on the tail";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    background-color: var(--background-color);
    padding: 10px;
    border-bottom: 1px solid var(--font-color);
    white-space: pre-wrap;
    z-index: 5
}

.networking>div .icons:hover:after {
    display: block
}

.networking>div .placeholder {
    position: absolute;
    inset: 35px 0 0 0;
    background-color: transparent;
    z-index: 10;
    transition: all .2s;
    align-items: center;
    justify-content: center;
    color: transparent;
    cursor: pointer
}

.networking>div .placeholder:hover {
    background-color: rgba(26, 148, 224, .871);
    color: var(--invert-font-color)
}

.networking>div .profile-heading {
    margin-left: 10px;
    gap: 2px;
    position: relative
}

.networking>div .profile-heading:after {
    content: "Total rating of all user's NFT Whales rarity points";
    position: absolute;
    border: 1px solid var(--font-color);
    background-color: var(--background-color);
    padding: 5px;
    display: none
}

.networking>div .profile-heading:hover:after {
    display: block
}

@media(max-width:450px) {
    .networking>div {
        width: 100%;
        flex-direction: column !important;
        background-image: none !important
    }

    .networking>div .placeholder {
        opacity: 0
    }
}

.networking .small {
    grid-row: span 1;
    flex-direction: row;
    justify-content: space-between
}

.networking .big,
.networking .small {
    filter: none;
    background-image: none;
    position: relative;
    border: 1px solid var(--font-color)
}

.networking .big {
    grid-row: span 3
}

.networking__modal {
    position: fixed;
    padding-bottom: 10px;
    z-index: 100;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 350px;
    min-height: 200px;
    background-color: var(--background-color);
    border: 1px solid var(--font-color);
    overflow: hidden;
    flex-direction: column;
    gap: 10px
}

.networking__modal div span span {
    color: var(--primary-color);
    position: relative
}

.networking__modal div span span:hover:before {
    display: block
}

.networking__modal div span span:before {
    content: "If you're interested in a particular user's profile and would like to communicate with them without filling in a request - simply send a handshake to the user";
    background-color: var(--background-color);
    border: 1px solid var(--font-color);
    padding: 10px;
    position: absolute;
    width: 200px;
    left: 82%;
    top: -10px;
    display: none;
    color: var(--font-color)
}

.networking__modal textarea {
    margin: 0 10px
}

@media(max-width:900px) {
    .terminalTimeline {
        width: 100%;
        padding-left: 50px
    }

    .terminalTimeline:before {
        left: 15px
    }

    .terminalCard>span {
        position: relative;
        left: auto
    }

    .terminalCard>span p {
        margin-top: 5px;
        width: auto
    }

    .terminalCard>div {
        margin-top: 15px
    }

    .terminalCard:before {
        margin-top: 3px;
        left: 6.5px
    }

    .unique,
    .unique h2 {
        margin-bottom: 16px
    }

    .unique header {
        flex-wrap: wrap
    }

    .unique>div {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .unique>div>div {
        width: 100%
    }

    .walletWrapper {
        width: 100%;
        flex-direction: column
    }

    .walletWrapper>div>div>div {
        width: 100% !important
    }
}

@media(max-width:800px) {
    .main {
        width: 100%;
        background-size: contain;
        height: 400px;
        position: relative;
        margin-bottom: -20px
    }

    .main h1 {
        margin-bottom: 16px
    }

    .main__inner {
        display: none
    }

    .main h3 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 35%
    }

    .advantages {
        display: flex;
        flex-wrap: wrap;
        gap: 10px
    }

    .advantages__inner {
        gap: 12px;
        justify-content: flex-start
    }

    .advantages__inner div+div {
        font-size: 15px;
        line-height: 18px
    }

    .advantages__info {
        gap: 10px
    }

    .tooltip {
        margin-left: -216px;
        margin-bottom: 12px
    }

    .mission {
        flex-direction: column;
        align-items: flex-start
    }

    .mission img {
        width: 100%
    }

    .mission__text {
        margin-right: 0
    }

    .mission__img {
        gap: 20px;
        width: 150px;
        height: 150px
    }

    .dao img {
        width: 30%
    }

    .currency h4 {
        margin-bottom: 15px
    }

    .currency div {
        gap: 10px
    }

    .descr {
        padding: 15px
    }

    .descr article {
        width: 100%;
        max-width: 100%
    }

    .roadmap {
        margin-bottom: 0
    }

    .social__items {
        flex-direction: column;
        gap: 30px
    }

    .social__items div {
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap
    }
}

@media(max-width:800px)and (max-width:500px) {
    .social__items {
        flex-direction: column-reverse
    }
}

@media(max-width:800px) {
    .team__items {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    section {
        margin-bottom: 35px
    }

    .main {
        height: 300px
    }

    .mission h3 {
        margin: 0 0 -5px
    }

    .currency div,
    .pre-social div {
        flex-direction: column
    }

    .dao img {
        width: 60%
    }

    .team__items {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr)
    }

    .team__items>div {
        height: 100%;
        text-align: center;
        flex-direction: column
    }

    .team__items>div img {
        width: 60px;
        height: 60px
    }

    .pre-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px
    }

    .pre-footer h2 {
        font-size: 30px;
        line-height: 40px
    }

    .pre-footer button {
        align-self: flex-start
    }
}

@media(max-width:500px) {
    .main {
        height: 225px
    }

    .unique>div>div {
        flex-direction: column;
        padding: 15px
    }

    .unique>div>div img {
        width: 100%;
        height: auto
    }

    .unique>div>div p {
        gap: 120px
    }

    .advantages {
        display: flex;
        row-gap: 20px
    }

    .advantages__inner {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-width: 150px
    }

    .advantages__inner div+div {
        max-width: 185px;
        text-align: center;
        font-size: 12px;
        line-height: 16px
    }

    .advantages__img {
        width: 80px;
        height: 80px;
        position: relative;
        cursor: pointer
    }

    .advantages__info {
        margin: 0
    }

    .advantages__info a {
        max-width: 150px
    }

    .advantages__info .animated,
    .advantages__info .static {
        height: 80px;
        width: 80px
    }

    .advantages .tooltip {
        background-color: #1a95e0;
        color: #fff;
        text-align: center;
        width: 250px;
        padding: 5px 0;
        border-radius: 6px;
        position: absolute;
        z-index: 1;
        bottom: 100%;
        left: 50%;
        margin-left: -125px;
        margin-bottom: 12px
    }

    .walletWrapper {
        width: 100%;
        flex-direction: column
    }

    .walletWrapper div:last-child>div>a {
        align-items: center
    }

    .walletWrapper div:last-child>div>a,
    .walletWrapper div:last-child>div>a~div {
        display: flex;
        grid-template-columns: 1fr 1fr !important;
        flex-direction: column;
        width: 100%;
        height: auto !important
    }

    .walletWrapper div:last-child>div>a img,
    .walletWrapper div:last-child>div>a~div {
        aspect-ratio: 1/1
    }

    .team__item-text button {
        display: block
    }

    .walletHeader {
        margin-bottom: 0
    }

    .walletHeader .wallet {
        margin-top: 15px
    }
}

@media(max-width:450px) {
    .main {
        height: 200px
    }

    .descr>div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
        gap: 16px
    }

    .descr__img {
        width: 100%;
        height: auto;
        flex-grow: 1
    }

    .advantages {
        gap: 10px
    }

    .advantages__inner {
        gap: 12px
    }

    .advantages__inner div+div {
        max-width: 160px;
        font-size: 15px;
        line-height: 18px
    }
}

@media(max-width:400px) {
    .main {
        height: 170px
    }

    .main__mobile {
        margin-top: -15px
    }
}

@media(max-width:380px) {
    .advantages {
        gap: 10px
    }

    .advantages__inner {
        gap: 12px
    }

    .advantages__inner div+div {
        max-width: 150px
    }
}

.market-title {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 16px
}

.product {
    position: relative
}

.product h3 .emoji {
    height: 25px;
    width: 25px
}

.product-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    gap: 20px;
    width: 100%;
    margin-top: 16px
}

.product .empty-image {
    background-color: var(--secondary-color);
    color: var(--font-color);
    justify-content: center
}

.product .empty-image,
.product .productImage {
    border: 1px solid var(--font-color);
    width: 100%;
    aspect-ratio: 1/1;
    align-items: center
}

.product .productImage {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative
}

.product-sizes {
    border-top: 1px solid var(--font-color);
    border-bottom: 1px solid var(--font-color);
    border-left: 1px solid var(--font-color);
    align-self: flex-start
}

.product-sizes>div {
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--font-color)
}

.product-sizes__advice {
    width: 100px !important
}

.product-size__item div {
    position: absolute;
    display: block;
    width: 200px;
    height: 220px;
    border: 1px solid var(--font-color);
    bottom: 125px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--background-color)
}

.product-size__item div svg {
    width: 100%;
    height: 100%
}

.product-size__item div .width {
    position: absolute;
    right: 58px;
    bottom: 53px;
    height: 22px;
    width: 30px;
    overflow: visible
}

.product-size__item div .width:before {
    content: "";
    position: absolute;
    left: -70px;
    bottom: 0;
    width: 110px;
    height: 1px;
    background-color: var(--font-color)
}

.product-size__item div .height {
    position: absolute;
    bottom: 120px;
    left: 70px;
    height: 22px;
    width: 30px;
    overflow: visible
}

.product-size__item div .height:before {
    content: "";
    position: absolute;
    left: -5px;
    top: -38px;
    height: 148px;
    width: 1px;
    background-color: var(--font-color)
}

.product-size__item div .diagonal {
    position: absolute;
    bottom: 136px;
    right: 48px;
    height: 22px;
    width: 30px;
    overflow: visible
}

.product-size__item div .diagonal:before {
    content: "";
    position: absolute;
    left: 26px;
    top: -40px;
    height: 79px;
    width: 1px;
    background-color: var(--font-color);
    transform: rotate(108deg)
}

.product-modal {
    position: fixed;
    z-index: 91;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 900px;
    background-color: var(--background-color);
    padding: 20px;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
    gap: 5px
}

.product-modal,
.product-modal__placeholder {
    border: 1px solid var(--font-color);
    justify-content: center
}

.product-modal__placeholder {
    width: 300px;
    aspect-ratio: 1/1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    align-items: center;
    flex-shrink: 0;
    background-color: var(--secondary-color);
    position: relative
}

.product-modal h3 {
    margin: 0
}

.product-modal .product-sizes div {
    top: -10%;
    left: 48%
}

.product-modal__inner {
    gap: 20px;
    align-items: flex-start
}

.product-modal__info {
    flex-direction: column;
    min-height: 300px;
    text-align: left;
    position: relative;
    flex-grow: 1;
    justify-content: space-between
}

.product-modal button {
    border-radius: 0
}

.product-modal .counter,
.product-modal button {
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
    font-size: 26px
}

.product-modal .counter {
    gap: 16px;
    height: 37px;
    padding: 0 16px;
    line-height: 26px;
    font-weight: 700;
    align-items: center;
    background-color: var(--primary-color);
    border: 1px solid transparent;
    color: #fff
}

.product-modal .counter span {
    margin: 0
}

.price-wrapper h3 {
    margin: 20px 0 0;
    align-self: flex-start
}

.price-wrapper h3 .emoji {
    height: 25px;
    width: 25px
}

.price-wrapper p {
    position: absolute;
    top: -5px;
    align-self: flex-start
}

.price-wrapper p>span {
    position: relative
}

.price-wrapper p>span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--font-color);
    left: 0;
    right: 0;
    top: 50%
}

.cart {
    flex-direction: column;
    margin-top: 18px
}

.cart,
.cart__item {
    gap: 20px;
    width: 100%
}

.cart__item {
    align-items: center;
    justify-content: space-between;
    padding-top: 15px
}

.cart__item-img {
    background-color: var(--background-color);
    border: 1px solid var(--font-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    width: 100px;
    height: 100px;
    flex-shrink: 0
}

.cart__item-props {
    flex-grow: 1;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-start
}

.cart__item+.cart__item {
    border-top: 1px solid var(--font-color)
}

.cart__total {
    padding-top: 20px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 15px;
    border-top: 3px solid var(--font-color)
}

.cart__total button {
    align-self: flex-end;
    text-transform: uppercase;
    font-size: 20px
}

.cart__total .emoji {
    height: 25px;
    width: 25px
}

.cart__delivery {
    padding-top: 20px;
    flex-direction: column;
    border-top: 3px solid var(--font-color)
}

.cart__delivery input {
    margin-top: 16px 0
}

@media(max-width:800px) {
    .product-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }

    .product-modal {
        top: 10%;
        width: 350px
    }

    .product-modal__inner {
        flex-direction: column
    }

    .product-modal__placeholder {
        width: 200px
    }

    .product-modal__info {
        gap: 20px;
        width: 100%
    }

    .product-modal__info p {
        max-height: 100px;
        overflow-y: auto
    }

    .product-modal .product-sizes div {
        top: -45% !important;
        left: 48%
    }

    .price-wrapper {
        margin-top: 20px
    }

    .price-wrapper h3 {
        margin-top: 5px
    }

    .price-wrapper p {
        top: -20px
    }

    .cart__item {
        gap: 8px
    }

    .cart__item-props {
        flex-direction: column;
        gap: 16px
    }
}

@media(max-width:500px) {
    .product-wrapper {
        grid-template-columns: repeat(1, 1fr)
    }

    .product-modal__placeholder {
        width: 150px
    }

    .product-modal__inner {
        gap: 20px;
        flex-direction: column
    }

    .product-modal .product-sizes div {
        top: -30%;
        left: 60%
    }

    .cart__item-props {
        max-width: 140px
    }

    .cart__item-img {
        width: 65px;
        height: 65px
    }
}

.a1t8yijy {
    width: 20px;
    height: 20px;
    margin: auto
}

@keyframes rotate-a1t8yijy {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.a1t8yijy>svg {
    animation: rotate-a1t8yijy .75s linear infinite
}

.u1pmzxa3 {
    position: relative;
    padding: 5px 25px !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    background-color: #1a95e0;
    border-radius: 0;
    color: #fff;
    min-width: -moz-max-content;
    min-width: max-content;
    margin: 0;
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

.u1pmzxa3 a {
    color: #fff;
    background-color: transparent
}

.u1pmzxa3:disabled {
    background-color: var(--secondary-color) !important;
    cursor: default !important
}

.u1yeaqib {
    position: relative;
    padding: 4px 16px;
    font-weight: 700;
    font-size: 15px !important;
    background-color: #1a95e0;
    border-radius: 0;
    color: #fff;
    min-width: -moz-max-content;
    min-width: max-content;
    margin: 0;
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

.u1yeaqib a {
    color: #fff;
    background-color: transparent
}

.u1yeaqib:disabled {
    background-color: var(--secondary-color) !important;
    cursor: default !important
}

.u1bsshti {
    position: relative;
    padding: 0 8px;
    font-weight: 700;
    font-size: 15px !important;
    background-color: #1a95e0;
    border-radius: 0;
    color: #fff;
    min-width: -moz-max-content;
    min-width: max-content;
    margin: 0;
    font-family: JetBrainsMono, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif
}

.u1bsshti a {
    color: #fff;
    background-color: transparent
}

.u1bsshti:disabled {
    background-color: var(--secondary-color) !important;
    cursor: default !important
}

.s1vzfvw3 {
    --offset: 805px;
    --move-initial: 0px;
    --move-final: calc(-50% - var(--offset));
    animation: scroll-s1vzfvw3 20s linear infinite
}

@keyframes scroll-s1vzfvw3 {
    0% {
        transform: translate3d(var(--move-none), 0, 0);
        transform: translate3d(var(--move-initial), 0, 0)
    }

    to {
        transform: translate3d(var(--move-final), 0, 0)
    }
}

.s1vzfvw3:hover {
    animation-play-state: paused
}

.btk9lit {
    padding: 8px 18px 6px;
    align-self: center
}

.btk9lit,
.btk9lit:hover {
    background-color: var(--primary-color);
    color: #fff
}

.ivl6mqd {
    font-size: 15px;
    -moz-appearance: textfield
}

.ivl6mqd::-webkit-inner-spin-button,
.ivl6mqd::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.ivl6mqd:placeholder {
    font-size: 15px
}

.rx4dor6 {
    border: none !important;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    background-color: transparent
}

.rx4dor6::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: transparent;
    border: 3px double var(--font-color) !important;
    width: 15px;
    height: 31px;
    border-radius: 0;
    cursor: pointer;
    margin-top: -15px;
    z-index: 5;
    position: relative
}

.rx4dor6::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: var(--font-color)
}

.rx4dor6::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: var(--font-color)
}

.rx4dor6::-moz-range-thumb {
    position: relative;
    background-color: transparent;
    border: 3px double var(--font-color) !important;
    width: 15px;
    height: 31px;
    border-radius: 0;
    cursor: pointer;
    margin-top: -15px;
    z-index: 5
}

.c193mz96 {
    display: none;
    opacity: 0;
    visability: hidden
}

.c193mz96+label {
    cursor: pointer;
    width: 18px;
    height: 18px;
    border: 1px solid var(--font-color);
    position: relative
}

.c193mz96+label:before {
    content: "L";
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    left: 23%;
    top: -4px;
    transform: rotate(228deg) scaleY(-1);
    display: none
}

.c193mz96:disabled+label {
    cursor: default;
    width: 18px;
    height: 18px;
    border: 1px solid var(--secondary-color);
    position: relative
}

.c193mz96:disabled+label:before {
    content: "L";
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    left: 23%;
    top: -4px;
    transform: rotate(228deg) scaleY(-1);
    display: none
}

.c193mz96:checked+label:before {
    display: block
}

.c193mz96:disabled:checked+label {
    cursor: default;
    width: 18px;
    height: 18px;
    border: 1px solid var(--secondary-color);
    position: relative
}

.c193mz96:disabled:checked+label:before {
    color: var(--secondary-color);
    display: block
}

.t14x0z04 {
    display: none;
    opacity: 0;
    visability: hidden
}

.t14x0z04+label {
    cursor: pointer;
    width: 58px;
    height: 30px;
    border: 1px solid var(--font-color);
    position: relative;
    padding: 3px
}

.t14x0z04+label:before {
    content: "";
    font-weight: 700;
    height: 22px;
    width: 16px;
    position: absolute;
    left: 2px;
    background: repeating-linear-gradient(135deg, var(--font-color) 0, var(--font-color) 1.5px, transparent 1.5px, transparent 3px)
}

.t14x0z04:checked+label:before {
    left: auto;
    right: 2px
}

.i1yu2jf5 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--font-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    text-align: center;
    cursor: pointer
}

.i1yu2jf5 input {
    display: none;
    visibility: hidden
}

.c1eakthy {
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--secondary-color);
    width: 100%
}

.clqe6vu {
    height: 36px;
    padding: 0 16px;
    flex-direction: row
}

.c2jfiqc,
.clqe6vu {
    align-items: center;
    justify-content: center
}

.c2jfiqc {
    min-height: 36px;
    padding: 8px 12px;
    height: 100%
}

.m1g6ko4q {
    background-color: #222225;
    border: 1px solid #a4abb9
}

.m1g6ko4q:disabled {
    border: 1px solid #222225;
    color: #222225;
    background-color: var(--secondary-color)
}

.m1g6ko4q:disabled span {
    color: #222225
}

.cigxvtr {
    border-left: 4px solid #fff;
    margin: 0;
    padding: 10px;
    font-size: 40px;
    line-height: 45px
}

@media(max-width:500px) {
    .cigxvtr {
        padding: 6px;
        font-size: 36px;
        line-height: 40px
    }
}

.trs4dia {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-items: stretch;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    margin: var(--global-line-height) 0
}

@media (max-width:950px) {
    .trs4dia {
        overflow: auto
    }
}

.trs4dia::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

.trs4dia::-webkit-scrollbar-track {
    background-color: var(--comment);
    border-radius: 0
}

.trs4dia::-webkit-scrollbar-thumb {
    background-color: var(--purple);
    border-radius: 0
}

.c1mz6kpr {
    display: grid;
    grid-gap: 24px;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%
}

@media (max-width:800px) {
    .c1mz6kpr {
        display: flex;
        flex-direction: column
    }
}

.c1mz6kpr>div {
    text-align: center;
    margin: 0
}

@media (max-width:600px) {
    .c1mz6kpr>div {
        width: 100%
    }
}

.c1mz6kpr .emoji {
    margin-top: -2px
}

.b1a5lh1z {
    position: relative
}

.b1a5lh1z .tooltip {
    visibility: hidden
}

.b1a5lh1z.disabled:hover .tooltip {
    visibility: visible
}

.s1dvqf8i {
    background: repeating-linear-gradient(135deg, var(--secondary-color) 0, var(--secondary-color) 1.5px, transparent 1.5px, transparent 3px);
    background-size: calc(3px / .0883686861) 100%;
    height: 22px;
    animation: SkeletonFloating-s1dvqf8i 15s linear infinite reverse;
    min-width: 80px
}

@keyframes SkeletonFloating-s1dvqf8i {
    0% {
        background-position: calc(3px / .0883686861) 0
    }
}

@media (max-width:500px) {
    .s1dvqf8i {
        min-width: 80px;
        width: 100%;
        height: 22px
    }
}

.i13n4t29 {
    font-size: 15px;
    -moz-appearance: textfield
}

.i13n4t29::-webkit-inner-spin-button,
.i13n4t29::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.i13n4t29:placeholder {
    font-size: 15px
}

.a19f36pf {
    position: relative
}

.a19f36pf:after {
    content: "Use this, if metadata of this jetton was recently changed";
    position: absolute;
    width: 200px;
    font-size: 15px;
    line-height: 22px;
    border: 1px solid var(--font-color);
    background-color: var(--background-color);
    padding: 5px;
    top: 35px;
    left: -10px;
    display: none
}

.a19f36pf:hover:after {
    display: block
}

.a1fbp8uo {
    margin-left: 8px;
    margin-right: 8px;
    color: var(--secondary-color);
    font-weight: 600
}

.a1fbp8uo:hover {
    background-color: transparent;
    color: var(--font-color)
}

@media(max-width:500px) {

    .a1fbp8uo,
    .a1fbp8uo:hover {
        color: #000
    }
}

.ae2xj6r {
    margin-left: 8px;
    margin-right: 8px;
    color: var(--secondary-color);
    font-weight: 600
}

.ae2xj6r:hover {
    background-color: transparent;
    color: var(--font-color)
}

@media(max-width:500px) {
    .ae2xj6r:hover {
        color: #000
    }
}

.a19wpbx7 {
    margin-left: 8px;
    margin-right: 8px
}

.a19wpbx7,
.a19wpbx7:hover {
    color: var(--primary-color)
}

.a19wpbx7:hover {
    background-color: transparent
}

@media(max-width:500px) {
    .a19wpbx7 {
        color: #000
    }

    .a19wpbx7:hover {
        background-color: transparent;
        color: #000
    }
}

.ac4ex07 {
    margin-left: 8px;
    margin-right: 8px
}

.ac4ex07,
.ac4ex07:hover {
    color: var(--primary-color)
}

.ac4ex07:hover {
    background-color: transparent
}

.l1133kq2 {
    margin-left: 8px;
    margin-right: 8px;
    font-weight: 600;
    flex-wrap: wrap;
    flex-shrink: 0;
    white-space: normal
}

.l1133kq2,
.l1133kq2>a {
    display: flex;
    align-items: center;
    gap: 3px
}

.l1133kq2>a {
    color: var(--secondary-color)
}

.l1133kq2>a:hover {
    background-color: transparent;
    color: var(--font-color)
}

.l1133kq2 span {
    white-space: normal
}

@media (max-width:500px) {
    .l1133kq2 {
        color: #000;
        margin-left: 2px;
        margin-right: 0
    }
}

.d74oush {
    position: absolute;
    top: 50px;
    right: 31%;
    transform: translateX(50%);
    flex-direction: column;
    background-color: var(--background-color);
    border: 1px solid var(--font-color);
    gap: 10px;
    min-width: 348px;
    padding: 15px;
    z-index: 15;
    color: var(--secondary-color)
}

@media (max-width:500px) {
    .d74oush {
        padding: 0
    }
}

.tb30zav {
    animation: cursor-tb30zav .8s infinite;
    background: var(--primary-color);
    border-radius: 0;
    display: inline-block;
    height: 15px;
    margin-left: 3px;
    width: 3px;
    bottom: 0;
    position: relative
}

@keyframes cursor-tb30zav {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.a1gye2o1 {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px
}

.a1056c33,
.a1gye2o1 {
    flex-direction: row;
    flex-grow: 1;
    flex-basis: 0
}

.a1056c33 {
    display: none;
    justify-content: flex-end
}

@media (max-width:850px) {
    .a1056c33 {
        display: flex
    }
}

.atema3z {
    display: flex;
    flex-direction: row;
    align-items: center
}

@media (max-width:850px) {
    .atema3z {
        display: none
    }
}

.aeurwr8,
.amqhx1b {
    align-self: stretch;
    justify-content: center;
    padding: 0 16px
}

.a192tyqv,
.aeurwr8,
.amqhx1b {
    display: flex;
    flex-direction: row
}

.a192tyqv {
    height: 48px;
    align-items: center;
    flex-grow: 1;
    flex-basis: 0;
    justify-content: flex-start;
    max-width: 900px
}

.a192tyqv:before {
    content: ":"
}

.m1d7vel9 {
    font-size: 15px;
    font-family: var(--font-stack);
    font-weight: 600;
    color: var(--font-color);
    flex-grow: 0;
    flex-shrink: 0;
    white-space: pre-wrap;
    padding-right: 8px
}

.m1d7vel9 a {
    margin-top: 0
}

.tex6j4m {
    animation: cursor-tex6j4m .8s infinite;
    background: var(--primary-color);
    border-radius: 0;
    display: inline-block;
    height: 15px;
    margin-left: 3px;
    width: 3px;
    bottom: -2px;
    position: relative
}

@keyframes cursor-tex6j4m {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.whbk272 {
    border: 3px double var(--invert-font-color);
    background-color: var(--primary-color);
    color: #fff;
    margin-left: 20px;
    width: 185px;
    transition: filter .4s ease-out;
    transition: opacity .4s ease-out;
    text-transform: none
}

.whbk272.placeholder {
    opacity: 0;
    filter: blur(5px)
}

@keyframes appear-whbk272 {
    0% {
        opacity: 0;
        filter: blur(2px)
    }

    to {
        opacity: 1
    }
}

.whbk272.loaded {
    animation: appear-whbk272 .1s ease-out 0s 1
}

.w3jc32l {
    animation: appear-w3jc32l .1s ease-out 0s 1
}

@keyframes appear-w3jc32l {
    0% {
        opacity: 0;
        filter: blur(2px)
    }

    to {
        opacity: 1
    }
}

.am8hvu7 {
    margin-top: 24px;
    margin-bottom: 24px;
    align-self: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 24px
}

.am8hvu7>a {
    margin-top: 0
}

@media(max-width:600px) {
    .am8hvu7 {
        justify-content: center;
        margin-bottom: 0
    }
}

.apg0y66 {
    width: 100%;
    max-width: 900px
}

.apg0y66,
.atbtwx4 {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    flex-grow: 1
}

.atbtwx4 {
    align-items: flex-start
}